/* Estilos Básicos */
:root {
    --primary-color: #183d1e; /* Verde vibrante */
    --secondary-color: #b8bca7; /* Verde mais claro */
    --text-color: #333;
    --light-bg: #fff0d8;
    --white: #fff;
    --dark-grey: #555;
}

.video-responsive {
            position: relative;
            width: 100%;
            padding-bottom: 56.25%; /* Isso define a proporção 16:9 (9 / 16 = 0.5625) */
            height: 0; /* Zera a altura para que o padding-bottom defina a altura real */
            overflow: hidden; /* Garante que nada transborde */
            border-radius: 8px; /* Cantos arredondados para o vídeo */
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08); /* Sombra suave */
        }

body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header */
header {
    background-color: var(--primary-color);
	text-align: center;
}

header .logo{
    width: 25%;
	text-align: center;
}
	
/* Hero Section */
.hero {
    /* Substitua a URL 'images/hero-background.jpg' pela sua imagem de fundo real */
    background: linear-gradient(rgba(255,255,255,0.8), rgba(255,255,255,0.8)), url('images/hero-background.jpg') no-repeat center center/cover;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 50px 20px;
    position: relative;
    overflow: hidden; /* Para garantir que o vídeo/imagem fique dentro */
}

.hero::before {
    content: '';
    position: absolute;
    top: -20;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.7); /* Overlay para texto legível */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero h1 {
    font-size: 3.5em;
    color: var(--primary-color);
    margin-bottom: 10px;
    line-height: 1.1;
}

.hero p {
    font-size: 1.4em;
    color: var(--dark-grey);
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: 600;
    transition: background-color 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.btn:hover {
    background-color: var(--secondary-color);
}

.urgency-text {
    color: #d32f2f; /* Vermelho para urgência */
    font-weight: 700;
    margin-top: 15px;
    font-size: 1.1em;
}

/* Sections Styling */
section {
    padding: 80px 0;
    text-align: center;
}

section h2 {
    font-size: 2.8em;
    color: var(--primary-color);
    margin-bottom: 40px;
    position: relative;
}

section h2::after {
    content: '';
    width: 80px;
    height: 4px;
    background-color: var(--secondary-color);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -15px;
}

.problem-solution .content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1em;
    line-height: 1.8;
}

.problem-solution .icons-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.problem-solution .icon-item {
    text-align: center;
    flex-basis: 250px;
}

.problem-solution .icon-item img {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
}

/* Boxes Section */
.boxes-showcase {
    background-color: var(--light-bg);
}

.box-category {
    margin-bottom: 60px;
}

.box-category h3 {
    font-size: 2.2em;
    color: var(--dark-grey);
    margin-bottom: 30px;
}

.box-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.box-card {
    background-color: var(--white);
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    padding: 30px;
    flex: 1 1 300px; /* Cresce e encolhe, mínimo 300px */
    max-width: 380px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.box-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.box-card h4 {
    font-size: 1.8em;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.box-card .subtitle {
    font-size: 1.1em;
    color: var(--dark-grey);
    margin-bottom: 20px;
}

.box-card ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    font-size: 1em;
}

.box-card ul li {
    margin-bottom: 10px;
    color: var(--text-color);
}

.box-card .price {
    font-size: 1.6em;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 25px;
    margin-bottom: 15px;
}

.box-card .btn {
    width: 100%;
    text-align: center;
    font-size: 1.1em;
    padding: 12px 20px;
}

.box-card .price-note {
    font-size: 0.9em;
    color: var(--dark-grey);
    margin-top: 5px;
}

.box-card .nutri-seal {
    font-size: 0.9em;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 10px;
    display: block;
}


/* How It Works */
.how-it-works .steps-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.how-it-works .step-item {
    flex-basis: 300px;
    text-align: center;
}

.how-it-works .step-item .step-number {
    background-color: var(--secondary-color);
    color: var(--white);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
    font-weight: 700;
    margin: 0 auto 20px;
}

.how-it-works .step-item h4 {
    font-size: 1.4em;
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* Testimonials */
.testimonials {
    background-color: var(--light-bg);
}

.testimonial-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px;
    margin: 20px auto;
    max-width: 700px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    text-align: center;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
    font-size: 1.1em;
}

.testimonial-card .author {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.1em;
}

/* About Nutri */
.about-nutri {
    background-color: var(--white);
    padding: 80px 0;
}

.nutri-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
    gap: 40px;
}

.nutri-content img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--secondary-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.nutri-text {
    text-align: left;
    font-size: 1.1em;
}

.nutri-text h3 {
    font-size: 2em;
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* FAQ Section */
.faq-section {
    background-color: var(--light-bg);
}

.faq-item {
    background-color: var(--white);
    margin-bottom: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    text-align: left;
}

.faq-question {
    padding: 20px;
    font-size: 1.2em;
    font-weight: 600;
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: '+';
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 20px 20px;
    font-size: 1.1em;
    color: var(--text-color);
    display: none; /* Escondido por padrão */
}

.faq-item.active .faq-answer {
    display: block;
}

/* CTA Final */
.cta-final {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 60px 20px;
    text-align: center;
}

.cta-final h2 {
    color: var(--white);
    font-size: 3em;
    margin-bottom: 25px;
}
.cta-final h2::after {
    background-color: var(--white); /* Linha branca para contraste */
}

.cta-final p {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-final .btn {
    background-color: var(--white);
    color: var(--primary-color);
}

.cta-final .btn:hover {
    background-color: #eee;
}

/* Footer */
footer {
    background-color: var(--dark-grey);
    color: var(--white);
    padding: 30px 0;
    font-size: 0.9em;
}

footer .footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

footer .social-links a {
    color: var(--white);
    margin-left: 15px;
    font-size: 1.5em;
    text-decoration: none;
}

/* Responsividade */
@media (max-width: 900px) {
    .hero h1 {
        font-size: 2.5em;
    }
    .hero p {
        font-size: 1.2em;
    }
    section {
        padding: 60px 0;
    }
    section h2 {
        font-size: 2.2em;
    }
    .box-card {
        flex: 1 1 100%; /* Em telas menores, cards ocupam toda a largura */
        max-width: 500px; /* Limita a largura para não ficar gigante em tablets */
    }
    .nutri-content {
        flex-direction: column;
    }
    .nutri-text {
        text-align: center;
    }
}

@media (max-width: 600px) {
    .hero h1 {
        font-size: 2em;
    }
    .hero p {
        font-size: 1em;
    }
    .btn {
        font-size: 1em;
        padding: 12px 25px;
    }
    section h2 {
        font-size: 1.8em;
    }
    .problem-solution .icons-grid,
    .how-it-works .steps-grid {
        flex-direction: column;
        align-items: center;
    }
    .footer-content {
        flex-direction: column;
        gap: 20px;
    }
    .social-links {
        margin-top: 15px;
    }
}
