:root {
    --blue: #2f67d8;
    --light-blue: #5e8ef0;
    --cream: #f8e1be;
    --text: #111;
    --bg: #f8fafc;
    /* Sobe a coluna da foto até o topo do menu (altura do logo + margin do logo + gap do grid) */
    --hero-v-scale: 0.85;
    --logo-margin-bottom: calc(20px * 1.5 * var(--hero-v-scale));
    --hero-photo-lift: calc(171px + var(--logo-margin-bottom) + calc(8px * var(--hero-v-scale)));
}

* { box-sizing: border-box; }
body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    color: var(--text);
    background: white;
}

/* ——— Animações (entrada, scroll, hovers) ——— */
@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(22px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes heroFadeDown {
    from {
        opacity: 0;
        transform: translateY(-14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes heroImageIn {
    from {
        opacity: 0;
        transform: translateY(18px) scale(0.985);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
@keyframes heroLogoIn {
    from {
        opacity: 0;
        transform: scale(0.94);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
@keyframes heroShapeDrift {
    0%, 100% { transform: rotate(12deg) translateY(0); }
    50% { transform: rotate(12deg) translateY(-10px); }
}
@keyframes heroShapeDriftAlt {
    0%, 100% { transform: rotate(-8deg) translateY(0); }
    50% { transform: rotate(-8deg) translateY(8px); }
}
@keyframes serviceCardBounceIn {
    0% { transform: translateY(0) scale(1); }
    36% { transform: translateY(-9px) scale(1.014); }
    62% { transform: translateY(-3px) scale(0.998); }
    82% { transform: translateY(-6px) scale(1.002); }
    100% { transform: translateY(-5px) scale(1); }
}
@keyframes heroTypeCaretBlink {
    0%, 49% { opacity: 1; }
    50%, 100% { opacity: 0; }
}

html.has-js .hero .top-nav {
    animation: heroFadeDown 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.05s both;
}
html.has-js .hero-heading {
    animation: heroFadeUp 0.95s cubic-bezier(0.22, 1, 0.36, 1) 0.12s both;
    position: relative;
}
html.has-js .hero-heading.is-typing::after {
    content: "";
    display: inline-block;
    width: 2px;
    height: 0.9em;
    margin-left: 0.08em;
    background: currentColor;
    vertical-align: -0.08em;
    animation: heroTypeCaretBlink 0.9s steps(1, end) infinite;
}
html.has-js .hero-body {
    animation: heroFadeUp 0.95s cubic-bezier(0.22, 1, 0.36, 1) 0.28s both;
}
html.has-js .hero-person img {
    animation: heroImageIn 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.38s both;
}
html.has-js .hero .logo {
    animation: heroLogoIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0s both;
}

@media (prefers-reduced-motion: no-preference) {
    .hero::before {
        animation: heroShapeDrift 14s ease-in-out infinite;
    }
    .hero::after {
        animation: heroShapeDriftAlt 16s ease-in-out infinite 1s;
    }
}

html.has-js .scroll-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}
html.has-js .scroll-reveal.is-visible {
    opacity: 1;
    transform: none;
    will-change: auto;
}
html.has-js .scroll-reveal.scroll-reveal--delay-xs { transition-delay: 0.06s; }
html.has-js .scroll-reveal.scroll-reveal--delay-sm { transition-delay: 0.12s; }
html.has-js .scroll-reveal.scroll-reveal--delay-md { transition-delay: 0.2s; }

/* Foto central: revelar só com opacidade (transform no pai conflitava com o da img) */
html.has-js .about-center.scroll-reveal {
    transform: none;
    transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.1s;
    will-change: auto;
}
html.has-js .about-center.scroll-reveal.is-visible {
    transform: none;
}

html.has-js .scroll-reveal--stagger-children > * {
    opacity: 0;
    transform: translateY(20px);
    transition:
        opacity 0.72s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
}
html.has-js .scroll-reveal--stagger-children.is-visible > * {
    opacity: 1;
    transform: none;
}
html.has-js .scroll-reveal--stagger-children.is-visible > *:nth-child(1) { transition-delay: 0s; }
html.has-js .scroll-reveal--stagger-children.is-visible > *:nth-child(2) { transition-delay: 0.08s; }
html.has-js .scroll-reveal--stagger-children.is-visible > *:nth-child(3) { transition-delay: 0.16s; }
html.has-js .scroll-reveal--stagger-children.is-visible > *:nth-child(4) { transition-delay: 0.24s; }
html.has-js .scroll-reveal--stagger-children.is-visible > *:nth-child(5) { transition-delay: 0.32s; }
html.has-js .scroll-reveal--stagger-children.is-visible > *:nth-child(6) { transition-delay: 0.4s; }
html.has-js .scroll-reveal--stagger-children.is-visible > *:nth-child(7) { transition-delay: 0.48s; }
html.has-js .scroll-reveal--stagger-children.is-visible > *:nth-child(8) { transition-delay: 0.56s; }
html.has-js .scroll-reveal--stagger-children.is-visible > *:nth-child(9) { transition-delay: 0.64s; }
html.has-js .scroll-reveal--stagger-children.is-visible > *:nth-child(10) { transition-delay: 0.72s; }
html.has-js .scroll-reveal--stagger-children.is-visible > *:nth-child(11) { transition-delay: 0.8s; }
html.has-js .scroll-reveal--stagger-children.is-visible > *:nth-child(12) { transition-delay: 0.88s; }

/* Serviços: stagger mais perceptível (box por box) */
html.has-js .services-grid.scroll-reveal--stagger-children.is-visible > *:nth-child(1) { transition-delay: 0.08s; }
html.has-js .services-grid.scroll-reveal--stagger-children.is-visible > *:nth-child(2) { transition-delay: 0.36s; }
html.has-js .services-grid.scroll-reveal--stagger-children.is-visible > *:nth-child(3) { transition-delay: 0.64s; }
html.has-js .services-grid.scroll-reveal--stagger-children.is-visible > *:nth-child(4) { transition-delay: 0.92s; }
html.has-js .services-grid.scroll-reveal--stagger-children.is-visible > *:nth-child(5) { transition-delay: 1.20s; }
html.has-js .services-grid.scroll-reveal--stagger-children.is-visible > *:nth-child(6) { transition-delay: 1.48s; }

html.has-js .about-left.scroll-reveal .highlight-card {
    opacity: 0;
    transform: translateY(14px);
    transition:
        opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
html.has-js .about-left.scroll-reveal.is-visible .highlight-card {
    opacity: 1;
    transform: none;
}
html.has-js .about-left.scroll-reveal.is-visible .highlight-card:nth-child(1) { transition-delay: 0.2s; }
html.has-js .about-left.scroll-reveal.is-visible .highlight-card:nth-child(2) { transition-delay: 0.3s; }
html.has-js .about-left.scroll-reveal.is-visible .highlight-card:nth-child(3) { transition-delay: 0.4s; }
html.has-js .about-left.scroll-reveal.is-visible .highlight-card:nth-child(4) { transition-delay: 0.5s; }
html.has-js .about-left.scroll-reveal.is-visible .highlight-card:nth-child(5) { transition-delay: 0.6s; }
html.has-js .about-left.scroll-reveal.is-visible .highlight-card:nth-child(6) { transition-delay: 0.7s; }

.top-nav a {
    color: #222;
    text-decoration: none;
    position: relative;
    transition: color 0.25s ease;
}
.top-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--blue), var(--light-blue));
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    opacity: 0.85;
}
.top-nav a:hover::after,
.top-nav a:focus-visible::after {
    transform: scaleX(1);
}

@media (prefers-reduced-motion: reduce) {
    html.has-js .hero .top-nav,
    html.has-js .hero-heading,
    html.has-js .hero-body,
    html.has-js .hero-person img,
    html.has-js .hero .logo {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
    .hero::before,
    .hero::after {
        animation: none !important;
    }
    html.has-js .scroll-reveal,
    html.has-js .scroll-reveal--stagger-children > *,
    html.has-js .about-left.scroll-reveal .highlight-card {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
    .btn-primary,
    .audience-card,
    .highlight-card,
    .about-panel {
        transition: none !important;
    }
    .btn-primary:hover,
    .audience-card:hover,
    .highlight-card:hover,
    .about-panel:hover {
        transform: none !important;
    }
}

.container {
    width: min(1160px, 92%);
    margin: 0 auto;
}

h1, h2, h3, h4 {
    font-family: 'Cinzel', serif;
    font-weight: 500;
    margin: 0;
}

.hero {
    background: #f5f7fb center/cover no-repeat;
    height: auto;
    min-height: 0;
    padding: clamp(calc(10px * var(--hero-v-scale)), calc(2vh * var(--hero-v-scale)), calc(24px * var(--hero-v-scale))) 0 clamp(calc(14px * var(--hero-v-scale)), calc(5vh * var(--hero-v-scale)), calc(56px * var(--hero-v-scale)));
    position: relative;
    z-index: 1;
    overflow-x: hidden;
    overflow-y: visible;
}
.hero::before, .hero::after {
    content: "";
    position: absolute;
    width: 190px;
    height: 190px;
    background: #fff;
    border-radius: 36px;
    box-shadow: 0 25px 60px rgba(15, 23, 42, .12);
    opacity: .9;
    z-index: 0;
}
.hero::before {
    left: -40px;
    top: 18%;
    transform: rotate(12deg);
    clip-path: polygon(32% 6%, 86% 18%, 94% 72%, 52% 94%, 8% 70%, 6% 28%);
}
.hero::after {
    right: -30px;
    bottom: 12%;
    transform: rotate(-8deg);
    clip-path: polygon(18% 10%, 72% 6%, 92% 48%, 70% 92%, 24% 88%, 8% 48%);
}
.hero .container { position: relative; z-index: 1; }
.hero .container {
    height: auto;
    display: flex;
    flex-direction: column;
}

.top-nav {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    width: 100%;
    max-width: 100%;
    position: relative;
    z-index: 5;
}
.top-nav-right {
    margin-left: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}
.top-nav-menu {
    background: rgba(255,255,255,.94);
    border-radius: 28px;
    border: 1px solid rgba(15, 23, 42, 0.1);
    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.08);
    padding: 12px 20px;
    width: fit-content;
    max-width: 100%;
    flex-shrink: 0;
}
.top-nav-social {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-shrink: 0;
}
.top-nav-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #fff;
    color: #334155;
    box-shadow: 0 2px 8px rgba(15, 23, 42, .08);
    transition: color .15s, transform .15s, box-shadow .15s;
}
.top-nav-social a::after {
    display: none;
}
.top-nav-social a:hover {
    color: var(--blue);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(15, 23, 42, .12);
}
.top-nav-social svg {
    width: 16px;
    height: 16px;
    display: block;
}
.top-nav-menu ul {
    display: flex;
    gap: 20px;
    margin: 0;
    list-style: none;
    padding: 0;
}
.logo-wrap {
    flex-shrink: 0;
    margin-bottom: var(--logo-margin-bottom);
}
.logo { height: 171px; width: auto; }

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    column-gap: 30px;
    row-gap: 0;
    flex: 0 1 auto;
    min-height: 0;
    align-items: stretch;
    margin-top: calc(4px * var(--hero-v-scale));
}
/* Bloco único: título + parágrafo + botão ficam colados entre si; a foto fica na coluna 2 na mesma linha */
.hero-copy {
    grid-column: 1;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    align-self: start;
    gap: calc(10px * var(--hero-v-scale));
    min-width: 0;
    position: relative;
    z-index: 2;
}
.hero-heading {
    max-width: none;
    white-space: pre-line;
    margin: 0;
    padding-top: clamp(calc(8px * var(--hero-v-scale)), calc(1.2vh * var(--hero-v-scale)), calc(20px * var(--hero-v-scale)));
    position: relative;
    z-index: 2;
}
.hero-body {
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: calc(8px * var(--hero-v-scale) + 10px);
    width: 100%;
    position: relative;
    z-index: 2;
    margin-top: 0;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 10px;
}
.hero-actions .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
h1 {
    font-size: clamp(2rem, 4vw, 4.2rem);
    line-height: .98;
    max-width: 700px;
}
.hero-text {
    max-width: 560px;
    line-height: 1.45;
    margin: 0;
    padding: 0;
}
.hero .hero-text {
    font-size: calc(100% * 1.15);
}
/* Sobe a coluna da foto no fluxo (em vez de transform na img) para o fundo do hero terminar no fundo real da foto */
.hero-person {
    grid-column: 2;
    grid-row: 1;
    margin-top: calc(-1 * var(--hero-photo-lift));
    /* Encosta a base da foto na borda inferior do hero (compensa o padding-bottom) */
    margin-bottom: calc(-1 * clamp(calc(14px * var(--hero-v-scale)), calc(5vh * var(--hero-v-scale)), calc(56px * var(--hero-v-scale))));
    align-self: end;
    justify-self: end;
    position: relative;
    z-index: 1;
    min-height: 0;
}

.hero-person img {
    width: 100%;
    max-width: min(960px, 78vw);
    display: block;
    margin-left: auto;
    object-fit: contain;
    object-position: bottom center;
}

.btn-primary {
    display: inline-block;
    background: linear-gradient(90deg, #2a5cd1, #4a88ff);
    border-radius: 999px;
    border: 0;
    color: white;
    text-decoration: none;
    padding: 12px 29px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-size: .75rem;
    transition:
        transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.35s ease,
        filter 0.25s ease;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(47, 103, 216, 0.35);
    filter: brightness(1.05);
}
.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 6px 16px rgba(47, 103, 216, 0.28);
}

.section { padding: 72px 0; }
/* Sobrepõe o fundo do hero (cartões “flutuam” por cima) */
.section.audiences {
    /* 20% menos sobreposição no hero = secção mais baixa */
    margin-top: calc(-1 * clamp(52px, 10vw, 140px) * 0.6);
    padding-top: 0;
    padding-bottom: calc(72px * 0.25 * 1.25);
    position: relative;
    z-index: 2;
}
.section.about {
    /* +20% altura vertical da secção */
    padding-top: calc(72px * 0.25 * 2.25 * 1.2);
    /* Metade do vão para Serviços (50% menos gap entre secções) */
    padding-bottom: calc(72px * 0.25 * 2.25 * 1.2 * 0.5);
    position: relative;
    /* Corta a foto absoluta: não invade Serviços nem margens fora da secção */
    overflow: hidden;
}
.section h2 {
    font-size: clamp(1.8rem, 3vw, 3rem);
    margin-bottom: 30px;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}
.audience-card {
    background: #fff;
    border-radius: 22px;
    padding: 20px;
    min-height: 260px;
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
    transition:
        box-shadow 0.4s ease,
        filter 0.3s ease;
}
.audience-card:hover {
    animation: serviceCardBounceIn 0.58s cubic-bezier(0.22, 1, 0.36, 1) both;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
    filter: saturate(1.02);
}
.audience-card:focus-within {
    animation: serviceCardBounceIn 0.58s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.audience-card::after {
    content: "";
    position: absolute;
    top: 16px;
    right: 18px;
    width: 0;
    height: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 12px solid #111;
    opacity: .35;
}
.audience-card.highlighted {
    border: 0;
    color: #fff;
}
.audience-card.highlighted h3,
.audience-card.highlighted p { color: #fff; }
.audience-card.highlighted::after {
    border-bottom-color: #fff;
    opacity: .65;
}
.audience-card img {
    width: 100%;
    height: 160px;
    border-radius: 16px;
    object-fit: cover;
}
.audience-card h3 {
    margin: calc(18px * 0.2) 0 calc(6px * 0.4);
    font-size: calc(1.5rem * 1.1);
    line-height: calc(1 + (1.2 - 1) * 0.5);
}
.audience-card p {
    margin: 0;
    font-size: calc(0.82rem * 1.2);
    line-height: 1.4;
    padding-left: calc(14px * 0.15);
    padding-right: calc(14px * 0.15);
    padding-bottom: calc(14px * 0.15);
}

.about {
    background: linear-gradient(#fff, #f7f9ff);
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    align-items: center;
}
.about-left {
    min-width: 0;
    align-self: center;
    position: relative;
    z-index: 3;
}
.about-right {
    min-width: 0;
    align-self: center;
    position: relative;
    z-index: 1;
}
.about-left h2 {
    margin-bottom: 10px;
    font-size: calc(2.8rem * 1.1);
    line-height: calc(1 + (1.2 - 1) * 0.25);
}
.about-panel h2 {
    margin-bottom: 5px;
    font-size: clamp(calc(1.35rem * 1.1), calc(2.4vw * 1.1), calc(2.1rem * 1.1));
    line-height: 1.06;
}
.highlight-list { margin: 0 0 14px; display: grid; gap: 10px; }
.highlight-card {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    background: #fff;
    border-radius: 12px;
    padding: 10px;
    border: 1px solid #eef0f4;
    box-shadow: 0 8px 24px rgba(15, 23, 42, .06);
    transition:
        box-shadow 0.35s ease,
        filter 0.3s ease;
}
.highlight-card:hover {
    animation: serviceCardBounceIn 0.58s cubic-bezier(0.22, 1, 0.36, 1) both;
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.1);
    filter: saturate(1.02);
}
.highlight-card:focus-within {
    animation: serviceCardBounceIn 0.58s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.highlight-card img {
    width: 100%;
    /* Metade da altura de 16/9 à mesma largura → proporção 32/9 */
    aspect-ratio: 32 / 9;
    height: auto;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
    display: block;
}
.highlight-card > div {
    min-width: 0;
    padding: 0 8px 10px;
}
.highlight-card h4 {
    margin: 0 0 calc(4px * 0.6);
    font-size: calc(1.1rem * 1.5);
    line-height: 1.0;
}
.highlight-card p {
    margin: 0;
    font-size: calc(0.82rem * 1.2);
    line-height: 1.4;
    font-family: 'Montserrat', sans-serif;
}
.about-center {
    /* Coluna vazia no fluxo: a foto posiciona-se em relação à secção */
    min-height: 0;
    width: 100%;
    pointer-events: none;
}
.about-center img {
    position: absolute;
    left: 50%;
    right: auto;
    /* Caixa = altura útil da secção (entre top e bottom); object-fit mantém figura dentro */
    top: 0;
    bottom: 0;
    height: auto;
    transform: translate3d(calc(-50% + clamp(6px, 2.5vw, 28px)), 0, 0);
    z-index: 2;
    width: auto;
    max-width: min(780px, 68vw);
    max-height: none;
    box-sizing: border-box;
    object-fit: contain;
    object-position: bottom center;
    display: block;
    pointer-events: none;
    backface-visibility: hidden;
}
.badge { width: 180px; margin-bottom: 10px; }
.about-panel {
    border-radius: 20px;
    padding: calc(18px * 1.15) clamp(24px, 5vw, 40px);
    min-width: 0;
    transition: box-shadow 0.4s ease, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.about-panel:hover {
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
    transform: translateY(-2px);
}
.about-panel .hero-text {
    max-width: none;
    font-size: calc(100% * 0.85 * 1.2);
    line-height: 1.45;
}
.about-panel-whatsapp {
    margin-top: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}
.about-panel-whatsapp-icon {
    flex: 0 0 auto;
}

.section.google-reviews {
    padding-top: calc(72px * 0.3);
    padding-bottom: calc(72px * 0.3);
    background: linear-gradient(#fff, #f8fbff);
}
.google-reviews h2 {
    text-align: center;
    margin-top: calc(10px * 1.3);
    margin-bottom: 2.5px;
}
.google-reviews-subtitle {
    max-width: 760px;
    margin: 0 auto 24px;
    text-align: center;
}
.google-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}
.google-review-card {
    background: #fff;
    border: 1px solid #eef0f4;
    border-radius: 18px;
    padding: 18px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, .06);
    transition: box-shadow 0.35s ease, filter 0.3s ease;
}
.google-review-card:hover {
    animation: serviceCardBounceIn 0.58s cubic-bezier(0.22, 1, 0.36, 1) both;
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.1);
    filter: saturate(1.02);
}
.google-review-stars {
    font-size: 1rem;
    color: #f59e0b;
    letter-spacing: 0.08em;
    margin-bottom: 10px;
}
.google-review-text {
    margin: 0 0 12px;
    line-height: 1.55;
}
.google-review-author {
    margin: 0;
    font-weight: 600;
    color: #334155;
}
.google-reviews-action {
    margin-top: 22px;
    margin-bottom: calc(22px * 1.3);
    text-align: center;
}

.section.blog {
    padding-top: calc(72px * 0.45);
    padding-bottom: calc(72px * 0.275);
    background: #fff;
}
.blog h2 {
    text-align: center;
    margin-bottom: 13px;
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}
.blog-card {
    background: #fff;
    border: 1px solid #eef0f4;
    border-radius: 18px;
    padding: 14px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, .06);
    transition:
        box-shadow 0.4s ease,
        filter 0.3s ease;
}
.blog-card:hover {
    animation: serviceCardBounceIn 0.58s cubic-bezier(0.22, 1, 0.36, 1) both;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
    filter: saturate(1.02);
}
.blog-card:focus-within {
    animation: serviceCardBounceIn 0.58s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.blog-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 10px;
}
.blog-card h3 {
    margin: 0 0 14px;
    font-size: 1.35rem;
}
.blog-card p {
    margin: 0 0 14px;
    color: #475569;
    line-height: 1.5;
}
.blog-all-posts-action {
    margin-top: 20px;
    text-align: center;
}
.blog-archive-page h1 {
    text-align: center;
    width: fit-content;
    margin-inline: auto;
}
.blog .btn-primary,
.blog-post-page .btn-primary {
    background: linear-gradient(90deg, #6b7280, #d1d5db);
}
.blog .btn-primary:hover,
.blog-post-page .btn-primary:hover {
    box-shadow: 0 12px 28px rgba(107, 114, 128, 0.35);
}
.blog .btn-primary:active,
.blog-post-page .btn-primary:active {
    box-shadow: 0 6px 16px rgba(107, 114, 128, 0.28);
}
.blog-post-page .btn-primary.comment-article-btn {
    background: linear-gradient(90deg, #2a5cd1, #4a88ff);
}
.blog-post-page .btn-primary.comment-article-btn:hover {
    box-shadow: 0 12px 28px rgba(47, 103, 216, 0.35);
}
.blog-post-page .btn-primary.comment-article-btn:active {
    box-shadow: 0 6px 16px rgba(47, 103, 216, 0.28);
}
.share-icons {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.share-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #fff;
    color: #334155;
    text-decoration: none;
    border: 0;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(15, 23, 42, .08);
    transition: color .15s, transform .15s, box-shadow .15s;
}
.share-icon:hover {
    color: var(--blue);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(15, 23, 42, .12);
}
.share-icon svg {
    width: 16px;
    height: 16px;
    display: block;
}

.blog-hero {
    min-height: 0;
    padding-bottom: clamp(8px, 2vw, 20px);
    background: transparent;
}
.blog-hero .container {
    width: min(1160px, 92%);
}
.blog-hero::before,
.blog-hero::after {
    display: none;
}
.blog-hero .top-nav {
    justify-content: space-between;
}
.blog-hero .top-nav-right {
    margin-left: auto;
}
.blog-post-page {
    padding-top: calc(52px * 0.07);
}
.blog-post-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 18px;
    align-items: start;
}
.blog-post-card {
    background: #fff;
    border-radius: 18px;
    border: 1px solid #edf1f7;
    box-shadow: 0 14px 36px rgba(15, 23, 42, .08);
    padding: clamp(18px, 4vw, 32px);
    max-width: none;
    margin: 0;
}
.blog-post-card h1 {
    font-size: clamp(2rem, 4vw, 3.4rem);
    margin-bottom: 16px;
    text-align: center;
    max-width: none;
    margin-left: auto;
    margin-right: auto;
}
.blog-post-cover {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
    border-radius: 14px;
    margin-bottom: 18px;
}
.blog-post-content {
    font-size: 1.02rem;
    line-height: 1.75;
    margin-bottom: 22px;
}
.blog-post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 14px 0;
    display: block;
}
.blog-post-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 21px;
}
.blog-post-recent-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 16px;
}
.blog-post-recent-card {
    border: 1px solid #eef0f4;
    border-radius: 18px;
    background: #fff;
    padding: 14px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, .06);
    transition:
        box-shadow 0.4s ease,
        filter 0.3s ease;
}
.blog-post-recent-card:hover {
    animation: serviceCardBounceIn 0.58s cubic-bezier(0.22, 1, 0.36, 1) both;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
    filter: saturate(1.02);
}
.blog-post-recent-card:focus-within {
    animation: serviceCardBounceIn 0.58s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.blog-post-recent-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 10px;
    display: block;
}
.blog-post-recent-card h3 {
    margin: 0 0 14px;
    font-size: 1.35rem;
    line-height: 1.2;
}
.blog-post-recent-card h3 a {
    color: #1e3a5f;
    text-decoration: none;
}
.blog-post-recent-card h3 a:hover {
    color: var(--blue);
}
.blog-post-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}
.blog-post-pagination-prev a,
.blog-post-pagination-next a,
.blog-post-pagination-disabled {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 16px;
    border: 1px solid #e2e8f0;
    border-radius: 999px;
    background: #fff;
    text-decoration: none;
    color: #334155;
    font-size: .84rem;
    font-weight: 600;
    letter-spacing: .02em;
}
.blog-post-pagination-prev a:hover,
.blog-post-pagination-next a:hover {
    border-color: #c7d2fe;
    color: var(--blue);
    box-shadow: 0 6px 14px rgba(59, 130, 246, .15);
}
.blog-post-pagination-disabled {
    opacity: .5;
}
.blog-post-pagination-pages {
    list-style: none;
    margin: 0;
    padding: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.blog-post-page-number {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    border: 1px solid #e2e8f0;
    background: #fff;
    color: #64748b;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .84rem;
    font-weight: 600;
    transition: color .15s, border-color .15s, box-shadow .15s;
}
.blog-post-page-number:hover {
    border-color: #c7d2fe;
    color: var(--blue);
    box-shadow: 0 6px 14px rgba(59, 130, 246, .12);
}
.blog-post-page-number.is-active {
    background: linear-gradient(90deg, #2a5cd1, #4a88ff);
    border-color: transparent;
    color: #fff;
}
.blog-post-pagination-dots {
    color: #94a3b8;
    font-weight: 700;
    font-size: .9rem;
}
.blog-comments {
    border-top: 1px solid #e5e7eb;
    padding-top: 18px;
}
.blog-comments h2 {
    font-size: 1.4rem;
    margin: 0 0 14px;
}
.blog-comments-empty {
    margin: 0;
    color: #6b7280;
}
.blog-comments-list {
    display: grid;
    gap: 12px;
}
.blog-comment-item {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 14px;
}
.blog-comment-item h3 {
    margin: 0 0 8px;
    font-size: 1rem;
}
.blog-comment-item p {
    margin: 0;
    line-height: 1.6;
}
.blog-recent-box {
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(15, 23, 42, .08);
    border: 1px solid rgba(15, 23, 42, .06);
    padding: 20px;
    position: sticky;
    top: 14px;
}
.blog-recent-box h2 {
    font-size: 1.5rem;
    margin: 0 0 12px;
}
.blog-recent-empty {
    margin: 0;
    color: #475569;
}
.blog-recent-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 8px;
}
.blog-recent-list a {
    display: block;
    text-decoration: none;
    color: #1e3a5f;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 10px;
    padding: 10px 12px;
    line-height: 1.4;
    transition: transform .15s, box-shadow .15s, color .15s;
}
.blog-recent-list a:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(15, 23, 42, .09);
    color: var(--blue);
}
.comment-flash {
    border-radius: 10px;
    padding: 10px 12px;
    margin: 0 0 14px;
}
.comment-flash--ok {
    background: #e7f8ee;
    border: 1px solid #b8e9c9;
}
.comment-flash--err {
    background: #fff1f2;
    border: 1px solid #fecdd3;
}

.comment-modal {
    position: fixed;
    inset: 0;
    z-index: 1200;
}
.comment-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.6);
}
.comment-modal-dialog {
    position: relative;
    width: min(560px, calc(100% - 24px));
    margin: max(8vh, 24px) auto;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 20px 50px rgba(15, 23, 42, .28);
    padding: 20px;
}
.comment-modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    border: 0;
    background: #eef2f7;
    width: 30px;
    height: 30px;
    border-radius: 999px;
    font-size: 15px;
    cursor: pointer;
}
.comment-form {
    display: grid;
    gap: 12px;
}
.comment-form label {
    display: block;
    font-size: .9rem;
    margin-bottom: 6px;
    font-weight: 600;
}
.comment-form input,
.comment-form textarea {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    padding: 10px 11px;
    font: inherit;
}
.comment-form textarea {
    resize: vertical;
}
.comment-form-actions {
    display: flex;
    justify-content: flex-end;
}
.comment-hp {
    position: absolute;
    left: -9999px;
}
body.comment-modal-open {
    overflow: hidden;
}

@media (max-width: 1024px) {
    .blog-post-layout {
        grid-template-columns: 1fr;
    }
    .blog-recent-box {
        position: static;
    }
    .blog-post-pagination {
        justify-content: center;
    }
    .blog-post-recent-cards {
        grid-template-columns: 1fr;
    }
}

.services { background: #fff; }
.section.services {
    padding-top: calc(72px * 0.25);
    padding-bottom: calc(72px * 0.3);
}
.section.faq {
    padding-top: calc(72px * 0.15);
    padding-bottom: calc(72px * 0.35);
    background: #fff;
}
.faq h2 {
    text-align: center;
    margin-bottom: 18px;
    width: 100%;
}
.faq-list {
    max-width: 840px;
    margin: 0 auto;
    display: grid;
    gap: 14px;
    justify-items: center;
}
.faq-list .faq-item {
    width: 100%;
}
.faq-item {
    background: #f8fafc;
    border: 1px solid #eef0f4;
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, .06);
    overflow: hidden;
    transition: box-shadow 0.35s ease, filter 0.3s ease;
}
.faq-item[open] {
    background: #fff;
}
.faq-item:hover {
    animation: serviceCardBounceIn 0.58s cubic-bezier(0.22, 1, 0.36, 1) both;
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.1);
    filter: saturate(1.02);
}
.faq-item summary::-webkit-details-marker {
    display: none;
}
.faq-question {
    width: 100%;
    border: 0;
    background: transparent;
    list-style: none;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    text-align: left;
    font: inherit;
    font-weight: 600;
    color: #1e3a5f;
    cursor: pointer;
}
.faq-question:hover {
    background: #f8fafc;
}
.faq-question:focus-visible {
    outline: 2px solid #4f46e5;
    outline-offset: -2px;
}
.faq-icon {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2563eb;
    line-height: 1;
    transition: transform .22s ease;
}
.faq-item[open] .faq-icon {
    transform: rotate(45deg);
}
.faq-answer {
    border-top: 1px solid #eef2f7;
    padding: 0 20px 18px;
}
.faq-answer p {
    margin: 14px 0 0;
    line-height: 1.6;
    color: #475569;
}
.section-subtitle {
    max-width: 750px;
    margin: -8px auto 26px;
    text-align: center;
}
.services h2 {
    text-align: center;
    margin-bottom: calc(15px * 0.5);
    font-size: clamp(calc(1.8rem * 1.1), calc(3vw * 1.1), calc(3rem * 1.1));
}
.services .section-subtitle {
    margin: calc(-8px * 0.5) auto 26px;
}
.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}
.service-card {
    flex: 0 1 270px;
    max-width: min(270px, 100%);
    box-sizing: border-box;
    border: 1px solid #f0f0f0;
    border-radius: 18px;
    padding: 10px 14px 18px;
    background: #fff;
    transition:
        box-shadow 0.4s ease,
        filter 0.3s ease;
}
.service-card:hover {
    animation: serviceCardBounceIn 0.58s cubic-bezier(0.22, 1, 0.36, 1) both;
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.09);
    filter: saturate(1.02);
}
.service-card:focus-within {
    animation: serviceCardBounceIn 0.58s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.service-card.featured {
    border: 0;
}
.service-card img {
    width: 100%;
    height: 140px;
    border-radius: 10px;
    object-fit: cover;
}
.service-card h3 {
    font-size: 1.35rem;
    margin: 12px 0 8px;
}
.service-card ul {
    margin: 0 0 10px;
    padding-left: 0;
    min-height: 95px;
    list-style: none;
}
.service-card li {
    margin-bottom: 6px;
    padding-left: 16px;
    position: relative;
}
.service-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .45em;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 8px solid #111;
    opacity: .35;
}

.section-contact {
    background: #fff;
}
.section.section-contact {
    padding-top: calc(72px * 0.3);
    padding-bottom: calc(72px * 0.6);
}
.section-contact .contact-box h2,
.section-contact h2.contact-box-title {
    text-align: center;
    margin-bottom: 11px;
}
.contact-box {
    max-width: 600px;
    margin-inline: auto;
    padding: clamp(24px, 4vw, 40px);
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(15, 23, 42, .08);
    border: 1px solid rgba(15, 23, 42, .06);
    box-sizing: border-box;
    transition: box-shadow 0.45s ease;
}
.contact-box:hover {
    box-shadow: 0 18px 48px rgba(15, 23, 42, 0.1);
}
.contact-flash {
    max-width: 100%;
    margin: 0 auto 20px;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: .92rem;
    text-align: center;
}
.contact-flash--ok {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}
.contact-flash--err {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}
.contact-form {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
}
.contact-hp {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 18px;
    margin-bottom: 18px;
}
.contact-form-span2 {
    grid-column: 1 / -1;
}
.contact-form label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    line-height: 1.45;
    font-weight: 400;
    margin-bottom: 6px;
    color: var(--text);
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #d1d9e6;
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    line-height: 1.45;
    color: var(--text);
    box-sizing: border-box;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(47, 103, 216, .15);
}
.contact-submit {
    display: block;
    margin-inline: auto;
    border: 0;
    cursor: pointer;
    font-family: inherit;
}
.contact-schedule-btn {
    display: table;
    margin: 14px auto 0;
    background: linear-gradient(90deg, #6b7280, #d1d5db);
}
.contact-schedule-btn:hover {
    box-shadow: 0 12px 28px rgba(107, 114, 128, 0.35);
}
.contact-schedule-btn:active {
    box-shadow: 0 6px 16px rgba(107, 114, 128, 0.28);
}
.hero-schedule-btn {
    display: inline-flex;
    margin: 0;
}

.site-footer {
    background: linear-gradient(180deg, #eef2f9 0%, #e2e8f4 100%);
    border-top: 1px solid #d7deea;
    padding: calc(20px * 0.6) 0 24px;
}
.site-footer-inner {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px 20px;
    text-align: left;
}
.site-footer-logo {
    display: block;
    line-height: 0;
    flex-shrink: 0;
}
.site-footer-logo img {
    height: 48px;
    width: auto;
    display: block;
}
.site-footer-contact {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 6px 14px;
    font-size: .9rem;
    line-height: 1.45;
}
.site-footer-contact p {
    margin: 0;
}
.site-footer-contact p:first-child:not(:only-child)::after {
    content: "·";
    margin-left: 14px;
    color: #94a3b8;
    font-weight: 600;
}
.site-footer-contact a {
    color: #1e3a5f;
    text-decoration: none;
    font-weight: 500;
}
.site-footer-contact a:hover {
    text-decoration: underline;
    color: var(--blue);
}
.site-footer-social {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-shrink: 0;
}
.site-footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #fff;
    color: #334155;
    box-shadow: 0 2px 8px rgba(15, 23, 42, .08);
    transition: color .15s, transform .15s, box-shadow .15s;
}
.site-footer-social a:hover {
    color: var(--blue);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(15, 23, 42, .12);
}
.site-footer-social svg {
    width: 16px;
    height: 16px;
    display: block;
}

.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #25d366;
    color: #fff;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
    z-index: 999;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
.whatsapp-float:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
    filter: brightness(1.04);
}
.whatsapp-float:focus-visible {
    outline: 2px solid #111;
    outline-offset: 3px;
}

@media (max-width: 1024px) {
    .hero-grid, .about-grid { grid-template-columns: 1fr; }
    .about-grid {
        align-items: stretch;
    }
    .about-center {
        pointer-events: auto;
    }
    .about-center img {
        position: static;
        transform: none;
        left: auto;
        bottom: auto;
        z-index: auto;
        max-width: 100%;
        max-height: min(560px, 72vh);
        margin-inline: auto;
        object-position: center;
        pointer-events: auto;
    }
    .about-left,
    .about-right {
        z-index: auto;
    }
    .section.about {
        padding-bottom: clamp(calc(32px * 1.2 * 0.5), calc(6vw * 1.2 * 0.5), calc(56px * 1.2 * 0.5));
        overflow: visible;
    }
    .about-left,
    .about-right {
        transform: none;
    }
    .hero-copy {
        grid-column: auto;
        grid-row: auto;
    }
    .hero-heading,
    .hero-body,
    .hero-person {
        grid-column: auto;
        grid-row: auto;
    }
    .hero-heading { padding-top: 0; }
    .service-card {
        flex: 0 1 calc(50% - 8px);
        max-width: min(calc(50% - 8px), 100%);
    }
    .audience-grid {
        grid-template-columns: 1fr 1fr;
    }
    .blog-grid {
        grid-template-columns: 1fr 1fr;
    }
    .google-reviews-grid {
        grid-template-columns: 1fr 1fr;
    }
    .hero {
        height: auto;
        min-height: 0;
    }
    .hero .container {
        height: auto;
        min-height: 0;
    }
    .hero-person {
        margin-top: 0;
        margin-bottom: calc(-1 * clamp(calc(14px * var(--hero-v-scale)), calc(5vh * var(--hero-v-scale)), calc(56px * var(--hero-v-scale))));
    }
    .hero-person img {
        max-width: min(560px, 92vw);
        object-position: bottom center;
    }
}
@media (max-width: 640px) {
    .audience-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .google-reviews-grid { grid-template-columns: 1fr; }
    .service-card {
        flex: 1 1 100%;
        max-width: 100%;
    }
    .top-nav {
        flex-wrap: wrap;
        justify-content: flex-start;
        row-gap: 12px;
    }
    .top-nav-right {
        width: 100%;
        flex-wrap: wrap;
        margin-left: 0;
        row-gap: 10px;
    }
    .top-nav-menu { padding: 10px 16px; }
    .top-nav-menu ul { gap: 16px; font-size: .86rem; }
    .top-nav-social {
        justify-content: flex-start;
    }
    .logo { height: min(171px, 42vw); }
    .btn-primary { padding: 13px 24px; }
    .contact-form-grid {
        grid-template-columns: 1fr;
    }
    .site-footer-inner {
        gap: 10px 14px;
    }
    .site-footer-logo img {
        height: min(44px, 14vw);
    }
    .site-footer-contact {
        font-size: .82rem;
        gap: 4px 10px;
    }
    .site-footer-contact p:first-child:not(:only-child)::after {
        margin-left: 10px;
    }
    .whatsapp-float {
        right: 14px;
        bottom: 14px;
        width: 52px;
        height: 52px;
    }
}
