/* Pricing Plans Styles */
.pricing-plans {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.plan-card {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    cursor: pointer;
}

.plan-card.selected {
    border-color: var(--lumus-green);
    background-color: #f0fdf4;
    box-shadow: 0 0 0 4px rgba(148, 179, 46, 0.2);
    transform: translateY(-5px);
}

.plan-card.selected::after {
    content: '\f00c';
    /* Font Awesome check icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--lumus-green);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.plan-mensal {
    border-color: #6c757d;
}

.plan-anual {
    border-color: var(--lumus-blue);
    background: linear-gradient(135deg, #f8f9fa, #e3f2fd);
}

.plan-bienal {
    border-color: var(--lumus-green);
    background: linear-gradient(135deg, #f8fff8, #e8f5e8);
    box-shadow: 0 6px 20px rgba(148, 179, 46, 0.2);
}

.plan-badge {
    position: absolute;
    top: -10px;
    right: 10px;
    background: var(--lumus-red);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(255, 89, 89, 0.3);
}

.plan-header {
    margin-bottom: 15px;
}

.plan-name {
    display: block;
    font-size: 0.9rem;
    font-weight: bold;
    color: #495057;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.plan-price {
    display: block;
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--lumus-blue);
}

.plan-period {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: normal;
}

.plan-annual-value {
    font-size: 0.85rem;
    color: #9ca3af;
    /* A discreet gray */
    margin-top: 4px;
    font-weight: normal;
}

.price-main h3 {
    margin-bottom: 25px;
}

.plan-details {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #e9ecef;
}

.plan-cadastro {
    display: block;
    font-size: 0.85rem;
    color: #6c757d;
}

.discount-highlight {
    background: linear-gradient(135deg, var(--lumus-green), #a8c539);
    color: white;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    font-weight: bold;
    font-size: 0.95rem;
    box-shadow: 0 4px 16px rgba(148, 179, 46, 0.3);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        box-shadow: 0 4px 16px rgba(148, 179, 46, 0.3);
    }

    to {
        box-shadow: 0 6px 24px rgba(148, 179, 46, 0.5);
    }
}

/* Cores da logo Lumus */
:root {
    --lumus-blue: #085791;
    --lumus-yellow: #F2AB17;
    --lumus-red: #FF5959;
    --lumus-green: #94B32E;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.4;
    color: #333;
    margin: 0;
    padding: 0;
}

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

/* Urgency Bar */
.urgency-bar {
    background: linear-gradient(135deg, var(--lumus-red), #e04545);
    color: white;
    text-align: center;
    padding: 2px;
    font-weight: bold;
    font-size: 13px;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.8;
    }
}

/* Header */
.header {
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Botão do menu móvel */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1002;
    margin-left: auto;
    /* Empurra o botão para a direita */
}

.mobile-menu-btn:focus-visible {
    outline: 3px solid var(--lumus-yellow);
    outline-offset: 4px;
    border-radius: 8px;
}

.menu-line {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #333;
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Estilos do menu de navegação */
.nav {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1002;
    gap: 30px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Estilos para o menu móvel aberto */
.nav.active .nav-links {
    transform: translateX(0);
    right: 0;
}

.nav.active .nav-overlay {
    display: block;
    opacity: 1;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.logo-text {
    font-size: 24px;
    font-weight: bold;
    color: #1f2937;
}

.logo-subtitle {
    font-size: 10px;
    color: #059669;
    font-weight: bold;
}

.nav a {
    text-decoration: none;
    color: #000000;
    font-weight: 600;
    transition: color 0.3s;
}

.nav a:hover {
    color: var(--lumus-blue);
}

.nav a:focus-visible {
    outline: 2px solid var(--lumus-yellow);
    outline-offset: 3px;
    border-radius: 6px;
}

.cta-button {
    background: linear-gradient(135deg, var(--lumus-green), #7a9e28);
    color: white;
    padding: 12px 24px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(148, 179, 46, 0.4);
}

.cta-button:focus-visible {
    outline: 3px solid var(--lumus-yellow);
    outline-offset: 3px;
    box-shadow: 0 0 0 4px rgba(242, 171, 23, 0.35);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #fef9f0, #fff8e7, #f0f9eb);
    padding: 30px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(242, 171, 23, 0.08), rgba(255, 89, 89, 0.06), rgba(148, 179, 46, 0.06));
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1.1;
    margin-bottom: 15px;
    color: #1f2937;
}

.hero-text .highlight-red {
    color: var(--lumus-red);
}

.hero-text .highlight-orange {
    color: var(--lumus-yellow);
}

.hero-text .hero-subline {
    font-size: 1.05rem;
    margin-bottom: 15px;
    color: #374151;
    line-height: 1.5;
}

.urgency-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 89, 89, 0.12);
    color: var(--lumus-red);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: bold;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #4b5563;
}

.hero-text .problems {
    background: rgba(255, 89, 89, 0.08);
    border-left: 4px solid var(--lumus-red);
    padding: 12px;
    margin: 15px 0;
    border-radius: 0 8px 8px 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.hero-text .solution {
    background: rgba(148, 179, 46, 0.12);
    border-left: 4px solid var(--lumus-green);
    padding: 12px;
    margin: 15px 0;
    border-radius: 0 8px 8px 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 20px 0;
}

.btn-primary {
    background: linear-gradient(135deg, var(--lumus-yellow), #d99414);
    color: #1f2937;
    padding: 12px 15px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 8px 25px rgba(242, 171, 23, 0.35);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(242, 171, 23, 0.45);
}

.btn-primary:focus-visible {
    outline: 3px solid var(--lumus-blue);
    outline-offset: 3px;
    box-shadow: 0 0 0 4px rgba(8, 87, 145, 0.35);
}

.btn-secondary {
    border: 2px solid var(--lumus-blue);
    color: var(--lumus-blue);
    padding: 20px 40px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: var(--lumus-blue);
    color: white;
}

.btn-secondary:focus-visible {
    outline: 3px solid var(--lumus-yellow);
    outline-offset: 3px;
    box-shadow: 0 0 0 4px rgba(242, 171, 23, 0.35);
}

.price-highlight {
    background: rgba(242, 171, 23, 0.15);
    border: 2px solid var(--lumus-yellow);
    border-radius: 8px;
    padding: 12px;
    text-align: center;
    margin: 15px 0;
    font-size: 0.9rem;
}

.price-highlight p {
    color: #78350f;
    font-weight: bold;
    margin: 0;
}

/* Phone Mockup */
.phone-mockup {
    position: relative;
    max-width: 330px;
    margin: 0 auto;
}

.phone-frame {
    background: #000;
    border-radius: 50px;
    padding: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.phone-screen {
    background: rgb(0, 0, 0);
    border-radius: 42px;
    overflow: hidden;
    position: relative;
}

.phone-notch {
    background: #1f2937;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notch-indicator {
    width: 60px;
    height: 4px;
    background: #6b7280;
    border-radius: 2px;
}

.phone-content {
    min-height: 600px;
}

.menu-header {
    text-align: center;
    margin-bottom: 30px;
}

.menu-header h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 5px;
}

.menu-item {
    background: white;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.menu-category {
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.menu-items {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.menu-item-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.item-name {
    color: #4b5563;
}

.item-price {
    font-weight: bold;
    color: var(--lumus-green);
}

.qr-badge {
    position: absolute;
    bottom: -20px;
    right: -80px;
    background: white;
    border-radius: 20px;
    padding: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 4px solid var(--lumus-green);
}

.qr-icon {
    font-size: 60px;
    color: var(--lumus-green);
}

.qr-text {
    font-size: 10px;
    text-align: center;
    margin-top: 5px;
    font-weight: bold;
    color: var(--lumus-green);
}

.success-badge {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--lumus-green);
    color: white;
    border-radius: 25px;
    padding: 10px 15px;
    font-size: 12px;
    font-weight: bold;
    animation: bounce-centered 2s infinite;
    text-decoration: none;
    white-space: nowrap;
    z-index: 10;
}

@keyframes bounce-centered {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes bounce {

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

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* Benefits Section */
.benefits {
    background: linear-gradient(135deg, var(--lumus-blue), #0a3d63);
    color: white;
    padding: 35px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 25px;
}

.section-header h2 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    color: #fff;
    line-height: 1.2;
}

.section-header .highlight-yellow {
    color: var(--lumus-yellow);
}

.section-header p {
    font-size: 1.2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 25px;
    align-items: stretch;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.13);
    border-radius: 8px;
    padding: 12px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    height: 100%;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 26px;
    color: white;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.icon-green {
    background: linear-gradient(135deg, var(--lumus-green), #7a9e28);
}

.icon-blue {
    background: linear-gradient(135deg, var(--lumus-blue), #063a5c);
}

.icon-orange {
    background: linear-gradient(135deg, var(--lumus-yellow), #d99414);
}

.icon-purple {
    background: linear-gradient(135deg, #6b5b95, #5a4d7a);
}

.icon-red {
    background: linear-gradient(135deg, var(--lumus-red), #e04545);
}

.icon-indigo {
    background: linear-gradient(135deg, var(--lumus-blue), #0a3d63);
}

.icon-yellow {
    background: linear-gradient(135deg, var(--lumus-yellow), #d99414);
}

.icon-pink {
    background: linear-gradient(135deg, #c44569, #a63855);
}

.benefit-card h3 {
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: white;
    text-align: center;
    width: 100%;
    line-height: 1.3;
}

.benefit-card p {
    color: #ffffff;
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 0;
    text-align: center;
    max-width: 100%;
    margin: 0;
}

.warning-box {
    background: linear-gradient(135deg, var(--lumus-red), #e04545);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.warning-box h3 {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.warning-box p {
    font-size: 1.1rem;
    margin-bottom: 25px;
}

/* How It Works */
.how-it-works {
    background: linear-gradient(135deg, var(--lumus-blue), #063a5c);
    color: white;
    padding: 35px 0;
}

.process-badge {
    display: inline-flex;
    align-items: center;
    background: var(--lumus-yellow);
    color: #1f2937;
    padding: 12px 25px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 25px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.step {
    text-align: center;
    position: relative;
}

.step-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--lumus-yellow), #d99414);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 45px;
    color: #1f2937;
    box-shadow: 0 15px 30px rgba(242, 171, 23, 0.35);
    position: relative;
}

.step-time {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--lumus-green);
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 10px;
    font-weight: bold;
}

.step h3 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 12px;
    color: var(--lumus-yellow);
}

/* Testimonials / Pricing / FAQ section titles */
.testimonial-head-dark {
    color: #1f2937;
}

.testimonial-head-accent {
    color: var(--lumus-green);
}

.testimonial-sub {
    color: #4b5563;
}

.pricing-head-dark {
    color: #1f2937;
}

.pricing-head-accent {
    color: var(--lumus-red);
}

.pricing-sub {
    color: #4b5563;
}

.faq-head-dark {
    color: #1f2937;
}

.faq-head-accent {
    color: var(--lumus-blue);
}

.faq-sub {
    color: #4b5563;
}

.footer-icon-green {
    color: var(--lumus-green);
}

.footer-icon-yellow {
    color: var(--lumus-yellow);
}

.step p {
    color: #bfdbfe;
    line-height: 1.6;
}

.results-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.result-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
}

.result-number {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.result-label {
    font-size: 0.9rem;
    color: #000000;
}

/* Testimonials */
.testimonials {
    background: white;
    padding: 35px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial {
    background: linear-gradient(135deg, #f0fdf4, #f0f9eb);
    border-radius: 12px;
    padding: 20px;
    position: relative;
    border: 2px solid var(--lumus-green);
    transition: all 0.3s;
}

.testimonial:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--lumus-green);
    color: white;
    padding: 8px 20px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: bold;
}

.segment-icon {
    font-size: 3rem;
    color: var(--lumus-yellow);
    margin: 20px 0;
    text-align: center;
}

.quote-icon {
    font-size: 30px;
    color: var(--lumus-blue);
    margin-bottom: 20px;
}

.stars {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.star {
    color: var(--lumus-yellow);
    font-size: 20px;
}

.testimonial-text {
    color: #4b5563;
    margin-bottom: 15px;
    line-height: 1.5;
    font-weight: 500;
    font-size: 0.9rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--lumus-blue), #063a5c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

.author-info h4 {
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 2px;
}

.author-info p {
    color: #6b7280;
    font-size: 0.9rem;
}

.testimonial-savings {
    background: rgba(148, 179, 46, 0.15);
    border-radius: 10px;
    padding: 15px;
    text-align: center;
}

.testimonial-savings p {
    color: var(--lumus-green);
    font-weight: bold;
    font-size: 0.9rem;
    margin: 0;
}

.social-proof {
    background: linear-gradient(135deg, var(--lumus-blue), #0a3d63);
    border-radius: 20px;
    padding: 40px;
    color: white;
    text-align: center;
}

.social-proof h3 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 30px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.stat-item {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 20px;
}

.stat-icon {
    font-size: 30px;
    color: var(--lumus-yellow);
    margin-bottom: 10px;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: #bfdbfe;
}

/* Pricing */
.pricing {
    background: linear-gradient(135deg, #fef2f2, #fed7aa);
    padding: 35px 0;
}

.pricing-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 89, 89, 0.12);
    color: var(--lumus-red);
    padding: 12px 25px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 25px;
    animation: pulse 2s infinite;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.comparison-card {
    border-radius: 20px;
    padding: 30px;
    border: 2px solid;
}

.comparison-bad {
    background: #fef2f2;
    border-color: #fca5a5;
}

.comparison-good {
    background: #f0fdf4;
    border-color: #86efac;
    position: relative;
}

.best-choice-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--lumus-green);
    color: white;
    padding: 8px 20px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: bold;
}

.comparison-title {
    font-size: 1.3rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
}

.comparison-bad .comparison-title {
    color: var(--lumus-red);
}

.comparison-good .comparison-title {
    color: var(--lumus-green);
}

.comparison-list {
    list-style: none;
}

.comparison-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 12px;
    color: #4b5563;
    flex-wrap: nowrap;
}

.comparison-list li strong {
    white-space: nowrap;
    flex-shrink: 0;
}

.comparison-bad .comparison-list li::before {
    content: '✗';
    width: 25px;
    height: 25px;
    background: var(--lumus-red);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    flex-shrink: 0;
}

.comparison-good .comparison-list li::before {
    content: '✓';
    width: 25px;
    height: 25px;
    background: var(--lumus-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    flex-shrink: 0;
}

.pricing-card {
    background: linear-gradient(135deg, var(--lumus-blue), #063a5c);
    border-radius: 30px;
    box-shadow: 0 25px 50px rgba(37, 99, 235, 0.3);
    overflow: hidden;
    position: relative;
}

.pricing-header {
    background: var(--lumus-yellow);
    color: #1f2937;
    text-align: center;
    padding: 15px;
    font-weight: bold;
}

.pricing-content {
    padding: 10px 25px;
    text-align: center;
    color: white;
}

.pricing-icon {
    font-size: 80px;
    color: var(--lumus-yellow);
}

.pricing-title {
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.pricing-subtitle {
    font-size: 1.1rem;
    color: #bfdbfe;
    margin-bottom: 30px;
}

.price-period {
    font-size: 1.2rem;
    color: #bfdbfe;
}

.price-old-label {
    font-size: 1rem;
    color: #bfdbfe;
}

.urgency-counter {
    background: var(--lumus-red);
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 40px;
}

.urgency-counter h4 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.counter-number {
    font-size: 4rem;
    font-weight: bold;
    color: var(--lumus-yellow);
    margin-bottom: 10px;
}

.counter-label {
    font-size: 1.2rem;
}

.guarantee {
    background: rgba(242, 171, 23, 0.15);
    border: 2px solid var(--lumus-yellow);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    margin-top: 40px;
}

.guarantee p {
    color: #92400e;
    font-weight: bold;
    font-size: 1.1rem;
    margin: 0;
}

/* FAQ */
.faq {
    background: linear-gradient(135deg, #f9fafb, #dbeafe);
    padding: 35px 0;
}

.faq-list {
    margin-bottom: 40px;
}

.faq-item {
    border: 2px solid #bfdbfe;
    border-radius: 20px;
    margin-bottom: 15px;
    overflow: hidden;
    background: white;
    transition: all 0.3s;
}

.faq-item:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 12px;
    text-align: left;
    font-size: 1rem;
    font-weight: bold;
    color: #1f2937;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.faq-question:hover {
    background: #dbeafe;
}

.faq-question:focus-visible {
    outline: 3px solid var(--lumus-yellow);
    outline-offset: 3px;
    border-radius: 12px;
}

.faq-icon {
    font-size: 24px;
    color: var(--lumus-blue);
    transition: transform 0.3s;
}

.faq-answer {
    padding: 5px 12px 12px;
    color: #4b5563;
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.5;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.final-warning {
    background: linear-gradient(135deg, var(--lumus-red), #e04545);
    color: white;
    border-radius: 20px;
    padding: 15px 0px 30px 0px;
    text-align: center;
}

.final-warning h3 {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.final-warning p {
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.remaining-spots {
    color: var(--lumus-yellow);
    margin-top: 20px;
    font-weight: bold;
}

/* Footer */
.footer {
    background: linear-gradient(180deg, var(--lumus-blue), #063a5c);
    color: white;
    padding: 30px 0 0px;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
    transition: opacity 0.3s;
}

.footer-logo:hover .footer-logo-img {
    opacity: 0.9;
}

.footer-cta {
    background: linear-gradient(135deg, var(--lumus-red), #e04545);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    margin-bottom: 40px;
}

.footer-cta h3 {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.footer-cta p {
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h3 {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 20px;
}

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

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.footer-section ul li a:focus-visible {
    outline: 2px solid var(--lumus-yellow);
    outline-offset: 3px;
    border-radius: 6px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
}

.contact-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-green {
    color: var(--lumus-green);
}

.contact-blue {
    color: #3b82f6;
}

.contact-red {
    color: #ef4444;
}

.support-info {
    color: var(--lumus-green);
    font-weight: bold;
    margin-top: 20px;
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: #374151;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.social-link:hover {
    background: var(--lumus-blue);
    transform: translateY(-2px);
}

.whatsapp-button {
    background: var(--lumus-green);
    color: white;
    padding: 12px 25px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    justify-content: center;
    transition: all 0.3s;
}

.whatsapp-button:hover {
    background: #15803d;
}

.whatsapp-button:focus-visible {
    outline: 3px solid var(--lumus-yellow);
    outline-offset: 3px;
    box-shadow: 0 0 0 4px rgba(242, 171, 23, 0.35);
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

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

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

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

.footer-links a:focus-visible {
    outline: 2px solid var(--lumus-yellow);
    outline-offset: 3px;
    border-radius: 6px;
}

.footer-tagline {
    text-align: center;
    color: #9ca3af;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 1200px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {

    /* Header Moderno Mobile */
    .header-content {
        justify-content: center;
        /* Centraliza a logo */
        position: relative;
        min-height: 60px;
    }

    .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1003;
        width: auto;
        justify-content: center;
    }

    .logo-img {
        height: 40px;
        /* Ajuste leve para mobile */
    }

    .mobile-menu-btn {
        display: block;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1005;
        margin: 0;
        background: white;
        border-radius: 8px;
        padding: 8px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    }

    /* Menu Full Screen Moderno */
    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 40px 20px;
        z-index: 1004;

        /* Estado inicial oculto */
        opacity: 0;
        visibility: hidden;
        transform: scale(0.95);
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);

        /* Reset de estilos anteriores */
        right: auto;
        box-shadow: none;
        overflow-y: auto;
    }

    /* Estado Ativo */
    .nav.active .nav-links {
        opacity: 1;
        visibility: visible;
        transform: scale(1);
        right: auto;
        /* Override do estilo antigo */
    }

    /* Links do Menu */
    .nav-links a {
        font-size: 1.5rem;
        font-weight: 800;
        color: #1f2937;
        margin: 15px 0;
        border-bottom: none;
        width: auto;
        text-align: center;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.3s ease;
    }

    /* Animação escalonada dos links */
    .nav.active .nav-links a {
        opacity: 1;
        transform: translateY(0);
    }

    .nav.active .nav-links a:nth-child(1) {
        transition-delay: 0.1s;
    }

    .nav.active .nav-links a:nth-child(2) {
        transition-delay: 0.15s;
    }

    .nav.active .nav-links a:nth-child(3) {
        transition-delay: 0.2s;
    }

    .nav.active .nav-links a:nth-child(4) {
        transition-delay: 0.25s;
    }

    .nav.active .nav-links a:nth-child(5) {
        transition-delay: 0.3s;
    }

    .nav-links a:hover {
        color: var(--lumus-green);
        transform: scale(1.1);
    }

    /* Botão CTA no Menu */
    .nav-links .cta-button {
        margin-top: 40px;
        width: 100%;
        max-width: 300px;
        justify-content: center;
        font-size: 1.1rem;
        padding: 16px;
        box-shadow: 0 10px 25px rgba(148, 179, 46, 0.3);
        border-radius: 12px;
    }

    /* Ícones nos links */
    .nav-links a i {
        margin-right: 10px;
        color: var(--lumus-yellow);
        font-size: 1.2rem;
    }

    /* Animação do botão do menu */
    .mobile-menu-btn.active .menu-line:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
        background-color: var(--lumus-red);
    }

    .mobile-menu-btn.active .menu-line:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active .menu-line:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
        background-color: var(--lumus-red);
    }

    /* Esconde o overlay antigo pois o menu já cobre tudo */
    .nav-overlay {
        display: none !important;
    }
}

/* Prevenir rolagem quando menu está aberto */
body.menu-open {
    overflow: hidden;
}

/* Estilos para a grid de features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.feature-section {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
}

.feature-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-section h4 {
    color: var(--lumus-yellow);
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-section h4 i {
    font-size: 1.2rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature-list li:before {
    content: '•';
    color: var(--lumus-yellow);
    font-weight: bold;
    font-size: 1.2rem;
}

.bonus-list li:before {
    color: #4ade80;
}

/* Estilos para a seção de comparação de preços */
.price-comparison {
    margin: 25px 0;
}

.price-vs {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 15px;
}

.price-main,
.price-old {
    flex: 1;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.price-main {
    background: #fff5c1;
    border: 1px solid #ffffff;
}

.price-old {
    background: #fef2f2;
    border: 1px solid #fca5a5;
}

.price-number {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--lumus-green);
    margin-bottom: 10px;
}

.price-old-number {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--lumus-red);
    text-decoration: line-through;
    margin-bottom: 10px;
}

.vs-text {
    font-weight: bold;
    font-size: 1.2rem;
    color: #ffffff;
}

.savings-highlight {
    background: var(--lumus-green);
    border: 1px solid #7a9e28;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    font-weight: bold;
    color: #000;
    margin-top: 15px;
}

.small {
    font-size: 0.85rem;
    color: #6b7280;
    margin-top: 8px;
    display: block;
}

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 25px;
    }

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

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

    .feature-section {
        padding: 15px;
        text-align: left;
    }

    .pricing-icon {
        font-size: 2.5rem;
        margin-bottom: 10px;
    }

    .pricing-title {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }

    .price-vs {
        flex-direction: column;
        gap: 15px;
    }

    .price-main,
    .price-old {
        width: 100%;
        padding: 15px;
    }

    .vs-text {
        margin: 5px 0;
    }

    .price-number {
        font-size: 1.5rem;
    }

    .price-old-number {
        font-size: 1.3rem;
    }

    .savings-highlight {
        padding: 12px 10px;
        font-size: 0.9rem;
    }

    .small {
        font-size: 0.8rem;
    }

    .urgency-badge {
        font-size: 14px;
        padding: 8px 12px;
        margin-bottom: 15px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

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

    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .comparison-card {
        padding: 20px 25px;
        margin: 0 10px;
    }

    .comparison-title {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }

    .comparison-list li {
        font-size: 0.9rem;
        margin-bottom: 10px;
        gap: 12px;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .comparison-list li strong {
        white-space: normal;
        margin-bottom: 4px;
        font-size: 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }

    .comparison-bad .comparison-list li::before,
    .comparison-good .comparison-list li::before {
        display: none;
    }

    .comparison-list li strong::before {
        content: '✗';
        width: 22px;
        height: 22px;
        background: var(--lumus-red);
        color: white;
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 11px;
        font-weight: bold;
        margin-right: 8px;
    }

    .comparison-good .comparison-list li strong::before {
        content: '✓';
        background: var(--lumus-green);
    }

    .best-choice-badge {
        font-size: 11px;
        padding: 6px 16px;
        top: -12px;
    }

    .pricing-card {
        margin: 0 10px;
    }

    .benefit-card {
        margin: 0 10px;
    }

    .testimonial {
        margin: 0 10px;
    }

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

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

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

    .footer-links {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    /* Centralizar rodapé mobile */
    .footer-section {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-badges {
        justify-content: center;
    }

    .contact-item {
        justify-content: center;
    }

    .footer-section ul li {
        display: flex;
        justify-content: center;
    }
}

/* Utilities */
.text-center {
    text-align: center;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.hidden {
    display: none;
}



/* Slider Styles */
.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 12px;
}

.slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
}

.slide {
    min-width: 100%;
    height: 100%;
}

.slider-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
    z-index: 10;
}

.slider-btn:hover {
    background: rgba(0, 0, 0, 0.7);
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

.slider-dots {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s;
    border: none;
    padding: 0;
    appearance: none;
}

.dot:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 3px;
    box-shadow: 0 0 0 3px rgba(148, 179, 46, 0.6);
}

.dot.active {
    background-color: #fff;
}

/* Utility and refactor classes */
.logo-link {
    display: block;
}

.logo-img {
    height: 50px;
}

.icon-pad-right-5 {
    padding-right: 5px;
}

.icon-pad-right-10 {
    padding-right: 10px;
}

.hero-compact-features {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 14px;
    color: #000000;
    flex-wrap: wrap;
}

.hero-compact-feature {
    display: flex;
    align-items: center;
    gap: 8px;
}

.icon-brand-green {
    color: #94B32E;
}

.mb-25 {
    margin-bottom: 25px;
}

.plan-cadastro-highlight {
    color: #28a745;
    font-weight: bold;
}

.discount-highlight-strong {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    margin-top: 15px;
    font-weight: bold;
}

.pricing-footer-note {
    margin-top: 24px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
}

.footer-logo-link {
    display: inline-block;
    margin-bottom: 30px;
}

.footer-description {
    color: #d1d5db;
    margin-bottom: 20px;
}

.footer-badges {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-badge {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-badge-text {
    font-size: 14px;
    color: #d1d5db;
}

.icon-lumus-yellow {
    color: var(--lumus-yellow);
}

.icon-lumus-green {
    color: var(--lumus-green);
}

.icon-lumus-red {
    color: var(--lumus-red);
}

.icon-lumus-blue {
    color: var(--lumus-blue);
}

.footer-link-accent {
    color: #60a5fa;
}

.footer-contact-text {
    color: #d1d5db;
}

.footer-bottom-text {
    color: #d1d5db;
    font-size: 14px;
}

.footer-bottom-link {
    color: #d1d5db;
}

/* Contract Page */
.contract-hero {
    background: radial-gradient(1200px 600px at 10% -10%, rgba(242, 171, 23, 0.25), transparent 60%),
        radial-gradient(900px 500px at 110% 10%, rgba(148, 179, 46, 0.18), transparent 55%),
        linear-gradient(135deg, #ffffff, #f8fafc);
    padding: 28px 0 16px;
}

.contract-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 24px;
    align-items: start;
}

.contract-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(8, 87, 145, 0.08);
    color: var(--lumus-blue);
    padding: 10px 16px;
    border-radius: 999px;
    font-weight: 800;
    letter-spacing: 0.2px;
    margin-bottom: 14px;
}

.contract-title {
    font-size: 2rem;
    line-height: 1.15;
    color: #0f172a;
    margin-bottom: 10px;
}

.contract-subtitle {
    color: #334155;
    line-height: 1.6;
    margin-bottom: 16px;
    max-width: 62ch;
}

.contract-callouts {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.contract-callout {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 8px 22px rgba(2, 6, 23, 0.05);
}

.contract-callout i {
    color: var(--lumus-blue);
    margin-top: 2px;
}

.contract-actions {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(15, 23, 42, 0.10);
    border-radius: 18px;
    padding: 16px;
    box-shadow: 0 18px 40px rgba(2, 6, 23, 0.08);
    position: sticky;
    top: 84px;
}

.contract-btn {
    width: 100%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.contract-mini-note {
    margin-top: 10px;
    font-size: 12px;
    color: #64748b;
    line-height: 1.4;
}

.contract-section {
    padding: 26px 0;
}

.contract-section-header h2 {
    color: #0f172a;
}

.contract-form {
    background: white;
    border: 1px solid rgba(15, 23, 42, 0.10);
    border-radius: 18px;
    padding: 18px;
    box-shadow: 0 16px 45px rgba(2, 6, 23, 0.06);
}

.contract-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.field-full {
    grid-column: 1 / -1;
}

.field label {
    font-weight: 800;
    color: #0f172a;
    font-size: 13px;
}

.field-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.field-row label {
    margin: 0;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    padding: 12px 12px;
    border-radius: 12px;
    border: 1px solid rgba(15, 23, 42, 0.14);
    background: #ffffff;
    color: #0f172a;
    outline: none;
    transition: box-shadow 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.field input[readonly] {
    background: #f8fafc;
    border-color: rgba(15, 23, 42, 0.12);
}

.field input:disabled {
    background: #f8fafc;
    border-color: rgba(15, 23, 42, 0.12);
    color: #0f172a;
    opacity: 1;
}

.field textarea {
    resize: vertical;
}

.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible {
    border-color: rgba(8, 87, 145, 0.55);
    box-shadow: 0 0 0 4px rgba(8, 87, 145, 0.15);
}

.hint {
    color: #64748b;
    font-size: 12px;
}

.contract-form-actions {
    display: flex;
    gap: 10px;
    margin-top: 14px;
    flex-wrap: wrap;
}

.contract-link-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.contract-status {
    margin-top: 12px;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid transparent;
    color: #0f172a;
    font-weight: 700;
    min-height: 44px;
    display: flex;
    align-items: center;
}

.contract-status.is-ok {
    background: rgba(34, 197, 94, 0.10);
    border-color: rgba(34, 197, 94, 0.25);
}

.contract-status.is-warn {
    background: rgba(242, 171, 23, 0.14);
    border-color: rgba(242, 171, 23, 0.28);
}

.contract-status.is-err {
    background: rgba(239, 68, 68, 0.10);
    border-color: rgba(239, 68, 68, 0.25);
}

.contract-doc-wrap {
    background: linear-gradient(135deg, #f8fafc, #ffffff);
}

.contract-doc {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.10);
    border-radius: 18px;
    padding: 20px;
    box-shadow: 0 18px 55px rgba(2, 6, 23, 0.07);
    color: #0f172a;
}

.contract-doc-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding-bottom: 12px;
    border-bottom: 1px dashed rgba(15, 23, 42, 0.16);
    margin-bottom: 14px;
}

.contract-doc-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contract-doc-meta {
    color: #334155;
    font-size: 13px;
    line-height: 1.4;
}

.contract-doc-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.06);
    color: #0f172a;
    font-weight: 800;
    font-size: 12px;
    white-space: nowrap;
}

.contract-doc-title {
    text-align: center;
    font-weight: 900;
    margin: 14px 0 10px;
}

.contract-doc h4 {
    margin-top: 14px;
    margin-bottom: 8px;
    font-size: 1.05rem;
}

.contract-doc p {
    color: #334155;
    line-height: 1.65;
    margin-bottom: 10px;
}

.contract-muted {
    color: #64748b;
    font-size: 13px;
}

.contract-list {
    margin: 0 0 10px;
    padding-left: 18px;
    color: #334155;
}

.contract-list li {
    margin: 6px 0;
    line-height: 1.55;
}

.contract-hr {
    border: none;
    border-top: 1px dashed rgba(15, 23, 42, 0.18);
    margin: 16px 0;
}

.sign-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 16px;
}

.sign-box {
    border: 1px solid rgba(15, 23, 42, 0.10);
    border-radius: 16px;
    padding: 14px;
    background: rgba(255, 255, 255, 0.98);
}

.sign-label {
    font-weight: 900;
    color: #0f172a;
    font-size: 13px;
    margin-bottom: 8px;
}

.signature-pad {
    width: 100%;
    height: 220px;
    border-radius: 12px;
    border: 1px dashed rgba(15, 23, 42, 0.25);
    background: linear-gradient(180deg, #ffffff, #f8fafc);
}

.sign-actions {
    margin-top: 10px;
    display: flex;
    justify-content: flex-end;
}

.sign-btn {
    padding: 10px 12px;
}

.checks {
    margin-top: 10px;
    display: grid;
    gap: 8px;
}

.check {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: #334155;
    font-weight: 700;
    line-height: 1.4;
}

.check input {
    margin-top: 2px;
}

.contract-inline-check {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    width: fit-content;
    padding: 8px 10px;
    border-radius: 12px;
    background: rgba(15, 23, 42, 0.04);
    border: 1px solid rgba(15, 23, 42, 0.08);
    margin: 2px 0 6px;
    white-space: nowrap;
}

.contract-inline-check input {
    margin-top: 0;
}

.contract-inline-check input:focus-visible {
    outline: 3px solid var(--lumus-yellow);
    outline-offset: 3px;
    border-radius: 4px;
}

@media (max-width: 1024px) {
    .contract-hero-grid {
        grid-template-columns: 1fr;
    }

    .contract-actions {
        position: relative;
        top: 0;
    }
}

@media (max-width: 768px) {
    .contract-form-grid {
        grid-template-columns: 1fr;
    }

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

    .contract-title {
        font-size: 1.7rem;
    }
}

@media print {
    body {
        background: #ffffff !important;
    }

    .header,
    .contract-hero,
    #formulario,
    .contract-form,
    .section-header,
    .footer,
    #btnPrint,
    #btnReset,
    #btnUpdate,
    #btnFinalize,
    .contract-mini-note {
        display: none !important;
    }

    .contract-section {
        padding: 0 !important;
    }

    .contract-doc-wrap {
        background: #ffffff !important;
    }

    .contract-doc {
        box-shadow: none !important;
        border: none !important;
        padding: 0 !important;
    }

    a {
        text-decoration: none !important;
        color: #000 !important;
    }
}


.whatsapp-float {
            position: fixed;
            bottom: 30px;
            left: 30px;
            background-color: #25D366;
            color: white;
            padding: 12px 20px 12px 50px;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 500;
            box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
            z-index: 1000;
            display: flex;
            align-items: center;
            transition: all 0.3s ease-in-out;
            text-decoration: none;
            overflow: hidden;
        }

        .whatsapp-float:hover {
            background-color: #128C7E;
            transform: translateY(-3px);
            box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
        }

        .whatsapp-float i {
            position: absolute;
            left: 12px;
            font-size: 24px;
            background: rgba(255, 255, 255, 0.2);
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .whatsapp-text {
            margin-left: 5px;
            font-size: 15px;
            font-weight: 600;
            white-space: nowrap;
        }

        @media (max-width: 768px) {
            .whatsapp-float {
                padding: 10px 15px 10px 45px;
                font-size: 14px;
                bottom: 20px;
                left: 20px;
            }

            .whatsapp-float i {
                font-size: 22px;
                width: 32px;
                height: 32px;
                left: 8px;
            }

            .whatsapp-text {
                font-size: 14px;
            }
        }

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #085791;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #0a6db1;
    transform: translateY(-3px);
    color: white;
}

@media (max-width: 768px) {
    .back-to-top {
        width: 40px;
        height: 40px;
        bottom: 20px;
        right: 20px;
    }
}



 /* Estilos específicos para a política de privacidade */
        .privacy-header {
            background: linear-gradient(135deg, #085791 0%, #0a6db1 100%);
            color: white;
            padding: 5rem 0;
            margin-bottom: 3rem;
            text-align: center;
        }
        
        .privacy-content {
            max-width: 900px;
            margin: 0 auto 4rem;
            padding: 0 20px;
            line-height: 1.8;
        }
        
        .privacy-content h2 {
            color: #085791;
            margin: 3rem 0 1.5rem;
            font-weight: 700;
            font-size: 1.8rem;
            position: relative;
            padding-bottom: 10px;
        }
        
        .privacy-content h2:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, #FF5959, #F2AB17);
            border-radius: 2px;
        }
        
        .privacy-content h3 {
            color: #0a6db1;
            margin: 2.5rem 0 1rem;
            font-weight: 600;
            font-size: 1.4rem;
        }
        
        .privacy-content p, 
        .privacy-content li {
            color: #4a5568;
            margin-bottom: 1rem;
            font-size: 1.05rem;
        }
        
        .privacy-content ul {
            padding-left: 1.5rem;
            margin: 1rem 0;
        }
        
        .privacy-content li {
            margin-bottom: 0.5rem;
            position: relative;
            padding-left: 1.5rem;
        }
        
        .privacy-content li:before {
            content: '•';
            color: #FF5959;
            font-weight: bold;
            position: absolute;
            left: 0;
        }
        
        .last-update {
            font-size: 0.9rem;
            color: #718096;
            font-style: italic;
            margin-top: 1rem;
            display: block;
        }
        
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: #085791;
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
        }
        
        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }
        
        .back-to-top:hover {
            background: #0a6db1;
            transform: translateY(-3px);
            color: white;
        }
        
        @media (max-width: 768px) {
            .privacy-header {
                padding: 3rem 0;
            }
            
            .privacy-content h2 {
                font-size: 1.5rem;
            }
            
            .back-to-top {
                width: 40px;
                height: 40px;
                bottom: 20px;
                right: 20px;
            }
        }