/**
 * Vidente Natural Milena — violeta, letras negras, mística del tarot
 */

:root {
    --violet-pale: #efe4f7;
    --violet-soft: #e4d0f2;
    --violet: #c4a4de;
    --violet-mid: #a67cc8;
    --violet-deep: #7b4ea3;
    --ink: #140c1c;
    --ink-soft: #2a1a38;
    --gold: #8a6420;
    --gold-bright: #c9a44a;
    --gold-glow: rgba(201, 164, 74, 0.45);
    --white: #fffdf8;
    --card: #f7f0fb;
    --whatsapp: #128c57;
    --velvet: #12081a;
    --shadow: 0 14px 36px rgba(20, 12, 28, 0.14);
    --radius: 20px;
    --font-display: "Cinzel", "Times New Roman", serif;
    --font-body: "Source Sans 3", system-ui, sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 18px;
}

body {
    margin: 0;
    font-family: var(--font-body);
    background:
        radial-gradient(ellipse at 12% 8%, rgba(201, 164, 74, 0.12), transparent 42%),
        radial-gradient(ellipse at 88% 18%, rgba(123, 78, 163, 0.2), transparent 46%),
        linear-gradient(180deg, var(--violet-soft) 0%, var(--violet-pale) 50%, var(--violet) 100%);
    color: var(--ink);
    font-size: 1.08rem;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    padding-bottom: 92px;
}

img {
    max-width: 100%;
    height: auto;
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--ink);
}

a {
    color: var(--ink);
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.container {
    width: min(1100px, 100% - 32px);
    margin-inline: auto;
}

.ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 0 auto 22px;
    color: var(--gold);
    letter-spacing: 0.4em;
    font-size: 0.78rem;
}

.ornament::before,
.ornament::after {
    content: "";
    width: 56px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-bright), transparent);
}

/* Navigation */
#navigation {
    position: relative;
    background: rgba(196, 164, 222, 0.94);
    border-bottom: 1px solid rgba(20, 12, 28, 0.16);
    backdrop-filter: blur(12px);
}

#navigation.nav-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9000;
    box-shadow: var(--shadow);
}

.nav-inner {
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.logo-text {
    font-family: var(--font-display);
    font-size: clamp(1.05rem, 2.4vw, 1.28rem);
    color: var(--ink);
    letter-spacing: 0.08em;
    font-weight: 700;
}

.menu-toggle {
    display: none;
    background: var(--card);
    border: 1px solid rgba(20, 12, 28, 0.22);
    color: var(--ink);
    border-radius: 10px;
    width: 46px;
    height: 42px;
    font-size: 1.35rem;
    cursor: pointer;
}

.main-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 2px;
}

.main-menu a {
    display: block;
    color: var(--ink);
    padding: 10px 13px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.9rem;
}

.main-menu a:hover {
    background: rgba(255, 253, 248, 0.5);
}

.main-menu .nav-call {
    background: var(--ink);
    color: var(--violet-pale);
    margin-left: 6px;
}

.main-menu .nav-call:hover {
    color: var(--white);
    background: var(--ink-soft);
}

/* Hero */
.hero {
    position: relative;
    min-height: calc(100svh - 70px);
    display: grid;
    place-items: center;
    overflow: hidden;
    padding: 28px 18px 56px;
    background:
        radial-gradient(ellipse at 20% 80%, rgba(201, 164, 74, 0.18), transparent 40%),
        radial-gradient(ellipse at 80% 20%, rgba(123, 78, 163, 0.28), transparent 42%),
        linear-gradient(180deg, #1a0d22 0%, #2a1638 42%, #5a3878 78%, var(--violet) 100%);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(1.5px 1.5px at 12% 18%, rgba(255, 236, 180, 0.7), transparent),
        radial-gradient(1px 1px at 28% 42%, rgba(255, 236, 180, 0.45), transparent),
        radial-gradient(1.5px 1.5px at 72% 22%, rgba(255, 236, 180, 0.55), transparent),
        radial-gradient(1px 1px at 86% 58%, rgba(255, 236, 180, 0.4), transparent),
        radial-gradient(1px 1px at 48% 12%, rgba(255, 236, 180, 0.5), transparent);
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 1;
    width: min(980px, 100%);
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 36px;
    align-items: center;
}

.hero-copy {
    text-align: left;
}

.hero-eyebrow {
    display: inline-block;
    margin: 0 0 12px;
    padding: 7px 14px;
    border-radius: 999px;
    background: var(--violet-pale);
    border: 1px solid rgba(138, 100, 32, 0.35);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink);
}

.hero-brand {
    font-family: var(--font-display);
    font-size: clamp(3.1rem, 8.5vw, 5.4rem);
    margin: 0 0 10px;
    line-height: 0.95;
    letter-spacing: 0.08em;
    color: #e8c04a;
    text-shadow:
        0 0 12px rgba(255, 226, 138, 0.55),
        0 0 28px rgba(232, 192, 74, 0.4),
        0 8px 22px rgba(0, 0, 0, 0.4);
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
    .hero-brand {
        background: linear-gradient(180deg, #ffe9a8 0%, #e8c04a 45%, #c99220 100%);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        filter: drop-shadow(0 0 16px rgba(232, 192, 74, 0.5)) drop-shadow(0 8px 20px rgba(0, 0, 0, 0.38));
        text-shadow: none;
    }
}

.hero-title {
    font-size: clamp(1.15rem, 2.6vw, 1.55rem);
    font-weight: 600;
    margin: 0 0 14px;
    line-height: 1.35;
    color: var(--violet-soft);
}

.hero-lead {
    margin: 0 0 14px;
    color: #f3e8fb;
    font-size: clamp(1rem, 2vw, 1.12rem);
    max-width: 36ch;
}

.hero-phone {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    margin-bottom: 16px;
    padding: 12px 22px;
    border-radius: 16px;
    background: var(--violet-pale);
    border: 1px solid var(--gold-bright);
    box-shadow: 0 0 0 1px rgba(138, 100, 32, 0.15), 0 10px 28px rgba(0, 0, 0, 0.18);
    color: var(--ink);
}

.hero-phone:hover {
    transform: translateY(-2px);
    color: var(--ink);
}

.hero-phone-label {
    font-size: 0.75rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 700;
}

.hero-phone-number {
    font-family: var(--font-display);
    font-size: clamp(1.7rem, 4vw, 2.3rem);
    letter-spacing: 0.03em;
    line-height: 1.15;
}

.hero-meta {
    margin: 16px 0 0;
    font-size: 0.92rem;
    color: #eadcf4;
}

.hero-frame {
    position: relative;
    justify-self: center;
    width: min(420px, 100%);
    padding: 10px;
    background:
        linear-gradient(160deg, rgba(201, 164, 74, 0.7), rgba(20, 12, 28, 0.4)),
        var(--velvet);
    border-radius: 22px;
    box-shadow:
        0 0 0 1px rgba(201, 164, 74, 0.45),
        0 24px 50px rgba(0, 0, 0, 0.4),
        0 0 40px var(--gold-glow);
}

.hero-frame img {
    display: block;
    width: 100%;
    aspect-ratio: 2 / 1;
    object-fit: cover;
    border-radius: 14px;
}

.hero-frame-caption {
    margin: 10px 4px 2px;
    text-align: center;
    font-family: var(--font-display);
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--violet-pale);
}

.scroll-down {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    color: var(--ink);
    font-size: 1.6rem;
    opacity: 0.7;
    animation: bounceSoft 2.2s ease-in-out infinite;
}

/* Urgency */
.urgency-banner {
    background: linear-gradient(90deg, var(--violet-mid), var(--violet), var(--violet-mid));
    padding: 16px 20px;
    text-align: center;
    border-block: 1px solid rgba(20, 12, 28, 0.12);
}

.urgency-banner p {
    margin: 0;
    font-size: clamp(1rem, 2.2vw, 1.14rem);
    color: var(--ink);
    font-weight: 600;
}

.urgency-banner a {
    color: var(--ink);
    font-family: var(--font-display);
    font-size: 1.12em;
    margin-left: 6px;
    border-bottom: 2px solid var(--ink);
    font-weight: 700;
}

/* Sections */
.section-title {
    font-size: clamp(1.7rem, 4.4vw, 2.7rem);
    text-align: center;
    margin: 0 0 12px;
    line-height: 1.15;
}

.section-intro {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 36px;
    color: var(--ink-soft);
    font-size: clamp(1.02rem, 2vw, 1.18rem);
}

/* Questions */
.questions-section {
    padding: 72px 0 56px;
}

.questions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 36px;
}

.question-card {
    background: var(--card);
    border: 1px solid rgba(138, 100, 32, 0.28);
    border-top: 3px solid var(--gold-bright);
    border-radius: 16px;
    padding: 20px 18px 18px;
    box-shadow: 0 6px 18px rgba(20, 12, 28, 0.07);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.question-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.question-mark {
    display: block;
    margin-bottom: 8px;
    color: var(--gold);
    font-size: 0.95rem;
    letter-spacing: 0.28em;
}

.question-card p {
    margin: 0;
    font-size: 1.02rem;
    line-height: 1.4;
    color: var(--ink);
    font-weight: 600;
}

.questions-cta,
.final-cta {
    text-align: center;
    padding: 34px 24px;
    background:
        linear-gradient(145deg, var(--violet), var(--violet-mid));
    border-radius: 24px;
    border: 1px solid rgba(138, 100, 32, 0.35);
    box-shadow: 0 0 0 1px rgba(255, 253, 248, 0.2) inset;
}

.questions-cta p,
.final-cta p {
    margin: 0 0 8px;
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 3vw, 1.9rem);
    color: var(--ink);
}

.cta-sub {
    font-family: var(--font-body) !important;
    font-size: 1.02rem !important;
    font-weight: 400;
    margin-bottom: 18px !important;
    color: var(--ink-soft);
}

/* About */
.about-section {
    padding: 28px 0 72px;
}

.about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 40px;
    align-items: center;
    background: var(--card);
    border: 1px solid rgba(138, 100, 32, 0.25);
    border-radius: 28px;
    padding: 28px;
    box-shadow: var(--shadow);
}

.about-image {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--gold-bright);
    box-shadow: 0 0 24px var(--gold-glow);
}

.about-image img {
    display: block;
    width: 100%;
    aspect-ratio: 2 / 1;
    object-fit: cover;
}

.about-body h2 {
    font-size: clamp(1.55rem, 3.4vw, 2.2rem);
    margin: 0 0 14px;
}

.about-body p {
    margin: 0 0 12px;
    color: var(--ink-soft);
}

.about-list {
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
}

.about-list li {
    position: relative;
    padding-left: 1.5em;
    margin-bottom: 8px;
    color: var(--ink);
    font-weight: 600;
}

.about-list li::before {
    content: "✦";
    position: absolute;
    left: 0;
    color: var(--gold);
}

/* Testimonials */
.testimonials-section {
    padding: 64px 0;
    background:
        radial-gradient(circle at 80% 10%, rgba(201, 164, 74, 0.12), transparent 40%),
        var(--violet-soft);
}

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

.testimonial-card {
    background: var(--card);
    border-radius: 18px;
    padding: 26px 22px;
    border: 1px solid rgba(138, 100, 32, 0.22);
    box-shadow: 0 6px 18px rgba(20, 12, 28, 0.06);
}

.testimonial-stars {
    color: var(--gold);
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.testimonial-text {
    margin: 0 0 16px;
    font-style: italic;
    color: var(--ink-soft);
    line-height: 1.55;
}

.testimonial-author {
    margin: 0;
    font-weight: 700;
    color: var(--ink);
    font-size: 0.95rem;
}

.testimonial-meta {
    margin: 4px 0 0;
    font-size: 0.84rem;
    color: var(--violet-deep);
}

/* How */
.how-section {
    padding: 72px 0 64px;
}

.how-steps {
    list-style: none;
    margin: 0 0 36px;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.how-steps li {
    background: var(--card);
    border-radius: 18px;
    padding: 24px 16px;
    text-align: center;
    border: 1px solid rgba(20, 12, 28, 0.08);
}

.step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--ink);
    color: var(--violet-pale);
    font-family: var(--font-display);
    font-weight: 700;
    margin-bottom: 12px;
}

.how-steps h3 {
    font-size: 1.05rem;
    margin: 0 0 8px;
}

.how-steps p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 0.95rem;
}

/* Contact */
.contact-panel {
    background:
        linear-gradient(180deg, #2a1638 0%, #4a2a68 55%, var(--violet-mid) 100%);
    padding: 80px 0 64px;
}

.contact-panel .section-title,
.contact-panel .section-intro,
.contact-panel .contact-note {
    color: var(--violet-pale);
}

.contact-panel .section-intro {
    color: #eadcf4;
}

.contact-phone-wrap {
    text-align: center;
    margin-bottom: 14px;
}

.contact-phone {
    display: inline-block;
    font-family: var(--font-display);
    font-size: clamp(2rem, 6vw, 3.3rem);
    color: var(--violet-pale);
    letter-spacing: 0.03em;
    border-bottom: 3px solid var(--gold-bright);
    line-height: 1.2;
}

.contact-phone:hover {
    color: var(--white);
}

.contact-note {
    text-align: center;
    margin: 0 0 8px;
}

.payment-section {
    background: var(--violet-pale);
    padding: 64px 0 72px;
}

.payment-title {
    font-size: clamp(1.6rem, 3.6vw, 2.3rem);
    text-align: center;
    margin: 0 0 10px;
}

.payment-intro {
    text-align: center;
    color: var(--ink-soft);
    margin: 0 auto 26px;
    max-width: 540px;
}

.payment-logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 28px;
}

.payment-logos img {
    height: 42px;
    width: auto;
    max-width: 118px;
    object-fit: contain;
    background: var(--white);
    padding: 8px 12px;
    border-radius: 10px;
    border: 1px solid rgba(20, 12, 28, 0.08);
}

.payment-transfer {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 8px 16px;
    background: var(--white);
    border-radius: 10px;
    border: 1px solid rgba(20, 12, 28, 0.08);
    font-weight: 700;
    color: var(--ink);
    font-size: 0.92rem;
}

.privacy-link {
    display: block;
    margin: 24px auto 0;
    background: transparent;
    border: none;
    color: var(--ink-soft);
    font-size: 0.9rem;
    text-decoration: underline;
    cursor: pointer;
    font-family: inherit;
}

/* CTAs */
.hero-ctas,
.cta-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 8px;
}

.hero-ctas {
    justify-content: flex-start;
}

.cta-row-left {
    justify-content: flex-start;
    margin-top: 20px;
}

.cta-row-spaced {
    margin-top: 30px;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 999px;
    padding: 15px 26px;
    font-weight: 700;
    font-size: 1.02rem;
    font-family: var(--font-body);
    box-shadow: var(--shadow);
    min-width: 210px;
    cursor: pointer;
}

.btn-cta:hover {
    transform: translateY(-2px);
}

.btn-cta-phone {
    background: var(--ink);
    color: var(--violet-pale);
}

.btn-cta-phone:hover {
    color: var(--white);
}

.btn-cta-whatsapp {
    background: var(--whatsapp);
    color: var(--white);
}

.btn-cta-whatsapp:hover {
    color: var(--white);
}

.btn-cta-light {
    background: var(--violet-pale);
    color: var(--ink);
    border: 1px solid var(--gold-bright);
}

.btn-cta-light:hover {
    color: var(--ink);
}

/* Floating WhatsApp */
.btn-float-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 16px;
    z-index: 9999;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 62px;
    min-height: 62px;
    padding: 0 20px 0 16px;
    border-radius: 999px;
    background: var(--whatsapp);
    color: var(--white);
    box-shadow: 0 8px 28px rgba(18, 140, 87, 0.45), 0 0 18px var(--gold-glow);
    animation: waPulse 2.4s ease-in-out infinite;
}

.btn-float-whatsapp .icon {
    width: 30px;
    height: 30px;
}

.btn-float-whatsapp .float-label {
    font-weight: 700;
    font-size: 0.95rem;
}

.btn-float-whatsapp:hover {
    color: var(--white);
    transform: scale(1.05);
}

footer {
    background: var(--velvet);
    padding: 28px 0 32px;
    text-align: center;
}

.footer-copy {
    margin: 0 0 14px;
    color: var(--violet-pale);
    font-size: 0.9rem;
}

.footer-logo {
    display: block;
    margin: 0 auto;
    opacity: 0.9;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.is-open {
    display: flex;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(18, 8, 26, 0.72);
}

.modal-dialog {
    position: relative;
    z-index: 1;
    width: min(720px, 100%);
    max-height: 85vh;
    overflow: auto;
    background: var(--violet-pale);
    color: var(--ink);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    border-bottom: 1px solid rgba(20, 12, 28, 0.1);
}

.modal-header h2 {
    margin: 0;
    font-size: 1.25rem;
}

.modal-close {
    background: transparent;
    border: none;
    font-size: 1.7rem;
    line-height: 1;
    cursor: pointer;
    color: var(--ink);
}

.modal-body {
    padding: 18px 22px;
}

.modal-body p {
    margin: 0 0 12px;
    font-size: 0.94rem;
    line-height: 1.55;
}

.modal-footer {
    padding: 14px 22px 22px;
    text-align: center;
}

/* Motion */
.reveal,
.reveal-hero {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible,
.reveal-hero.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.pulse-cta {
    animation: ctaPulse 2.2s ease-in-out infinite;
}

.pulse-soft {
    animation: softPulse 2.8s ease-in-out infinite;
}

@keyframes ctaPulse {
    0%, 100% { box-shadow: 0 8px 22px rgba(20, 12, 28, 0.25); }
    50% { box-shadow: 0 12px 32px rgba(20, 12, 28, 0.4); transform: translateY(-1px) scale(1.02); }
}

@keyframes softPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(201, 164, 74, 0.35); }
    50% { box-shadow: 0 0 0 10px rgba(201, 164, 74, 0); }
}

@keyframes waPulse {
    0%, 100% { box-shadow: 0 8px 28px rgba(18, 140, 87, 0.4), 0 0 14px var(--gold-glow); }
    50% { box-shadow: 0 10px 36px rgba(18, 140, 87, 0.65), 0 0 22px var(--gold-glow); }
}

@keyframes bounceSoft {
    0%, 100% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, 7px); }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .reveal,
    .reveal-hero {
        opacity: 1;
        transform: none;
        transition: none;
    }
    .scroll-down,
    .pulse-cta,
    .pulse-soft,
    .btn-float-whatsapp {
        animation: none !important;
    }
}

@media (max-width: 991px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .hero-lead {
        max-width: 42ch;
        margin-inline: auto 0;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-phone {
        align-items: center;
    }

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

    .hero-frame {
        order: -1;
        width: min(460px, 100%);
    }

    .questions-grid,
    .testimonials-grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-grid,
    .how-steps {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 17px;
    }

    .menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .main-menu {
        display: none;
        position: absolute;
        top: 70px;
        right: 12px;
        left: 12px;
        flex-direction: column;
        align-items: stretch;
        background: var(--violet);
        border: 1px solid rgba(20, 12, 28, 0.14);
        border-radius: 14px;
        padding: 12px;
        box-shadow: var(--shadow);
        z-index: 20;
    }

    .main-menu.is-open {
        display: flex;
    }

    .nav-inner {
        position: relative;
    }

    .hero {
        padding: 20px 16px 56px;
        min-height: auto;
    }

    .hero-ctas .btn-cta,
    .cta-row .btn-cta {
        width: 100%;
        min-width: 0;
    }

    .questions-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .about-grid {
        padding: 16px;
    }

    .questions-section,
    .testimonials-section,
    .how-section {
        padding: 52px 0 44px;
    }

    .contact-panel {
        padding: 56px 0 48px;
    }

    .btn-float-whatsapp {
        bottom: 14px;
        right: 12px;
        min-width: 0;
        min-height: 52px;
        padding: 12px 16px;
    }

    body {
        padding-bottom: 78px;
    }
}

@media (max-width: 380px) {
    html {
        font-size: 16px;
    }
}
