/* ==================================================
   RESET
================================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "DM Sans", sans-serif;
    background: #fbfaf7;
    color: #24211f;
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    width: 100%;
    display: block;
    object-fit: cover;
}

a {
    text-decoration: none;
    color: inherit;
}

button,
input,
select {
    font: inherit;
}

button {
    border: none;
    background: none;
    cursor: pointer;
}

ul {
    list-style: none;
}

/* ==================================================
   VARIÁVEIS
================================================== */

:root {
    --primary: #9d7868;
    --primary-dark: #765548;
    --primary-soft: #eadfd8;

    --accent: #d8b79f;

    --background: #fbfaf7;
    --surface: #ffffff;
    --surface-soft: #f3eee9;

    --text: #24211f;
    --text-light: #766e69;

    --border: #e7ded8;

    --white: #ffffff;
    --green: #25d366;

    --shadow-sm: 0 8px 24px rgba(70, 50, 40, 0.07);
    --shadow-md: 0 18px 45px rgba(70, 50, 40, 0.10);
    --shadow-lg: 0 28px 70px rgba(70, 50, 40, 0.14);

    --radius-sm: 14px;
    --radius-md: 22px;
    --radius-lg: 34px;

    --transition: 0.3s ease;
}

/* ==================================================
   GLOBAL
================================================== */

.container {
    width: 91%;
    max-width: 1180px;
    margin: 0 auto;
}

.section {
    padding: 105px 0;
}

.section-header {
    max-width: 760px;
    margin: 0 auto 55px;
    text-align: center;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 7px 12px;

    border-radius: 999px;

    background: var(--primary-soft);
    color: var(--primary-dark);

    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.section-header h2,
.about-content h2,
.appointment-info h2 {
    margin: 16px 0 18px;

    font-family: "Playfair Display", serif;
    font-size: 3.4rem;
    line-height: 1.08;
    letter-spacing: -0.8px;

    color: var(--text);
}

.section-header h2 span,
.about-content h2 span,
.appointment-info h2 span {
    color: var(--primary);
}

.section-header p,
.about-content > p,
.appointment-info > p {
    color: var(--text-light);
}

.btn {
    min-height: 52px;
    padding: 0 24px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    border-radius: 12px;

    font-size: 0.9rem;
    font-weight: 700;

    transition: var(--transition);
}

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

    box-shadow: 0 10px 25px rgba(118, 85, 72, 0.18);
}

.btn-primary:hover {
    transform: translateY(-3px);
    background: #68493e;
    box-shadow: 0 16px 35px rgba(118, 85, 72, 0.24);
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.45);
    color: var(--white);
    background: rgba(255, 255, 255, 0.07);

}

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

/* ==================================================
   HEADER
================================================== */

.header {
    width: 100%;
    height: 78px;

    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;

    display: flex;
    align-items: center;

    background: rgba(251, 250, 247, 0.92);

    border-bottom: 1px solid rgba(231, 222, 216, 0.8);

    transition: var(--transition);
}

.header.scrolled {
    height: 68px;
    box-shadow: var(--shadow-sm);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 11px;
    flex-shrink: 0;
}

.logo-icon {
    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    border-radius: 12px;

    background: var(--primary-dark);
    color: var(--white);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.logo-text strong {
    font-family: "Playfair Display", serif;
    font-size: 1.48rem;
}

.logo-text span {
    margin-top: 3px;

    color: var(--text-light);

    font-size: 0.56rem;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.nav {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav a {
    position: relative;

    color: #5a524e;

    font-size: 0.86rem;
    font-weight: 600;

    transition: var(--transition);
}

.nav a::after {
    content: "";

    width: 0;
    height: 2px;

    position: absolute;
    left: 0;
    bottom: -7px;

    border-radius: 10px;

    background: var(--primary);

    transition: var(--transition);
}

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

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

.btn-header {
    min-height: 42px;
    padding: 0 17px;

    display: inline-flex;
    align-items: center;
    gap: 8px;

    border-radius: 10px;

    background: var(--primary-dark);
    color: var(--white);

    font-size: 0.8rem;
    font-weight: 700;

    transition: var(--transition);
}

.btn-header:hover {
    transform: translateY(-2px);
    background: #68493e;
}

.menu-toggle {
    width: 42px;
    height: 42px;

    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    gap: 5px;

    border-radius: 10px;

    background: var(--surface-soft);
}

.menu-toggle span {
    width: 23px;
    height: 2px;

    border-radius: 10px;

    background: var(--text);

    transition: var(--transition);
}

/* ==================================================
   HERO
================================================== */

.hero {
    min-height: 760px;
    padding: 135px 0 70px;

    position: relative;

    display: flex;
    align-items: center;

    overflow: hidden;

    background:
        linear-gradient(
            120deg,
            rgba(35, 30, 28, 0.97),
            rgba(69, 53, 47, 0.94)
        ),
        url("assets/hero-clinica.jpg") center/cover no-repeat;
}

.hero::before {
    content: "";

    width: 460px;
    height: 460px;

    position: absolute;
    right: -140px;
    top: -130px;

    border-radius: 50%;

    border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero::after {
    content: "";

    width: 280px;
    height: 280px;

    position: absolute;
    right: 60px;
    bottom: -120px;

    border-radius: 50%;

    background: rgba(216, 183, 159, 0.08);
}

.hero-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    background:
        radial-gradient(
            circle at 75% 30%,
            rgba(255, 255, 255, 0.08),
            transparent 35%
        );
}

.hero-content {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: 1.05fr 0.95fr;

    align-items: center;

    gap: 60px;
}

.hero-text {
    max-width: 670px;
}

.hero-tag {
    background: rgba(255, 255, 255, 0.08);
    color: #f1d8c8;
}

.hero-text h1 {
    margin: 18px 0 22px;

    font-family: "Playfair Display", serif;
    font-size: 5.2rem;
    line-height: 0.98;
    letter-spacing: -2px;

    color: var(--white);
}

.hero-text h1 span {
    display: block;

    color: #e6c7b5;
    font-style: italic;
}

.hero-text > p {
    max-width: 590px;

    color: rgba(255, 255, 255, 0.72);

    font-size: 1rem;
    line-height: 1.8;
}

.hero-buttons {
    margin-top: 32px;

    display: flex;
    flex-wrap: wrap;
    gap: 13px;
}

.hero-info {
    margin-top: 45px;
    padding-top: 24px;

    display: flex;
    gap: 25px;

    border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.hero-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-info-item > i {
    color: #e6c7b5;
}

.hero-info-item div {
    display: flex;
    flex-direction: column;
}

.hero-info-item strong {
    color: var(--white);
    font-size: 0.78rem;
}

.hero-info-item span {
    color: rgba(255, 255, 255, 0.52);
    font-size: 0.68rem;
}

.hero-image {
    max-width: 450px;
    margin-left: auto;

    position: relative;
}

.hero-image > img {
    height: 560px;

    border-radius: 24px;

    box-shadow: var(--shadow-lg);
}

.hero-image::before {
    content: "";

    position: absolute;
    top: 14px;
    right: -14px;
    bottom: -14px;
    left: 14px;

    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;

    z-index: -1;
}

.hero-card {
    min-width: 195px;
    padding: 15px 18px;

    position: absolute;
    left: -38px;
    bottom: 28px;

    display: flex;
    align-items: center;
    gap: 12px;

    border-radius: 14px;

    background: rgba(255, 255, 255, 0.96);

    box-shadow: var(--shadow-md);
}

.hero-card-icon {
    width: 43px;
    height: 43px;

    display: grid;
    place-items: center;

    border-radius: 12px;

    background: var(--surface-soft);
    color: var(--primary-dark);
}

.hero-card div:last-child {
    display: flex;
    flex-direction: column;
}

.hero-card strong {
    font-size: 1.08rem;
}

.hero-card span {
    font-size: 0.68rem;
    color: var(--text-light);
}

/* ==================================================
   BENEFÍCIOS
================================================== */

.benefits {
    background: var(--surface);
    border-bottom: 1px solid var(--border);
}

.benefits-grid {
    min-height: 120px;

    display: grid;
    grid-template-columns: repeat(4, 1fr);

    align-items: center;
}

.benefit-item {
    min-height: 60px;
    padding: 0 22px;

    display: flex;
    align-items: center;
    gap: 13px;

    border-right: 1px solid var(--border);
}

.benefit-item:first-child {
    padding-left: 0;
}

.benefit-item:last-child {
    border-right: none;
}

.benefit-item > i {
    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    border-radius: 12px;

    background: var(--surface-soft);
    color: var(--primary-dark);
}

.benefit-item div {
    display: flex;
    flex-direction: column;
}

.benefit-item strong {
    font-size: 0.82rem;
}

.benefit-item span {
    color: var(--text-light);
    font-size: 0.7rem;
}

/* ==================================================
   SOBRE
================================================== */

.about {
    background: var(--background);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 80px;
}

.about-images {
    min-height: 560px;
    position: relative;
}

.about-image-main {
    width: 80%;
    height: 500px;

    overflow: hidden;

    border-radius: 26px;

    box-shadow: var(--shadow-md);
}

.about-image-main img {
    height: 100%;
}

.about-image-small {
    width: 46%;
    height: 235px;

    position: absolute;
    right: 0;
    bottom: 0;

    overflow: hidden;

    border: 8px solid var(--background);
    border-radius: 22px;

    box-shadow: var(--shadow-sm);
}

.about-image-small img {
    height: 100%;
}

.experience-card {
    width: 132px;
    min-height: 112px;
    padding: 18px;

    position: absolute;
    top: 55px;
    right: 10px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    border-radius: 18px;

    background: var(--primary-dark);
    color: var(--white);

    text-align: center;

    box-shadow: var(--shadow-md);
}

.experience-card strong {
    font-family: "Playfair Display", serif;
    font-size: 2rem;
    line-height: 1;
}

.experience-card span {
    margin-top: 6px;
    font-size: 0.62rem;
    line-height: 1.35;
}

.about-content > p {
    margin-bottom: 14px;
    line-height: 1.8;
}

.about-list {
    margin: 28px 0;

    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 13px 18px;
}

.about-list-item {
    display: flex;
    align-items: center;
    gap: 9px;

    font-size: 0.86rem;
    font-weight: 600;
}

.about-list-item i {
    width: 27px;
    height: 27px;

    display: grid;
    place-items: center;

    border-radius: 8px;

    background: var(--primary-soft);
    color: var(--primary-dark);

    font-size: 0.65rem;
}

/* ==================================================
   PROCEDIMENTOS
================================================== */

.procedures {
    background: #f5f1ed;
}

.procedures-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 24px;
}

.procedure-card {
    overflow: hidden;

    border: 1px solid var(--border);
    border-radius: 20px;

    background: var(--surface);

    box-shadow: 0 6px 20px rgba(65, 48, 40, 0.04);

    transition: var(--transition);
}

.procedure-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-md);
}

.procedure-image {
    height: 240px;
    overflow: hidden;
}

.procedure-image img {
    height: 100%;
    transition: transform 0.5s ease;
}

.procedure-card:hover .procedure-image img {
    transform: scale(1.05);
}

.procedure-content {
    padding: 23px;
}

.procedure-category {
    display: inline-block;

    margin-bottom: 8px;

    color: var(--primary);

    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.procedure-content h3 {
    margin-bottom: 9px;

    font-family: "Playfair Display", serif;
    font-size: 1.45rem;
}

.procedure-content p {
    min-height: 70px;

    color: var(--text-light);

    font-size: 0.83rem;
    line-height: 1.7;
}

.procedure-link {
    margin-top: 17px;

    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: var(--primary-dark);

    font-size: 0.78rem;
    font-weight: 700;

    transition: var(--transition);
}

.procedure-link:hover {
    gap: 12px;
    color: var(--primary);
}

/* ==================================================
   RESULTADOS
================================================== */

.results {
    background: var(--surface);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 22px;
}

.result-card {
    height: 405px;

    position: relative;

    overflow: hidden;

    border-radius: 20px;

    box-shadow: var(--shadow-sm);
}

.result-card img {
    height: 100%;
    transition: transform 0.5s ease;
}

.result-card:hover img {
    transform: scale(1.045);
}

.result-card::after {
    content: "";

    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    background: linear-gradient(
        to top,
        rgba(30, 23, 20, 0.52),
        transparent 48%
    );
}

.result-label {
    position: absolute;
    z-index: 2;

    left: 18px;
    bottom: 18px;

    padding: 8px 13px;

    border-radius: 10px;

    background: rgba(255, 255, 255, 0.92);
    color: var(--text);

    font-size: 0.7rem;
    font-weight: 700;

}

/* ==================================================
   PROFISSIONAIS
================================================== */

.professionals {
    background: var(--background);
}

.professionals-grid {
    max-width: 860px;
    margin: auto;

    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 30px;
}

.professional-card {
    overflow: hidden;

    border: 1px solid var(--border);
    border-radius: 20px;

    background: var(--surface);

    box-shadow: var(--shadow-sm);

    transition: var(--transition);
}

.professional-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.professional-image {
    height: 380px;
    overflow: hidden;
}

.professional-image img {
    height: 100%;
}

.professional-content {
    padding: 23px;
    text-align: center;
}

.professional-content h3 {
    font-family: "Playfair Display", serif;
    font-size: 1.45rem;
}

.professional-content > span {
    display: block;

    margin: 4px 0 9px;

    color: var(--primary);

    font-size: 0.74rem;
    font-weight: 700;
}

.professional-content p {
    color: var(--text-light);
    font-size: 0.8rem;
}

.professional-social {
    margin-top: 16px;

    display: flex;
    justify-content: center;
}

.professional-social a {
    width: 38px;
    height: 38px;

    display: grid;
    place-items: center;

    border-radius: 10px;

    background: var(--surface-soft);
    color: var(--primary-dark);

    transition: var(--transition);
}

.professional-social a:hover {
    background: var(--primary-dark);
    color: var(--white);

    transform: translateY(-2px);
}

/* ==================================================
   DEPOIMENTOS
================================================== */

.testimonials {
    background: #f5f1ed;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 22px;
}

.testimonial-card {
    padding: 28px;

    border: 1px solid var(--border);
    border-radius: 18px;

    background: var(--surface);

    box-shadow: 0 6px 20px rgba(65, 48, 40, 0.04);

    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-sm);
}

.stars {
    display: flex;
    gap: 4px;

    margin-bottom: 17px;

    color: #c99b66;

    font-size: 0.74rem;
}

.testimonial-card > p {
    min-height: 112px;

    color: var(--text-light);

    font-size: 0.86rem;
    line-height: 1.8;

    font-style: italic;
}

.testimonial-client {
    margin-top: 18px;
    padding-top: 18px;

    display: flex;
    align-items: center;
    gap: 11px;

    border-top: 1px solid var(--border);
}

.client-avatar {
    width: 40px;
    height: 40px;

    display: grid;
    place-items: center;

    border-radius: 10px;

    background: var(--primary-soft);
    color: var(--primary-dark);

    font-weight: 700;
}

.testimonial-client div:last-child {
    display: flex;
    flex-direction: column;
}

.testimonial-client strong {
    font-size: 0.78rem;
}

.testimonial-client span {
    color: var(--text-light);
    font-size: 0.66rem;
}

/* ==================================================
   AGENDAMENTO
================================================== */

.appointment {
    position: relative;

    overflow: hidden;

    background: #2e2926;
}

.appointment::before {
    content: "";

    width: 420px;
    height: 420px;

    position: absolute;
    left: -190px;
    bottom: -180px;

    border-radius: 50%;

    background: rgba(216, 183, 159, 0.08);
}

.appointment-container {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: 0.9fr 1.1fr;

    align-items: center;

    gap: 70px;
}

.appointment-info .section-tag {
    background: rgba(255, 255, 255, 0.07);
    color: #e8c8b5;
}

.appointment-info h2 {
    color: var(--white);
}

.appointment-info h2 span {
    color: #e0bda7;
}

.appointment-info > p {
    max-width: 470px;

    color: rgba(255, 255, 255, 0.65);

    line-height: 1.8;
}

.appointment-benefits {
    margin-top: 28px;

    display: flex;
    flex-direction: column;
    gap: 13px;
}

.appointment-benefits div {
    display: flex;
    align-items: center;
    gap: 10px;

    color: rgba(255, 255, 255, 0.82);

    font-size: 0.84rem;
}

.appointment-benefits i {
    width: 28px;
    height: 28px;

    display: grid;
    place-items: center;

    border-radius: 8px;

    background: rgba(255, 255, 255, 0.08);
    color: #e0bda7;

    font-size: 0.62rem;
}

.appointment-box {
    padding: 34px;

    border-radius: 22px;

    background: var(--surface);

    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.22);
}

.appointment-box-header {
    margin-bottom: 24px;
}

.appointment-box-header span {
    color: var(--primary);

    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.appointment-box-header h3 {
    margin-top: 5px;

    font-family: "Playfair Display", serif;
    font-size: 1.7rem;
}

.appointment-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 14px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.form-group label {
    color: #4d4642;

    font-size: 0.72rem;
    font-weight: 700;
}

.input-wrapper {
    min-height: 50px;

    position: relative;

    display: flex;
    align-items: center;

    border: 1px solid var(--border);
    border-radius: 11px;

    background: #fcfbf9;

    transition: var(--transition);
}

.input-wrapper:focus-within {
    border-color: var(--primary);

    box-shadow: 0 0 0 3px rgba(157, 120, 104, 0.08);
}

.input-wrapper > i {
    width: 43px;

    flex-shrink: 0;

    display: grid;
    place-items: center;

    color: var(--primary-dark);

    font-size: 0.84rem;
}

.input-wrapper input,
.input-wrapper select {
    width: 100%;
    min-height: 48px;

    padding: 0 12px 0 0;

    border: none;
    outline: none;

    background: transparent;
    color: var(--text);

    font-size: 0.8rem;
}

.input-wrapper input::placeholder {
    color: #aaa29d;
}

.input-wrapper select {
    cursor: pointer;
}

.btn-submit {
    width: 100%;
    margin-top: 3px;

    border-radius: 11px;
}

.form-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;

    color: var(--text-light);

    font-size: 0.62rem;
}

/* ==================================================
   CTA
================================================== */

.cta {
    padding: 42px 0;
    background: var(--primary);
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 28px;
}

.cta-content span {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.76rem;
}

.cta-content h2 {
    margin-top: 3px;

    font-family: "Playfair Display", serif;
    font-size: 2.4rem;

    color: var(--white);
}

.btn-whatsapp {
    flex-shrink: 0;

    background: var(--white);
    color: #1f8d4b;
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    background: #f2fff7;
}

/* ==================================================
   CONTATO
================================================== */

.contact {
    background: var(--background);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 18px;
}

.contact-card {
    min-height: 220px;
    padding: 25px 20px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;

    border: 1px solid var(--border);
    border-radius: 18px;

    background: var(--surface);

    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-sm);
}

.contact-icon {
    width: 50px;
    height: 50px;

    margin-bottom: 14px;

    display: grid;
    place-items: center;

    border-radius: 12px;

    background: var(--primary-soft);
    color: var(--primary-dark);
}

.contact-card h3 {
    margin-bottom: 6px;

    font-family: "Playfair Display", serif;
    font-size: 1.12rem;
}

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

.contact-card a {
    margin-top: 9px;

    color: var(--primary-dark);

    font-size: 0.72rem;
    font-weight: 700;
}

/* ==================================================
   FOOTER
================================================== */

.footer {
    background: #211e1c;
    color: rgba(255, 255, 255, 0.68);
}

.footer-grid {
    padding: 68px 0 48px;

    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.15fr;

    gap: 40px;
}

.footer .logo-text strong {
    color: var(--white);
}

.footer .logo-text span {
    color: rgba(255, 255, 255, 0.42);
}

.footer-brand > p {
    max-width: 280px;
    margin-top: 18px;

    font-size: 0.76rem;
    line-height: 1.7;
}

.footer-social {
    margin-top: 20px;

    display: flex;
    gap: 9px;
}

.footer-social a {
    width: 38px;
    height: 38px;

    display: grid;
    place-items: center;

    border-radius: 10px;

    background: rgba(255, 255, 255, 0.06);
    color: var(--white);

    transition: var(--transition);
}

.footer-social a:hover {
    transform: translateY(-2px);
    background: var(--primary);
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
}

.footer-column h3 {
    margin-bottom: 7px;

    color: var(--white);

    font-size: 0.86rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.52);

    font-size: 0.72rem;

    transition: var(--transition);
}

.footer-column a:hover {
    color: #e0bda7;
    transform: translateX(3px);
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 8px;

    font-size: 0.72rem;
}

.footer-contact p i {
    margin-top: 4px;
    color: #d0a58c;
}

.footer-bottom {
    padding: 18px 0;

    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bottom-content {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 18px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.64rem;
}

.footer-bottom a {
    color: #d4aa91;
}

/* ==================================================
   WHATSAPP FLUTUANTE
================================================== */

.whatsapp-floating {
    width: 56px;
    height: 56px;

    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 900;

    display: grid;
    place-items: center;

    border-radius: 15px;

    background: var(--green);
    color: var(--white);

    font-size: 1.55rem;

    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.28);

    transition: var(--transition);
}

.whatsapp-floating:hover {
    transform: translateY(-4px) scale(1.03);
}

/* ==================================================
   MODAL
================================================== */

.appointment-modal {
    width: 100%;
    height: 100%;

    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2000;

    padding: 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    visibility: hidden;

    transition: var(--transition);
}

.appointment-modal.active {
    opacity: 1;
    visibility: visible;
}

.appointment-modal-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    background: rgba(27, 23, 21, 0.78);

}

.appointment-modal-content {
    width: 100%;
    max-width: 470px;
    padding: 36px;

    position: relative;
    z-index: 2;

    border-radius: 20px;

    background: var(--surface);

    text-align: center;

    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.25);

    transform: translateY(20px) scale(0.98);

    transition: var(--transition);
}

.appointment-modal.active .appointment-modal-content {
    transform: translateY(0) scale(1);
}

.modal-close {
    width: 36px;
    height: 36px;

    position: absolute;
    right: 16px;
    top: 16px;

    display: grid;
    place-items: center;

    border-radius: 10px;

    background: var(--surface-soft);
    color: var(--text);
}

.modal-success-icon {
    width: 66px;
    height: 66px;

    margin: 0 auto 16px;

    display: grid;
    place-items: center;

    border-radius: 18px;

    background: #e8f6ed;
    color: #34935d;

    font-size: 1.3rem;
}

.appointment-modal-content > span {
    display: block;

    color: var(--primary);

    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.appointment-modal-content h2 {
    margin: 5px 0 10px;

    font-family: "Playfair Display", serif;
    font-size: 1.9rem;
}

.appointment-modal-content > p {
    max-width: 380px;
    margin: auto;

    color: var(--text-light);

    font-size: 0.8rem;
    line-height: 1.7;
}

.appointment-summary {
    margin: 20px 0;
    padding: 16px;

    border-radius: 12px;

    background: var(--surface-soft);

    text-align: left;

    font-size: 0.76rem;
}

.appointment-modal-content .btn {
    width: 100%;
    border-radius: 11px;
}

/* ==================================================
   RESPONSIVO - NOTEBOOK
================================================== */

@media (max-width: 1100px) {

    .nav {
        gap: 16px;
    }

    .nav a {
        font-size: 0.8rem;
    }

    .hero-content {
        gap: 42px;
    }

    .hero-image > img {
        height: 510px;
    }

    .about-grid {
        gap: 50px;
    }

    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ==================================================
   RESPONSIVO - TABLET
================================================== */

@media (max-width: 950px) {

    .section-header h2,
    .about-content h2,
    .appointment-info h2 {
        font-size: 2.8rem;
    }

    .hero-text h1 {
        font-size: 4.4rem;
    }

    .cta-content h2 {
        font-size: 2.1rem;
    }

    .header-content {
        position: relative;
    }

    .btn-header {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .nav {
        width: 100%;

        position: absolute;
        top: calc(100% + 15px);
        left: 0;

        padding: 9px;

        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;

        border: 1px solid var(--border);
        border-radius: 14px;

        background: rgba(251, 250, 247, 0.98);

        box-shadow: var(--shadow-md);

        opacity: 0;
        visibility: hidden;

        transform: translateY(-10px);

        transition: var(--transition);
    }

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

    .nav a {
        width: 100%;
        padding: 12px 14px;

        border-radius: 9px;

        font-size: 0.84rem;
    }

    .nav a:hover {
        background: var(--surface-soft);
    }

    .nav a::after {
        display: none;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .hero {
        padding-top: 125px;
    }

    .hero-content {
        grid-template-columns: 1fr;
    }

    .hero-text {
        max-width: 760px;
    }

    .hero-image {
        max-width: 560px;
        margin: 20px auto 0;
    }

    .hero-image > img {
        height: 580px;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 20px 0;
    }

    .benefit-item {
        padding: 20px;
    }

    .benefit-item:nth-child(2) {
        border-right: none;
    }

    .benefit-item:nth-child(1),
    .benefit-item:nth-child(2) {
        border-bottom: 1px solid var(--border);
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .about-images {
        width: 100%;
        max-width: 600px;
        margin: auto;
    }

    .procedures-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .results-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .result-card:last-child {
        grid-column: 1 / -1;
        width: 50%;
        margin: auto;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonial-card:last-child {
        grid-column: 1 / -1;
    }

    .appointment-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .cta-content {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ==================================================
   RESPONSIVO - MOBILE
================================================== */

@media (max-width: 680px) {

    .section-header h2,
    .about-content h2,
    .appointment-info h2 {
        font-size: 2.35rem;
    }

    .hero-text h1 {
        font-size: 3.6rem;
    }

    .cta-content h2 {
        font-size: 1.9rem;
    }

    .container {
        width: 92%;
    }

    .section {
        padding: 76px 0;
    }

    .header {
        height: 68px;
    }

    .logo-icon {
        width: 38px;
        height: 38px;
    }

    .logo-text strong {
        font-size: 1.3rem;
    }

    .logo-text span {
        font-size: 0.5rem;
    }

    .hero {
        min-height: 0;
        padding: 115px 0 65px;
    }

    .hero-content {
        gap: 50px;
    }

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

    .hero-text h1 {
        font-size: 3.8rem;
    }

    .hero-text > p {
        font-size: 0.9rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-info {
        justify-content: center;
        flex-wrap: wrap;
        gap: 18px;
    }

    .hero-info-item {
        width: calc(50% - 9px);
        justify-content: flex-start;
        text-align: left;
    }

    .hero-info-item:last-child {
        width: auto;
    }

    .hero-image {
        max-width: 390px;
    }

    .hero-image > img {
        height: 455px;
        border-radius: 20px;
    }

    .hero-image::before {
        border-radius: 20px;
    }

    .hero-card {
        left: 50%;
        bottom: -24px;

        transform: translateX(-50%);
    }

    .benefits {
        padding-top: 28px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .benefit-item {
        padding: 18px 5px;

        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .benefit-item:first-child {
        padding-left: 5px;
    }

    .benefit-item:last-child {
        border-bottom: none;
    }

    .about-images {
        min-height: 455px;
    }

    .about-image-main {
        width: 86%;
        height: 395px;
    }

    .about-image-small {
        width: 50%;
        height: 180px;
        border-width: 6px;
    }

    .experience-card {
        width: 108px;
        min-height: 94px;
        top: 55px;
    }

    .about-list {
        grid-template-columns: 1fr;
    }

    .about-content .btn {
        width: 100%;
    }

    .procedures-grid,
    .results-grid,
    .professionals-grid,
    .testimonials-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .procedure-image {
        height: 235px;
    }

    .procedure-content p,
    .testimonial-card > p {
        min-height: 0;
    }

    .result-card {
        height: 370px;
    }

    .result-card:last-child {
        width: 100%;
        grid-column: auto;
    }

    .professional-image {
        height: 410px;
    }

    .testimonial-card:last-child {
        grid-column: auto;
    }

    .appointment-box {
        padding: 26px 18px;
        border-radius: 18px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .cta-content {
        align-items: center;
        text-align: center;
    }

    .cta-content .btn {
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 6px;
    }

    .whatsapp-floating {
        width: 52px;
        height: 52px;

        right: 16px;
        bottom: 16px;

        border-radius: 14px;
    }

    .appointment-modal-content {
        padding: 50px 20px 26px;
    }
}

/* ==================================================
   RESPONSIVO - MOBILE PEQUENO
================================================== */

@media (max-width: 420px) {

    .hero-text h1 {
        font-size: 2.9rem;
    }

    .hero-info {
        flex-direction: column;
        align-items: center;
    }

    .hero-info-item,
    .hero-info-item:last-child {
        width: 185px;
    }

    .hero-image > img {
        height: 405px;
    }

    .hero-card {
        min-width: 175px;
        padding: 13px 15px;
    }

    .about-images {
        min-height: 405px;
    }

    .about-image-main {
        height: 345px;
    }

    .about-image-small {
        height: 155px;
    }

    .experience-card {
        width: 94px;
        min-height: 84px;
        top: 50px;
        right: 0;
    }

    .experience-card strong {
        font-size: 1.5rem;
    }

    .experience-card span {
        font-size: 0.5rem;
    }

    .professional-image {
        height: 355px;
    }

    .appointment-box-header h3 {
        font-size: 1.5rem;
    }
}


.reveal {
    opacity: 0;
    transform: translateY(25px);
    transition:
        opacity 0.6s ease,
        transform 0.6s ease;
}

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