:root {
    --bg: #ffffff;
    --bg-alt: #f8f9fa;
    --text: #0f172a;
    --text-secondary: #64748b;
    --text-muted: #94a3b8;
    --accent: #2563eb;
    --accent-dark: #1d4ed8;
    --border: #e2e8f0;
    --border-strong: #cbd5e1;
    --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.05);
    --shadow-md: 0 12px 30px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 24px 70px rgba(15, 23, 42, 0.12);
    --radius: 10px;
    --radius-lg: 16px;
    --transition: 180ms ease;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { width: min(1120px, calc(100% - 48px)); margin: 0 auto; }
.section-alt { background: var(--bg-alt); }
.text-accent { color: var(--accent); }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity 600ms ease, transform 600ms ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 80ms; }
.delay-2 { transition-delay: 160ms; }
.delay-3 { transition-delay: 240ms; }

.btn {
    align-items: center;
    border: 1px solid transparent;
    border-radius: var(--radius);
    cursor: pointer;
    display: inline-flex;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 700;
    gap: 8px;
    justify-content: center;
    line-height: 1;
    min-height: 44px;
    padding: 13px 20px;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), background var(--transition), color var(--transition);
    white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 10px 22px rgba(37, 99, 235, 0.20); }
.btn-primary:hover { background: var(--accent-dark); box-shadow: 0 14px 28px rgba(37, 99, 235, 0.24); }
.btn-secondary { background: #fff; border-color: var(--border); color: var(--text); box-shadow: var(--shadow-sm); }
.btn-secondary:hover { border-color: var(--border-strong); box-shadow: var(--shadow-md); }
.btn-sm { min-height: 38px; padding: 11px 16px; font-size: 0.88rem; }
.btn-lg { min-height: 52px; padding: 16px 24px; font-size: 1rem; }
.btn-block { width: 100%; }

.whatsapp-float {
    align-items: center;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 999px;
    bottom: 24px;
    box-shadow: var(--shadow-md);
    color: var(--text);
    display: inline-flex;
    font-size: 0.88rem;
    font-weight: 700;
    gap: 10px;
    padding: 12px 16px;
    position: fixed;
    right: 24px;
    z-index: 900;
}
.whatsapp-float:hover { border-color: var(--border-strong); transform: translateY(-2px); }
.whatsapp-dot { background: #22c55e; border-radius: 50%; height: 9px; width: 9px; box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.12); }

.navbar {
    background: rgba(255, 255, 255, 0.86);
    border-bottom: 1px solid transparent;
    left: 0;
    padding: 18px 0;
    position: fixed;
    right: 0;
    top: 0;
    transition: padding var(--transition), border-color var(--transition), box-shadow var(--transition);
    z-index: 800;
    backdrop-filter: blur(18px);
}
.navbar.scrolled { border-color: rgba(226, 232, 240, 0.9); box-shadow: 0 1px 0 rgba(15, 23, 42, 0.04); padding: 12px 0; }
.nav-container { align-items: center; display: flex; justify-content: space-between; }
.logo, .footer-brand { align-items: center; display: flex; gap: 10px; }
.logo-mark { align-items: center; background: var(--text); border-radius: 9px; color: #fff; display: inline-flex; height: 30px; justify-content: center; width: 30px; }
.logo-text { color: var(--text); font-size: 1.25rem; font-weight: 850; letter-spacing: 0; }
.nav-links { align-items: center; display: flex; gap: 28px; }
.nav-link { color: var(--text-secondary); font-size: 0.92rem; font-weight: 650; transition: color var(--transition); }
.nav-link:hover { color: var(--text); }
.hamburger { background: #fff; border: 1px solid var(--border); border-radius: 10px; display: none; flex-direction: column; gap: 4px; height: 42px; justify-content: center; padding: 0 10px; width: 42px; }
.hamburger span { background: var(--text); border-radius: 2px; display: block; height: 2px; transition: var(--transition); width: 20px; }
.hamburger.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.hero { overflow: hidden; padding: 158px 0 104px; position: relative; }
.hero::before {
    background-image: linear-gradient(rgba(37, 99, 235, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(37, 99, 235, 0.06) 1px, transparent 1px);
    background-size: 56px 56px;
    content: "";
    inset: 0 0 auto 0;
    height: 520px;
    mask-image: linear-gradient(to bottom, black, transparent);
    pointer-events: none;
    position: absolute;
}
.hero-layout { align-items: center; display: grid; gap: 64px; grid-template-columns: 1.05fr 0.75fr; position: relative; }
.hero-content { max-width: 720px; }
.hero-badge, .section-tag {
    background: #eff6ff;
    border: 1px solid #dbeafe;
    border-radius: 999px;
    color: var(--accent);
    display: inline-flex;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    margin-bottom: 18px;
    padding: 7px 12px;
    text-transform: uppercase;
}
.hero h1 { color: var(--text); font-size: clamp(3rem, 7vw, 5.65rem); font-weight: 900; letter-spacing: 0; line-height: 0.98; margin-bottom: 24px; }
.hero-subtitle { color: var(--text-secondary); font-size: clamp(1.05rem, 2vw, 1.24rem); line-height: 1.75; margin-bottom: 34px; max-width: 660px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 54px; }
.hero-stats { display: flex; flex-wrap: wrap; gap: 36px; }
.stat-item { border-left: 1px solid var(--border); padding-left: 18px; }
.stat-num, .stat-plus { color: var(--text); font-size: 2rem; font-weight: 850; line-height: 1; }
.stat-plus { color: var(--accent); font-size: 1.08rem; margin-left: 2px; }
.stat-lbl { color: var(--text-secondary); display: block; font-size: 0.86rem; font-weight: 650; margin-top: 5px; }
.hero-panel {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    padding: 22px;
}
.panel-header { display: flex; gap: 7px; margin-bottom: 28px; }
.panel-header span { background: #cbd5e1; border-radius: 50%; height: 9px; width: 9px; }
.panel-row, .panel-metric { align-items: center; border: 1px solid var(--border); border-radius: 12px; display: flex; justify-content: space-between; padding: 14px; }
.panel-row { margin-bottom: 12px; }
.panel-row span, .panel-metric span { color: var(--text-secondary); font-size: 0.86rem; font-weight: 650; }
.panel-row strong, .panel-metric strong { color: var(--text); }
.panel-progress { background: #e2e8f0; border-radius: 999px; height: 8px; margin: 18px 0; overflow: hidden; }
.panel-progress span { background: var(--accent); display: block; height: 100%; width: 72%; }
.panel-list { color: var(--text-secondary); display: grid; gap: 10px; font-size: 0.92rem; font-weight: 650; }
.panel-list span { color: var(--accent); display: inline-block; width: 20px; }

section { padding: 96px 0; }
.section-header { margin: 0 auto 54px; max-width: 720px; text-align: center; }
.section-header h2 { color: var(--text); font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 850; letter-spacing: 0; line-height: 1.08; margin-bottom: 14px; }
.section-header p { color: var(--text-secondary); font-size: 1.06rem; }

.services-grid, .why-grid, .testimonials-grid { display: grid; gap: 22px; grid-template-columns: repeat(3, 1fr); }
.service-card, .why-card, .testimonial-card, .work-card, .pricing-card, .step-card, .faq-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.service-card:hover, .why-card:hover, .testimonial-card:hover, .work-card:hover, .pricing-card:hover, .step-card:hover { border-color: var(--border-strong); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.service-card { padding: 28px; position: relative; }
.service-card.featured { border-color: #bfdbfe; box-shadow: 0 18px 48px rgba(37, 99, 235, 0.12); }
.card-badge, .popular-badge { background: var(--text); border-radius: 999px; color: #fff; font-size: 0.76rem; font-weight: 800; padding: 6px 12px; position: absolute; right: 18px; top: 18px; }
.card-icon-wrap, .why-icon, .step-icon {
    align-items: center;
    background: #eff6ff;
    border: 1px solid #dbeafe;
    border-radius: 12px;
    color: var(--accent);
    display: flex;
    font-size: 1.35rem;
    height: 48px;
    justify-content: center;
    margin-bottom: 18px;
    width: 48px;
}
.service-card h3, .why-card h3, .step-card h3, .work-body h3, .pricing-card h3 { color: var(--text); font-size: 1.12rem; font-weight: 800; line-height: 1.3; margin-bottom: 10px; }
.service-card p, .why-card p, .step-card p, .work-body p, .testimonial-text { color: var(--text-secondary); font-size: 0.94rem; line-height: 1.7; }
.card-features { border-top: 1px solid var(--border); margin-top: 18px; padding-top: 14px; }
.card-features li { color: var(--text-secondary); font-size: 0.9rem; padding: 6px 0 6px 22px; position: relative; }
.card-features li::before { color: var(--accent); content: "✓"; font-weight: 900; left: 0; position: absolute; }

.why-card { padding: 28px; text-align: left; }
.why-icon { font-size: 1.45rem; }
.steps-grid { align-items: stretch; display: grid; gap: 18px; grid-template-columns: 1fr auto 1fr auto 1fr; }
.step-card { padding: 30px 24px; position: relative; }
.step-number { align-items: center; background: var(--text); border-radius: 50%; color: #fff; display: flex; font-size: 0.85rem; font-weight: 850; height: 32px; justify-content: center; margin-bottom: 16px; width: 32px; }
.step-icon { margin-bottom: 18px; }
.step-connector { align-items: center; color: var(--accent); display: flex; font-size: 1.55rem; font-weight: 800; opacity: 0.7; }
.steps-cta { margin-top: 42px; text-align: center; }

.testimonials-grid { grid-template-columns: repeat(3, 1fr); }
.testimonial-card { padding: 26px; }
.testimonial-stars { color: #f59e0b; font-size: 0.98rem; letter-spacing: 1px; margin-bottom: 12px; }
.testimonial-text { font-style: italic; margin-bottom: 22px; }
.testimonial-author { align-items: center; display: flex; gap: 12px; }
.testimonial-avatar { align-items: center; background: var(--text); border-radius: 50%; color: #fff; display: flex; flex-shrink: 0; font-size: 0.85rem; font-weight: 800; height: 40px; justify-content: center; width: 40px; }
.testimonial-name { color: var(--text); font-size: 0.9rem; font-weight: 800; }
.testimonial-role { color: var(--text-muted); font-size: 0.78rem; margin-top: 2px; }

.live-bar { background: #fff; border-bottom: 1px solid var(--border); border-top: 1px solid var(--border); padding: 20px 0; }
.live-bar-inner { align-items: center; display: flex; flex-wrap: wrap; gap: 28px; justify-content: center; }
.live-item { align-items: center; color: var(--text-secondary); display: flex; font-size: 0.9rem; font-weight: 700; gap: 8px; }
.live-dot { background: var(--accent); border-radius: 50%; display: inline-block; height: 8px; width: 8px; }
.pulse .live-dot { animation: live-pulse 1.8s ease infinite; }
@keyframes live-pulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.20); } 50% { box-shadow: 0 0 0 7px rgba(37, 99, 235, 0); } }

.works-grid { display: grid; gap: 22px; grid-template-columns: repeat(2, 1fr); }
.work-card { overflow: hidden; }
.work-badge { background: #eff6ff; border: 1px solid #dbeafe; border-radius: 999px; color: var(--accent); display: inline-flex; font-size: 0.75rem; font-weight: 850; letter-spacing: 0.04em; margin: 22px 22px 0; padding: 6px 10px; text-transform: uppercase; }
.work-body { padding: 16px 22px 24px; }
.work-cta { color: var(--accent); display: inline-flex; font-size: 0.9rem; font-weight: 800; margin-top: 14px; }
.work-cta:hover { color: var(--accent-dark); }

.pricing-grid { align-items: stretch; display: grid; gap: 22px; grid-template-columns: repeat(3, 1fr); margin-bottom: 34px; }
.pricing-card { display: flex; flex-direction: column; padding: 34px; position: relative; }
.pricing-card.popular { border-color: #93c5fd; box-shadow: 0 26px 70px rgba(37, 99, 235, 0.16); transform: translateY(-10px); }
.pricing-card.popular:hover { transform: translateY(-13px); }
.popular-badge { left: 34px; right: auto; top: 18px; }
.pricing-card.popular h3 { margin-top: 32px; }
.pricing-price { margin: 10px 0 24px; }
.price-amount { color: var(--text); display: block; font-size: 3rem; font-weight: 900; letter-spacing: 0; line-height: 1; }
.price-period { color: var(--text-secondary); display: block; font-size: 0.9rem; font-weight: 650; margin-top: 7px; }
.pricing-features { flex: 1; margin-bottom: 28px; }
.pricing-features li { border-top: 1px solid var(--border); color: var(--text-secondary); font-size: 0.92rem; padding: 12px 0; }
.pricing-note { background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--radius-lg); color: var(--text-secondary); display: grid; gap: 6px; margin: 0 auto; max-width: 760px; padding: 20px; text-align: center; }
.pricing-note strong { color: var(--text); }

.faq-list { display: grid; gap: 12px; margin: 0 auto; max-width: 780px; }
.faq-item { overflow: hidden; }
.faq-item.active { border-color: #bfdbfe; box-shadow: 0 12px 34px rgba(37, 99, 235, 0.08); }
.faq-question { align-items: center; background: #fff; border: 0; color: var(--text); cursor: pointer; display: flex; font-family: inherit; font-size: 1rem; font-weight: 800; justify-content: space-between; padding: 22px 24px; text-align: left; width: 100%; }
.faq-arrow { align-items: center; background: var(--bg-alt); border: 1px solid var(--border); border-radius: 50%; color: var(--accent); display: flex; flex-shrink: 0; height: 30px; justify-content: center; margin-left: 16px; transition: transform var(--transition), background var(--transition); width: 30px; }
.faq-item.active .faq-arrow { background: var(--accent); color: #fff; transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 260ms ease; }
.faq-answer p { color: var(--text-secondary); padding: 0 24px 22px; }

.cta { background: #fff; padding: 90px 0; }
.cta-card { background: #fff; border: 1px solid var(--border); border-radius: 20px; box-shadow: var(--shadow-lg); color: var(--text); padding: 60px 42px; text-align: center; }
.cta-card h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 850; letter-spacing: 0; line-height: 1.08; margin-bottom: 14px; }
.cta-card p { color: var(--text-secondary); font-size: 1.08rem; margin-bottom: 30px; }
.cta-buttons { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.cta-card .btn-secondary { background: #fff; border-color: var(--border); color: var(--text); }

.footer { background: var(--bg-alt); border-top: 1px solid var(--border); padding: 58px 0 28px; }
.footer-grid { display: grid; gap: 42px; grid-template-columns: 1.6fr 1fr 1fr 1fr; margin-bottom: 38px; }
.footer-brand { align-items: flex-start; flex-direction: column; gap: 12px; }
.footer-brand .logo-text { font-size: 1.25rem; font-weight: 850; }
.footer-brand p { color: var(--text-secondary); max-width: 340px; }
.footer-col h4 { color: var(--text); font-size: 0.8rem; font-weight: 850; letter-spacing: 0.05em; margin-bottom: 13px; text-transform: uppercase; }
.footer-col a { color: var(--text-secondary); display: block; font-size: 0.92rem; font-weight: 600; padding: 5px 0; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom { border-top: 1px solid var(--border); color: var(--text-muted); font-size: 0.84rem; padding-top: 22px; text-align: center; }

.mobile-overlay { background: rgba(15, 23, 42, 0.34); display: none; inset: 0; position: fixed; z-index: 700; }
.mobile-overlay.active { display: block; }

@media (max-width: 980px) {
    .hero-layout { grid-template-columns: 1fr; }
    .hero-panel { max-width: 520px; }
    .services-grid, .why-grid, .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: 1fr; margin-inline: auto; max-width: 520px; }
    .pricing-card.popular, .pricing-card.popular:hover { transform: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .container { width: min(100% - 32px, 1120px); }
    .navbar { padding: 14px 0; }
    .navbar.scrolled { padding: 10px 0; }
    section { padding: 68px 0; }
    .section-header { margin-bottom: 34px; }
    .section-header h2 { font-size: 2.25rem; }
    .section-header p { font-size: 1rem; }

    .mobile-overlay {
        background: rgba(15, 23, 42, 0.44);
        display: block;
        opacity: 0;
        pointer-events: none;
        transition: opacity 260ms ease;
    }
    .mobile-overlay.active {
        opacity: 1;
        pointer-events: auto;
    }
    .nav-links {
        align-items: stretch;
        background: #fff;
        box-shadow: var(--shadow-lg);
        display: flex;
        flex-direction: column;
        gap: 12px;
        height: 100vh;
        height: 100dvh;
        justify-content: center;
        left: 0;
        opacity: 0;
        padding: 88px 24px 40px;
        pointer-events: none;
        position: fixed;
        right: 0;
        top: 0;
        transform: translateY(-16px) scale(0.98);
        transition: opacity 260ms ease, transform 260ms ease, visibility 0s linear 260ms;
        visibility: hidden;
        width: 100%;
        z-index: 850;
    }
    .nav-links.open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0) scale(1);
        transition: opacity 260ms ease, transform 260ms ease, visibility 0s;
        visibility: visible;
    }
    .nav-link,
    .nav-links .btn {
        border-radius: 12px;
        font-size: 1.05rem;
        justify-content: center;
        min-height: 52px;
        padding: 16px;
        text-align: center;
        width: 100%;
    }
    .hamburger { display: flex; position: relative; z-index: 900; }

    .hero { padding: 124px 0 72px; }
    .hero-layout { gap: 38px; }
    .hero h1 { font-size: 3.15rem; }
    .hero-subtitle { font-size: 1.05rem; line-height: 1.7; }
    .hero-actions,
    .cta-buttons {
        flex-direction: column;
    }
    .hero-actions .btn,
    .cta-buttons .btn,
    .steps-cta .btn {
        width: 100%;
    }
    .hero-stats { gap: 18px; }
    .stat-item { flex: 1 1 130px; }

    .services-grid,
    .why-grid,
    .testimonials-grid,
    .works-grid,
    .pricing-grid {
        gap: 18px;
        grid-template-columns: 1fr;
        max-width: none;
        width: 100%;
    }
    .service-card,
    .why-card,
    .testimonial-card,
    .work-card,
    .pricing-card {
        padding: 24px;
        width: 100%;
    }
    .service-card p,
    .why-card p,
    .step-card p,
    .work-body p,
    .testimonial-text,
    .pricing-features li,
    .faq-answer p {
        font-size: 0.98rem;
    }

    .why-us { padding: 64px 0; }
    .why-card { text-align: left; }

    .steps-grid {
        gap: 14px;
        grid-template-columns: 1fr;
    }
    .step-card { padding: 24px; }
    .step-connector {
        justify-content: center;
        min-height: 28px;
        transform: rotate(90deg);
    }
    .steps-cta { margin-top: 28px; }

    .testimonial-card { min-height: auto; }
    .testimonial-text { line-height: 1.75; }
    .testimonial-role { font-size: 0.82rem; }

    .work-badge { margin: 20px 20px 0; }
    .work-body { padding: 16px 20px 22px; }

    .pricing-card.popular,
    .pricing-card.popular:hover {
        transform: none;
    }
    .price-amount { font-size: 2.55rem; }
    .pricing-note {
        padding: 18px;
        text-align: left;
    }

    .faq-list { gap: 10px; }
    .faq-question {
        font-size: 0.98rem;
        line-height: 1.35;
        min-height: 58px;
        padding: 18px;
    }
    .faq-arrow {
        height: 34px;
        margin-left: 12px;
        width: 34px;
    }
    .faq-answer p { padding: 0 18px 20px; }

    .cta { padding: 66px 0; }
    .cta-card { padding: 34px 24px; }
    .cta-card p { font-size: 1rem; }

    .footer { padding: 46px 0 24px; }
    .footer-grid {
        gap: 30px;
        grid-template-columns: 1fr;
    }
    .footer-brand p { max-width: none; }
    .footer-col a {
        font-size: 0.96rem;
        min-height: 36px;
        padding: 7px 0;
    }

    .whatsapp-float { bottom: 16px; right: 16px; }
}

@media (max-width: 480px) {
    .container { width: min(100% - 24px, 1120px); }
    section { padding: 56px 0; }
    .section-header { margin-bottom: 28px; }
    .section-header h2 { font-size: 1.95rem; }
    .section-tag { font-size: 0.7rem; }

    .nav-links { padding: 82px 16px 32px; }
    .nav-link,
    .nav-links .btn {
        font-size: 1rem;
        min-height: 50px;
        padding: 15px;
    }

    .hero { padding: 112px 0 58px; }
    .hero h1 { font-size: 2.45rem; }
    .hero-subtitle { font-size: 1rem; }
    .hero-panel,
    .service-card,
    .why-card,
    .step-card,
    .testimonial-card,
    .pricing-card,
    .cta-card {
        padding: 22px;
    }
    .hero-actions { margin-bottom: 36px; }
    .hero-stats { display: grid; gap: 14px; grid-template-columns: 1fr; }

    .services-grid,
    .why-grid,
    .testimonials-grid,
    .works-grid,
    .pricing-grid {
        gap: 16px;
    }
    .card-badge,
    .popular-badge {
        font-size: 0.7rem;
        right: 14px;
        top: 14px;
    }
    .popular-badge {
        left: 22px;
        right: auto;
    }
    .pricing-card.popular h3 { margin-top: 30px; }
    .price-amount { font-size: 2.25rem; }

    .work-badge { margin: 18px 18px 0; }
    .work-body { padding: 14px 18px 20px; }

    .faq-question {
        align-items: flex-start;
        font-size: 0.95rem;
        padding: 16px;
    }
    .faq-answer p {
        font-size: 0.94rem;
        padding: 0 16px 18px;
    }

    .cta { padding: 56px 0; }
    .cta-card h2 { font-size: 1.95rem; }
    .btn-lg { min-height: 50px; padding: 15px 18px; }

    .footer-grid { gap: 24px; }
    .footer-bottom { font-size: 0.8rem; }

    .whatsapp-float span:last-child { display: none; }
    .whatsapp-float { border-radius: 50%; height: 48px; justify-content: center; padding: 0; width: 48px; }
}
