/* 
   Paleta de Cores:
   Bege: #FDF6EC
   Azul Claro: #A0D2EB
   Verde Suave: #AFE1AF
   Marrom Claro: #D2B48C
   Texto: #4A4A4A
   Destaque/Botão: #FF8C00 (Laranja para contraste)
   Rosa Oferta: #e91e63
   Verde Preço: #2e7d32
   Vermelho Desconto: #d32f2f
*/

:root {
    --bg-color: #FDF6EC;
    --primary-blue: #A0D2EB;
    --primary-green: #AFE1AF;
    --primary-brown: #D2B48C;
    --text-color: #4A4A4A;
    --accent-color: #FF8C00;
    --white: #FFFFFF;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease;
    --price-offer: #e91e63;
    --price-single: #2e7d32;
    --price-discount: #d32f2f;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-weight: 700;
    color: #333;
}

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

/* Navigation Header */
nav {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 800;
    color: var(--text-color);
    font-size: 1.1rem;
}

.logo img {
    width: 50px;
    height: 50px;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    transition: var(--transition);
}

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

/* Header / Hero */
header {
    padding: 40px 0 30px;
    text-align: center;
    background: linear-gradient(180deg, var(--primary-blue) 0%, var(--bg-color) 100%);
}

.hero-content h1 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #2c3e50;
    line-height: 1.3;
}

.hero-content p {
    font-size: 1rem;
    max-width: 700px;
    margin: 0 auto 20px;
    color: #555;
    line-height: 1.5;
}

/* Benefícios */
.benefits {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.benefit-item {
    background: var(--white);
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: var(--shadow);
}

/* Cards de Produtos */
.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 0;
}

.product-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.product-image {
    width: 100%;
    height: auto;
}

.product-image img {
    width: 100%;
    display: block;
}

.product-info {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-info h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.product-info p {
    margin-bottom: 25px;
    color: #666;
}

/* Estilos de Preços */
.price-tag {
    margin: 10px 0;
    font-family: 'Montserrat', sans-serif;
}

.old-price {
    text-decoration: line-through;
    color: #888;
    font-size: 0.9rem;
    margin-right: 8px;
}

.new-price {
    color: var(--price-offer);
    font-weight: 800;
    font-size: 1.4rem;
    display: inline-block;
    transition: transform 0.3s ease;
}

.single-price {
    color: var(--price-single);
    font-weight: 800;
    font-size: 1.4rem;
    display: inline-block;
}

.super-kit-price {
    background: var(--white);
    padding: 10px 20px;
    border-radius: 8px;
    display: inline-block;
    margin: 15px 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.super-kit-price .old-price {
    font-size: 1.1rem;
}

.super-kit-price .new-price {
    font-size: 2rem;
    color: var(--price-discount);
}

/* Animações de Preços */
@keyframes pulse-highlight {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); color: #ff0000; }
    100% { transform: scale(1); }
}

.animate-price {
    animation: pulse-highlight 1.5s infinite ease-in-out;
}

/* Efeito de entrada suave para os preços */
.price-reveal {
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.6s ease-out;
}

.price-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Botões */
.btn {
    display: inline-block;
    padding: 18px 30px;
    background-color: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 4px 10px rgba(255, 140, 0, 0.3);
    cursor: pointer;
    border: none;
    font-size: 1.1rem;
}

.btn:hover {
    background-color: #e67e00;
    transform: scale(1.02);
    box-shadow: 0 6px 15px rgba(255, 140, 0, 0.4);
}

/* Super Kit Section */
.super-kit {
    background-color: var(--primary-brown);
    padding: 80px 0;
    margin: 60px 0;
    color: var(--white);
    border-radius: 30px;
    text-align: center;
}

.super-kit h2 {
    color: var(--white);
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.super-kit-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.super-kit-image {
    max-width: 500px;
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.super-kit-info {
    max-width: 600px;
}

.badge {
    background: #ffeb3b;
    color: #333;
    padding: 5px 15px;
    border-radius: 5px;
    font-weight: 800;
    display: inline-block;
    margin-bottom: 15px;
}

.super-kit ul {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
    display: inline-block;
}

.super-kit ul li {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.super-kit ul li::before {
    content: '✓';
    margin-right: 10px;
    color: #ffeb3b;
    font-weight: bold;
}

/* Prova Social / Garantia */
.trust-section {
    padding: 60px 0;
    text-align: center;
}

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

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    font-style: italic;
}

.guarantee {
    background: var(--primary-green);
    padding: 40px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.guarantee img {
    width: 80px;
}

/* FAQ */
.faq {
    padding: 80px 0;
}

.faq h2 {
    text-align: center;
    margin-bottom: 40px;
}

.faq-item {
    background: var(--white);
    margin-bottom: 15px;
    border-radius: 10px;
    padding: 20px;
    box-shadow: var(--shadow);
}

.faq-item h4 {
    margin-bottom: 10px;
    color: var(--primary-brown);
}

/* Footer */
footer {
    padding: 40px 0;
    text-align: center;
    background: #333;
    color: #eee;
    font-size: 0.9rem;
}

/* Responsive */
@media (min-width: 768px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

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

    .nav-links {
        display: flex;
    }

    .product-card {
        flex-direction: row;
    }

    .product-image {
        width: 45%;
    }

    .product-info {
        width: 55%;
    }

    .super-kit-content {
        flex-direction: row;
        text-align: left;
        justify-content: space-between;
    }

    .super-kit-info {
        text-align: left;
    }
}

@media (max-width: 767px) {
    .nav-links {
        display: none;
    }

    .logo img {
        width: 40px;
        height: 40px;
    }

    .logo {
        font-size: 0.9rem;
    }
}

/* Animations */
[data-aos] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}
