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

:root {
    --primary-color: #164bf9; /*#f97316;*/
    --secondary-color: #228fc5; /* #22c55e; */
    --dark-color: #003366; /* Dark Blue */
    --light-color: #f9fafb;
    --border-color: #e5e7eb;
    --text-color: #003366; /* Dark Blue Text */
    --text-light: #6b7280;
    --primary-color: #164bf9; /* #f97316;*/
    --secondary-color: #228fc5; /* #22c55e;*/
    --dark-color: #1f2937;
    --light-color: #f9fafb;
    --border-color: #e5e7eb;
    --text-color: #374151;
    --text-light: #6b7280;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    z-index: 50;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    /* Adicionar padding lateral para garantir margem em telas pequenas */
    padding: 0 1rem; 
}

@media (min-width: 640px) {
    .logo {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .logo {
        padding: 0 2rem;
    }
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.menu-toggle {
    display: none; /* Ocultar por padrão em desktop/tablet */
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    cursor: pointer;
    z-index: 60; /* Acima do nav-links */
}

.menu-toggle .bar {
    width: 100%;
    height: 3px;
    background-color: var(--text-color);
    transition: all 0.3s linear;
    border-radius: 5px;
}

/* Animação do X */
.menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .bar:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
}

.menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
}

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

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

@media (max-width: 768px) {
    .menu-toggle {
        display: flex; /* Mostrar em mobile */
        margin-right: 1rem; /* Adicionar margem para não colar na borda */
    }

    .nav-container {
        padding: 1rem 0;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px; /* Altura da navbar */
        left: 0;
        width: 100%;
        background-color: white;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        padding: 1rem 0;
        z-index: 40;
        /* Transição para suavizar a abertura */
        transition: transform 0.3s ease-in-out;
        transform: translateY(-100%); /* Esconder acima */
    }

    .nav-links.active {
        display: flex;
        transform: translateY(0); /* Mostrar */
    }

    .nav-links a {
        padding: 0.75rem 2rem;
        border-bottom: 1px solid var(--border-color);
        text-align: center;
        width: 100%;
    }

    .nav-links a:last-child {
        border-bottom: none;
    }
}

/* Hero Section */
.hero {
    margin-top: 60px;
    padding: 3rem 0;
    background: linear-gradient(135deg, #fef3c7 0%, #dcfce7 100%);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

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

.badge {
    display: inline-block;
    background-color: #aad4fe; /*#fed7aa;*/
    color: #0c40c2; /*#c2410c;*/
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

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

.hero-title .highlight {
    color: #164bf9;
}

.name-change-alert {
    background-color: #fff3cd; /* Light yellow background */
    border: 1px solid #ffeeba; /* Yellow border */
    color: #856404; /* Dark yellow text */
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    line-height: 1.4;
}

.name-change-alert strong {
    color: #856404;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

@media (max-width: 640px) {
    .hero-buttons {
        flex-direction: column;
    }
}

.btn {
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 0.375rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.btn-primary:hover {
    background-color: #ea580c; /* #ea580c;*/
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: #2563eb;
    border: 2px solid #2563eb;
}

.btn-secondary:hover {
    background-color: #eff6ff;
}

.btn-cta {
    background-color: white;
    color: #164bf9;
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    margin-top: 2rem;
}

.btn-cta:hover {
    background-color: #f3f4f6;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-color);
}

.check {
    color: var(--secondary-color);
    font-weight: 700;
}

.hero-image {
    display: flex;
    justify-content: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
}

/* Sounds Like You Section */
.sounds-like-you {
    padding: 4rem 0;
    background-color: white;
}

.section-title {
    font-size: 2.25rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.875rem;
    }
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 2rem;
    font-size: 1.0625rem;
}

.section-highlight {
    text-align: center;
    color: var(--dark-color);
    font-weight: 600;
    margin: 2rem 0;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    padding: 2rem;
    text-align: center;
}

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

.card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.card p {
    color: var(--text-light);
}

/* Solution Section */
.solution {
    padding: 4rem 0;
    background-color: #f9fafb;
}

.section-description {
    text-align: center;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 3rem;
    font-size: 1.0625rem;
}

.solution-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.solution-card {
    background: white;
    border-radius: 0.5rem;
    padding: 2rem;
}

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

.solution-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.solution-card p {
    color: var(--text-light);
}

/* How It Works */
.how-it-works {
    padding: 4rem 0;
    background-color: white;
}

.steps {
    margin: 3rem 0;
}

.step {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: flex-start;
}

@media (max-width: 768px) {
    .step {
        flex-direction: column;
    }
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.step-content p {
    color: var(--text-light);
    font-size: 1.0625rem;
}

.result-box {
    background-color: #dcedfc; /*#fef3c7;*/
    border-left: 4px solid var(--primary-color);
    padding: 2rem;
    border-radius: 0.375rem;
    margin-top: 2rem;
}

.result-box p {
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.result-box p:last-child {
    margin-bottom: 0;
}

/* Testimonials */
.testimonials {
    padding: 4rem 0;
    background-color: #f9fafb;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.testimonial {
    background: white;
    border-radius: 0.5rem;
    padding: 2rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.stars {
    color: #fbbf24;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    display: block;
}

.testimonial-text {
    color: var(--text-color);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    /* font-size: 2rem; (Removido o tamanho da fonte do emoji) */
    width: 60px; /* Tamanho fixo para o container do avatar */
    height: 60px;
    border-radius: 50%; /* Transforma em círculo */
    overflow: hidden; /* Garante que a imagem se ajuste ao círculo */
    flex-shrink: 0;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Garante que a imagem preencha o container sem distorção */
}

.author-name {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.25rem;
}

.author-location {
    font-size: 0.875rem;
    color: var(--text-light);
}

.disclaimer {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: 2rem;
}

/* Ingredients */
.ingredients {
    padding: 4rem 0;
    background-color: white;
}

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

.ingredient {
    display: flex;
    gap: 1rem;
}

.ingredient-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.ingredient h3 {
    font-size: 1.0625rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.ingredient p {
    color: var(--text-light);
    font-size: 0.9375rem;
}

.quality-box {
    background-color: #dcedfc; /* #dcfce7;*/
    border-radius: 0.5rem;
    padding: 2rem;
    margin-top: 3rem;
}

.quality-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.quality-items {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.quality-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-color);
}

.quality-item .check {
    color: var(--secondary-color);
    font-weight: 700;
}

/* FAQ */
.faq {
    padding: 4rem 0;
    background-color: #f9fafb;
}

.faq-items {
    max-width: 800px;
    margin: 3rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: white;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-color);
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: #f9fafb;
}

.faq-arrow {
    display: inline-block;
    transition: transform 0.3s;
    font-size: 0.75rem;
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 1.5rem;
    background-color: #f9fafb;
    border-top: 1px solid var(--border-color);
    color: var(--text-light);
}

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

/* CTA Section */
.cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #ea580c 100%);
    color: white;
    text-align: center;
}

.cta h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.cta > .container > p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 600px;
    margin: 2rem auto;
}

.cta-feature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 1.0625rem;
}

.cta-check {
    font-size: 1.5rem;
}

.cta-offer {
    font-size: 0.875rem;
    opacity: 0.8;
    margin-top: 1.5rem;
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: #d1d5db;
    padding: 3rem 0 1.5rem;
}

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

.footer-col h3,
.footer-col h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-col p {
    font-size: 0.9375rem;
    line-height: 1.6;
}

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

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

.footer-col a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    border-top: 1px solid #4b5563;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

.rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.rating .stars {
    color: #fbbf24;
}

.footer-legal {
    text-align: center;
    font-size: 0.75rem;
    color: #9ca3af;
    padding-top: 1rem;
    border-top: 1px solid #4b5563;
}

.footer-legal p {
    margin-bottom: 0.5rem;
}

.footer-legal p:last-child {
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 640px) {
    .hero-title {
        font-size: 1.875rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .cta h2 {
        font-size: 1.5rem;
    }

    .nav-links {
        gap: 1rem;
    }
}

/* Pricing Section */
.pricing {
    padding: 4rem 0;
    background-color: #f9fafb;
}

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

.pricing-link {
    display: block;
    border: 3px solid transparent;
    border-radius: 0.75rem;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    text-decoration: none; /* Remove underline from <a> tag */
    line-height: 0; /* Fix extra space under image */
}

.pricing-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.pricing-link.popular {
    /* Removido destaque de borda */
    position: relative;
}

.pricing-link.popular::before {
    /* Removido o pseudo-elemento "MOST POPULAR" */
    content: none;
}

.pricing-image {
    width: 100%;
    height: auto;
    display: block;
}

#countdown-timer {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ef4444; /* Red color for urgency */
    display: inline-block;
    margin-left: 0.5rem;
}
