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

:root {
    --primary: #7fa6c9;
    /* Azul claro principal – calmo e confiável */
    --primary-dark: #5f86a6;
    /* Azul médio – contraste elegante */
    --secondary: #a8c4dc;
    /* Azul suave complementar */
    --accent: #dbe9f4;
    /* Azul quase branco – leveza visual */
    --text: #24313f;
    /* Azul petróleo escuro – mais suave que preto */
    --text-light: #5f6f7f;
    /* Cinza azulado para textos secundários */
    --bg-light: #f5f9fc;
    /* Fundo azuladíssimo, quase branco */
    --bg-dark: #0f1419;
    /* Fundo muito escuro para dark theme */
    --white: #ffffff;
    --shadow: rgba(36, 49, 63, 0.08);
    --insta-color: #9b4d73;
    /* ameixa terapêutico */
    --whatsapp-color: #4caf8f;
    /* verde acolhedor */
    --icon-bg: #f4f6f5;
    --icon-bg-hover: #eef3f1;
    --text-color: #2e2e2e;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--white);
}


/* NAVBAR */

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px var(--shadow);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: auto;
    padding: 18px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 1.3rem;
    color: var(--primary-dark);
}

.logo img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary);
}

.nav-links {
    list-style: none;
    display: flex;
    flex-direction: row;
    gap: 35px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-weight: 400;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}


/* HERO */

.hero {
    min-height: 100vh;
    padding: 140px 30px 80px;
    background: linear-gradient(135deg, #e8f4f3 0%, #f8f9fa 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.hero-content {
    max-width: 1200px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text {
    text-align: left;
}

.hero-text h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.2rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text .subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 30px;
    font-weight: 300;
}

.hero-text p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 35px;
    line-height: 1.8;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-img {
    width: 100%;
    max-width: 380px;
    height: 380px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 20px 60px rgba(135, 168, 164, 0.3);
    border: 8px solid var(--white);
}

.hero-decoration {
    position: absolute;
    width: 420px;
    height: 420px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    opacity: 0.3;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%,
    100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.15;
    }
}


/* BOTÕES */

.btn-primary,
.btn-secondary,
.btn-whatsapp {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    margin-right: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px var(--shadow);
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(135, 168, 164, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-dark);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-whatsapp {
    background: #25d366;
    color: var(--white);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-whatsapp:hover {
    background: #1fb855;
    transform: translateY(-2px);
}


/* SEÇÕES */

.section {
    padding: 100px 30px;
    transition: background-color 0.3s ease;
}

.section-light {
    background: var(--bg-light);
}

.container {
    max-width: 1200px;
    margin: auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: auto;
}


/* SOBRE */

.about-content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    align-items: center;
}

.about-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px var(--shadow);
    object-fit: cover;
}

.about-text h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--primary-dark);
    margin-bottom: 25px;
}

.about-text p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.credentials {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.credential-badge {
    background: var(--accent);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    color: var(--primary-dark);
    font-weight: 500;
}


/* FAQ */

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

.faq-item {
    background: var(--white);
    border-radius: 15px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px var(--shadow);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    font-weight: 500;
    color: var(--primary-dark);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s ease;
    color: var(--primary);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 30px;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 30px 25px;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1rem;
}


/* AGENDAMENTO */

.appointment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.appointment-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px var(--shadow);
    transition: all 0.3s ease;
}

.appointment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.appointment-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.appointment-card h3 {
    font-size: 1.4rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.appointment-card p {
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.6;
}


/* FORMULÁRIO DE CONTATO */

.contact-form-container {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px var(--shadow);
    max-width: 600px;
    margin: 50px auto 0;
}

.contact-form-container h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin-bottom: 10px;
    text-align: center;
}

.contact-form-container .form-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text);
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    color: var(--text);
    transition: all 0.3s ease;
    background: var(--bg-light);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px var(--shadow);
}

.btn-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(135, 168, 164, 0.4);
}

.btn-submit:active {
    transform: translateY(0);
}

.form-message {
    margin-top: 15px;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    font-size: 0.9rem;
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}


/* MÉTODO DE ATENDIMENTO */

.method-card {
    background: var(--bg-light);
    padding: 60px;
    border-radius: 30px;
    box-shadow: 0 10px 40px var(--shadow);
    max-width: 1000px;
    margin: auto;
}

.method-card .section-header {
    margin-bottom: 40px;
}

.method-card .section-header h2 {
    font-size: 2.5rem;
}

.method-text {
    text-align: left;
}

.method-text p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 25px;
    text-align: justify;
}

.method-text strong {
    color: var(--primary-dark);
    font-weight: 600;
}

.method-subsection {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid var(--accent);
}

.method-subsection h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.method-subsection p {
    margin-bottom: 20px;
}

.method-subsection p:last-child {
    margin-bottom: 0;
}


/* CONTATO */

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.contact-card {
    background: var(--white);
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px var(--shadow);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.contact-card h3 {
    font-size: 1.3rem;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.contact-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}


/* INFORMAÇÕES DE LOCALIZAÇÃO */

.location-info {
    margin-top: 60px;
    background: var(--white);
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 10px 40px var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.location-item {
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
}

.location-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.location-item p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
}

.location-item strong {
    color: var(--primary-dark);
    font-weight: 600;
}


/* FOOTER */

footer {
    background: var(--primary-dark);
    color: var(--white);
    text-align: center;
    padding: 30px 20px;
}

footer p {
    font-size: 0.95rem;
    opacity: 0.9;
}


/* WHATSAPP FLUTUANTE */

.whatsapp-float {
    position: fixed;
    left: 25px;
    bottom: 25px;
    background: #25d366;
    color: var(--white);
    font-size: 28px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}


/* RESPONSIVO */

@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-text {
        text-align: center;
    }
    .hero-text h1 {
        font-size: 2.5rem;
    }
    .hero-img {
        max-width: 300px;
        height: 300px;
    }
    .hero-decoration {
        width: 340px;
        height: 340px;
    }
    .about-content {
        grid-template-columns: 1fr;
    }
    .about-img {
        max-width: 350px;
        margin: auto;
    }
    .about-text {
        text-align: center;
    }
    .credentials {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        box-shadow: -5px 0 20px var(--shadow);
        transition: right 0.3s ease;
    }
    .nav-links.active {
        right: 0;
    }
    .menu-toggle {
        display: flex;
    }
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    .hero {
        padding: 120px 20px 60px;
    }
    .hero-text h1 {
        font-size: 2rem;
    }
    .hero-text .subtitle {
        font-size: 1.1rem;
    }
    .section {
        padding: 60px 20px;
    }
    .section-header h2 {
        font-size: 2.2rem;
    }
    .btn-primary,
    .btn-secondary,
    .btn-whatsapp {
        display: block;
        margin: 10px auto;
        text-align: center;
    }
    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 24px;
        left: 20px;
        bottom: 20px;
    }
    .contact-form-container {
        padding: 30px 20px;
    }
    .contact-icon {
        width: 72px;
        height: 72px;
        border-radius: 50%;
        background-color: var(--icon-bg);
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 16px;
        font-size: 2rem;
        color: var(--text-color);
        transition: background-color 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
    }
    .contact-card:hover .contact-icon {
        transform: translateY(-2px);
        background-color: var(--icon-bg-hover);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    }
    .contact-icon.instagram {
        color: var(--insta-color);
    }
    .contact-icon.whatsapp {
        color: var(--whatsapp-color);
    }
    .contact-card:focus-visible {
        outline: 3px solid rgba(155, 77, 115, 0.4);
        outline-offset: 6px;
        border-radius: 12px;
    }
    @media (prefers-reduced-motion: reduce) {
        .contact-icon {
            transition: none;
        }
    }
    .contact-card {
        padding: 24px;
    }
    .method-card {
        padding: 40px 30px;
        border-radius: 20px;
    }
    .method-card .section-header h2 {
        font-size: 2rem;
    }
    .method-text p {
        font-size: 1rem;
        text-align: left;
    }
    .method-subsection h3 {
        font-size: 1.5rem;
    }
}