/* 
  Estilos baseados no design elegante e sobrio 
  Paleta: Grafite/Azul Escuro, Branco, Cinza Claro, Dourado/Amarelo Mudo
*/

:root {
    --bg-dark: #1C2331;
    --bg-darker: #131821;
    --bg-light: #ffffff;
    --bg-gray: #f5f5f7;
    
    --text-light: #ffffff;
    --text-gray-light: #b0b3b8;
    --text-dark: #1a1a1a;
    --text-gray-dark: #4a4a4a;
    
    --accent-gold: #cfaa6b;
    --accent-gold-hover: #b59258;
    --accent-green: #25D366; /* WhatsApp */
    
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;
    
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-light);
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 600;
    line-height: 1.2;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Buttons --- */
.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, #2c364c 0%, #1C2331 100%);
    color: var(--text-light);
    text-decoration: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    text-align: center;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    background: linear-gradient(135deg, #384560 0%, #242d3f 100%);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: transparent;
    color: var(--text-light);
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 500;
    border: 2px solid var(--accent-green);
    transition: var(--transition);
}

.btn-secondary:hover {
    background-color: var(--accent-green);
    color: white;
}

.pulse {
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* --- VSL Section --- */
.vsl {
    background-color: var(--bg-light);
    padding: 80px 0;
    text-align: center;
}

.vsl h2 {
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.vsl-subtitle {
    font-size: 1.15rem;
    color: var(--text-gray-dark);
    margin-bottom: 40px;
    font-style: italic;
}

.vsl-container {
    max-width: 900px;
    margin: 0 auto;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.vsl-cta {
    margin-top: 40px;
}

.vsl-sub-copy {
    margin-top: 25px;
    font-size: 1.05rem;
    color: var(--text-gray-dark);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.vsl-sub-copy strong {
    color: var(--text-dark);
    font-weight: 700;
}

.vsl-sub-copy em {
    font-size: 0.95rem;
    color: var(--accent-gold);
    font-style: italic;
}

/* --- Video Testimonials Section --- */
.video-testimonials {
    background-color: var(--bg-gray);
    padding: 80px 0;
    text-align: center;
}

.video-testimonials h2 {
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 40px;
}

.video-testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.static-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 800px;
    margin: 40px auto 0;
}

.testimonial-img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    object-fit: cover;
}

/* --- Process Section --- */
.process {
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 100px 0;
    position: relative;
}

.process::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at center, rgba(40,45,60,0.4) 0%, transparent 70%);
    pointer-events: none;
}

.process-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.process-header h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.process-steps-overview {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.divider {
    color: rgba(255,255,255,0.2);
    font-size: 1.5rem;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.process-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 10px;
    transition: var(--transition);
}

.process-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
    border-color: rgba(207, 170, 107, 0.3); /* gold subtle border */
}

.card-icon {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

.process-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-family: var(--font-sans);
}

.process-card p {
    color: var(--text-gray-light);
    font-size: 0.95rem;
}

/* --- Social Proof Section --- */
.social-proof {
    padding: 100px 0 0;
    background-color: var(--bg-light);
    text-align: center;
}

.social-proof h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.section-subtitle {
    color: var(--text-gray-dark);
    max-width: 600px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
}

.carousel-container {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
    padding: 20px 0 60px;
}

.carousel-container::before,
.carousel-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.carousel-container::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-light) 0%, rgba(255,255,255,0) 100%);
}

.carousel-container::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-light) 0%, rgba(255,255,255,0) 100%);
}

.carousel-track {
    display: flex;
    width: max-content;
}

.carousel-group {
    display: flex;
    gap: 30px;
    padding-right: 30px;
    animation: scroll-carousel 45s linear infinite; /* Animacao mais lenta (era 60s) */
    -webkit-animation: scroll-carousel 45s linear infinite;
    will-change: transform;
}

.carousel-group img {
    height: 450px;
    max-height: 60vh; /* Em telas menores, nao passa de 60% da altura da tela */
    max-width: 90vw; /* Garante que nao ultrapasse a tela */
    width: auto;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    flex-shrink: 0;
}

@-webkit-keyframes scroll-carousel {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    100% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
}

@keyframes scroll-carousel {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    100% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
}

/* --- Offer Section --- */
.offer {
    background: var(--bg-dark); /* Changed from very dark #0d1117 para harmonizar */
    padding: 80px 0;
    color: var(--text-light);
}

.offer-container {
    max-width: 600px;
    margin: 0 auto;
}

.offer-copy {
    text-align: left;
    margin-bottom: 40px;
}

.offer-copy h3 {
    font-size: 2rem;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

.offer-copy p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 12px;
}

.offer-card {
    background: #1f2837; /* Dark navy background matching the screenshot */
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    margin: 0 auto;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.05);
}

.offer-card h2 {
    font-size: 1.2rem;
    color: #f1f5f9;
    font-weight: 400;
    margin-bottom: 10px;
}

.offer-divider {
    border: 0;
    border-top: 1px solid rgba(255,255,255,0.15);
    margin: 25px auto;
    width: 85%;
}

.old-price-pill {
    background: linear-gradient(180deg, rgba(255,255,255,0.55) 0%, rgba(255,255,255,0.3) 100%);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 12px 25px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.price-display {
    color: white;
    font-family: var(--font-sans);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
}

.price-display .installments {
    display: block;
    font-size: 2.8rem;
}

.price-display .new-price {
    display: block;
    font-size: 3.8rem;
}

.cash-price {
    color: #cbd5e1;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.btn-checkout {
    display: block;
    width: 100%;
    background: linear-gradient(180deg, #1872df 0%, #0d4bae 100%);
    color: white;
    text-decoration: none;
    padding: 18px 10px;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 500;
    border: 1px solid #3d92f5;
    border-bottom: 2px solid #e11f4d; /* Red bottom from print */
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    text-align: center;
    transition: filter 0.2s;
    line-height: 1.4;
}

.btn-checkout:hover {
    filter: brightness(1.1);
}

.offer-security {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    color: #cbd5e1;
    font-size: 0.9rem;
}

.offer-security i {
    font-size: 1.2rem;
    vertical-align: middle;
}

.security-separator {
    color: #475569;
    margin: 0 5px;
}

.doubts {
    margin-top: 50px;
    text-align: center;
}

.doubts h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-light);
}

.doubts p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
}

/* --- Final Offer Specifics --- */
.final-offer {
    background-color: var(--bg-gray); /* Contrast with the dark top offer */
    padding: 60px 0 100px;
}

.final-offer .offer-card {
    background: #1C2331; /* Use typical dark theme color instead of navy */
    box-shadow: 0 30px 60px rgba(0,0,0,0.25);
}

.final-offer-header {
    margin-bottom: 25px;
}

.final-offer-header h3 {
    font-size: 1.8rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.final-offer-header p {
    font-size: 1.2rem;
    color: var(--accent-gold);
    font-weight: 500;
}

.offer-benefits {
    list-style: none;
    text-align: left;
    margin: 0 auto 30px;
    max-width: 280px;
}

.offer-benefits li {
    color: #cbd5e1;
    font-size: 1.05rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.offer-benefits li i {
    color: var(--accent-green);
    font-size: 1.3rem;
}

.final-btn {
    background: linear-gradient(180deg, #25D366 0%, #1da851 100%);
    border-color: #21ba5a;
    border-bottom: 2px solid #147538;
}

.final-btn:hover {
    filter: brightness(1.1);
}

/* --- About Section --- */
.about {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.about-text p {
    margin-bottom: 20px;
    color: var(--text-gray-dark);
    font-size: 1.05rem;
}

/* --- WhatsApp Contact CTA (Above FAQ) --- */
.whatsapp-box-section {
    background-color: #1f2837; /* Dark navy background matching the design */
    padding: 60px 0 40px; /* Connects smoothly with FAQ below */
}

.whatsapp-box-content {
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-light);
}

.whatsapp-box-content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    font-family: var(--font-serif);
    font-weight: 600;
}

.whatsapp-box-content p {
    font-size: 1.05rem;
    color: #cbd5e1;
    margin-bottom: 30px;
    line-height: 1.5;
}

.whatsapp-box-content p strong {
    color: var(--text-light);
    font-weight: 600;
}

.btn-whatsapp-card {
    display: inline-flex;
    align-items: center;
    background-color: #e6f0fa; /* Light bluish gray */
    color: #1a273b; /* Dark navy text */
    text-decoration: none;
    padding: 15px 25px;
    border-radius: 12px;
    gap: 15px;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.btn-whatsapp-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
}

.btn-whatsapp-card i {
    font-size: 2.5rem;
    color: #1f2e46;
}

.btn-whatsapp-card .btn-texts {
    display: flex;
    flex-direction: column;
}

.btn-whatsapp-card .wpp-title {
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: -0.2px;
}

.btn-whatsapp-card .wpp-sub {
    font-size: 0.85rem;
    color: #475569;
    font-weight: 500;
}

/* --- FAQ Section --- */
.faq {
    background-color: var(--bg-gray);
    padding: 80px 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq h2 {
    text-align: center;
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 40px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    overflow: hidden;
}

.faq-item summary {
    padding: 20px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1.1rem;
    cursor: pointer;
    list-style: none; /* remove default arrow */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--accent-gold);
    transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
    content: '−';
}

.faq-answer {
    padding: 0 20px 20px;
    color: var(--text-gray-dark);
    line-height: 1.6;
}

/* --- Footer --- */
footer {
    background-color: var(--bg-darker);
    color: #888;
    padding: 40px 0;
    font-size: 0.9rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copy p {
    margin-bottom: 5px;
}

.footer-links a {
    color: #888;
    text-decoration: none;
    margin-left: 20px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--text-light);
}

/* --- Responsive Design --- */
@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps-overview {
        flex-direction: column;
        gap: 10px;
    }
    
    .divider {
        display: none;
    }
}

@media (max-width: 768px) {
    .static-testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .price-display .installments {
        font-size: 2.2rem;
    }

    .price-display .new-price {
        font-size: 3rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links a {
        margin: 0 10px;
    }

    /* Reduz o tamanho no mobile para nao ocupar a largura total e ficar legivel */
    .carousel-group img {
        height: auto;        /* Deixa que a altura se ajuste a largura limite */
        max-height: 350px;   /* Altura limite menor */
        max-width: 75vw;     /* Limita a 75% da largura da tela, assim da pra ver as beiradas do proximo deposito */
    }
}
