/* ==========================================================================
   CADASTRO FORÇA DE VENDAS - Standalone Landing Page (PowerGO)
   Clean page for campaigns - no header/footer - LIGHT THEME
   ========================================================================== */

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #ffffff;
    color: #1e293b;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ==========================================================================
   LP Top Bar - Minimal logo bar (dark strip)
   ========================================================================== */
.lp-topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 14px 24px;
    background: #0f172a;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.lp-logo {
    display: inline-flex;
    align-items: center;
}

.lp-logo img {
    height: 26px;
}

/* ==========================================================================
   Hero Section - Form landing
   ========================================================================== */
.cadastro-hero {
    background:
        radial-gradient(ellipse at 20% 0%, rgba(249, 115, 22, 0.07) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 100%, rgba(16, 185, 129, 0.05) 0%, transparent 50%),
        linear-gradient(180deg, #fffbf5 0%, #ffffff 40%, #f8fafc 100%);
    color: #1e293b;
    padding: 100px 0 60px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.cadastro-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(0,0,0,0.03)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.4;
}

.cadastro-hero .container {
    position: relative;
    z-index: 1;
}

/* Two Column Layout */
.cadastro-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Left: Info Section */
.cadastro-info {
    padding-right: 20px;
}

.cadastro-info .hero-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #ea580c;
    margin-bottom: 20px;
    padding: 8px 18px;
    background: rgba(249, 115, 22, 0.08);
    border-radius: 6px;
    border: 1px solid rgba(249, 115, 22, 0.2);
}

.cadastro-info h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #0f172a;
}

.cadastro-info .subtitle {
    font-size: 17px;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 32px;
}

/* Benefits List */
.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: #334155;
    line-height: 1.4;
}

.benefits-list li svg {
    flex-shrink: 0;
}

/* Trial Badge */
.trial-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(16, 185, 129, 0.06);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #059669;
}

/* ==========================================================================
   Form Container
   ========================================================================== */
.cadastro-form-container {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
}

.cadastro-form-container h2 {
    font-size: 24px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 8px;
}

.form-subtitle {
    font-size: 15px;
    color: #64748b;
    margin-bottom: 28px;
    line-height: 1.5;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    margin-bottom: 8px;
}

.form-group label span {
    color: #ef4444;
}

.form-group input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #f9fafb;
    color: #1e293b;
}

.form-group input::placeholder {
    color: #9ca3af;
}

.form-group input:focus {
    outline: none;
    border-color: #10b981;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-submit {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: white;
    padding: 16px 40px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
    width: 100%;
    margin-top: 8px;
}

.form-submit:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
}

.form-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Alert Messages */
.alert {
    padding: 16px 20px;
    border-radius: 10px;
    margin-bottom: 24px;
    display: none;
    align-items: center;
    gap: 12px;
}

.alert.show {
    display: flex;
}

.alert-error {
    background: rgba(239, 68, 68, 0.06);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #dc2626;
}

/* ==========================================================================
   Obrigado (Thank You) Page
   ========================================================================== */
.obrigado-hero {
    padding: 100px 0 60px;
    background:
        radial-gradient(ellipse at 50% 30%, rgba(16, 185, 129, 0.06) 0%, transparent 50%),
        linear-gradient(180deg, #f0fdf4 0%, #ffffff 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.obrigado-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.obrigado-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #059669;
    margin-bottom: 30px;
    padding: 8px 18px;
    background: rgba(16, 185, 129, 0.08);
    border-radius: 100px;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.obrigado-illustration {
    max-width: 380px;
    margin: 0 auto 40px;
}

.obrigado-illustration svg {
    width: 100%;
    height: auto;
}

.obrigado-content h1 {
    font-size: 42px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 20px;
    line-height: 1.2;
}

.obrigado-message {
    font-size: 18px;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 12px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

.obrigado-response-time {
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 36px;
}

.obrigado-response-time strong {
    color: #10b981;
    font-weight: 600;
}

/* Obrigado Buttons */
.obrigado-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.btn-obrigado-primary {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 14px 32px;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.btn-obrigado-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.btn-obrigado-secondary {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    color: #374151;
    padding: 14px 32px;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-obrigado-secondary:hover {
    border-color: #10b981;
    color: #10b981;
}

/* Obrigado Contact */
.obrigado-contact {
    margin-top: 50px;
    padding-top: 36px;
    border-top: 1px solid #e5e7eb;
}

.obrigado-contact p {
    font-size: 15px;
    color: #6b7280;
    margin-bottom: 12px;
}

.obrigado-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 20px;
    font-weight: 600;
    color: #10b981;
    transition: all 0.3s ease;
}

.obrigado-phone:hover {
    color: #059669;
    transform: scale(1.05);
}

.obrigado-phone svg {
    stroke: currentColor;
}

/* ==========================================================================
   Mini Footer
   ========================================================================== */
.lp-footer {
    text-align: center;
    padding: 24px;
    color: #94a3b8;
    font-size: 13px;
    border-top: 1px solid #e5e7eb;
    background: #f8fafc;
}

.lp-footer p {
    margin: 0;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
    .cadastro-layout {
        gap: 40px;
    }

    .cadastro-info h1 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .cadastro-hero {
        padding: 80px 0 40px;
        min-height: auto;
    }

    .cadastro-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .cadastro-info {
        padding-right: 0;
        text-align: center;
    }

    .cadastro-info h1 {
        font-size: 30px;
    }

    .cadastro-info .subtitle {
        font-size: 16px;
    }

    .benefits-list {
        text-align: left;
    }

    .trial-badge {
        justify-content: center;
    }

    .cadastro-form-container {
        padding: 28px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    /* Obrigado */
    .obrigado-hero {
        padding: 80px 0 40px;
        min-height: auto;
    }

    .obrigado-content h1 {
        font-size: 32px;
    }

    .obrigado-message {
        font-size: 16px;
    }

    .obrigado-illustration {
        max-width: 280px;
        margin-bottom: 30px;
    }

    .obrigado-buttons {
        flex-direction: column;
        align-items: stretch;
        padding: 0 20px;
    }

    .btn-obrigado-primary,
    .btn-obrigado-secondary {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .cadastro-hero {
        padding: 76px 0 32px;
    }

    .cadastro-info h1 {
        font-size: 26px;
    }

    .cadastro-form-container {
        padding: 24px;
    }

    .benefits-list li {
        font-size: 14px;
    }

    .trial-badge {
        font-size: 13px;
        padding: 10px 16px;
    }

    .obrigado-hero {
        padding: 76px 0 32px;
    }

    .obrigado-content h1 {
        font-size: 26px;
    }

    .obrigado-illustration {
        max-width: 240px;
    }

    .obrigado-phone {
        font-size: 18px;
    }
}
