/* ============================================
   NUTRALFIT LANDING PAGE - ESTILOS
   Design de Alta Conversão
   Cores: Dourado (#D4AF37) e Azul (#1E3A8A)
   ============================================ */

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

:root {
    --primary: #D4AF37;
    --secondary: #1E3A8A;
    --dark: #1a1a1a;
    --light: #F5F5F5;
    --white: #FFFFFF;
    --gray: #666666;
    --border: #E0E0E0;
    --success: #10B981;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.8rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.2rem;
    text-align: center;
}

h3 {
    font-size: 1.4rem;
}

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

.subtitle {
    text-align: center;
    color: var(--gray);
    font-size: 1rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   BOTÕES
   ============================================ */

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--dark);
}

.btn-primary:hover {
    background-color: #C9A227;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

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

.btn-secondary:hover {
    background-color: #152a5c;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(30, 58, 138, 0.4);
}

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

.btn-white:hover {
    background-color: var(--light);
    transform: translateY(-2px);
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.btn-comprar-header {
    background-color: var(--primary);
    color: var(--dark);
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.btn-comprar-header:hover {
    background-color: #C9A227;
    transform: scale(1.05);
}

/* ============================================
   HEADER
   ============================================ */

.header {
    background-color: var(--white);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -1px;
}

/* ============================================
   BANNER SCROLL
   ============================================ */

.banner-scroll {
    background: linear-gradient(90deg, var(--primary) 0%, #E5C158 100%);
    color: var(--dark);
    padding: 12px 0;
    overflow: hidden;
    font-weight: 600;
    font-size: 0.95rem;
}

.banner-text {
    animation: scroll-left 30s linear infinite;
    white-space: nowrap;
    display: inline-block;
    padding-left: 100%;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    background: linear-gradient(135deg, #f9f7f4 0%, #ffffff 100%);
    padding: 60px 0 80px;
}

.hero-badge {
    display: inline-block;
    background-color: var(--primary);
    color: var(--dark);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero h1 {
    margin-bottom: 1rem;
    color: var(--dark);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 2rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 3rem;
    max-width: 400px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--gray);
}

.hero-image {
    text-align: center;
    margin-top: 3rem;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* ============================================
   URGÊNCIA SECTION
   ============================================ */

.urgencia {
    padding: 20px 0;
    background-color: #FFF3CD;
}

.urgencia-box {
    background-color: #FFE69C;
    border-left: 4px solid var(--primary);
    padding: 15px 20px;
    border-radius: 6px;
    text-align: center;
    font-weight: 600;
    color: var(--dark);
}

/* ============================================
   BENEFÍCIOS SECTION
   ============================================ */

.beneficios {
    padding: 80px 0;
    background-color: var(--white);
}

.beneficios h2 {
    margin-bottom: 3rem;
}

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

.beneficio-card {
    background-color: var(--light);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary);
}

.beneficio-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.beneficio-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.beneficio-card h3 {
    color: var(--secondary);
    margin-bottom: 0.8rem;
}

.beneficio-card p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* ============================================
   PRICING SECTION
   ============================================ */

.pricing {
    padding: 80px 0;
    background: linear-gradient(135deg, #f9f7f4 0%, #ffffff 100%);
}

.pricing h2 {
    margin-bottom: 0.5rem;
}

.pricing-subtitle {
    margin-bottom: 3rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-bottom: 2rem;
}

.pricing-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border: 2px solid var(--border);
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--primary);
}

.destaque-card {
    border-color: var(--primary);
    border-width: 3px;
    transform: scale(1.08);
}

.destaque-card:hover {
    transform: scale(1.08) translateY(-10px);
}

.badge-melhor {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary);
    color: var(--dark);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
}

.pricing-card h3 {
    color: var(--secondary);
    margin-bottom: 0.5rem;
    font-size: 1.6rem;
}

.duracao {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.price-section {
    margin: 1.5rem 0;
}

.discount-badge {
    background-color: var(--success);
    color: var(--white);
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.price-new {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin: 0.5rem 0;
}

.price-installment {
    color: var(--gray);
    font-size: 0.9rem;
}

.pricing-card .btn {
    width: 100%;
    margin-top: 1rem;
}

.pricing-note {
    text-align: center;
    background-color: var(--light);
    padding: 15px;
    border-radius: 8px;
    font-weight: 600;
}

/* ============================================
   VOCÊ MAIS SECTION
   ============================================ */

.voce-mais {
    padding: 80px 0;
    background-color: var(--white);
}

.voce-mais-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.voce-mais-text h2 {
    text-align: left;
    color: var(--secondary);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.voce-mais-text p {
    color: var(--gray);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.voce-mais-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* ============================================
   AVALIAÇÕES SECTION
   ============================================ */

.avaliacoes {
    padding: 80px 0;
    background: linear-gradient(135deg, #f9f7f4 0%, #ffffff 100%);
}

.avaliacoes h2 {
    margin-bottom: 0.5rem;
}

.rating-box {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    margin: 2rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.rating-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary);
}

.rating-stars {
    font-size: 2rem;
    color: var(--primary);
    margin: 0.5rem 0;
}

.rating-box p {
    color: var(--gray);
    font-size: 1rem;
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

.depoimento-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.depoimento-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.depoimento-card img {
    width: 100%;
    height: auto;
    display: block;
}

/* ============================================
   INGREDIENTES SECTION
   ============================================ */

.ingredientes {
    padding: 80px 0;
    background-color: var(--white);
}

.ingredientes h2 {
    margin-bottom: 1rem;
}

.ingredientes-image {
    text-align: center;
    margin-top: 3rem;
}

.ingredientes-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* ============================================
   SEGURANÇA SECTION
   ============================================ */

.seguranca {
    padding: 80px 0;
    background: linear-gradient(135deg, #f9f7f4 0%, #ffffff 100%);
}

.seguranca h2 {
    margin-bottom: 1rem;
}

.seguranca-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

.seguranca-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.seguranca-card:hover {
    transform: translateY(-8px);
}

.seguranca-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.seguranca-card h3 {
    color: var(--secondary);
    margin-bottom: 0.8rem;
}

.seguranca-card p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* ============================================
   DESCONTOS SECTION
   ============================================ */

.descontos {
    padding: 80px 0;
    background-color: var(--white);
}

.desconto-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.desconto-item {
    background: linear-gradient(135deg, var(--primary) 0%, #E5C158 100%);
    color: var(--dark);
    padding: 25px 35px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.desconto-valor {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
}

.desconto-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
}

.seta {
    font-size: 2rem;
    color: var(--primary);
    font-weight: 800;
}

/* ============================================
   COMPRA SEGURA SECTION
   ============================================ */

.compra-segura {
    padding: 80px 0;
    background: linear-gradient(135deg, #f9f7f4 0%, #ffffff 100%);
}

.seguranca-compra-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

.seguranca-compra-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.seguranca-compra-card:hover {
    transform: translateY(-8px);
}

.seguranca-compra-card .icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.seguranca-compra-card h3 {
    color: var(--secondary);
    margin-bottom: 0.8rem;
}

.seguranca-compra-card p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* ============================================
   MODO DE USO SECTION
   ============================================ */

.modo-uso {
    padding: 80px 0;
    background-color: var(--white);
}

.modo-uso-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-top: 3rem;
}

.modo-uso-text h3 {
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

.modo-uso-text p {
    color: var(--gray);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.modo-uso-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* ============================================
   GARANTIA SECTION
   ============================================ */

.garantia {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, #E5C158 100%);
    color: var(--dark);
    text-align: center;
}

.garantia h2 {
    color: var(--dark);
    margin-bottom: 1rem;
}

.garantia .subtitle {
    color: var(--dark);
}

.garantia .btn {
    margin-top: 2rem;
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq {
    padding: 80px 0;
    background-color: var(--white);
}

.faq h2 {
    margin-bottom: 0.5rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 3rem auto 0;
}

.faq-item {
    background-color: var(--light);
    padding: 20px;
    border-radius: 8px;
    cursor: pointer;
    border-left: 4px solid var(--primary);
    transition: all 0.3s ease;
}

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

.faq-item summary {
    font-weight: 600;
    color: var(--secondary);
    user-select: none;
    padding: 10px;
}

.faq-item summary:hover {
    color: var(--primary);
}

.faq-item p {
    color: var(--gray);
    margin-top: 1rem;
    line-height: 1.8;
}

.faq-item[open] summary {
    color: var(--primary);
}

/* ============================================
   CTA FINAL SECTION
   ============================================ */

.cta-final {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--secondary) 0%, #0F2B5C 100%);
    color: var(--white);
    text-align: center;
}

.cta-final h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-final p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 60px 0 20px;
}

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

.footer-col h4 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.8;
}

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

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* ============================================
   RESPONSIVIDADE
   ============================================ */

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .voce-mais-content,
    .modo-uso-content {
        grid-template-columns: 1fr;
    }

    .voce-mais-text h2 {
        text-align: center;
    }

    .desconto-visual {
        flex-direction: column;
    }

    .seta {
        transform: rotate(90deg);
    }

    .destaque-card {
        transform: scale(1);
    }

    .destaque-card:hover {
        transform: scale(1) translateY(-10px);
    }

    .btn-comprar-header {
        padding: 8px 15px;
        font-size: 0.85rem;
    }

    .header-content {
        flex-direction: column;
        gap: 15px;
    }

    .cta-final h2 {
        font-size: 1.8rem;
    }
}

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

    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.3rem;
    }

    .hero {
        padding: 40px 0 60px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .btn-large {
        padding: 12px 30px;
        font-size: 1rem;
    }

    .beneficios,
    .pricing,
    .voce-mais,
    .avaliacoes,
    .ingredientes,
    .seguranca,
    .descontos,
    .compra-segura,
    .modo-uso,
    .garantia,
    .faq,
    .cta-final {
        padding: 40px 0;
    }

    .pricing-grid {
        gap: 15px;
    }

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

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

    .footer-content {
        gap: 20px;
    }

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

    .price-new {
        font-size: 2rem;
    }

    .rating-number {
        font-size: 2.5rem;
    }
}
