/* Estilos Gerais */
:root {
    /* Paleta Acolhedora */
    --color-primary: #D1E8E2;     /* Verde sage: Equilíbrio e harmonia */
    --color-secondary: #E8CEBF;   /* Terracota suave: Acolhimento e conforto */
    --color-accent: #DDCAD9;      /* Lavanda: Tranquilidade e introspecção */
    --color-light: #FFFFFF;       /* Branco: Espaço e clareza */
    --color-dark: #4A4238;        /* Marrom escuro: Para textos e destaques */
    --color-whatsapp: #25D366;    /* Verde WhatsApp */
    
    --font-title: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    
    --shadow-soft: 0 5px 15px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-dark);
    line-height: 1.6;
    background-color: var(--color-light);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-title);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.5rem;
}

a {
    text-decoration: none;
    color: var(--color-dark);
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--color-secondary);
}

section {
    padding: 5rem 0;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--color-secondary);
    color: var(--color-dark);
    box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
    background-color: var(--color-dark);
    color: var(--color-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.btn-whatsapp {
    background-color: var(--color-whatsapp);
    color: var(--color-light);
    box-shadow: var(--shadow-soft);
}

.btn-whatsapp:hover {
    background-color: #1da851;
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.btn i {
    margin-right: 8px;
}

/* Header e Navegação */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-soft);
    z-index: 1000;
    padding: 1rem 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.8rem;
    margin-bottom: 0;
    color: var(--color-dark);
}

.logo p {
    font-size: 0.9rem;
    margin-bottom: 0;
    color: var(--color-dark);
    opacity: 0.8;
}

.menu {
    display: flex;
}

.menu li {
    margin-left: 2rem;
}

.menu a {
    font-weight: 500;
    position: relative;
}

.menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-secondary);
    transition: var(--transition);
}

.menu a:hover::after {
    width: 100%;
}

.menu-mobile {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding: 10rem 0 5rem;
    background-color: var(--color-primary);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, var(--color-accent), transparent 60%);
    opacity: 0.4;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.hero-content {
    flex: 1;
    padding-right: 2rem;
}

.hero-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow-medium);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Sobre Section */
.sobre {
    background-color: var(--color-light);
}

.sobre-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.sobre-image {
    flex: 1;
}

.sobre-image img {
    border-radius: 10px;
    box-shadow: var(--shadow-medium);
}

.sobre-text {
    flex: 1.5;
}

.sobre-text h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.sobre-text .subtitle {
    font-size: 1.1rem;
    color: var(--color-dark);
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.credenciais {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2rem;
}

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

.credencial i {
    color: var(--color-secondary);
    font-size: 1.2rem;
}

/* Missão Section */
.missao {
    background-color: var(--color-accent);
    padding: 4rem 0;
}

.missao-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.missao-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.missao-content p {
    font-size: 1.1rem;
}

/* Áreas de Atuação */
.areas {
    background-color: var(--color-light);
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.area-card {
    background-color: var(--color-light);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    text-align: center;
}

.area-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.area-icon {
    width: 70px;
    height: 70px;
    background-color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.area-icon i {
    font-size: 1.8rem;
    color: var(--color-dark);
}

.area-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Como Funciona */
.como-funciona {
    background-color: var(--color-primary);
    position: relative;
    overflow: hidden;
}

.como-funciona::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--color-secondary), transparent 70%);
    opacity: 0.3;
}

.passos {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.passo {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.passo-numero {
    width: 50px;
    height: 50px;
    background-color: var(--color-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-title);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-dark);
    flex-shrink: 0;
}

.passo-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.modalidades {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
}

.modalidade {
    text-align: center;
    max-width: 300px;
}

.modalidade i {
    font-size: 2.5rem;
    color: var(--color-secondary);
    margin-bottom: 1rem;
}

.modalidade h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

/* Resultados */
.resultados {
    background-color: var(--color-light);
}

.resultados-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
}

.resultado {
    text-align: center;
    padding: 1.5rem;
    border-radius: 10px;
    transition: var(--transition);
}

.resultado:hover {
    background-color: var(--color-primary);
    transform: translateY(-5px);
}

.resultado i {
    font-size: 2.5rem;
    color: var(--color-secondary);
    margin-bottom: 1rem;
}

.resultado h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

/* Depoimentos */
.depoimentos {
    background-color: var(--color-accent);
    position: relative;
    overflow: hidden;
}

.depoimentos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--color-secondary), transparent 70%);
    opacity: 0.3;
}

.depoimentos-slider {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.depoimento {
    background-color: var(--color-light);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: var(--shadow-soft);
    max-width: 350px;
    flex: 1;
    min-width: 300px;
}

.estrelas {
    color: #FFD700;
    margin-bottom: 1rem;
}

.depoimento p {
    font-style: italic;
    margin-bottom: 1.5rem;
}

.depoimento-autor {
    font-weight: 600;
    text-align: right;
}

/* FAQ */
.faq {
    background-color: var(--color-light);
}

.faq-items {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 1.3rem;
    margin-bottom: 0;
}

.faq-question i {
    transition: var(--transition);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

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

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 1rem;
}

/* CTA Final */
.cta-final {
    background-color: var(--color-secondary);
    text-align: center;
    padding: 5rem 0;
}

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

.cta-final p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.cta-final .cta-buttons {
    justify-content: center;
}

/* Footer */
footer {
    background-color: var(--color-dark);
    color: var(--color-light);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-info, .footer-social, .footer-horarios {
    flex: 1;
    min-width: 250px;
}

.footer-info h3, .footer-social h3, .footer-horarios h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--color-light);
}

.footer-info p {
    margin-bottom: 0.8rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-light);
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--color-secondary);
    color: var(--color-dark);
    transform: translateY(-3px);
}

/* Estilo para o CTA do Instagram */
.instagram-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 1rem;
}

.btn-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    box-shadow: 0 4px 15px rgba(220, 39, 67, 0.3);
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
    text-align: center;
}

.btn-instagram:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(220, 39, 67, 0.4);
}

.btn-instagram i {
    font-size: 1.5rem;
}

.instagram-text {
    font-size: 0.9rem;
    color: var(--color-light);
    opacity: 0.8;
    text-align: center;
    margin-top: 0.5rem;
}

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

.footer-bottom p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.7;
}

.footer-bottom i {
    color: #e25555;
}

/* Botão Flutuante de WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 80px;  /* Aumentado de 60px para 80px */
    height: 80px; /* Aumentado de 60px para 80px */
    background-color: var(--color-whatsapp);
    color: var(--color-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem; /* Aumentado de 1.8rem para 2.5rem */
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4); /* Sombra mais destacada */
    z-index: 999;
    transition: var(--transition);
    animation: pulse 2s infinite; /* Adicionada animação de pulso */
}

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

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Media Queries */
@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 3rem;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .sobre-content {
        flex-direction: column;
    }
    
    .sobre-text {
        text-align: center;
    }
    
    .credenciais {
        justify-content: center;
    }
    
    .modalidades {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--color-light);
        box-shadow: var(--shadow-soft);
        flex-direction: column;
        padding: 1rem 0;
    }
    
    .menu.active {
        display: flex;
    }
    
    .menu li {
        margin: 0;
        text-align: center;
        padding: 0.8rem 0;
    }
    
    .menu-mobile {
        display: block;
    }
    
    .hero-content h2 {
        font-size: 2.2rem;
    }
    
    .passo {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .sobre-text h3 {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }
}
