/* Estilos Gerais */
:root {
    --primary-color: #8A2BE2; /* Lilás */
    --secondary-color: #E6E6FA; /* Alfazema */
    --accent-color: #9370DB; /* Lilás médio */
    --dark-color: #4B0082; /* Índigo (lilás escuro) */
    --light-color: #F8F8FF; /* Branco fantasma */
    --text-color: #333333;
    --background-color: #FFFFFF;
}

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

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

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--dark-color);
}

.button {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 4px;
    font-weight: bold;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: var(--dark-color);
    color: white;
}

.script-font {
    font-family: 'Brush Script MT', cursive;
    color: var(--primary-color);
}

.highlight {
    color: var(--primary-color);
}

.section-title {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.section-subtitle {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.5rem;
}

/* Seletor de idioma */
.language-selector {
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 1000;
    background-color: var(--background-color);
    padding: 5px;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.language-selector button {
    padding: 5px 10px;
    margin: 0 5px;
    background-color: var(--light-color);
    border: 1px solid var(--secondary-color);
    border-radius: 4px;
    cursor: pointer;
}

.language-selector button.active {
    background-color: var(--primary-color);
    color: white;
}

/* Esconder elementos do idioma não selecionado */
body[lang="pt-BR"] .pt-pt {
    display: none;
}

body[lang="pt-PT"] .pt-br {
    display: none;
}

/* Banner promocional */
.promo-banner {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: 10px 0;
}

.promo-banner a {
    color: white;
    font-weight: bold;
}

/* Cabeçalho */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: var(--background-color);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.logo img {
    height: 60px;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 20px;
    position: relative;
}

nav ul li a {
    color: var(--text-color);
    font-weight: 500;
}

nav ul li a:hover {
    color: var(--primary-color);
}

/* Dropdown Menu */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--background-color);
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    z-index: 1;
    border-radius: 4px;
}

.dropdown-content a {
    display: block;
    padding: 12px 16px;
    color: var(--text-color);
}

.dropdown-content a:hover {
    background-color: var(--secondary-color);
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Seção Hero */
.hero {
    display: flex;
    align-items: center;
    padding: 80px 5%;
    background-color: var(--light-color);
}

.hero-content {
    flex: 1;
    padding-right: 40px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.hero-image {
    flex: 1;
}

.hero-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Seção de Parceiros */
.partners {
    padding: 40px 5%;
    background-color: var(--secondary-color);
    text-align: center;
}

.partners-logos {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
}

.partners-logos img {
    height: 40px;
    margin: 10px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.partners-logos img:hover {
    opacity: 1;
}

/* Seção "A amamentação deve ser bonita" */
.beautiful-breastfeeding {
    display: flex;
    align-items: center;
    padding: 80px 5%;
    background-color: var(--background-color);
}

.beautiful-image {
    flex: 1;
    padding-right: 40px;
}

.beautiful-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.beautiful-content {
    flex: 1;
}

.beautiful-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.beautiful-content ul {
    list-style: none;
    margin-top: 20px;
}

.beautiful-content ul li {
    margin-bottom: 10px;
    padding-left: 30px;
    position: relative;
}

.beautiful-content ul li:before {
    content: "»";
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

/* Seção "O Método Thompson oferece..." */
.gentle-approach {
    padding: 60px 5%;
    background-color: var(--secondary-color);
    text-align: center;
}

.gentle-approach h2 {
    font-size: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Seção de Programas */
.programs {
    padding: 80px 5%;
    background-color: var(--background-color);
}

.program-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.program-card {
    flex: 1;
    min-width: 250px;
    background-color: var(--light-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    position: relative;
}

.program-card:hover {
    transform: translateY(-10px);
}

.program-image {
    height: 200px;
    overflow: hidden;
}

.program-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.program-card h3 {
    padding: 20px 20px 10px;
    font-size: 1.5rem;
}

.program-card p {
    padding: 0 20px 20px;
}

.popular-tag {
    position: absolute;
    bottom: 20px;
    left: 20px;
    font-style: italic;
    color: var(--primary-color);
}

.program-options {
    display: flex;
    flex-direction: column;
    padding: 0 20px 20px;
}

.program-option {
    margin-bottom: 10px;
    padding: 10px;
    background-color: var(--secondary-color);
    border-radius: 4px;
    text-align: center;
    transition: background-color 0.3s ease;
}

.program-option:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Seção "O Método Thompson proporciona" */
.guidance-support {
    display: flex;
    align-items: center;
    padding: 80px 5%;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    background-image: url('images/guidance-support-bg.jpg');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
}

.guidance-content {
    flex: 1;
    padding-right: 40px;
}

.guidance-content h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.guidance-content h3 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.guidance-content ul {
    list-style: none;
    margin: 20px 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.guidance-content ul li {
    padding-left: 30px;
    position: relative;
}

.guidance-content ul li:before {
    content: "✓";
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

.guidance-image {
    flex: 1;
}

.guidance-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Seção "Toda mãe merece apoio" */
.every-mother {
    display: flex;
    align-items: center;
    padding: 80px 5%;
    background-color: var(--background-color);
}

.every-mother-content {
    flex: 1;
    padding-right: 40px;
}

.every-mother-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.accordion {
    margin-top: 30px;
}

.accordion-item {
    margin-bottom: 10px;
    border: 1px solid var(--secondary-color);
    border-radius: 4px;
}

.accordion-item h3 {
    padding: 15px;
    background-color: var(--light-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-item h3:after {
    content: "+";
    font-size: 1.5rem;
}

.accordion-item.active h3:after {
    content: "-";
}

.accordion-content {
    padding: 0 15px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content {
    padding: 15px;
    max-height: 500px;
}

.every-mother-video {
    flex: 1;
    position: relative;
}

.every-mother-video img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.play-button:hover {
    opacity: 1;
}

/* Seção sobre Dr. Robyn Thompson */
.about-founder {
    padding: 60px 5%;
    background-color: var(--secondary-color);
    text-align: center;
}

.about-founder h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.founder-credentials {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.credential {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.star-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* Seção de Pesquisa */
.research {
    padding: 80px 5%;
    background-color: var(--background-color);
}

.research-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.research-card {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    text-align: center;
    background-color: var(--light-color);
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.research-icon {
    margin-bottom: 20px;
}

.research-icon img {
    height: 60px;
}

.research-card h3 {
    margin-bottom: 15px;
}

.research-card p {
    margin-bottom: 20px;
}

/* Seção de Depoimentos */
.testimonials {
    padding: 80px 5%;
    background-color: var(--secondary-color);
    text-align: center;
}

.testimonials h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.testimonial-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 30px;
    padding: 20px 0;
    margin-bottom: 30px;
}

.testimonial {
    flex: 0 0 auto;
    width: 100%;
    max-width: 400px;
    scroll-snap-align: start;
    background-color: var(--background-color);
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.testimonial-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 15px;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial h3 {
    margin-bottom: 10px;
}

/* Seção de Recursos Gratuitos */
.free-resources {
    padding: 80px 5%;
    background-color: var(--background-color);
    text-align: center;
}

.free-resources h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.resource-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.resource-card {
    flex: 1;
    min-width: 250px;
    background-color: var(--light-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.resource-image {
    height: 200px;
    overflow: hidden;
}

.resource-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.resource-card h3 {
    padding: 20px 20px 10px;
}

.resource-card p {
    padding: 0 20px 20px;
}

.resource-card .button {
    margin: 0 20px 20px;
}

/* Rodapé */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 60px 5% 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-logo {
    flex: 1;
    min-width: 200px;
    margin-bottom: 30px;
}

.footer-logo img {
    height: 60px;
}

.footer-links {
    flex: 3;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-column {
    flex: 1;
    min-width: 200px;
    margin-bottom: 30px;
}

.footer-column h3 {
    margin-bottom: 20px;
    color: var(--secondary-color);
}

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

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: white;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-column ul li a:hover {
    opacity: 1;
}

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

/* Responsividade */
@media (max-width: 992px) {
    .hero, .beautiful-breastfeeding, .guidance-support, .every-mother {
        flex-direction: column;
    }

    .hero-content, .beautiful-content, .guidance-content, .every-mother-content {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .program-card, .research-card, .resource-card {
        min-width: calc(50% - 15px);
    }

    .guidance-content ul {
        grid-template-columns: 1fr;
    }
}

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

    nav ul {
        flex-direction: column;
        align-items: center;
        margin-top: 20px;
    }

    nav ul li {
        margin: 10px 0;
    }

    .dropdown-content {
        position: static;
        box-shadow: none;
        display: none;
    }

    .program-card, .research-card, .resource-card {
        min-width: 100%;
    }

    .testimonial {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content h2 {
        font-size: 1.8rem;
    }

    .beautiful-content h2, .every-mother-content h2 {
        font-size: 1.8rem;
    }

    .gentle-approach h2 {
        font-size: 1.5rem;
    }

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

    .section-subtitle {
        font-size: 1.3rem;
    }
}
