@charset "UTF-8";

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --cor-primaria: #7cb342;
    --cor-secundaria: #558b2f;
    --cor-destaque: #c9a86a;
    --cor-texto: #2c3e50;
    --cor-texto-claro: #5a6c7d;
    --cor-fundo: #fafbfc;
    --cor-branco: #ffffff;
    --espacamento: 100px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--cor-texto);
    line-height: 1.6;
    background-color: var(--cor-fundo);
}

/* HEADER / NAVEGAÇÃO */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    z-index: 1000;
    transition: all 0.3s ease;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--cor-primaria);
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-icon {
    font-size: 2rem;
}

.logo-img {
    height: 60px;
    width: auto;
    display: block;
    object-fit: contain;
}

.instagram-link-inline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 0.75rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af, #515bd4);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.instagram-link-inline:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(221, 42, 123, 0.4);
    color: white;
}

.instagram-link-inline svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: var(--cor-texto);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--cor-primaria);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--cor-primaria);
}

.nav-links a:hover::after {
    width: 100%;
}

.btn-whatsapp-header {
    background: linear-gradient(135deg, var(--cor-primaria), var(--cor-secundaria));
    color: white;
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(124, 179, 66, 0.3);
}

.btn-whatsapp-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(124, 179, 66, 0.4);
}

/* MENU MOBILE */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--cor-primaria);
    transition: all 0.3s ease;
    border-radius: 3px;
}

/* HERO SECTION */
.hero {
    padding-top: 120px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8f5e9 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '\266A';
    position: absolute;
    font-size: 20rem;
    color: rgba(124, 179, 66, 0.05);
    top: 10%;
    right: -5%;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    animation: slideInLeft 0.8s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--cor-destaque), #d4af6a);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(201, 168, 106, 0.3);
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--cor-texto);
}

.hero h1 .destaque {
    color: var(--cor-primaria);
    position: relative;
    display: inline-block;
}

.hero h1 .destaque::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 12px;
    background: rgba(124, 179, 66, 0.2);
    z-index: -1;
    border-radius: 5px;
}

.hero p {
    font-size: 1.2rem;
    color: var(--cor-texto-claro);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--cor-primaria), var(--cor-secundaria));
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(124, 179, 66, 0.3);
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(124, 179, 66, 0.4);
}

.btn-secondary {
    background: white;
    color: var(--cor-primaria);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid var(--cor-primaria);
}

.btn-secondary:hover {
    background: var(--cor-primaria);
    color: white;
    transform: translateY(-3px);
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 1rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.hero-feature:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.hero-feature-icon {
    font-size: 2rem;
}

.hero-feature-text {
    font-weight: 600;
    color: var(--cor-texto);
    font-size: 0.95rem;
}

.hero-image {
    position: relative;
    animation: slideInRight 0.8s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-image-container {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.hero-image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(124, 179, 66, 0.2), transparent);
    z-index: 1;
}

.hero-image-container img {
    width: 100%;
    height: auto;
    display: block;
}

/* SEÇÃO SERVIÇOS */
.servicos {
    padding: var(--espacamento) 0;
    background: white;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    color: var(--cor-primaria);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.8rem;
    color: var(--cor-texto);
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.2rem;
    color: var(--cor-texto-claro);
    max-width: 700px;
    margin: 0 auto;
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2.5rem;
}

.servico-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.servico-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--cor-primaria), var(--cor-secundaria));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.servico-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
    border-color: var(--cor-primaria);
}

.servico-card:hover::before {
    transform: scaleX(1);
}

.servico-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.servico-card h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--cor-texto);
}

.servico-card .subtitulo {
    color: var(--cor-primaria);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.servico-card ul {
    list-style: none;
    margin-top: 1.5rem;
}

.servico-card li {
    padding: 0.7rem 0;
    color: var(--cor-texto-claro);
    display: flex;
    align-items: center;
    gap: 10px;
}

.servico-card li::before {
    content: '';
    flex-shrink: 0;
    width: 1.15rem;
    height: 1.15rem;
    background: center / contain no-repeat;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%237cb342' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round' d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
}

/* COMO FUNCIONA */
.como-funciona {
    padding: var(--espacamento) 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8f5e9 100%);
}

.processo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.processo-step {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    position: relative;
    transition: all 0.3s ease;
}

.processo-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.processo-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--cor-primaria), var(--cor-secundaria));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 20px rgba(124, 179, 66, 0.3);
}

.processo-step h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--cor-texto);
}

.processo-step p {
    color: var(--cor-texto-claro);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* DIFERENCIAIS */
.diferenciais {
    padding: var(--espacamento) 0;
    background: white;
}

.diferenciais-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-top: 3rem;
}

.diferenciais-lista {
    list-style: none;
}

.diferencial-item {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    background: var(--cor-fundo);
    border-radius: 15px;
    border-left: 4px solid var(--cor-primaria);
    transition: all 0.3s ease;
}

.diferencial-item:hover {
    transform: translateX(10px);
    background: #e8f5e9;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.diferencial-item strong {
    color: var(--cor-primaria);
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.5rem;
}

.diferenciais-destaque {
    background: linear-gradient(135deg, var(--cor-primaria), var(--cor-secundaria));
    color: white;
    padding: 3rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 15px 50px rgba(124, 179, 66, 0.3);
}

.diferenciais-destaque h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.diferenciais-destaque p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.diferenciais-destaque .btn-primary {
    background: white;
    color: var(--cor-primaria);
}

.diferenciais-destaque .btn-primary:hover {
    background: var(--cor-destaque);
    color: white;
}

/* SOBRE A MUSICOTERAPEUTA */
.sobre {
    padding: var(--espacamento) 0;
    background: white;
}

.sobre-content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 5rem;
    align-items: start;
    margin-top: 3rem;
}

.sobre-foto {
    position: sticky;
    top: 120px;
}

.foto-container {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.foto-container img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.foto-container:hover img {
    transform: scale(1.05);
}

.foto-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(124, 179, 66, 0.1) 100%);
    pointer-events: none;
}

.sobre-texto {
    padding: 1rem 0;
}

.sobre-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--cor-primaria), var(--cor-secundaria));
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.sobre-intro {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--cor-texto);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.sobre-texto p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--cor-texto-claro);
    margin-bottom: 1.5rem;
}

.inauguracao-destaque {
    margin-top: 3rem;
    background: linear-gradient(135deg, #fff9e6, #f0f8e8);
    padding: 2.5rem;
    border-radius: 20px;
    border-left: 5px solid var(--cor-destaque);
    display: flex;
    gap: 2rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.inauguracao-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.inauguracao-destaque h3 {
    color: var(--cor-primaria);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.inauguracao-destaque p {
    margin-bottom: 1rem;
    color: var(--cor-texto);
}

.convite {
    color: var(--cor-primaria);
    font-size: 1.15rem;
    margin-top: 1.5rem;
}

/* CONTATO / FORMULÁRIO */
.contato {
    padding: var(--espacamento) 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8f5e9 100%);
}

.contato-container {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.form-grid {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--cor-texto);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--cor-primaria);
    box-shadow: 0 0 0 3px rgba(124, 179, 66, 0.1);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-submit {
    margin-top: 1rem;
}

/* LOCALIZAÇÃO */
.localizacao {
    padding: var(--espacamento) 0;
    background: white;
}

.localizacao-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--cor-fundo);
    border-radius: 15px;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.info-item:hover {
    background: #e8f5e9;
    transform: translateX(5px);
}

.info-icon {
    font-size: 2rem;
    color: var(--cor-primaria);
}

.info-text h4 {
    color: var(--cor-texto);
    margin-bottom: 0.5rem;
}

.info-text p {
    color: var(--cor-texto-claro);
    line-height: 1.6;
}

.mapa-placeholder {
    background: var(--cor-fundo);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cor-texto-claro);
    font-size: 1.1rem;
}

/* FOOTER */
footer {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-sobre h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.footer-sobre p {
    opacity: 0.8;
    line-height: 1.8;
}

.footer-links h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
    display: block;
    padding: 0.5rem 0;
}

.footer-links a:hover {
    opacity: 1;
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    opacity: 0.7;
}

/* RESPONSIVIDADE */
@media (max-width: 968px) {
    nav {
        flex-wrap: wrap;
    }
    
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        order: 4;
        padding: 1.5rem 0;
        gap: 0;
        background: white;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        margin-top: 1rem;
        border-radius: 0 0 15px 15px;
    }
    
    .nav-links li {
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }
    
    .nav-links li:last-child {
        border-bottom: none;
    }
    
    .nav-links a {
        display: block;
        padding: 1rem 2rem;
    }
    
    nav.nav-open .nav-links {
        display: flex;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
    }
    
    .servicos-grid {
        grid-template-columns: 1fr;
    }
    
    .processo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .diferenciais-content {
        grid-template-columns: 1fr;
    }
    
    .sobre-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .sobre-foto {
        position: relative;
        top: 0;
    }
    
    .foto-container {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .localizacao-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 640px) {
    :root {
        --espacamento: 60px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .processo-grid {
        grid-template-columns: 1fr;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

/* ANIMAÇÕES */
.fade-in {
    animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Efeito suave no scroll */
.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-reveal.scroll-reveal-visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-reveal-delay-1 { transition-delay: 0.1s; }
.scroll-reveal-delay-2 { transition-delay: 0.2s; }
.scroll-reveal-delay-3 { transition-delay: 0.3s; }
.scroll-reveal-delay-4 { transition-delay: 0.4s; }
