/* =========================================================
   CLÍNICA SORRISO
   STYLE.CSS COMPLETO
   Landing Page Profissional
========================================================= */


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

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    font-family: "DM Sans", sans-serif;
    background: #ffffff;
    color: #102a2a;
    line-height: 1.6;
    overflow-x: hidden;
}

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

button,
input,
select,
textarea {
    font-family: inherit;
}

button {
    cursor: pointer;
}

a {
    color: inherit;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}


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

:root {

    --primary: #0faaa9;

    --primary-dark: #078d8c;

    --primary-light: #e8f8f7;

    --dark: #102a2a;

    --text: #526565;

    --muted: #788989;

    --background: #ffffff;

    --light-background: #f7fbfb;

    --border: #e3eeee;

    --white: #ffffff;

    --shadow:
        0 20px 60px rgba(15, 170, 169, 0.10);

    --radius-small: 12px;

    --radius-medium: 20px;

    --radius-large: 28px;

}


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

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 78px;

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

    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);

    border-bottom: 1px solid rgba(15, 170, 169, 0.08);

    z-index: 1000;
}

.header-container {

    height: 100%;

    display: flex;

    align-items: center;

    justify-content: space-between;

}


/* =========================================================
   LOGO
========================================================= */

.logo {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    text-decoration: none;

    color: var(--dark);

}

.logo-icon {

    width: 38px;

    height: 38px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 12px;

    background: var(--primary);

    color: white;

    font-size: 20px;

    box-shadow:
        0 8px 20px rgba(15, 170, 169, 0.22);

}

.logo-text {

    display: flex;

    flex-direction: column;

    font-family: "Manrope", sans-serif;

    font-size: 16px;

    line-height: 1.1;

    font-weight: 600;

}

.logo-text strong {

    font-weight: 800;

    color: var(--primary);

}


/* =========================================================
   MENU
========================================================= */

.nav {

    display: flex;

    align-items: center;

    gap: 30px;

}

.nav a {

    position: relative;

    text-decoration: none;

    color: #506060;

    font-size: 14px;

    font-weight: 600;

    transition: color 0.3s ease;

}

.nav a:not(.nav-button)::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: -8px;

    width: 0;

    height: 2px;

    background: var(--primary);

    transition: width 0.3s ease;

}

.nav a:not(.nav-button):hover {

    color: var(--primary);

}

.nav a:not(.nav-button):hover::after {

    width: 100%;

}


/* =========================================================
   BOTÃO DO MENU
========================================================= */

.nav-button {

    padding: 12px 20px;

    border-radius: 10px;

    background: var(--primary);

    color: white !important;

    box-shadow:
        0 8px 20px rgba(15, 170, 169, 0.18);

    transition:
        transform 0.3s ease,
        background 0.3s ease;

}

.nav-button:hover {

    background: var(--primary-dark);

    transform: translateY(-2px);

}


/* =========================================================
   MENU MOBILE
========================================================= */

.menu-toggle {

    display: none;

    width: 44px;

    height: 44px;

    border: 0;

    background: var(--primary-light);

    border-radius: 10px;

    align-items: center;

    justify-content: center;

    flex-direction: column;

    gap: 5px;

}

.menu-toggle span {

    width: 21px;

    height: 2px;

    background: var(--primary);

    border-radius: 10px;

    transition: 0.3s;

}


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

.hero {

    position: relative;

    padding-top: 150px;

    padding-bottom: 100px;

    background:

        radial-gradient(
            circle at 85% 20%,
            rgba(15, 170, 169, 0.09),
            transparent 35%
        ),

        linear-gradient(
            180deg,
            #ffffff 0%,
            #f7fbfb 100%
        );

}

.hero-container {

    display: grid;

    grid-template-columns:
        1fr
        0.9fr;

    gap: 80px;

    align-items: center;

}

.hero-content {

    max-width: 600px;

}

.section-tag {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: var(--primary);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1.8px;

    text-transform: uppercase;

    margin-bottom: 18px;

}

.section-tag::before {

    content: "";

    width: 25px;

    height: 2px;

    background: var(--primary);

}


.hero h1 {

    font-family: "Manrope", sans-serif;

    font-size: clamp(42px, 5vw, 68px);

    line-height: 1.08;

    letter-spacing: -2.5px;

    color: var(--dark);

    margin-bottom: 25px;

}

.hero h1 span {

    color: var(--primary);

}

.hero p {

    max-width: 540px;

    color: var(--text);

    font-size: 17px;

    line-height: 1.8;

    margin-bottom: 35px;

}


/* =========================================================
   BOTÕES
========================================================= */

.hero-buttons {

    display: flex;

    align-items: center;

    gap: 15px;

    flex-wrap: wrap;

}

.btn-primary {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 14px;

    min-height: 52px;

    padding: 0 25px;

    border: 0;

    border-radius: 12px;

    background: var(--primary);

    color: white;

    text-decoration: none;

    font-size: 14px;

    font-weight: 700;

    box-shadow:
        0 12px 30px rgba(15, 170, 169, 0.20);

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;

}

.btn-primary:hover {

    background: var(--primary-dark);

    transform: translateY(-3px);

    box-shadow:
        0 16px 35px rgba(15, 170, 169, 0.28);

}

.btn-primary span {

    font-size: 20px;

}

.btn-secondary {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 52px;

    padding: 0 24px;

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

    border-radius: 12px;

    background: white;

    color: var(--dark);

    text-decoration: none;

    font-size: 14px;

    font-weight: 700;

    transition: all 0.3s ease;

}

.btn-secondary:hover {

    border-color: var(--primary);

    color: var(--primary);

    transform: translateY(-3px);

}


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

.hero-trust {

    display: flex;

    align-items: center;

    gap: 35px;

    margin-top: 45px;

    padding-top: 30px;

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

}

.trust-item {

    display: flex;

    flex-direction: column;

    gap: 2px;

}

.trust-item strong {

    font-family: "Manrope", sans-serif;

    color: var(--dark);

    font-size: 22px;

}

.trust-item span {

    color: var(--muted);

    font-size: 12px;

}


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

.hero-image {

    position: relative;

}

.hero-image-wrapper {

    position: relative;

    height: 600px;

    overflow: hidden;

    border-radius: 35px;

    box-shadow:
        0 30px 80px rgba(16, 42, 42, 0.16);

}

.hero-image-wrapper::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 55%,
            rgba(16, 42, 42, 0.22)
        );

}

.hero-image-wrapper img {

    width: 100%;

    height: 100%;

    object-fit: cover;

}


/* =========================================================
   HERO FLOATING CARD
========================================================= */

.hero-floating-card {

    position: absolute;

    left: -35px;

    bottom: 40px;

    display: flex;

    align-items: center;

    gap: 14px;

    max-width: 270px;

    padding: 17px 20px;

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

    backdrop-filter: blur(10px);

    border-radius: 15px;

    box-shadow:
        0 20px 50px rgba(16, 42, 42, 0.14);

    z-index: 3;

}

.floating-icon {

    width: 40px;

    height: 40px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: var(--primary-light);

    color: var(--primary);

    font-weight: 800;

}

.hero-floating-card div:last-child {

    display: flex;

    flex-direction: column;

}

.hero-floating-card strong {

    color: var(--dark);

    font-size: 13px;

}

.hero-floating-card span {

    color: var(--muted);

    font-size: 11px;

}


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

.benefits {

    position: relative;

    margin-top: -35px;

    z-index: 10;

}

.benefits-grid {

    display: grid;

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

    gap: 20px;

}

.benefit-card {

    display: flex;

    align-items: flex-start;

    gap: 18px;

    padding: 28px;

    background: white;

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

    border-radius: 18px;

    box-shadow:
        0 15px 45px rgba(16, 42, 42, 0.07);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;

}

.benefit-card:hover {

    transform: translateY(-5px);

    box-shadow:
        0 20px 50px rgba(15, 170, 169, 0.12);

}

.benefit-icon {

    width: 45px;

    height: 45px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    background: var(--primary-light);

    color: var(--primary);

    border-radius: 12px;

    font-size: 20px;

    font-weight: 700;

}

.benefit-card h3 {

    color: var(--dark);

    font-family: "Manrope", sans-serif;

    font-size: 15px;

    margin-bottom: 5px;

}

.benefit-card p {

    color: var(--muted);

    font-size: 13px;

    line-height: 1.6;

}


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

.about {

    padding: 130px 0;

    background: white;

}

.about-container {

    display: grid;

    grid-template-columns:
        0.9fr
        1fr;

    align-items: center;

    gap: 90px;

}

.about-image {

    height: 560px;

    overflow: hidden;

    border-radius: 30px;

    position: relative;

}

.about-image::after {

    content: "";

    position: absolute;

    inset: 0;

    border: 10px solid rgba(255, 255, 255, 0.15);

    border-radius: 30px;

    pointer-events: none;

}

.about-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

}

.about-content h2 {

    font-family: "Manrope", sans-serif;

    color: var(--dark);

    font-size: clamp(34px, 4vw, 48px);

    line-height: 1.15;

    letter-spacing: -1.5px;

    margin-bottom: 25px;

}

.about-content h2 span {

    color: var(--primary);

}

.about-content > p {

    color: var(--text);

    font-size: 15px;

    line-height: 1.8;

    margin-bottom: 15px;

}

.about-list {

    display: flex;

    flex-direction: column;

    gap: 14px;

    margin: 30px 0;

}

.about-list div {

    display: flex;

    align-items: center;

    gap: 12px;

}

.about-list span {

    width: 24px;

    height: 24px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: var(--primary-light);

    color: var(--primary);

    border-radius: 50%;

    font-size: 12px;

    font-weight: 800;

}

.about-list p {

    color: var(--dark);

    font-size: 14px;

    font-weight: 600;

}


/* =========================================================
   TÍTULOS DE SEÇÃO
========================================================= */

.section-heading {

    max-width: 650px;

    margin: 0 auto;

    text-align: center;

}

.section-heading .section-tag {

    justify-content: center;

}

.section-heading h2 {

    font-family: "Manrope", sans-serif;

    color: var(--dark);

    font-size: clamp(34px, 4vw, 48px);

    line-height: 1.15;

    letter-spacing: -1.5px;

    margin-bottom: 18px;

}

.section-heading p {

    color: var(--text);

    font-size: 15px;

    line-height: 1.8;

}


/* =========================================================
   TRATAMENTOS
========================================================= */

.treatments {

    padding: 120px 0;

    background: #f7fbfb;

    position: relative;

}

.treatments-grid {

    display: grid;

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

    gap: 24px;

    margin-top: 55px;

}

.treatment-card {

    position: relative;

    background: #ffffff;

    border: 1px solid #e5eeee;

    border-radius: 24px;

    padding: 36px;

    min-height: 360px;

    overflow: hidden;

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;

}

.treatment-card::before {

    content: "";

    position: absolute;

    width: 180px;

    height: 180px;

    border-radius: 50%;

    background:
        rgba(15, 170, 169, 0.07);

    top: -80px;

    right: -80px;

    transition:
        transform 0.4s ease;

}

.treatment-card:hover {

    transform: translateY(-8px);

    border-color:
        rgba(15, 170, 169, 0.35);

    box-shadow:
        0 20px 50px rgba(15, 170, 169, 0.12);

}

.treatment-card:hover::before {

    transform: scale(1.5);

}

.treatment-number {

    position: absolute;

    top: 28px;

    right: 30px;

    font-size: 13px;

    font-weight: 700;

    color: #9ebaba;

    letter-spacing: 1px;

}

.treatment-card-content {

    position: relative;

    z-index: 2;

}

.treatment-icon {

    width: 58px;

    height: 58px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #e8f8f7;

    color: #0faaa9;

    border-radius: 16px;

    font-size: 25px;

    font-weight: 700;

    margin-bottom: 28px;

}

.treatment-card h3 {

    font-family: "Manrope", sans-serif;

    font-size: 22px;

    color: #102a2a;

    margin-bottom: 14px;

}

.treatment-card p {

    color: #667878;

    font-size: 15px;

    line-height: 1.7;

    margin-bottom: 25px;

}

.treatment-card a {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: #0faaa9;

    font-size: 14px;

    font-weight: 700;

    text-decoration: none;

    transition:
        gap 0.3s ease;

}

.treatment-card a:hover {

    gap: 16px;

}

.treatment-card a span {

    font-size: 18px;

}


/* =========================================================
   EQUIPE
========================================================= */

.team {

    padding: 120px 0;

    background: white;

}

.team-grid {

    display: grid;

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

    gap: 25px;

    margin-top: 55px;

}

.team-card {

    background: white;

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

    border-radius: 24px;

    overflow: hidden;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;

}

.team-card:hover {

    transform: translateY(-8px);

    box-shadow:
        0 25px 60px rgba(16, 42, 42, 0.10);

}

.team-image {

    height: 390px;

    overflow: hidden;

    background: #edf6f5;

}

.team-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition:
        transform 0.5s ease;

}

.team-card:hover .team-image img {

    transform: scale(1.04);

}

.team-content {

    padding: 28px;

}

.team-content > span {

    color: var(--primary);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.5px;

}

.team-content h3 {

    color: var(--dark);

    font-family: "Manrope", sans-serif;

    font-size: 21px;

    margin: 8px 0;

}

.team-content p {

    color: var(--muted);

    font-size: 14px;

    line-height: 1.7;

}


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

.testimonials {

    padding: 120px 0;

    background: #f7fbfb;

}

.testimonials-grid {

    display: grid;

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

    gap: 22px;

    margin-top: 55px;

}

.testimonial-card {

    background: white;

    padding: 30px;

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

    border-radius: 20px;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;

}

.testimonial-card:hover {

    transform: translateY(-5px);

    box-shadow:
        0 20px 50px rgba(15, 170, 169, 0.10);

}

.testimonial-stars {

    color: #f2b94b;

    font-size: 15px;

    letter-spacing: 3px;

    margin-bottom: 18px;

}

.testimonial-card > p {

    color: var(--text);

    font-size: 14px;

    line-height: 1.8;

    font-style: italic;

    margin-bottom: 25px;

}

.testimonial-author {

    display: flex;

    align-items: center;

    gap: 12px;

    padding-top: 20px;

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

}

.author-avatar {

    width: 42px;

    height: 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: var(--primary-light);

    color: var(--primary);

    font-size: 12px;

    font-weight: 800;

}

.testimonial-author div:last-child {

    display: flex;

    flex-direction: column;

}

.testimonial-author strong {

    color: var(--dark);

    font-size: 13px;

}

.testimonial-author span {

    color: var(--muted);

    font-size: 11px;

}


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

.appointment {

    padding: 120px 0;

    background: white;

}

.appointment-wrapper {

    display: grid;

    grid-template-columns:
        0.8fr
        1fr;

    gap: 70px;

    padding: 70px;

    background:

        linear-gradient(
            135deg,
            #effafa 0%,
            #ffffff 100%
        );

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

    border-radius: 32px;

}

.appointment-info {

    padding-top: 20px;

}

.appointment-info h2 {

    font-family: "Manrope", sans-serif;

    color: var(--dark);

    font-size: clamp(34px, 4vw, 48px);

    line-height: 1.15;

    letter-spacing: -1.5px;

    margin-bottom: 20px;

}

.appointment-info > p {

    color: var(--text);

    font-size: 15px;

    line-height: 1.8;

}

.appointment-benefits {

    display: flex;

    flex-direction: column;

    gap: 14px;

    margin-top: 30px;

}

.appointment-benefits div {

    display: flex;

    align-items: center;

    gap: 12px;

}

.appointment-benefits span {

    width: 24px;

    height: 24px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: var(--primary);

    color: white;

    border-radius: 50%;

    font-size: 11px;

}

.appointment-benefits p {

    color: var(--dark);

    font-size: 14px;

    font-weight: 600;

}


/* =========================================================
   FORMULÁRIO
========================================================= */

.appointment-form {

    padding: 35px;

    background: white;

    border-radius: 24px;

    box-shadow:
        0 20px 60px rgba(16, 42, 42, 0.08);

}

.form-group {

    display: flex;

    flex-direction: column;

    gap: 8px;

    margin-bottom: 20px;

}

.form-group label {

    color: var(--dark);

    font-size: 13px;

    font-weight: 700;

}

.form-group input,
.form-group select {

    width: 100%;

    height: 54px;

    padding: 0 17px;

    border: 1px solid #dce8e8;

    border-radius: 11px;

    background: #fbfdfd;

    color: var(--dark);

    outline: none;

    font-size: 14px;

    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease;

}

.form-group input:focus,
.form-group select:focus {

    border-color: var(--primary);

    box-shadow:
        0 0 0 4px rgba(15, 170, 169, 0.10);

}

.form-group input::placeholder {

    color: #a5b3b3;

}

.form-row {

    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 15px;

}

.appointment-form .btn-primary {

    width: 100%;

    margin-top: 5px;

}

.form-message {

    text-align: center;

    margin-top: 15px;

    font-size: 13px;

    font-weight: 600;

    min-height: 20px;

}


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

.footer {

    background: #102a2a;

    color: white;

    padding: 45px 0 0;

}

.footer-simple {

    display: grid;

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

    align-items: center;

    gap: 40px;

    padding-bottom: 40px;

}

.footer-logo .logo-text {

    color: white;

}

.footer-logo .logo-text strong {

    color: white;

}

.footer-info {

    display: flex;

    flex-direction: column;

    gap: 7px;

}

.footer-info strong {

    font-size: 15px;

    color: white;

}

.footer-info span {

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

    font-size: 14px;

    line-height: 1.6;

}

.footer-bottom {

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

    padding: 22px 0;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

}

.footer-bottom p {

    margin: 0;

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

    font-size: 13px;

}

.footer-bottom strong {

    color: white;

}


/* =========================================================
   ANIMAÇÕES
========================================================= */

@keyframes fadeUp {

    from {

        opacity: 0;

        transform:
            translateY(25px);

    }

    to {

        opacity: 1;

        transform:
            translateY(0);

    }

}

.hero-content {

    animation:
        fadeUp 0.8s ease forwards;

}

.hero-image {

    animation:
        fadeUp 0.9s ease forwards;

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .container {

        width:
            min(
                100% - 40px,
                1000px
            );

    }

    .hero-container {

        gap: 50px;

    }

    .about-container {

        gap: 50px;

    }

    .appointment-wrapper {

        padding: 50px;

        gap: 45px;

    }

}


/* =========================================================
   TABLET MENOR
========================================================= */

@media (max-width: 900px) {

    .nav {

        gap: 18px;

    }

    .nav a {

        font-size: 13px;

    }

    .hero-container {

        grid-template-columns:
            1fr;

    }

    .hero-content {

        max-width: 700px;

    }

    .hero-image-wrapper {

        height: 500px;

    }

    .hero-floating-card {

        left: 20px;

    }

    .about-container {

        grid-template-columns:
            1fr;

    }

    .about-image {

        height: 500px;

    }

    .benefits-grid {

        grid-template-columns:
            1fr;

    }

    .treatments-grid {

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

    }

    .team-grid {

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

    }

    .testimonials-grid {

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

    }

    .appointment-wrapper {

        grid-template-columns:
            1fr;

    }

    .footer-simple {

        grid-template-columns:
            1fr
            1fr;

    }

    .footer-info:last-child {

        grid-column:
            1 / -1;

    }

}


/* =========================================================
   MENU MOBILE
========================================================= */

@media (max-width: 760px) {

    .header {

        height: 70px;

    }

    .menu-toggle {

        display: flex;

    }

    .nav {

        position: fixed;

        top: 70px;

        left: 20px;

        right: 20px;

        display: flex;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        padding: 15px;

        background: white;

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

        border-radius: 18px;

        box-shadow:
            0 20px 60px rgba(16, 42, 42, 0.12);

        opacity: 0;

        visibility: hidden;

        transform:
            translateY(-15px);

        transition:
            all 0.3s ease;

    }

    .nav.active {

        opacity: 1;

        visibility: visible;

        transform:
            translateY(0);

    }

    .nav a {

        width: 100%;

        padding: 14px;

        border-radius: 10px;

    }

    .nav a:hover {

        background:
            var(--primary-light);

    }

    .nav a:not(.nav-button)::after {

        display: none;

    }

    .nav-button {

        text-align: center;

        margin-top: 5px;

    }

    .hero {

        padding-top: 120px;

        padding-bottom: 70px;

    }

    .hero h1 {

        font-size: 42px;

        letter-spacing: -1.8px;

    }

    .hero p {

        font-size: 15px;

    }

    .hero-image-wrapper {

        height: 430px;

        border-radius: 25px;

    }

    .hero-floating-card {

        left: 15px;

        right: 15px;

        bottom: 20px;

        max-width: none;

    }

    .hero-trust {

        gap: 20px;

        flex-wrap: wrap;

    }

    .about,
    .treatments,
    .team,
    .testimonials,
    .appointment {

        padding: 80px 0;

    }

    .about-image {

        height: 420px;

    }

    .treatments-grid {

        grid-template-columns:
            1fr;

        margin-top: 35px;

    }

    .team-grid {

        grid-template-columns:
            1fr;

        margin-top: 35px;

    }

    .team-image {

        height: 420px;

    }

    .testimonials-grid {

        grid-template-columns:
            1fr;

        margin-top: 35px;

    }

    .appointment-wrapper {

        padding: 30px 20px;

        border-radius: 22px;

    }

    .appointment-form {

        padding: 25px 20px;

    }

}


/* =========================================================
   CELULAR
========================================================= */

@media (max-width: 600px) {

    .container {

        width:
            calc(100% - 30px);

    }

    .logo-icon {

        width: 35px;

        height: 35px;

    }

    .logo-text {

        font-size: 15px;

    }

    .hero h1 {

        font-size: 38px;

    }

    .hero-buttons {

        flex-direction: column;

        align-items: stretch;

    }

    .hero-buttons a {

        width: 100%;

    }

    .hero-image-wrapper {

        height: 390px;

    }

    .benefits {

        margin-top: -20px;

    }

    .benefit-card {

        padding: 22px;

    }

    .about-content h2,
    .section-heading h2,
    .appointment-info h2 {

        font-size: 32px;

    }

    .about-image {

        height: 350px;

    }

    .treatment-card {

        min-height: auto;

        padding: 28px;

        border-radius: 20px;

    }

    .treatment-card h3 {

        font-size: 20px;

    }

    .team-image {

        height: 380px;

    }

    .form-row {

        grid-template-columns:
            1fr;

        gap: 0;

    }

    .footer {

        padding-top: 35px;

    }

    .footer-simple {

        grid-template-columns:
            1fr;

        gap: 28px;

        padding-bottom: 30px;

    }

    .footer-info:last-child {

        grid-column:
            auto;

    }

    .footer-bottom {

        flex-direction: column;

        align-items: flex-start;

        gap: 10px;

    }

}


/* =========================================================
   CELULAR PEQUENO
========================================================= */

@media (max-width: 400px) {

    .hero h1 {

        font-size: 34px;

    }

    .hero-trust {

        display: grid;

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

    }

    .hero-floating-card {

        padding: 14px;

    }

    .hero-floating-card strong {

        font-size: 12px;

    }

    .hero-floating-card span {

        font-size: 10px;

    }

    .section-heading h2 {

        font-size: 29px;

    }

    .appointment-form {

        padding: 20px 15px;

    }

    .footer-bottom p {

        font-size: 12px;

        line-height: 1.5;

    }

}

/* =========================================================
   BOTÃO FLUTUANTE WHATSAPP
========================================================= */

.whatsapp-float {

    position: fixed;

    right: 25px;

    bottom: 25px;

    width: 62px;

    height: 62px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #25D366;

    color: #ffffff;

    border-radius: 50%;

    text-decoration: none;

    box-shadow:
        0 8px 25px rgba(37, 211, 102, 0.35);

    z-index: 9999;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;

}


/* =========================================================
   ÍCONE WHATSAPP
========================================================= */

.whatsapp-icon {

    position: relative;

    width: 34px;

    height: 34px;

    z-index: 3;

}


/* =========================================================
   EFEITO DE PULSO
========================================================= */

.whatsapp-pulse {

    position: absolute;

    inset: 0;

    border-radius: 50%;

    background: #25D366;

    z-index: 1;

    animation:
        whatsappPulse 2s infinite;

}


/* =========================================================
   HOVER DESKTOP
========================================================= */

.whatsapp-float:hover {

    transform:
        translateY(-4px)
        scale(1.05);

    box-shadow:
        0 12px 35px rgba(37, 211, 102, 0.45);

}


/* =========================================================
   TEXTO AO PASSAR O MOUSE
========================================================= */

.whatsapp-tooltip {

    position: absolute;

    right: 75px;

    top: 50%;

    transform:
        translateY(-50%)
        translateX(10px);

    white-space: nowrap;

    padding: 10px 15px;

    background: #102a2a;

    color: #ffffff;

    border-radius: 8px;

    font-size: 12px;

    font-weight: 600;

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    transition:
        opacity 0.3s ease,
        transform 0.3s ease;

    box-shadow:
        0 8px 25px rgba(16, 42, 42, 0.15);

}


/* =========================================================
   SETA DO TOOLTIP
========================================================= */

.whatsapp-tooltip::after {

    content: "";

    position: absolute;

    right: -6px;

    top: 50%;

    transform:
        translateY(-50%);

    width: 0;

    height: 0;

    border-top:
        6px solid transparent;

    border-bottom:
        6px solid transparent;

    border-left:
        6px solid #102a2a;

}


/* =========================================================
   MOSTRAR TOOLTIP
========================================================= */

.whatsapp-float:hover .whatsapp-tooltip {

    opacity: 1;

    visibility: visible;

    transform:
        translateY(-50%)
        translateX(0);

}


/* =========================================================
   ANIMAÇÃO DE PULSO
========================================================= */

@keyframes whatsappPulse {

    0% {

        transform:
            scale(1);

        opacity: 0.7;

    }

    70% {

        transform:
            scale(1.35);

        opacity: 0;

    }

    100% {

        transform:
            scale(1.35);

        opacity: 0;

    }

}


/* =========================================================
   RESPONSIVIDADE - CELULAR
========================================================= */

@media (max-width: 600px) {

    .whatsapp-float {

        right: 18px;

        bottom: 18px;

        width: 56px;

        height: 56px;

    }

    .whatsapp-icon {

        width: 31px;

        height: 31px;

    }

    /* Esconde o texto no celular */

    .whatsapp-tooltip {

        display: none;

    }

}


/* =========================================================
   CELULAR PEQUENO
========================================================= */

@media (max-width: 400px) {

    .whatsapp-float {

        right: 15px;

        bottom: 15px;

        width: 53px;

        height: 53px;

    }

    .whatsapp-icon {

        width: 29px;

        height: 29px;

    }

}
