:root {
    --hero-bg: #0f1f3d;
    --hero-bg-gradient: radial-gradient(ellipse 80% 50% at 50% -20%, #1e3a8a, transparent);
    --primary-cyan: #06b6d4;
    --primary-green: #10b981;
    --text-white: #ffffff;
    --text-gray: #cbd5e1;
    --card-bg: rgba(15, 31, 61, 0.6);
    --card-border: rgba(148, 163, 184, 0.2);
    --bg-light: #f8fafc;
    --text-main: #0f172a;
    --text-muted: #64748b;
    --border-soft: #e2e8f0;
    --radius-lg: 20px;
    --shadow-soft: 0 4px 20px rgba(15, 23, 42, 0.08);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: var(--text-main);
    background-color: #ffffff;
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ========== HERO ========== */

.hero {
    background: var(--hero-bg);
    background-image: var(--hero-bg-gradient);
    color: var(--text-white);
    padding: 6rem 1.5rem 7rem;
    position: relative;
    overflow: hidden;
    min-height: 700px;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

/* Badge superior */
.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.1rem;
    border-radius: 999px;
    background: rgba(30, 58, 138, 0.5);
    border: 1px solid rgba(59, 130, 246, 0.4);
    font-size: 0.85rem;
    margin-bottom: 1.8rem;
    color: #a5b4fc;
}

.hero-pill svg {
    flex-shrink: 0;
}

/* Título */
.hero-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    line-height: 1.15;
    margin: 0 0 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

.hero-highlight {
    background: linear-gradient(135deg, #06b6d4 0%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Subtítulo */
.hero-subtitle {
    font-size: 1.05rem;
    max-width: 750px;
    margin: 0 auto 2.5rem;
    color: var(--text-gray);
    line-height: 1.7;
}

/* Botão principal */
.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    border: none;
    border-radius: 999px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    padding: 1rem 2.2rem;
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
    transition: all 0.25s ease;
}

.btn-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.5);
}

.btn-hero svg {
    flex-shrink: 0;
}

/* Features badges inferiores */
.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2.5rem;
    font-size: 0.9rem;
    color: var(--text-gray);
    flex-wrap: wrap;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-feature-item svg {
    flex-shrink: 0;
    opacity: 0.8;
}

/* ========== CARDS FLUTUANTES ========== */

.hero-float {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.hero-float-left {
    left: 4%;
}

.hero-float-right {
    right: 4%;
}

@media (max-width: 1300px) {
    .hero-float {
        display: none;
    }
}

.float-card {
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 1.2rem 1.4rem;
    min-width: 200px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.float-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.6rem;
}

.float-icon-blue {
    background: rgba(59, 130, 246, 0.2);
    color: #60a5fa;
}

.float-icon-green {
    background: rgba(16, 185, 129, 0.2);
    color: #34d399;
}

.float-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #94a3b8;
    margin-bottom: 0.3rem;
}

.float-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
}

/* ========== SEÇÕES ========== */

.section {
    padding: 5rem 0;
}

.light-bg {
    background-color: var(--bg-light);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin: 0 0 1rem;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: var(--text-muted);
    font-size: 1.05rem;
}

.section-tag {
    text-align: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: #3b82f6;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

/* ========== CARDS DE BENEFÍCIOS ========== */

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-soft);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.12);
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.blue-icon {
    background: #dbeafe;
    color: #3b82f6;
}

.green-icon {
    background: #d1fae5;
    color: #10b981;
}

.purple-icon {
    background: #ede9fe;
    color: #8b5cf6;
}

.orange-icon {
    background: #fed7aa;
    color: #f97316;
}

.pink-icon {
    background: #fce7f3;
    color: #ec4899;
}

.gray-icon {
    background: #e5e7eb;
    color: #6b7280;
}

.feature-card h3 {
    margin: 0 0 0.75rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.feature-card p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ========== PASSOS ========== */

.steps {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
    align-items: center;
}

.step-arrow {
    font-size: 2rem;
    color: #cbd5e1;
    font-weight: 300;
}

.step-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    box-shadow: var(--shadow-soft);
    text-align: center;
    border: 1px solid var(--border-soft);
}

.step-badge {
    display: inline-block;
    padding: 0.35rem 1rem;
    border-radius: 999px;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.blue-badge {
    background: #3b82f6;
}

.purple-badge {
    background: #8b5cf6;
}

.green-badge {
    background: #10b981;
}

.step-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.blue-step {
    background: #dbeafe;
    color: #3b82f6;
}

.purple-step {
    background: #ede9fe;
    color: #8b5cf6;
}

.green-step {
    background: #d1fae5;
    color: #10b981;
}

.step-card h3 {
    margin: 0 0 0.75rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.step-card p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ========== FORMULÁRIO ========== */

.form-container {
    display: flex;
    justify-content: center;
}

.form-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 3rem 2.5rem;
    box-shadow: 0 10px 40px rgba(15, 23, 42, 0.1);
    max-width: 700px;
    width: 100%;
    border: 1px solid var(--border-soft);
}

.form-card h2 {
    margin: 0 0 0.5rem;
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
}

.form-subtitle {
    text-align: center;
    margin: 0 0 2.5rem;
    color: var(--text-muted);
    font-size: 1rem;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
}

.form-group label {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-main);
}

input[type="text"],
input[type="email"],
select,
textarea {
    border-radius: 12px;
    border: 1px solid var(--border-soft);
    padding: 0.875rem 1rem;
    font-size: 0.95rem;
    font-family: inherit;
    outline: none;
    transition: all 0.2s ease;
    background: #ffffff;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--primary-cyan);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%2364748b' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

textarea {
    resize: vertical;
    min-height: 120px;
}

.helper-text {
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.full-width {
    width: 100%;
    justify-content: center;
    margin-top: 1rem;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    border: none;
    border-radius: 999px;
    padding: 1rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
    transition: all 0.2s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.4);
}

.form-footer {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 1rem;
}

/* ========== FAQ ========== */

.faq {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #ffffff;
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    border: 1px solid var(--border-soft);
    transition: box-shadow 0.2s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
}

.faq-question {
    width: 100%;
    padding: 1.25rem 1.5rem;
    border: none;
    background: transparent;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: inherit;
    color: var(--text-main);
}

.faq-icon {
    transition: transform 0.3s ease;
    color: var(--text-muted);
    flex-shrink: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 1.5rem;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 1.5rem 1.25rem;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

/* ========== CTA FINAL ========== */

.cta {
    background: #0f172a;
    color: #ffffff;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(59, 130, 246, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 1rem;
    line-height: 1.2;
}

.cta p {
    font-size: 1.05rem;
    color: #cbd5e1;
    margin: 0 auto 2.5rem;
    max-width: 650px;
    line-height: 1.6;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    border: none;
    border-radius: 999px;
    padding: 1.1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 12px 35px rgba(16, 185, 129, 0.35);
    transition: all 0.25s ease;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 45px rgba(16, 185, 129, 0.45);
}

.btn-cta svg {
    flex-shrink: 0;
}

/* ========== FOOTER ========== */

.footer {
    background: #020617;
    color: #e2e8f0;
    padding: 3.5rem 0 2rem;
    font-size: 0.9rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: 4rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(148, 163, 184, 0.15);
}

.footer-brand-section {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
}

.footer-logo svg {
    width: 28px;
    height: 28px;
    padding: 4px;
    background: #1e40af;
    border-radius: 6px;
    stroke: #ffffff;
}

.footer-description {
    color: #94a3b8;
    line-height: 1.6;
    margin: 0;
    max-width: 420px;
}

.footer-social {
    display: flex;
    gap: 0.8rem;
    margin-top: 0.5rem;
}

.social-icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(148, 163, 184, 0.1);
    border-radius: 8px;
    color: #94a3b8;
    transition: all 0.2s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.footer-column h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 1.2rem;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.footer-column a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 0.9rem;
}

.footer-column a:hover {
    color: #ffffff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: #64748b;
}

.footer-bottom p {
    margin: 0;
}

.footer-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.6);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* ========== RESPONSIVO ========== */

@media (max-width: 1024px) {
    .steps {
        grid-template-columns: 1fr;
    }

    .step-arrow {
        display: none;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-links {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 3rem 1.5rem 4rem;
        min-height: 600px;
    }

    .section {
        padding: 3rem 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }

    .form-card {
        padding: 2rem 1.5rem;
    }

    .cta h2 {
        font-size: 1.85rem;
    }

    .cta p {
        font-size: 0.95rem;
    }

    .footer-main {
        gap: 2rem;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* ========== BOTÃO FLUTUANTE WHATSAPP ========== */

.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
}

/* Tooltip (texto que aparece ao passar o mouse) */
.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: #0f172a;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    font-weight: 500;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid #0f172a;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
}

/* Animação de pulso */
@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

.whatsapp-float {
    animation: pulse-whatsapp 2s infinite;
}

/* Responsivo - ajustar em mobile */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 56px;
        height: 56px;
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }

    .whatsapp-tooltip {
        display: none; /* Esconde o tooltip em mobile */
    }
}