/* Estilos para o site one page da Harmoni */

/* Reset e estilos base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 70px;
}

body {
    font-family: 'Open Sans', sans-serif;
    background: linear-gradient(135deg, #8A6B8F 0%, #6A5270 100%);
    color: #FFFFFF;
    min-height: 100vh;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    padding: 2rem;
    margin: 0 auto;
}

.content {
    background: rgba(106, 82, 112, 0.7);
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    animation: fadeIn 1.5s ease-in-out;
    text-align: center;
}

.section {
    padding: 5rem 0 3rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* Header e navegação */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(106, 82, 112, 0.9);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo-header {
    display: flex;
    align-items: center;
}

.logo-small {
    width: 40px;
    height: auto;
    transition: transform 0.3s ease;
}

.logo-small:hover {
    transform: scale(1.1);
}

.main-nav {
    display: flex;
    align-items: center;
}

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

.nav-link {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.5rem 0;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #F5A9B8 0%, #A9DEF5 100%);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Logo */
.logo-container {
    margin-bottom: 2.5rem;
}

.logo {
    width: 180px;
    height: auto;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
    transition: transform 0.5s ease;
}

.logo:hover {
    transform: scale(1.05);
}


/* Estilos da Seção de Avaliações */
.avaliacoes-section {
    padding: 4rem 1rem;
    background: #FFFFFF; /* Fundo branco para destacar as avaliações */
    text-align: center;
}

.avaliacoes-section .section-title {
    margin-bottom: 0.5rem;
    font-size: 2.5rem;
    color: #8B5A96;
}

.avaliacoes-section .section-subtitle {
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.avaliacoes-grid {
    display: flex; /* Alterado de grid para flex */
    flex-wrap: wrap; /* Para quebrar a linha em telas menores */
    gap: 2rem;
    justify-content: center; /* Centraliza os itens no eixo principal (horizontal) */
    align-items: start;
}

.avaliacao-image {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    margin: 0 auto; /* Centraliza a imagem no grid */
}

.avaliacao-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* Tipografia */
.main-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, #F5A9B8 0%, #A9DEF5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.1);
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    background: linear-gradient(90deg, #F5A9B8 0%, #A9DEF5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.1);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #F5A9B8 0%, #A9DEF5 100%);
    border-radius: 3px;
}

.subtitle {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.highlight {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.3rem;
    color: #E38BA3;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

/* Seção Sobre (Missão, Visão e Valores) */
.about-section {
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.about-toggle {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #FFFFFF;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 0 auto;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.about-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.about-toggle i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.about-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, opacity 0.5s ease, padding 0.5s ease;
    opacity: 0;
    text-align: left;
    margin-top: 0;
}

.about-content.show {
    max-height: 2000px;
    opacity: 1;
    padding-top: 2rem;
}

.about-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.about-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.about-item h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #F5A9B8;
    text-align: center;
}

.about-item p {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    text-align: center;
}

/* Estilos específicos para Valores */
.values {
    padding-bottom: 0.5rem;
}

.value-item {
    margin-bottom: 1.2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.value-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.value-title {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: #A9DEF5;
    display: block;
    margin-bottom: 0.5rem;
    text-align: center;
}

.value-item p {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Estilos para as seções de features (Pacientes e Psicólogos) */
.features-grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

/* Suporte moderno para grid */
@supports (display: grid) {
    .features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 2rem;
        margin-top: 3rem;
    }
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    /* Fallback para flexbox */
    -webkit-box-flex: 1;
    -ms-flex: 1 1 300px;
    flex: 1 1 300px;
    min-width: 300px;
    margin-bottom: 2rem;
}

.feature-card:hover {
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #F5A9B8;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
    color: #A9DEF5;
}

.feature-title {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #FFFFFF;
}

.feature-text {
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.6;
}

/* Estilos específicos para seções */
.pacientes-section .feature-icon {
    color: #F5A9B8;
}

.pacientes-section .feature-card:hover .feature-icon {
    color: #E38BA3;
}

.psicologos-section .feature-icon {
    color: #A9DEF5;
}

.psicologos-section .feature-card:hover .feature-icon {
    color: #7ECAE2;
}

/* Footer */
.footer {
    background: rgba(106, 82, 112, 0.9);
    padding: 1.5rem 0;
    text-align: center;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.footer-content {
    opacity: 0.8;
    font-size: 0.9rem;
}

/* WhatsApp Float Button (adaptado para o novo estilo) */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    border-radius: 50px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 999;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.05);
}

.whatsapp-icon {
    width: 24px;
    height: 24px;
}

.whatsapp-text {
    font-size: 1rem;
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%); /* Cores do WhatsApp */
    color: white;
    font-size: 1.125rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.whatsapp-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);

/* Animações */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsividade */
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 0.8rem 1.5rem;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .nav-list {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        flex-direction: column;
        gap: 0;
        background: rgba(106, 82, 112, 0.95);
        backdrop-filter: blur(10px);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s ease;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }
    
    .nav-list.show {
        max-height: 300px;
    }
    
    .nav-link {
        display: block;
        padding: 1rem 2rem;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-link::after {
        display: none;
    }
    
    .content {
        padding: 2rem 1.5rem;
    }
    
    .whatsapp-float {
        padding: 10px 15px;
    }
    .whatsapp-text {
        display: none; /* Esconder texto no mobile para economizar espaço */
    }
    
    .logo {
        width: 150px;
    }
    
    .main-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .highlight {
        font-size: 1.1rem;
    }
    
    .about-item h3 {
        font-size: 1.2rem;
    }
    
    .value-title {
        font-size: 1rem;
    }
    
    .value-item p {
        font-size: 0.9rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .feature-icon {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .feature-title {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 1.5rem 1rem;
    }
    
    .content {
        padding: 1.5rem 1rem;
    }
    
    .logo {
        width: 120px;
    }
    
    .main-title {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .about-toggle {
        font-size: 0.9rem;
        padding: 0.7rem 1.2rem;
    }
    
    .about-item {
        padding: 1.2rem 1rem;
    }
    
    .feature-card {
        padding: 1.2rem;
    }
    
    .feature-icon {
        font-size: 1.8rem;
    }
    
    .feature-title {
        font-size: 1rem;
    }
    
    .feature-text {
        font-size: 0.85rem;
    }
}


.logo-text {
    margin-top: 1rem;
    font-size: 2rem;
}

@media (max-width: 768px) {
    .logo-text {
        font-size: 1.5rem;
    }
}

/* Media Query para telas menores */
@media (max-width: 768px) {
    .main-nav {
        padding: 0.5rem 0;
    }
    
    .nav-logo-image {
        width: 60px;
        height: 60px;
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    .nav-link {
        font-size: 1rem;
        padding: 0.5rem;
    }
    
    .avaliacoes-section .section-title {
        font-size: 2rem;
    }
    
    .avaliacoes-grid {
        grid-template-columns: 1fr; /* Uma coluna em telas pequenas */
    }
}


