:root {
    --primary: #1a56db;
    --primary-dark: #1239a5;
    --primary-light: #3b82f6;
    --accent: #06b6d4;
    --accent2: #8b5cf6;
    --dark: #0f172a;
    --dark2: #1e293b;
    --mid: #334155;
    --text: #475569;
    --light: #f1f5f9;
    --white: #ffffff;
    --success: #10b981;
    --warning: #f59e0b;
    --gradient: linear-gradient(135deg, #1a56db 0%, #06b6d4 100%);
    --gradient2: linear-gradient(135deg, #1a56db 0%, #8b5cf6 100%);
    --shadow: 0 20px 60px rgba(26, 86, 219, 0.15);
    --shadow-lg: 0 30px 80px rgba(0, 0, 0, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 5%;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(26, 86, 219, 0.08);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.brand-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

.brand-name {
    font-size: 1.35rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--mid);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-outline {
    padding: 9px 22px;
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

.btn-primary {
    padding: 10px 24px;
    background: var(--gradient);
    color: white;
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(26, 86, 219, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 86, 219, 0.45);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: all 0.3s;
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 5% 60px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(150deg, #f8faff 0%, #eef4ff 40%, #f0f9ff 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(26, 86, 219, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    max-width: 1440px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 0.8fr 1.1fr;
    gap: 7%;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(26, 86, 219, 0.1);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(26, 86, 219, 0.15);
}

.hero-badge-dot {
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

.hero-title {
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--dark);
}

.hero-title span {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 36px;
}

.hero-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.btn-hero-primary {
    padding: 15px 32px;
    background: var(--gradient);
    color: white;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 8px 30px rgba(26, 86, 219, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-hero-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 15px 35px rgba(26, 86, 219, 0.4);
}

.btn-hero-secondary {
    padding: 15px 32px;
    background: white;
    color: var(--primary);
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid rgba(26, 86, 219, 0.15);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-hero-secondary:hover {
    border-color: var(--primary);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 12px 25px rgba(26, 86, 219, 0.08);
}

.hero-stats {
    display: flex;
    gap: 32px;
}

.hero-stat {
    text-align: left;
}

.hero-stat-value {
    font-size: 1.6rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-stat-label {
    font-size: 0.8rem;
    color: var(--text);
    font-weight: 500;
}

.hero-stat-divider {
    width: 1px;
    background: rgba(26, 86, 219, 0.15);
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 20px;
    box-shadow: 0 40px 100px rgba(26, 86, 219, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.hero-floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 16px;
    padding: 14px 20px;
    box-shadow: 0 20px 50px rgba(26, 86, 219, 0.08);
    display: flex;
    align-items: center;
    gap: 14px;
    animation: float 6s ease-in-out infinite;
}

.hero-floating-card.card-1 {
    bottom: -15px;
    left: -20px;
    animation-delay: 0s;
}

.hero-floating-card.card-2 {
    top: 25px;
    right: -20px;
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

.floating-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.floating-text strong {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--dark);
}

.floating-text span {
    font-size: 0.75rem;
    color: var(--text);
}

/* ===== TICKER ===== */
.ticker-section {
    background: var(--dark);
    padding: 18px 0;
    overflow: hidden;
}

.ticker-wrap {
    display: flex;
    animation: ticker 25s linear infinite;
    white-space: nowrap;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0 40px;
}

.ticker-item i {
    color: var(--accent);
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ===== SECTION BASE ===== */
.section {
    padding: 90px 5%;
}

.section-center {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    background: rgba(26, 86, 219, 0.08);
    color: var(--primary);
    padding: 5px 16px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--dark);
}

.section-title span {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text);
    line-height: 1.7;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
}

/* ===== FEATURES ===== */
.features-section {
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.feature-card {
    padding: 32px;
    border-radius: 20px;
    background: white;
    border: 1px solid rgba(26, 86, 219, 0.08);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: left;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(26, 86, 219, 0.08);
    border-color: rgba(26, 86, 219, 0.2);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.feature-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark);
}

.feature-desc {
    font-size: 0.9rem;
    color: var(--text);
    line-height: 1.65;
}

/* ===== HOW IT WORKS ===== */
.how-section {
    background: linear-gradient(150deg, #f8faff 0%, #eef4ff 100%);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 35px;
    left: calc(12.5% + 28px);
    right: calc(12.5% + 28px);
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    z-index: 0;
}

.step-item {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--gradient);
    color: white;
    font-size: 1.4rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 10px 30px rgba(26, 86, 219, 0.3);
}

.step-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--dark);
}

.step-desc {
    font-size: 0.875rem;
    color: var(--text);
    line-height: 1.6;
}

/* ===== PLANS ===== */
.plans-section {
    background: white;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: stretch;
}

.plan-card {
    border-radius: 24px;
    padding: 40px 32px;
    border: 2px solid rgba(26, 86, 219, 0.1);
    transition: all 0.3s;
    position: relative;
    background: white;
}

.plan-card.featured {
    background: var(--gradient);
    border-color: transparent;
    box-shadow: 0 30px 80px rgba(26, 86, 219, 0.35);
    transform: scale(1.04);
}

.plan-card:not(.featured):hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(26, 86, 219, 0.12);
}

.plan-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--warning);
    color: white;
    padding: 4px 18px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    white-space: nowrap;
}

.plan-name {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    color: var(--primary);
}

.plan-card.featured .plan-name {
    color: rgba(255, 255, 255, 0.8);
}

.plan-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 8px;
}

.plan-currency {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
}

.plan-value {
    font-size: 3rem;
    font-weight: 900;
    color: var(--dark);
    line-height: 1;
}

.plan-period {
    font-size: 0.875rem;
    color: var(--text);
    font-weight: 500;
}

.plan-card.featured .plan-currency,
.plan-card.featured .plan-value,
.plan-card.featured .plan-period {
    color: white;
}

.plan-desc {
    font-size: 0.875rem;
    color: var(--text);
    margin-bottom: 28px;
    line-height: 1.5;
}

.plan-card.featured .plan-desc {
    color: rgba(255, 255, 255, 0.75);
}

.plan-divider {
    height: 1px;
    background: rgba(26, 86, 219, 0.1);
    margin-bottom: 24px;
}

.plan-card.featured .plan-divider {
    background: rgba(255, 255, 255, 0.2);
}

.plan-features {
    list-style: none;
    margin-bottom: 32px;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--dark);
    margin-bottom: 12px;
}

.plan-card.featured .plan-features li {
    color: white;
}

.plan-features li i {
    color: var(--success);
    font-size: 0.95rem;
    flex-shrink: 0;
}

.plan-card.featured .plan-features li i {
    color: rgba(255, 255, 255, 0.9);
}

.plan-features li.disabled {
    opacity: 0.4;
}

.plan-features li.disabled i {
    color: var(--text) !important;
}

.btn-plan {
    display: block;
    text-align: center;
    padding: 14px;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-plan-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-plan-outline:hover {
    background: var(--primary);
    color: white;
}

.btn-plan-white {
    background: white;
    color: var(--primary);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.btn-plan-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
    background: linear-gradient(150deg, #0f172a 0%, #1e293b 100%);
}

.testimonials-section .section-tag {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
}

.testimonials-section .section-title {
    color: white;
}

.testimonials-section .section-subtitle {
    color: rgba(255, 255, 255, 0.6);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 28px;
    transition: all 0.3s;
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
}

.testimonial-stars {
    color: var(--warning);
    font-size: 0.9rem;
    margin-bottom: 14px;
}

.testimonial-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
}

.testimonial-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: white;
}

.testimonial-role {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ===== FAQ ===== */
.faq-section {
    background: var(--light);
}

.faq-list {
    max-width: 750px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 14px;
    margin-bottom: 12px;
    overflow: hidden;
    border: 1px solid rgba(26, 86, 219, 0.06);
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: rgba(26, 86, 219, 0.15);
}

.faq-question {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark);
    user-select: none;
}

.faq-question i {
    color: var(--primary);
    transition: transform 0.3s;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.faq-item.open .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.open .faq-answer {
    /* Controlado via JS scrollHeight para evitar quebra de textos */
}

.faq-answer p {
    padding: 0 24px 20px;
    font-size: 0.9rem;
    color: var(--text);
    line-height: 1.7;
}

/* ===== CONTACT ===== */
.contact-section {
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h3 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--dark);
}

.contact-info p {
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 32px;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-item-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(26, 86, 219, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 18px;
    flex-shrink: 0;
}

.contact-item-text strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--dark);
}

.contact-item-text span {
    font-size: 0.875rem;
    color: var(--text);
}

.contact-form {
    background: var(--light);
    border-radius: 20px;
    padding: 36px;
}

.contact-form h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--dark);
}

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

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--mid);
    margin-bottom: 6px;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid rgba(26, 86, 219, 0.1);
    border-radius: 10px;
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    background: white;
    transition: border-color 0.2s;
    outline: none;
}

.form-control:focus {
    border-color: var(--primary);
}

.form-control::placeholder {
    color: #adb5bd;
}

textarea.form-control {
    resize: vertical;
    min-height: 110px;
}

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

.btn-submit {
    width: 100%;
    padding: 14px;
    background: var(--gradient);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(26, 86, 219, 0.35);
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(26, 86, 219, 0.45);
}

#form-msg {
    margin-top: 12px;
    font-size: 0.875rem;
    font-weight: 600;
    text-align: center;
}

/* ===== CTA BANNER ===== */
.cta-section {
    padding: 90px 5%;
    background: var(--gradient);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.cta-section h2 {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 900;
    color: white;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 36px;
    position: relative;
    z-index: 1;
}

.cta-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.btn-cta-white {
    padding: 15px 36px;
    background: white;
    color: var(--primary);
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.btn-cta-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.btn-cta-outline {
    padding: 15px 36px;
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-cta-outline:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.1);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark);
    padding: 60px 5% 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 16px 0 24px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.2s;
    font-size: 0.9rem;
}

.footer-social a:hover {
    background: var(--primary);
    color: white;
}

.footer-col h5 {
    color: white;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-bottom-links a:hover {
    color: white;
}

/* ===== WHATSAPP BTN ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    width: 58px;
    height: 58px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 26px;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    transition: all 0.3s;
    animation: wpp-bounce 3s ease infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.55);
}

@keyframes wpp-bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0 5%;
    max-height: 0;
    overflow: hidden;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 4px;
    box-shadow: 0 10px 30px rgba(26, 86, 219, 0.05);
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border-bottom: 1px solid rgba(26, 86, 219, 0.08);
}

.mobile-menu.active {
    max-height: 400px;
    padding: 20px 5%;
}

.mobile-menu a {
    padding: 12px 16px;
    text-decoration: none;
    color: var(--mid);
    font-weight: 500;
    border-radius: 10px;
    transition: all 0.2s;
}

.mobile-menu a:hover {
    background: rgba(26, 86, 219, 0.06);
    color: var(--primary);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-image {
        order: -1;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-grid::before {
        display: none;
    }

    .plans-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .plan-card.featured {
        transform: none;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {

    .nav-links,
    .nav-actions {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero {
        padding: 90px 5% 50px;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .hero-cta a {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .hero-stats {
        gap: 16px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .hero-floating-card {
        display: none;
    }
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: 30px;
    left: 30px;
    max-width: 420px;
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 20px;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.cookie-banner.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.cookie-content p {
    font-size: 0.85rem;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 16px;
}

.cookie-content p:last-child {
    margin-bottom: 0;
}

.cookie-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.btn-cookie-accept {
    padding: 12px 24px;
    background: var(--gradient);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    font-size: 0.85rem;
    flex: 1;
    text-transform: uppercase;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(26, 86, 219, 0.35);
}

.btn-cookie-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 86, 219, 0.45);
}

.btn-cookie-reject {
    padding: 12px 24px;
    background: #e2e8f0;
    color: #475569;
    border: none;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    font-size: 0.85rem;
    flex: 1;
    transition: background 0.3s;
}

.btn-cookie-reject:hover {
    background: #cbd5e1;
}

/* ===== DEMO MODAL ===== */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(5px);
}

.modal-content {
    background: #fff;
    border-radius: 12px;
    width: 100%;
    max-width: 600px;
    padding: 40px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    max-height: 90vh;
    overflow-y: auto;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 32px;
    color: #999;
    cursor: pointer;
    line-height: 1;
    transition: 0.3s;
}

.modal-close:hover {
    color: #333;
}

.modal-title {
    font-size: 1.25rem;
    font-weight: 500;
    color: #333;
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.4;
}

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

.modal-form-group label {
    display: block;
    font-size: 0.95rem;
    color: #111;
    margin-bottom: 8px;
    font-weight: 600;
}

.modal-input,
.modal-select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    color: #333;
    background: #fff;
    transition: all 0.3s ease;
}

.modal-input:focus,
.modal-select:focus {
    border-color: #1a56db;
    outline: none;
    box-shadow: 0 0 0 4px rgba(26, 86, 219, 0.1);
}

.btn-modal-submit {
    width: 100%;
    padding: 16px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 10px;
}

.btn-modal-submit:hover {
    background: var(--primary-dark);
}

.btn-modal-link {
    display: block;
    width: 100%;
    padding: 16px;
    background: var(--light);
    color: var(--primary);
    text-align: center;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    margin-top: 15px;
    transition: all 0.3s;
    border: 1px solid var(--primary-light);
}

.btn-modal-link:hover {
    background: var(--primary);
    color: var(--white);
}

@media (max-width: 768px) {
    .modal-content {
        padding: 30px 20px;
    }
}

@media (max-width: 768px) {
    .cookie-banner {
        bottom: 10px;
        left: 10px;
        right: 10px;
        max-width: calc(100% - 20px);
        padding: 24px;
    }
}

/* Swiper Image Fixes inside Hero Section */
.hero-swiper {
    aspect-ratio: 3/2;
    width: 100%;
}
.hero-swiper .swiper-slide {
    opacity: 0;
    transition: opacity 0.3s ease;
}
.hero-swiper .swiper-slide:first-child,
.hero-swiper .swiper-slide-active {
    opacity: 1 !important;
}
.hero-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    border-radius: 0 !important;
    box-shadow: none !important;
    border: none !important;
}

/* Fallback para quando não houver imagens de slider */
.hero-content.no-image {
    grid-template-columns: 1fr;
    text-align: center;
    justify-content: center;
}
.hero-content.no-image .hero-text {
    max-width: 800px;
    margin: 0 auto;
}
.hero-content.no-image .hero-cta {
    justify-content: center;
}
.hero-content.no-image .hero-stats {
    justify-content: center;
}