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

:root {
    /* Cores */
    --primary: #1f5c78;
    --primary-dark: #17465d;
    --secondary: #78b8ab;
    --accent: #d7b46a;
    --background: #f7fafc;
    --surface: #ffffff;
    --text: #556270;
    --title: #1f2f3d;
    --border: #dde7ee;

    /* Tipografia */
    --font-title: "Playfair Display", serif;
    --font-text: "Manrope", sans-serif;

    /* Espaçamento */

    /* Outros */
    --container: 1200px;
    --radius-sm: .8rem;
    --radius-md: 1.6rem;
    --radius-lg: 2.8rem;
    --shadow-sm: 0 10px 25px rgba(0, 0, 0, .05);
    --shadow-md: 0 20px 45px rgba(0, 0, 0, .08);
    --transition: .35s ease;
}

/* =================================
    BASE
================================= */

body {
    font-family: var(--font-text);
    background: var(--background);
    color: var(--text);
    font-size: 1.6rem;
    line-height: 1.8;
}

main {
    overflow: hidden;
}

.container {
    width: min(90%, var(--container));
    margin: 0 auto;
}

section {
    padding: 10rem 0;
}

img {
    display: block;
    width: 100%;
    border-radius: var(--radius-md);
}

h1, h2, h3, h4 {
    font-family: var(--font-title);
    color: var(--title);
    line-height: 1.15;
    font-weight: 700;
}

h1 {
    font-size: clamp(4.6rem, 7vw, 7.5rem);
}

h2 {
    font-size: clamp(3.4rem, 5vw, 5rem);
}

h3 {
    font-size: 2.8rem;
}

p {
    color: var(--text);
}

a {
    transition: var(--transition);
}

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

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

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.6rem 3.6rem;
    background: var(--primary);
    color: #fff;
    border-radius: 999px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-primary:hover {
    background: var(--primary-dark);
    color: #fff;
    transform: translateY(-3px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.6rem 3.6rem;
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 999px;
    font-weight: 600;
    transition: var(--transition);
}

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

.btn-menu {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.3rem 2.8rem;
    background: var(--primary);
    color: #fff;
    border-radius: 999px;
    font-weight: 600;
}

.btn-menu:hover {
    background: var(--primary-dark);
    color: #fff;
}

/* =================================
    TÍTULOS DAS SEÇÕES
================================= */

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

.section-title span, .section-subtitle {
    display: inline-block;
    margin-bottom: 1.5rem;
    color: var(--secondary);
    text-transform: uppercase;
    font-size: 1.4rem;
    font-weight: 700;
}

.section-title p {
    margin-top: 2rem;
}

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

#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    transition: .35s;
}

#header.scrolled {
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(18px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, .08);
}

.navbar {
    height: 9rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.logo {
    font-family: var(--font-title);
    font-size: 3.6rem;
    font-weight: 700;
    color: var(--primary);
}

.logo span {
    color: var(--accent);
}


#header.scrolled .logo {
    color: var(--title);
}

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

nav ul {
    display: flex;
    align-items: center;
    gap: 4rem;
}

nav a {
    position: relative;
    color: var(--primary);
    font-weight: 500;
}

#header.scrolled nav a {
    color: var(--title);
}

nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -.6rem;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: .3s;
}

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

nav a.active {
    color: var(--accent) !important;
}

/* =================================
    GRID PADRÃO
================================= */

.hero-grid, .contact-grid, .clinic-story-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 7rem;
    align-items: center;
}

.specialties-grid, .technology-grid, .team-grid, .experience-grid {
    display: grid;
    gap: 3rem;
}

.specialties-grid {
    grid-template-columns: repeat(3, 1fr);
}

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

.team-grid {
    grid-template-columns: repeat(3, 1fr);
}

.experience-grid {
    grid-template-columns: repeat(4, 1fr);
}

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

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #eef5f9 0%, #ffffff 100%);
}

.hero::before {
    content: "";
    position: absolute;
    width: 65rem;
    height: 65rem;
    border-radius: 50%;
    background: rgba(120, 184, 171, .12);
    top: -20rem;
    right: -15rem;
}

.hero::after {
    content: "";
    position: absolute;
    width: 40rem;
    height: 40rem;
    border-radius: 50%;
    background: rgba(31, 92, 120, .06);
    bottom: -12rem;
    left: -12rem;
}

.hero-grid {
    position: relative;
    z-index: 2;
}

.hero-content span {
    display: inline-block;
    margin-bottom: 2rem;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: .2rem;
    font-weight: 700;
}

.hero-content h1 {
    margin-bottom: 2.5rem;
    max-width: 62rem;
}

.hero-content p {
    max-width: 55rem;
    margin-bottom: 4rem;
}

.hero-buttons {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 6rem;
}

.hero-image {
    position: relative;
}

.hero-image img {
    height: 68rem;
    object-fit: cover;
    border-radius: 3rem;
    box-shadow: var(--shadow-md);
}

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

.hero-data {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.hero-data article {
    background: #fff;
    padding: 2.4rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}

.hero-data strong {
    display: block;
    font-size: 3.2rem;
    color: var(--primary);
    font-family: var(--font-title);
    margin-bottom: .8rem;
}

.hero-data span {
    color: var(--text);
    text-transform: none;
    letter-spacing: 0;
    margin: 0;
    font-size: 1.5rem;
}

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

.page-hero {
    position: relative;
    height: 45rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: #fff;
}

.page-hero img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

.page-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(
        rgba(18,40,55,.75),
        rgba(18,40,55,.55)
    );

}

.page-hero .container{

    position:relative;

    z-index:2;

}

.page-hero span{

    display:inline-block;

    margin-bottom:1.8rem;

    color:#d7b46a;

    text-transform:uppercase;

    letter-spacing:.2rem;

    font-weight:700;

}

.page-hero h1{

    color:#fff;

    max-width:75rem;

    margin-bottom:2rem;

}

.page-hero p{

    color:rgba(255,255,255,.88);

    max-width:60rem;

}

/* =================================
    EXPERIENCE
================================= */

.experience {
    background: #fff;
}

.experience-grid {
    margin-top: 6rem;
}

.experience article {
    position: relative;
    padding: 4rem 3rem;
    background: #fff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.experience article:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.step {
    width: 6rem;
    height: 6rem;
    display: grid;
    place-items: center;
    margin-bottom: 2rem;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-weight: 700;
    font-size: 2rem;
}

.experience h3 {
    margin-bottom: 1.6rem;
}

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

.cta {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    text-align: center;
    color: #fff;
}

.cta span {
    display: inline-block;
    margin-bottom: 1.8rem;
    color: var(--accent);
    letter-spacing: .2rem;
    text-transform: uppercase;
    font-weight: 700;
}

.cta h2 {
    color: #fff;
    max-width: 70rem;
    margin: 0 auto 2rem;
}

.cta p {
    color: rgba(255,255,255,.82);
    max-width: 60rem;
    margin: 0 auto 4rem;
}

.cta .btn-primary {
    background: #fff;
    color: var(--primary);
}

.cta .btn-primary:hover {
    background: var(--accent);
    color: #fff;
}

/* =================================
    ESPECIALIDADES
================================= */

.specialties {
    background: #fff;
}

.specialties-grid {
    margin-top: 6rem;
}

.specialty-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 3.5rem;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.specialty-card:hover {
    transform: translateY(-8px);
    border-color: var(--secondary);
    box-shadow: var(--shadow-md);
}

.specialty-icon {
    width: 7rem;
    height: 7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #eef7f8;
    color: var(--primary);
    font-size: 3rem;
    margin-bottom: 2rem;
}

.specialty-card h3 {
    margin-bottom: 1.6rem;
}

.specialty-card p {
    margin-bottom: 2rem;
}

.specialty-card ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.specialty-card li {
    color: var(--text);
}

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

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

.treatment-list {
    display: flex;
    flex-direction: column;
    gap: 8rem;
    margin-top: 6rem;
}

.treatment-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 6rem;
}

.treatment-card.reverse img {
    order: 2;
}

.treatment-card.reverse .treatment-content {
    order: 1;
}

.treatment-card img {
    height: 45rem;
    object-fit: cover;
    border-radius: 2.5rem;
    box-shadow: var(--shadow-md);
}

.treatment-content span {
    display: inline-block;
    margin-bottom: 1.5rem;
    color: var(--secondary);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: .15rem;
}

.treatment-content h3 {
    margin-bottom: 2rem;
}

.treatment-content p {
    margin-bottom: 2.5rem;
}

.treatment-content ul {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 3.5rem;
}

/* =================================
    CLÍNICA
================================= */

.clinic-story {
    background: #fff;
}

.clinic-story-content h2 {
    margin: 2rem 0;
}

.clinic-story-content p {
    margin-bottom: 2rem;
}

.clinic-story-image img {
    height: 55rem;
    object-fit: cover;
    box-shadow: var(--shadow-md);
}

/* =================================
    TOUR
================================= */

.clinic-tour {
    background: var(--background);
}

.tour-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 6rem;
}

.tour-card {
    overflow: hidden;
    border-radius: var(--radius-md);
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.tour-card img {
    height: 28rem;
    object-fit: cover;
    border-radius: 0;
}

.tour-content {
    padding: 3rem;
}

.tour-content h3 {
    margin-bottom: 1.5rem;
}

/* =================================
    TECNOLOGIA
================================= */

.technology {
    background: #fff;
}

.technology-grid {
    margin-top: 6rem;
}

.tech-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 3.5rem;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

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

.tech-number {
    width: 6rem;
    height: 6rem;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-weight: 700;
    margin-bottom: 2rem;
}

.tech-card h3 {
    margin-bottom: 1.6rem;
}

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

.treatment-benefits {
    background: #eef6f8;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 6rem;
}

.benefits-grid article {
    background: #fff;
    padding: 3.5rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    text-align: center;
    box-shadow: var(--shadow-md);
}

.benefits-grid h3 {
    margin-bottom: 1.8rem;
}

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

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

.team-grid {
    margin-top: 6rem;
}

.team-card {
    text-align: center;
    background: #fff;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
}

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

.team-card img {
    height: 34rem;
    object-fit: cover;
    border-radius: 0;
}

.team-card h3 {
    margin: 2.5rem 0 1rem;
}

.team-card span {
    display: block;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 2.5rem;
}

/* =================================
    NÚMEROS
================================= */

.clinic-numbers {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

.numbers-grid article {
    text-align: center;
}

.numbers-grid strong {
    display: block;
    font-size: 5rem;
    font-family: var(--font-title);
    color: #fff;
    margin-bottom: 1rem;
}

.numbers-grid span {
    color: rgba(255,255,255,.85);
}

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

.testimonials {
    background: #ffffff;
}

.testimonial-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 6rem;
}

.testimonial-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 4rem 3.2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.stars {
    color: var(--accent);
    font-size: 2rem;
    margin-bottom: 2rem;
}

.testimonial-card p {
    margin-bottom: 2.5rem;
    font-style: italic;
}

.testimonial-card h4 {
    font-size: 2rem;
}

/* =================================
    GALERIA
================================= */

.clinic-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 6rem;
}

.clinic-gallery img {
    height: 32rem;
    object-fit: cover;
    transition: var(--transition);
    cursor: pointer;
}

.clinic-gallery img:hover {
    transform: scale(1.03);
}

.center-button {
    text-align: center;
    margin-top: 5rem;
}

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

.contact-section {
    background: #fff;
}

.contact-info h2 {
    margin: 2rem 0;
}

.contact-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    margin-top: 2rem;
    box-shadow: var(--shadow-sm);
}

.contact-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

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

.contact-form {
    background: #fff;
    padding: 5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.contact-form h2 {
    margin: 2rem 0 3rem;
}

.input-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 2.4rem;
}

.input-group label {
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--title);
}

.input-group input, .input-group textarea, .input-group select {
    padding: 1.7rem;
    border: 1px solid var(--border);
    border-radius: 1.2rem;
    background: #fff;
    transition: .3s;
}

.input-group input:focus, .input-group textarea:focus, .input-group select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 .4rem rgba(31, 92, 120, .08);
}

/* =================================
    MAPA
================================= */

.map-section {
    height: 50rem;
}

.map-section iframe {
    width: 100%;
    height: 100%;
}

/* =================================
    FAQ
================================= */

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

.faq-list {
    max-width: 900px;
    margin: 6rem auto 0;
}

.faq-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 1.4rem;
    margin-bottom: 2rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 2.5rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--title);
    cursor: pointer;
}

.faq-answer{

    max-height:0;

    overflow:hidden;

    padding:0 3rem;

    transition:max-height .35s ease,
               padding .35s ease;

}

.faq-item.active .faq-answer{

    max-height:300px;

    padding:0 3rem 2.5rem;

}

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

.contact-cta {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    text-align: center;
}

.contact-cta span {
    color: var(--accent);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: .2rem;
}

.contact-cta h2 {
    color: #fff;
    max-width: 700px;
    margin: 2rem auto;
}

.contact-cta p {
    color: rgba(255, 255, 255, .85);
    max-width: 600px;
    margin: 0 auto 4rem;
}

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

footer {
    background: #16222d;
    color: #d7e1e8;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 5rem;
    padding: 8rem 0;
}

.footer-grid .logo {
    color: var(--primary);
}

.footer-grid h3 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.footer-grid ul {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.footer-grid a:hover {
    color: var(--accent);
}

.footer-about p {
    margin-top: 2rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
}

.footer-bottom .container {
    display: fixed;
    justify-content: space-between;
    align-items: center;
    padding: 2.5rem 0;
}

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

.whatsapp-button {
    position: fixed;
    right: 3rem;
    bottom: 3rem;
    background: #25d366;
    color: #fff;
    padding: 1.6rem 2.4rem;
    border-radius: 999px;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .2);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-button:hover {
    transform: translateY(-4px);
}

.back-to-top {
    position: fixed;
    right: 3rem;
    bottom: 10rem;
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

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

.fade-up{

    opacity:0;

    transform:translateY(4rem);

    transition:opacity .8s ease,
               transform .8s ease;

}

.fade-up.show{

    opacity:1;

    transform:translateY(0);

}

.fade-left{

    opacity:0;

    transform:translateX(-4rem);

    transition:opacity .8s ease,
               transform .8s ease;

}

.fade-left.show{

    opacity:1;

    transform:translateX(0);

}

.fade-right{

    opacity:0;

    transform:translateX(4rem);

    transition:opacity .8s ease,
               transform .8s ease;

}

.fade-right.show{

    opacity:1;

    transform:translateX(0);

}

/* ==================================================
   HOVER GERAL
================================================== */

.specialty-card,
.tech-card,
.team-card,
.tour-card,
.testimonial-card,
.contact-card,
.treatment-card img{

    transition:all .35s ease;

}

.specialty-card:hover,
.tech-card:hover,
.team-card:hover,
.tour-card:hover,
.testimonial-card:hover{

    transform:translateY(-.8rem);

}

/* ==================================================
   RESPONSIVO
================================================== */

@media (max-width:1100px){

    .hero-grid,
    .clinic-story-grid,
    .contact-grid,
    .treatment-card{

        grid-template-columns:1fr;

        gap:5rem;

    }

    .treatment-card.reverse img,
    .treatment-card.reverse .treatment-content{

        order:initial;

    }

    .specialties-grid,
    .tour-grid,
    .team-grid,
    .benefits-grid{

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

    }

    .technology-grid{

        grid-template-columns:1fr;

    }

    .numbers-grid{

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

    }

    .experience-grid{

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

    }

    .testimonial-slider{

        grid-template-columns:1fr;

    }

    .clinic-gallery{

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

    }

    .footer-grid{

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

    }

}

@media (max-width:768px){

    section{

        padding:8rem 0;

    }

    .navbar{

        height:8rem;

    }

    nav{

        display:none;

    }

    .btn-menu{

        display:none;

    }

    .hero{

        padding-top:12rem;

        min-height:auto;

    }

    .hero-image img{

        height:45rem;

    }

    .hero-data{

        grid-template-columns:1fr;

    }

    .page-hero{

        height:38rem;

    }

    .page-hero h1{

        font-size:4rem;

    }

    .specialties-grid,
    .tour-grid,
    .team-grid,
    .benefits-grid,
    .clinic-gallery{

        grid-template-columns:1fr;

    }

    .numbers-grid{

        grid-template-columns:1fr;

        gap:4rem;

    }

    .experience-grid{

        grid-template-columns:1fr;

    }

    .footer-grid{

        grid-template-columns:1fr;

        text-align:center;

    }

    .footer-bottom .container{

        flex-direction:column;

        gap:1rem;

        text-align:center;

    }

    .contact-form{

        padding:3rem;

    }

    .whatsapp-button{

        right:2rem;

        bottom:2rem;

    }

    .back-to-top{

        right:2rem;

        bottom:9rem;

    }

}

@media (max-width:480px){

    html{

        font-size:56.25%;

    }

    .container{

        width:min(92%, var(--container));

    }

    h1{

        font-size:3.8rem;

    }

    h2{

        font-size:3rem;

    }

    h3{

        font-size:2.3rem;

    }

    .hero-buttons{

        flex-direction:column;

    }

    .btn-primary,
    .btn-secondary{

        width:100%;

        justify-content:center;

    }

    .hero-image img{

        height:38rem;

    }

    .tour-card img{

        height:24rem;

    }

    .team-card img{

        height:30rem;

    }

    .treatment-card img{

        height:30rem;

    }

    .clinic-story-image img{

        height:35rem;

    }

    .map-section{

        height:35rem;

    }

}

/* ==================================================
   SCROLLBAR
================================================== */

::-webkit-scrollbar{

    width:.9rem;

}

::-webkit-scrollbar-track{

    background:#eef3f6;

}

::-webkit-scrollbar-thumb{

    background:var(--primary);

    border-radius:999px;

}

::-webkit-scrollbar-thumb:hover{

    background:var(--primary-dark);

}

/* ==================================================
   SELEÇÃO
================================================== */

::selection{

    background:var(--primary);

    color:#fff;

}

/* ==================================================
   UTILITÁRIOS
================================================== */

.text-center{

    text-align:center;

}

.mt-2{

    margin-top:2rem;

}

.mt-3{

    margin-top:3rem;

}

.mt-4{

    margin-top:4rem;

}

.mb-2{

    margin-bottom:2rem;

}

.mb-3{

    margin-bottom:3rem;

}

.mb-4{

    margin-bottom:4rem;

}

.hidden{

    display:none;

}

.visible{

    display:block;
}