/* RESET E ESTILOS GLOBAIS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #f8f7f2;
    --surface: #ffffff;
    --accent: #5f8d8a;
    --accent-dark: #3a6d6a;
    --accent-soft: #dce8e4;
    --text: #203540;
    --muted: #5b6d72;
    --shadow: 0 18px 50px rgba(79, 108, 120, 0.08);
    --transition: 0.25s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
    min-height: 100vh;
}

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

button,
a {
    font-family: inherit;
}

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

.navbar {
    background: linear-gradient(135deg, #5f8d8a 0%, #6a9fa0 100%);
    color: #ffffff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 20px 45px rgba(34, 58, 66, 0.12);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #ffffff;
    text-decoration: none;
}

.brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.brand-name {
    display: block;
    font-size: 1rem;
    font-weight: 700;
}

.brand-subtitle {
    display: block;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.85);
}

.nav-menu {
    display: flex;
    gap: 1.6rem;
    align-items: center;
    flex-wrap: wrap;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    position: relative;
}

.nav-link::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #ffffff;
    transition: width var(--transition);
    position: absolute;
    bottom: -4px;
    left: 0;
}

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

.nav-toggle {
    display: none;
    border: none;
    background: transparent;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    padding: 0.25rem;
}

.nav-toggle span {
    display: block;
    width: 26px;
    height: 3px;
    border-radius: 999px;
    background: #ffffff;
}

.hero {
    background: linear-gradient(180deg, #f6fbfb 0%, #ffffff 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 700px;
    height: 700px;
    top: -220px;
    right: -220px;
    border-radius: 50%;
    background: rgba(151, 212, 199, 0.18);
    z-index: 0;
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    align-items: start;
    gap: 2rem;
    grid-template-columns: 1.5fr 1fr;
}

.eyebrow {
    display: inline-flex;
    gap: 0.5rem;
    align-items: center;
    background: rgba(90, 142, 132, 0.16);
    color: #35615c;
    font-size: 0.85rem;
    padding: 0.8rem 1rem;
    border-radius: 999px;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.hero-copy h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.6rem, 4vw, 4.6rem);
    color: #1c3338;
    margin: 1.4rem 0 1.25rem;
    line-height: 1.05;
}

.hero-text {
    color: #495d61;
    font-size: 1rem;
    line-height: 1.9;
    max-width: 640px;
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.6rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.btn-primary {
    background: #3a706d;
    color: #ffffff;
    padding: 1rem 1.8rem;
    box-shadow: 0 18px 40px rgba(58, 112, 109, 0.18);
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: #315c5a;
}

.btn-secondary {
    background: rgba(91, 141, 184, 0.12);
    color: #2c4f54;
    padding: 1rem 1.8rem;
}

.btn-ghost {
    padding: 0.95rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #ffffff;
    text-decoration: none;
}

.btn-ghost:hover,
.btn-ghost:visited {
    color: #ffffff;
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
}

.hero-tags span {
    background: rgba(91, 141, 184, 0.12);
    color: #315669;
    border-radius: 999px;
    padding: 0.75rem 1rem;
    font-size: 0.93rem;
}

.hero-sidebar {
    display: grid;
    gap: 1.5rem;
}

.profile-card,
.slider-block,
.service-card,
.diff-card,
.area-card,
.contact-card,
.testimonial-card {
    background: #ffffff;
    border-radius: 30px;
    border: 1px solid rgba(90, 129, 126, 0.14);
    box-shadow: var(--shadow);
}

.profile-card {
    padding: 1.8rem;
}

/* FOTO DE PERFIL: substitua por uma imagem pessoal da profissional */
.profile-photo {
    width: 100%;
    aspect-ratio: 4 / 5;
    border-radius: 26px;
    /* background-image: url('https://images.unsplash.com/photo-1555529771-0d9e2a2b103b?auto=format&fit=crop&w=800&q=80'); */
    background-image: url('imagens/foto-perfil.jpeg');
    background-size: cover;
    background-position: center;
    margin-bottom: 1.5rem;
}

.profile-caption {
    display: block;
    color: #3f6464;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-size: 0.88rem;
    margin-bottom: 0.6rem;
}

.profile-card h2 {
    color: #1c3338;
    margin-bottom: 1rem;
    font-size: 1.6rem;
}

.profile-card p {
    color: #516668;
    line-height: 1.9;
    margin-bottom: 1.6rem;
}

.profile-list {
    display: grid;
    gap: 0.95rem;
}

.profile-list li {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    color: #4b6466;
}

.profile-list i {
    width: 2.6rem;
    height: 2.6rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: #e6f1f1;
    color: #3b6365;
}

.profile-card,
.slider-block,
.service-card,
.diff-card,
.area-card,
.contact-card,
.testimonial-card {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.show {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.slider-block {
    padding: 1.5rem;
}

.slider-header {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1rem;
    border-radius: 999px;
    background: #f1f6f7;
    color: #3d5f65;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
}

.slider {
    position: relative;
    min-height: 120px;
}

.slider-item {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.45s ease, transform 0.45s ease;
    color: #3e5660;
    font-size: 1rem;
    line-height: 1.9;
}

.slider-item.active {
    opacity: 1;
    transform: translateY(0);
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.slider-dots button {
    width: 10px;
    height: 10px;
    background: #c3d6d8;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: transform var(--transition), background var(--transition);
}

.slider-dots button.active {
    background: #4c7b7d;
    transform: scale(1.1);
}

.section {
    padding: 80px 0;
}

.section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 3rem;
}

.section-eyebrow {
    display: inline-block;
    color: #35615c;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-head h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 4vw, 3.4rem);
    color: #203540;
    margin-bottom: 1rem;
    line-height: 1.05;
}

.section-head p {
    color: #55696e;
    font-size: 1rem;
    line-height: 1.9;
}

.about-grid,
.contact-grid {
    display: grid;
    gap: 2rem;
}

.about-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

/* IMAGEM DE SOBRE: troque por uma foto pessoal ou imagem de apresentação */
.about-image-card {
    min-height: 420px;
    border-radius: 32px;
    overflow: hidden;
    background-image: linear-gradient(150deg, rgba(91, 141, 184, 0.16), rgba(214, 232, 221, 0.18)), url('https://images.unsplash.com/photo-1512290923902-8a9f81dc236c?auto=format&fit=crop&w=900&q=80');
    /* Exemplo: background-image: linear-gradient(150deg, rgba(91, 141, 184, 0.16), rgba(214, 232, 221, 0.18)), url('imagens/foto-sobre.jpg'); */
    background-size: cover;
    background-position: center;
    position: relative;
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(248, 247, 242, 0.0) 0%, rgba(255, 255, 255, 0.72) 100%);
}

.about-details p {
    color: #495861;
    line-height: 1.9;
    margin-bottom: 1.75rem;
}

.info-grid {
    display: grid;
    gap: 1.3rem;
}

.info-grid div strong {
    display: block;
    color: #31565e;
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.info-grid div p {
    margin: 0;
    color: #5d6e74;
    line-height: 1.8;
}

.services-grid,
.areas-grid,
.diff-grid {
    display: grid;
    gap: 1.5rem;
}

.services-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.service-card,
.diff-card,
.area-card,
.contact-card,
.testimonial-card {
    padding: 2rem;
}

.service-card:hover,
.diff-card:hover,
.area-card:hover,
.contact-card:hover,
.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(79, 108, 120, 0.12);
}

.service-card i,
.diff-card i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.2rem;
    height: 3.2rem;
    border-radius: 14px;
    background: #e5f1ee;
    color: #3f6e6a;
    margin-bottom: 1.3rem;
    font-size: 1.2rem;
}

.service-card h3,
.diff-card h3 {
    color: #203540;
    margin-bottom: 1rem;
}

.service-card p,
.diff-card p {
    color: #54676f;
    line-height: 1.85;
}

.areas-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.area-card {
    min-height: 140px;
    display: grid;
    place-items: center;
    text-align: center;
    color: #2e4b53;
    font-weight: 700;
    font-size: 1.05rem;
    background: linear-gradient(180deg, rgba(92, 149, 137, 0.12), rgba(236, 240, 235, 0.68));
    border: 1px solid rgba(83, 132, 124, 0.16);
}

.diff-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.testimonials-section {
    background: #f7f6f2;
}

.testimonials-slider {
    display: grid;
    gap: 1.5rem;
}

.testimonial-card {
    padding: 2rem;
    min-height: 210px;
}

.testimonial-card p {
    color: #3f525a;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.testimonial-card span {
    color: #5d6e75;
    font-size: 0.95rem;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.slider-btn {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    border: none;
    background: #ffffff;
    box-shadow: 0 14px 40px rgba(68, 100, 105, 0.12);
    cursor: pointer;
    color: #3d5d63;
    transition: transform var(--transition), background var(--transition);
}

.slider-btn:hover {
    transform: translateY(-2px);
    background: #edf6f5;
}

.contact-grid {
    grid-template-columns: 1.2fr 0.9fr;
}

.contact-card h3 {
    color: #203540;
    margin-bottom: 1rem;
}

.contact-card p {
    color: #51686f;
    line-height: 1.9;
    margin-bottom: 1.8rem;
}

.btn-whatsapp {
    background: #25d366;
    color: #ffffff;
}

.btn-contact {
    width: 100%;
}

.contact-meta {
    display: grid;
    gap: 1rem;
}

.contact-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    align-items: center;
    padding: 1rem 1.2rem;
    border-radius: 24px;
    background: #f4f8f7;
}

.contact-item i {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: #b5d7d0;
    color: #154c4d;
}

.contact-item span {
    display: block;
    color: #22333b;
    font-weight: 600;
}

.contact-item small {
    color: #5c6e73;
    font-size: 0.92rem;
}

.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25d366;
    display: grid;
    place-items: center;
    color: #ffffff;
    box-shadow: 0 18px 40px rgba(37, 211, 102, 0.22);
    z-index: 1000;
}

.whatsapp-float::before {
    content: "\f232";
    font-family: "Font Awesome 6 Brands";
    font-size: 28px;
    line-height: 1;
    color: #ffffff;
}

.footer {
    background: #e7eef0;
    padding: 2rem 0;
}

.footer-inner {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    color: #4a6368;
    font-size: 0.95rem;
}

.footer-inner p {
    margin: 0;
}

@media (max-width: 980px) {
    .hero-grid,
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 90px 18px 60px;
    }

    .hero-sidebar {
        order: -1;
    }

    .section {
        padding: 60px 18px;
    }
}

@media (max-width: 780px) {
    .nav-inner {
        display: grid;
        grid-template-columns: 1fr auto;
    }

    .nav-menu {
        position: absolute;
        inset: 72px 20px auto;
        background: rgba(255, 255, 255, 0.98);
        border-radius: 24px;
        padding: 1rem 1.25rem;
        box-shadow: 0 22px 50px rgba(22, 47, 63, 0.12);
        display: flex;
        flex-direction: column;
        gap: 1rem;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-12px);
        transition: opacity 0.25s ease, transform 0.25s ease;
        z-index: 999;
    }

    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-menu .nav-link {
        color: #203540;
    }

    .nav-menu .nav-link:hover,
    .nav-menu .nav-link.active {
        color: #31655d;
    }

    .nav-toggle {
        display: flex;
    }

    .btn-ghost {
        display: none;
    }

    .hero-tags {
        flex-direction: column;
    }

    .services-grid,
    .areas-grid,
    .diff-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-controls {
        justify-content: space-between;
    }
}

@media (max-width: 540px) {
    .hero-copy h1 {
        font-size: 2.4rem;
    }

    .section-head h2 {
        font-size: 2rem;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
    }
}
