/* =========================================
CORES E VARIÁVEIS
========================================= */

:root {
    --verde: #18b65b;
    --verde-escuro: #109a4b;
    --verde-claro: #ebfff3;
    --azul: #082d65;
    --azul-escuro: #172337;
    --cinza: #6b7280;
    --cinza-claro: #f6f8fa;
    --branco: #ffffff;
    --amarelo: #ffb800;
    --borda: #e8ecf1;
    --sombra: 0 20px 50px rgba(16, 24, 40, 0.08);
}


/* =========================================
RESET
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--branco);
    color: var(--azul-escuro);
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

button {
    font-family: inherit;
}

section {
    scroll-margin-top: 90px;
}

.container {
    width: min(92%, 1280px);
    margin: auto;
}

.section {
    padding: 110px 0;
}


/* =========================================
TÍTULOS DAS SEÇÕES
========================================= */

.section-tag {
    display: inline-block;
    margin-bottom: 18px;
    color: var(--verde);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 60px;
    text-align: center;
}

.section-heading h2,
.sobre-content h2,
.contato-content h2,
.faq-intro h2 {
    margin-bottom: 20px;
    color: var(--azul-escuro);
    font-size: clamp(34px, 5vw, 48px);
    line-height: 1.15;
}

.section-heading p,
.sobre-content p,
.contato-content > p,
.faq-intro p {
    color: var(--cinza);
    font-size: 18px;
    line-height: 1.8;
}


/* =========================================
BOTÕES
========================================= */

.btn-primary,
.btn-secondary,
.btn-light,
.btn-map {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-primary {
    padding: 18px 34px;
    background: var(--verde);
    color: var(--branco);
    box-shadow: 0 20px 45px rgba(24, 182, 91, 0.28);
}

.btn-primary:hover {
    background: var(--verde-escuro);
    transform: translateY(-4px);
}

.btn-secondary {
    padding: 17px 32px;
    border: 1px solid var(--borda);
    background: var(--branco);
    color: var(--azul-escuro);
}

.btn-secondary:hover {
    border-color: var(--verde);
    color: var(--verde);
    transform: translateY(-4px);
}

.btn-light {
    padding: 17px 30px;
    background: var(--branco);
    color: var(--verde-escuro);
}

.btn-light:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.btn-map {
    padding: 16px 28px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.12);
    color: var(--branco);
}

.btn-map:hover {
    background: var(--branco);
    color: var(--azul);
}


/* =========================================
CABEÇALHO
========================================= */

header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(12px);
    transition: 0.3s;
}

header.scrolled {
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.08);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
    gap: 25px;
}

.logo {
    flex-shrink: 0;
}

.logo img {
    width: auto;
    height: 75px;
    object-fit: contain;
    mix-blend-mode: multiply;
}

nav {
    margin-left: auto;
}

nav ul {
    display: flex;
    align-items: center;
    gap: 23px;
}

nav a {
    position: relative;
    color: #2c3e50;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    transition: 0.3s;
}

nav a::after {
    position: absolute;
    bottom: -7px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--verde);
    content: "";
    transition: 0.3s;
}

nav a:hover,
nav a.active {
    color: var(--verde);
}

nav a:hover::after,
nav a.active::after {
    width: 100%;
}

.btn-whats {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    gap: 9px;
    padding: 14px 24px;
    border-radius: 40px;
    background: var(--verde);
    color: var(--branco);
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 15px 35px rgba(24, 182, 91, 0.25);
    transition: 0.3s;
}

.btn-whats:hover {
    background: var(--verde-escuro);
    transform: translateY(-3px);
}

.menu-mobile {
    display: none;
    border: 0;
    background: transparent;
    color: var(--azul-escuro);
    cursor: pointer;
}


/* =========================================
HERO
========================================= */

.hero {
    position: relative;
    min-height: 760px;
    padding: 165px 0 90px;
    overflow: hidden;
}

.hero::before {
    position: absolute;
    top: 50px;
    right: -170px;
    width: 570px;
    height: 570px;
    border-radius: 50%;
    background: rgba(24, 182, 91, 0.08);
    content: "";
    filter: blur(6px);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 55px;
}

.hero-text {
    position: relative;
    z-index: 3;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 30px;
    padding: 12px 22px;
    border-radius: 50px;
    background: var(--verde-claro);
    color: var(--verde);
    font-weight: 600;
}

.hero h1 {
   max-width: 620px;
    margin-bottom: 20px;
    color: var(--azul-escuro);
    font-size: clamp(40px, 3.5vw, 50px);
    line-height: 1.1;
    margin-bottom: 18px
}

.hero p {
    max-width: 700px;
    margin-bottom: 38px;
    color: var(--cinza);
    font-size: 19px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.hero-image {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    min-height: 570px;
    transform: translateY(-40px);
}

.hero-circle {
    position: absolute;
    top: -20px;
    width: 640px;
    height: 640px;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(24, 182, 91, 0.16) 0%,
            rgba(24, 182, 91, 0.05) 55%,
            transparent 72%
        );
}

.hero-image img {
    position: relative;
    z-index: 2;
    width: 680px;
    max-width: none;
    height: auto;
    mix-blend-mode: multiply;
}


/* =========================================
SOBRE
========================================= */

.sobre {
    background: var(--cinza-claro);
}

.sobre-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 90px;
}

.sobre-visual {
    position: relative;
}

.sobre-logo-box {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    padding: 45px;
    border-radius: 35px;
    background: var(--branco);
    box-shadow: var(--sombra);
}

.sobre-logo-box img {
    width: 430px;
    mix-blend-mode: multiply;
}

.sobre-destaque {
    position: absolute;
    right: -30px;
    bottom: 40px;
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 310px;
    padding: 20px;
    border-radius: 18px;
    background: var(--verde);
    color: var(--branco);
    box-shadow: 0 18px 40px rgba(24, 182, 91, 0.3);
}

.sobre-destaque > i {
    font-size: 32px;
}

.sobre-destaque strong,
.sobre-destaque span {
    display: block;
}

.sobre-destaque span {
    margin-top: 3px;
    font-size: 12px;
    opacity: 0.85;
}

.sobre-content p {
    margin-bottom: 18px;
}

.sobre-lista {
    display: grid;
    gap: 14px;
    margin: 30px 0 36px;
}

.sobre-lista div {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #475467;
}

.sobre-lista i {
    margin-top: 4px;
    color: var(--verde);
}


/* =========================================
ESPECIALIDADES
========================================= */

.cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.card {
    padding: 34px 28px;
    border: 1px solid var(--borda);
    border-radius: 24px;
    background: var(--branco);
    transition: 0.35s;
}

.card:hover {
    border-color: rgba(24, 182, 91, 0.35);
    box-shadow: var(--sombra);
    transform: translateY(-8px);
}

.card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 66px;
    height: 66px;
    margin-bottom: 24px;
    border-radius: 20px;
    background: var(--verde-claro);
    color: var(--verde);
    font-size: 29px;
}

.card h3 {
    margin-bottom: 13px;
    color: var(--azul-escuro);
    font-size: 21px;
}

.card p {
    min-height: 125px;
    margin-bottom: 22px;
    color: var(--cinza);
    font-size: 15px;
    line-height: 1.7;
}

.card a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--verde);
    font-size: 14px;
    font-weight: 600;
}


/* =========================================
SERVIÇOS
========================================= */

.servicos {
    background: var(--cinza-claro);
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.servico-card {
    display: flex;
    gap: 20px;
    padding: 28px;
    border: 1px solid transparent;
    border-radius: 20px;
    background: var(--branco);
    transition: 0.3s;
}

.servico-card:hover {
    border-color: rgba(24, 182, 91, 0.3);
    box-shadow: var(--sombra);
    transform: translateY(-4px);
}

.servico-card > i {
    flex-shrink: 0;
    width: 52px;
    color: var(--verde);
    font-size: 31px;
}

.servico-card h3 {
    margin-bottom: 8px;
    color: var(--azul-escuro);
    font-size: 19px;
}

.servico-card p {
    color: var(--cinza);
    font-size: 14px;
    line-height: 1.7;
}

.servicos-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-top: 55px;
    padding: 42px 48px;
    border-radius: 26px;
    background: var(--verde);
    color: var(--branco);
}

.servicos-cta span {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
    opacity: 0.85;
}

.servicos-cta h3 {
    max-width: 670px;
    font-size: 25px;
    line-height: 1.35;
}


/* =========================================
NOSSOS PACIENTES
========================================= */

.clientes {
    background: var(--branco);
}

.galeria-clientes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.foto-cliente {
    position: relative;
    height: 360px;
    overflow: hidden;
    border-radius: 24px;
    background: var(--cinza-claro);
    box-shadow: 0 15px 40px rgba(16, 24, 40, 0.08);
}

.foto-cliente img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.foto-cliente:hover img {
    transform: scale(1.06);
}

.foto-cliente::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 48%;
    background:
        linear-gradient(
            to top,
            rgba(10, 23, 42, 0.82),
            transparent
        );
    content: "";
    pointer-events: none;
}

.foto-cliente figcaption {
    position: absolute;
    right: 22px;
    bottom: 20px;
    left: 22px;
    z-index: 2;
    color: var(--branco);
    font-size: 16px;
    font-weight: 600;
}


/* =========================================
DEPOIMENTOS
========================================= */

.depoimentos {
    background: var(--cinza-claro);
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.depoimento-card {
    padding: 32px;
    border: 1px solid var(--borda);
    border-radius: 24px;
    background: var(--branco);
    box-shadow: 0 12px 35px rgba(16, 24, 40, 0.05);
}

.estrelas {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
    color: var(--amarelo);
}

.depoimento-card > p {
    min-height: 135px;
    margin-bottom: 27px;
    color: #475467;
    font-size: 16px;
    line-height: 1.8;
}

.cliente {
    display: flex;
    align-items: center;
    gap: 13px;
}

.cliente-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--verde-claro);
    color: var(--verde);
    font-weight: 700;
}

.cliente strong,
.cliente span {
    display: block;
}

.cliente span {
    margin-top: 2px;
    color: var(--cinza);
    font-size: 12px;
}


/* =========================================
FAQ
========================================= */

.faq {
    background: var(--branco);
}

.faq-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    align-items: flex-start;
    gap: 80px;
}

.faq-intro {
    position: sticky;
    top: 130px;
}

.faq-intro p {
    margin-bottom: 32px;
}

.faq-lista {
    display: grid;
    gap: 16px;
}

.faq-item {
    overflow: hidden;
    border: 1px solid var(--borda);
    border-radius: 18px;
    background: var(--branco);
    transition: 0.3s;
}

.faq-item.ativo {
    border-color: rgba(24, 182, 91, 0.35);
    box-shadow: 0 14px 35px rgba(16, 24, 40, 0.07);
}

.faq-pergunta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    width: 100%;
    padding: 24px 26px;
    border: 0;
    background: transparent;
    color: var(--azul-escuro);
    font-size: 17px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
}

.faq-pergunta i {
    flex-shrink: 0;
    color: var(--verde);
    transition: transform 0.3s;
}

.faq-item.ativo .faq-pergunta i {
    transform: rotate(45deg);
}

.faq-resposta {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-resposta p {
    padding: 0 26px 25px;
    color: var(--cinza);
    font-size: 15px;
    line-height: 1.8;
}


/* =========================================
CONTATO
========================================= */

.contato {
    background: var(--cinza-claro);
}

.contato-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 70px;
}

.contato-lista {
    display: grid;
    gap: 18px;
    margin: 34px 0;
}

.contato-item {
    display: flex;
    align-items: center;
    gap: 17px;
}

a.contato-item:hover strong {
    color: var(--verde);
}

.contato-icon {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    border-radius: 17px;
    background: var(--verde-claro);
    color: var(--verde);
    font-size: 22px;
}

.contato-item span,
.contato-item strong {
    display: block;
}

.contato-item span {
    margin-bottom: 3px;
    color: var(--cinza);
    font-size: 13px;
}

.contato-item strong {
    color: var(--azul-escuro);
    font-size: 16px;
    line-height: 1.5;
    transition: 0.3s;
}

.contato-box {
    padding: 60px 50px;
    border-radius: 32px;
    background:
        linear-gradient(
            145deg,
            var(--azul) 0%,
            #071f45 100%
        );
    color: var(--branco);
    box-shadow: 0 28px 60px rgba(8, 45, 101, 0.23);
}

.contato-box-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    margin-bottom: 28px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.12);
    font-size: 31px;
}

.contato-box h3 {
    margin-bottom: 15px;
    font-size: 30px;
}

.contato-box p {
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.8;
}


/* =========================================
CHAMADA FINAL
========================================= */

.cta-final {
    padding: 75px 0;
    background: var(--verde);
    color: var(--branco);
}

.cta-final-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.cta-final span {
    display: block;
    margin-bottom: 7px;
    font-size: 14px;
    opacity: 0.8;
}

.cta-final h2 {
    max-width: 700px;
    font-size: clamp(30px, 5vw, 45px);
    line-height: 1.2;
}


/* =========================================
RODAPÉ
========================================= */

footer {
    background: #111c2d;
    color: var(--branco);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 50px;
    padding-top: 80px;
    padding-bottom: 60px;
}

.footer-brand img {
    width: 190px;
    margin-bottom: 20px;
    border-radius: 8px;
    background: var(--branco);
    mix-blend-mode: screen;
}

.footer-brand p,
.footer-column p {
    color: rgba(255, 255, 255, 0.62);
    font-size: 14px;
    line-height: 1.8;
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.footer-column h3 {
    margin-bottom: 9px;
    font-size: 17px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
    transition: 0.3s;
}

.footer-column a:hover {
    color: var(--verde);
}

.footer-bottom {
    padding: 22px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.55);
    font-size: 13px;
    text-align: center;
}


/* =========================================
WHATSAPP FLUTUANTE
========================================= */

.whatsapp-flutuante {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 900;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    border-radius: 50px;
    background: #20bd5f;
    color: var(--branco);
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 15px 38px rgba(24, 182, 91, 0.4);
    transition: 0.3s;
}

.whatsapp-flutuante i {
    font-size: 25px;
}

.whatsapp-flutuante:hover {
    background: var(--verde-escuro);
    transform: translateY(-4px);
}


/* =========================================
TELAS INTERMEDIÁRIAS
========================================= */

@media (max-width: 1180px) {

    nav ul {
        gap: 15px;
    }

    nav a {
        font-size: 12px;
    }

    .btn-whats {
        padding: 13px 18px;
        font-size: 13px;
    }

    .hero-image img {
        width: 600px;
    }

    .hero-circle {
        width: 570px;
        height: 570px;
    }

}


/* =========================================
TABLETS
========================================= */

@media (max-width: 1020px) {

    .btn-whats {
        display: none;
    }

    nav ul {
        gap: 17px;
    }

    nav a {
        font-size: 12px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 35px;
        text-align: center;
    }

    .hero-text {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero {
        min-height: auto;
        padding-bottom: 60px;
    }

    .hero-image {
        min-height: 480px;
        transform: translateY(-20px);
    }

    .hero-image img {
        width: 570px;
    }

    .hero-circle {
        width: 540px;
        height: 540px;
    }

    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .card p {
        min-height: auto;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* =========================================
CELULARES E TABLETS MENORES
========================================= */

@media (max-width: 820px) {

    .section {
        padding: 80px 0;
    }

    .header-container {
        height: 80px;
    }

    .logo img {
        height: 64px;
    }

    .menu-mobile {
        z-index: 1001;
        display: block;
        font-size: 27px;
    }

    nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        margin: 0;
        padding: 30px 20px;
        background: rgba(255, 255, 255, 0.99);
        backdrop-filter: blur(12px);
        transition: 0.4s ease;
    }

    nav.active {
        left: 0;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 24px;
        padding-top: 25px;
    }

    nav a {
        font-size: 19px;
    }

    .hero {
        padding: 130px 0 65px;
    }

    .hero h1 {
        font-size: 45px;
    }

    .hero p {
        font-size: 17px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        min-height: auto;
        transform: translateY(-10px);
    }

    .hero-image img {
        width: 460px;
        max-width: 100%;
    }

    .hero-circle {
        top: 0;
        width: 430px;
        height: 430px;
    }

    .sobre-grid,
    .contato-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .sobre-grid {
        gap: 65px;
    }

    .sobre-logo-box {
        min-height: 390px;
    }

    .sobre-destaque {
        right: 15px;
        bottom: -28px;
    }

    .servicos-grid,
    .depoimentos-grid {
        grid-template-columns: 1fr;
    }

    .galeria-clientes {
        grid-template-columns: repeat(2, 1fr);
    }

    .foto-cliente {
        height: 320px;
    }

    .faq-grid {
        gap: 45px;
    }

    .faq-intro {
        position: static;
    }

    .servicos-cta,
    .cta-final-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .contato-grid {
        gap: 50px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

}


/* =========================================
CELULARES PEQUENOS
========================================= */

@media (max-width: 550px) {

    .container {
        width: min(90%, 1280px);
    }

    .section {
        padding: 70px 0;
    }

    .hero {
        padding-top: 120px;
    }

    .hero h1 {
        font-size: 39px;
    }

    .hero p {
        font-size: 16px;
    }

    .hero-buttons {
        width: 100%;
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }

    .hero-image {
        transform: translateY(0);
    }

    .hero-image img {
        width: 360px;
        max-width: 100%;
    }

    .hero-circle {
        width: 340px;
        height: 340px;
    }

    .sobre-logo-box {
        min-height: 320px;
        padding: 30px;
    }

    .sobre-destaque {
        position: relative;
        right: auto;
        bottom: auto;
        width: 100%;
        max-width: none;
        margin-top: 20px;
    }

    .section-heading {
        margin-bottom: 40px;
    }

    .section-heading h2,
    .sobre-content h2,
    .contato-content h2,
    .faq-intro h2 {
        font-size: 33px;
    }

    .section-heading p,
    .sobre-content p,
    .contato-content > p,
    .faq-intro p {
        font-size: 16px;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }

    .card,
    .depoimento-card {
        padding: 27px 23px;
    }

    .servico-card {
        padding: 24px 20px;
    }

    .servicos-cta {
        padding: 32px 25px;
    }

    .servicos-cta h3 {
        font-size: 21px;
    }

    .galeria-clientes {
        grid-template-columns: 1fr;
    }

    .foto-cliente {
        height: 360px;
    }

    .faq-pergunta {
        padding: 21px 20px;
        font-size: 16px;
    }

    .faq-resposta p {
        padding: 0 20px 22px;
    }

    .contato-box {
        padding: 40px 28px;
    }

    .cta-final {
        padding: 60px 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .whatsapp-flutuante {
        right: 16px;
        bottom: 16px;
        width: 58px;
        height: 58px;
        padding: 0;
        justify-content: center;
    }

    .whatsapp-flutuante span {
        display: none;
    }

    .whatsapp-flutuante i {
        font-size: 29px;
    }

}