/* Variáveis de cores e estilos */
:root {
    --primary-color: #4CAF50;    /* Verde mais vibrante para nutrição */
    --secondary-color: #8BC34A;  /* Verde mais claro */
    --text-color: #333333;
    --light-color: #ffffff;
    --bg-light: #f9fbf7;        /* Verde muito claro, quase branco */
    --accent-color: #FF9800;    /* Laranja para destaque */
}

/* Estilos Gerais */
body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}

section {
    padding: 80px 0;
}

.btn {
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: #3d8b40;
    border-color: #3d8b40;
}

.btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background-color: transparent;
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
}

.section-header {
    margin-bottom: 60px;
}

.section-header h2 {
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2:after {
    content: "";
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: var(--accent-color);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-header p {
    color: #777;
    font-size: 18px;
}

/* Header Styles */
.header {
    padding: 15px 0;
    background-color: var(--light-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-brand .logo {
    height: 50px;
}

.navbar-nav .nav-link {
    color: var(--text-color);
    font-weight: 500;
    padding: 10px 15px;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover, .navbar-nav .nav-link.active {
    color: var(--primary-color);
}

.btn-agendar {
    background-color: var(--primary-color);
    color: var(--light-color) !important;
    border-radius: 30px;
    padding: 8px 20px !important;
    margin-left: 10px;
}

.btn-agendar:hover {
    background-color: #3d8b40;
}

/* Hero Section */
.hero-section {
    padding: 100px 0;
    background: linear-gradient(to right, #f9fbf7, #e8f5e9);
}

.hero-content h1 {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.hero-content h2 {
    font-size: 24px;
    font-weight: 500;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-image img {
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Sobre Section */
.sobre-section {
    background-color: var(--bg-light);
}

.sobre-image img {
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.sobre-content h2 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.sobre-content .subtitulo {
    color: var(--secondary-color);
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 20px;
}

.sobre-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.qualificacoes {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
}

.qualificacao-item {
    flex: 1;
    min-width: 150px;
    text-align: center;
    padding: 20px;
    background-color: var(--light-color);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.qualificacao-item:hover {
    transform: translateY(-5px);
}

.qualificacao-item i {
    font-size: 30px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.qualificacao-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.qualificacao-item p {
    font-size: 14px;
    margin-bottom: 0;
}

/* Especialidades Section */
.especialidades-section {
    background-color: var(--light-color);
}

.especialidade-card {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    height: 100%;
    transition: transform 0.3s ease;
}

.especialidade-card:hover {
    transform: translateY(-10px);
}

.especialidade-card .icon {
    width: 70px;
    height: 70px;
    background-color: rgba(76, 175, 80, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.especialidade-card .icon i {
    font-size: 28px;
    color: var(--primary-color);
}

.especialidade-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.especialidade-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #777;
    margin-bottom: 0;
}

/* Serviços Section (antes Tratamentos) */
.tratamentos-section {
    background-color: var(--bg-light);
}

.tratamento-card {
    background-color: var(--light-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    transition: transform 0.3s ease;
    height: 100%;
}

.tratamento-card:hover {
    transform: translateY(-10px);
}

.tratamento-img {
    height: 200px;
    overflow: hidden;
}

.tratamento-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.tratamento-card:hover .tratamento-img img {
    transform: scale(1.1);
}

.tratamento-info {
    padding: 25px;
}

.tratamento-info h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.tratamento-info p {
    font-size: 15px;
    line-height: 1.6;
    color: #777;
    margin-bottom: 20px;
}

.btn-saiba-mais {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-saiba-mais:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
}

/* Recursos Section */
.recursos-section {
    background-color: var(--light-color);
    padding: 80px 0;
}

.recurso-card {
    background-color: var(--bg-light);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.recurso-card:hover {
    transform: translateY(-10px);
}

.recurso-card img {
    border-radius: 10px;
    margin-bottom: 20px;
    height: 180px;
    object-fit: cover;
    width: 100%;
}

.recurso-card h3 {
    color: var(--primary-color);
    font-size: 20px;
    margin-bottom: 15px;
}

.recurso-card p {
    font-size: 15px;
    margin-bottom: 20px;
    color: #777;
}

/* Depoimentos Section */
.depoimentos-section {
    background-color: var(--bg-light);
    padding: 80px 0;
}

.depoimento-card {
    background-color: var(--light-color);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    position: relative;
    height: 100%;
}

.depoimento-card:before {
    content: "\201C";
    font-family: Arial, sans-serif;
    position: absolute;
    top: 15px;
    left: 20px;
    font-size: 60px;
    color: rgba(76, 175, 80, 0.1);
    line-height: 1;
}

.depoimento-texto {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #555;
    font-style: italic;
}

.depoimento-autor {
    display: flex;
    align-items: center;
}

.depoimento-autor-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.depoimento-autor-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.depoimento-autor-info h4 {
    font-size: 16px;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.depoimento-autor-info p {
    font-size: 14px;
    color: #777;
    margin-bottom: 0;
}

/* Contato Section */
.contato-section {
    background-color: var(--bg-light);
    padding: 80px 0;
}

.contato-info {
    background-color: var(--light-color);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.contato-info h3 {
    color: var(--primary-color);
    margin-bottom: 25px;
    font-size: 24px;
}

.contato-item {
    display: flex;
    margin-bottom: 20px;
}

.contato-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(76, 175, 80, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
}

.contato-icon i {
    color: var(--primary-color);
    font-size: 20px;
}

.contato-text h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--text-color);
}

.contato-text p, .contato-text a {
    font-size: 16px;
    color: #777;
    margin-bottom: 0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contato-text a:hover {
    color: var(--primary-color);
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    border-radius: 30px;
    padding: 12px 20px;
    font-size: 16px;
    border: 1px solid #ddd;
}

.form-control:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

textarea.form-control {
    border-radius: 15px;
    min-height: 120px;
}

.btn-enviar {
    background-color: var(--primary-color);
    color: var(--light-color);
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-enviar:hover {
    background-color: #3d8b40;
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 60px 0 30px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 50px;
}

.footer-text {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.footer h4 {
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
}

.footer h4:after {
    content: "";
    position: absolute;
    width: 40px;
    height: 2px;
    background-color: #ffffff;
    bottom: -10px;
    left: 0;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: var(--light-color);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 15px;
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--light-color);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 30px;
    text-align: center;
    font-size: 14px;
}

/* Botão WhatsApp */
.whatsapp-button {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
}

.whatsapp-button .whatsapp-text {
    display: none;
    margin-left: 10px;
    font-size: 14px;
    font-weight: 600;
}

.whatsapp-button:hover {
    width: auto;
    border-radius: 30px;
    padding: 0 20px;
    text-decoration: none;
    color: white;
}

.whatsapp-button:hover .whatsapp-text {
    display: block;
}

/* Responsividade */
@media (max-width: 991px) {
    section {
        padding: 60px 0;
    }
    
    .hero-content h1 {
        font-size: 36px;
    }
    
    .hero-content h2 {
        font-size: 20px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    .hero-section {
        padding: 60px 0;
    }
    
    .hero-image {
        margin-top: 40px;
    }
    
    .sobre-image {
        margin-bottom: 30px;
    }
    
    .qualificacoes {
        gap: 15px;
    }
    
    .qualificacao-item {
        min-width: calc(50% - 15px);
    }
}

@media (max-width: 767px) {
    .btn-agendar {
        margin-left: 0;
        margin-top: 10px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .qualificacao-item {
        min-width: 100%;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    /* Ajuste do botão WhatsApp para mobile */
    .whatsapp-button {
        bottom: 0;
        right: 0;
        width: 100%;
        height: 50px;
        border-radius: 0;
    }
    
    .whatsapp-button .whatsapp-text {
        display: block;
    }
    
    .whatsapp-button:hover {
        width: 100%;
        border-radius: 0;
    }
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content, .sobre-content, .especialidade-card {
    animation: fadeInUp 0.8s ease-out forwards;
}

.hero-image, .sobre-image {
    animation: fadeInUp 1s ease-out 0.2s forwards;
    opacity: 0;
    animation-fill-mode: forwards;
}

/* FAQ Section */
.faq-section {
    background-color: var(--bg-light);
    padding: 80px 0;
}

.accordion-item {
    border: 1px solid #ddd;
    border-radius: 10px;
    margin-bottom: 15px;
}

.accordion-button {
    background-color: transparent;
    color: var(--text-color);
    font-weight: 600;
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    color: white;
}

.accordion-body {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}
