:root {
    --pa-bg-dark: #002b4a;
    --pa-bg-darker: #001d33;
    --pa-primary: #ff8a1f;
    --pa-primary-soft: #ffb86b;
    --pa-text-light: #f5f7fb;
    --pa-card-dark: rgba(0, 0, 0, 0.25);
    --pa-border-soft: rgba(255, 255, 255, 0.1);
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
    color: #ffffff;
}


/* NAVBAR */
.pa-navbar {
    /*background: radial-gradient(circle at top, #003b66 0, #00101f 60%);*/
    background:radial-gradient(circle at top, #1382A8 63%, #032A38 104%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pa-logo {
    font-weight: 700;
    font-size: 1.4rem;
    color: #ffffff;
    letter-spacing: 0.03em;
}

.pa-logo span {
    color: var(--pa-primary);
}

.pa-nav-link {
    color: #dbe7ff !important;
    font-weight: 500;
    font-size: 0.95rem;
}

.pa-nav-link:hover {
    color: #ffffff !important;
}

.btn-pa-outline,
.btn-pa-primary {
    border-radius: 999px;
    padding: 0.45rem 1.4rem;
    font-weight: 600;
    font-size: 0.9rem;
}

.btn-pa-outline {
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #ffffff;
    background: transparent;
}

.btn-pa-outline:hover {
    background: rgba(255, 255, 255, 0.06);
}

.btn-pa-primary {
    background: var(--pa-primary);
    border: none;
    color: #111827;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15),
    0 15px 30px rgba(0, 0, 0, 0.35);
}

.btn-pa-primary:hover {
    background: #ffa644;
    color: #111827;
}

/* HERO */
.hero-section {
    padding: 4.5rem 0 5.5rem;
}

.hero-title {
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1.2;
    color: #000000;
}

.hero-title span {
    color: var(--pa-primary);
}

.hero-subtitle {
    margin-top: 1.2rem;
    color: #555;
    max-width: 540px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(148, 163, 184, 0.5);
    font-size: 0.78rem;
    color: #e5e7eb;
}

.hero-device-card {
    padding: 1.8rem;
}

.hero-device-badge {
    position: absolute;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(37, 99, 235, 0.98);
    color: #e5f0ff;
    border-radius: 999px;
    padding: 0.3rem 1rem;
    font-size: 0.8rem;
    white-space: nowrap;
}

.hero-device {
    position: relative;
    background: radial-gradient(circle at top, #1f2937 0, #020617 60%);
    border-radius: 1.1rem;
    padding: 1.2rem;
    overflow: hidden;
}

.hero-device-screen {
    height: 210px;
    border-radius: 1rem;
    background: linear-gradient(145deg, #111827, #020617);
    border: 1px solid rgba(148, 163, 184, 0.35);
}

.hero-device-screen::before {
    content: "";
    display: block;
    width: 65%;
    height: 40%;
    margin: 1.6rem auto;
    border-radius: 0.75rem;
    background: radial-gradient(circle at top left, #22c55e, #0ea5e9);
    opacity: 0.2;
}

/* SECTION TITLES */
.section-label {
    color: var(--pa-primary-soft);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.section-title {
    font-size: 1.9rem;
    font-weight: 700;
}

.section-subtitle {
    color: #cbd5f5;
    max-width: 520px;
}

/* BLOCK 01 – “solução definitiva” */
.steps-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, #001422 0, #00192b 100%);
}

.step-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--pa-primary);
}

.step-title {
    font-weight: 600;
    font-size: 1.2rem;
}

.step-text {
    color: #d1d5db;
    max-width: 520px;
}

.step-divider {
    width: 100%;
    max-width: 420px;
    border-bottom: 1px solid rgba(148, 163, 184, 0.4);
    margin: 2.5rem 0;
}

/* FEATURES GRID */
.features-section {
    padding: 4rem 0 4.5rem;
    background: radial-gradient(circle at top, #022b4e 0, #020617 60%);
}

.feature-card {
    background: rgba(15, 23, 42, 0.9);
    border-radius: 1.3rem;
    padding: 1.7rem 1.6rem;
    border: 1px solid rgba(148, 163, 184, 0.18);
    height: 100%;
}

.feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: rgba(56, 189, 248, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.9rem;
    color: var(--pa-primary);
}

.feature-title {
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.feature-text {
    font-size: 0.92rem;
    color: #e5e7eb;
}

/* QR / CPF / APP */
.methods-section {
    padding: 4rem 0;
    background: #f9fafb;
    color: #0f172a;
}

.methods-card {
    background: #ff7b1f;
    border-radius: 1.5rem;
    padding: 2.3rem 2rem;
    color: #111827;
}

.methods-card-blue {
    background: #0394ff;
    color: #f9fafb;
}

.methods-card img,
.device-showcase img {
    max-width: 100%;
    border-radius: 1.2rem;
}

.device-showcase {
    background: #f3f4f6;
    border-radius: 1.5rem;
    padding: 2rem;
}

/* MODULOS ESPECIAIS */
.modules-section {
    padding: 4.5rem 0;
    background: linear-gradient(180deg, #001526 0, #001f35 100%);
}

.modules-card {
    background: rgba(15, 23, 42, 0.95);
    border-radius: 1.4rem;
    padding: 2rem;
    border: 1px solid rgba(148, 163, 184, 0.3);
}

/* PROTEÇÃO / BENEFÍCIOS */
.protection-section {
    padding: 4.5rem 0 4rem;
    background: #f3f4f6;
    color: #0b1220;
}

.protection-card {
    border-radius: 1.1rem;
    background: rgba(255, 255, 255, 0.95);
    padding: 1.6rem 1.5rem;
    height: 100%;
}

/* TESTEMUNHOS */
.testimonials-section {
    padding: 4rem 0 4.5rem;
    background: linear-gradient(180deg, #001525 0, #001b2d 100%);
}

.testimonial-card {
    background: rgba(15, 23, 42, 0.9);
    border-radius: 1.2rem;
    padding: 1.8rem 1.6rem;
    border: 1px solid rgba(148, 163, 184, 0.16);
    height: 100%;
}

.testimonial-name {
    margin-top: 1rem;
    font-weight: 600;
}

.testimonial-company {
    font-size: 0.85rem;
    color: #9ca3af;
}

/* COMPARATIVO */
.compare-section {
    padding: 4rem 0;
    background: #f9fafb;
    color: #111827;
}

.compare-wrapper {
    max-width: 860px;
    margin: 0 auto;
}

.compare-table {
    background: #ffffff;
    border-radius: 1.3rem;
    padding: 2rem;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.15);
}

.compare-header-main {
    border-radius: 1rem;
    border: 2px solid var(--pa-primary);
    padding: 1rem 0.8rem;
    background: linear-gradient(145deg, #022c57, #004c8c);
    color: #f9fafb;
}

.compare-badge {
    border-radius: 999px;
    padding: 0.15rem 0.7rem;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    background: rgba(15, 23, 42, 0.18);
}

.compare-row {
    border-bottom: 1px solid #e5e7eb;
    padding: 0.7rem 0;
    font-size: 0.92rem;
}

.compare-row:last-child {
    border-bottom: none;
}

/* PLANOS */
.plans-section {
    padding: 4.5rem 0;
    background: radial-gradient(circle at top, #022b4e 0, #020617 60%);
}

.plan-card {
    background: rgba(15, 23, 42, 0.95);
    border-radius: 1.5rem;
    padding: 2.2rem 2rem;
    height: 100%;
    border: 1px solid rgba(148, 163, 184, 0.24);
}

.plan-card-highlight {
    background:#FF8A1F;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
}

.plan-name {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.plan-price {
    font-size: 1.9rem;
    font-weight: 700;
}

.plan-price span {
    font-size: 1rem;
    font-weight: 500;
}

.plan-list {
    padding-left: 0;
    list-style: none;
    margin: 1.6rem 0 1.5rem;
    font-size: 0.92rem;
}

.plan-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.45rem;
    margin-bottom: 0.45rem;
}

.plan-list i {
    color: #22c55e;
    margin-top: 0.15rem;
}

/* INTEGRAÇÕES */
.integrations-section {
    padding: 4rem 0;
    background: #ffffff;
    color: #0f172a;
}

.integration-logo {
    height: 50px;
    width: 140px;
    border-radius: 0.9rem;
    background: #e5e7eb;
}

/* CTA FINAL */
.cta-section {
    padding: 4rem 0 3rem;
    background: linear-gradient(180deg, #001526 0, #000f1f 100%);
    text-align: center;
}

.cta-section p {
    max-width: 540px;
    margin: 0.8rem auto 2rem;
    color: #e5e7eb;
}

/* FOOTER NOVO */
.pa-footer {
    padding: 3rem 0 2rem;
    background: radial-gradient(circle at top, #003b66 0, #00101f 60%);
    color: #e5e7eb;
    font-size: 0.9rem;
}

.footer-main {
    border-bottom: 1px solid rgba(15, 23, 42, 0.8);
    padding-bottom: 1.5rem;
}

.footer-logo {
    font-weight: 700;
    font-size: 1.3rem;
    color: #f9fafb;
    background:#FFFFFF;
    width: 410px;
}

.top-logo {
    color: #f9fafb;
    background:#1382A8;
    width: 160px;
}

.footer-logo span {
    color: var(--pa-primary);
}

.footer-text {
    font-size: 0.9rem;
    color: #9ca3af;
    max-width: 420px;
}

.footer-col-title {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--pa-primary-soft);
    margin-bottom: 0.75rem;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li + li {
    margin-top: 0.25rem;
}

.footer-link {
    color: #e5e7eb;
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-link:hover {
    color: #ffffff;
    text-decoration: underline;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    color: #d1d5db;
}

/* EXTRA – pagamentos / envio / segurança */
.footer-extra {
    margin-top: 1.5rem;
}

.footer-mini-title {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #9ca3af;
    margin-bottom: 0.5rem;
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.badge-payment {
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.5);
    padding: 0.15rem 0.7rem;
    font-size: 0.75rem;
    color: #e5e7eb;
    background: rgba(15, 23, 42, 0.7);
}

/* SOCIAL */
.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    color: #f9fafb;
    background: rgba(148, 163, 184, 0.2);
    margin-left: 0.4rem;
}

.footer-social a:first-child {
    margin-left: 0;
}

.footer-social a:hover {
    background: rgba(249, 250, 251, 0.2);
}

.footer-bottom {
    margin-top: 1.5rem;
}

/* MISC */
.badge-soft {
    background: rgba(249, 250, 251, 0.08);
    border-radius: 999px;
    padding: 0.2rem 0.8rem;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-section {
        text-align: center;
    }

    .hero-subtitle {
        margin-inline: auto;
    }

    .hero-device-card {
        margin-top: 2.5rem;
    }

    .steps-section,
    .features-section,
    .modules-section,
    .protection-section,
    .plans-section {
        text-align: center;
    }

    .section-subtitle {
        margin-inline: auto;
    }

    .methods-card,
    .methods-card-blue,
    .device-showcase {
        margin-bottom: 1.5rem;
    }

    .footer-main {
        border-bottom: 1px solid rgba(15, 23, 42, 0.7);
    }
}

/* HERO – mockup com imagem real */
.hero-mockup {
    max-width: 480px;
    margin-inline: auto;
}

/* Seção PontoAgil em ação */
.mockups-section {
    padding: 4rem 0;
    background: radial-gradient(circle at top, #001525 0, #000814 70%);
}

.mockup-card {
    background: rgba(15, 23, 42, 0.9);
    border-radius: 1.3rem;
    padding: 1.1rem;
    border: 1px solid rgba(148, 163, 184, 0.25);
    height: 100%;
}

.mockup-card img {
    width: 100%;
    display: block;
    border-radius: 1.1rem;
}

.mockup-caption {
    font-size: 0.85rem;
    color: #9ca3af;
    margin-top: 0.6rem;
}

/* ===========================
   SEÇÃO DEPOIMENTOS (ESTILO AGILIZE)
   =========================== */

.pa-testimonials {
    padding: 4rem 0 4.5rem;
    background: radial-gradient(circle at top, #003b66 0, #00101f 60%);
    color: #111827;
}

.pa-testimonials-title {
    font-size: 2rem;
    font-weight: 700;
    color: #FF8A1F;
}

.pa-testimonials-subtitle {
    max-width: 760px;
    margin: 0.75rem auto 0;
    color: #f3f4f6;
    font-size: 0.98rem;
}

/* Cartão de avaliação Google */
.pa-rating-card {
    margin: 2rem auto 0;
    max-width: 480px;
    background: #ffffff;
    border-radius: 999px;
    padding: 0.75rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
}

.pa-rating-left {
    display: flex;
    align-items: center;
}

.pa-rating-google-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 0 0 3px #f3f4f6;
    font-weight: 700;
    font-size: 16px;
    overflow: hidden;
}

.pa-rating-google-logo .g {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
        sans-serif;
    line-height: 1;
}

.pa-rating-google-logo .g1 { color: #4285f4; }
.pa-rating-google-logo .g2 { color: #ea4335; }
.pa-rating-google-logo .g3 { color: #fbbc05; }
.pa-rating-google-logo .g4 { color: #4285f4; }
.pa-rating-google-logo .g5 { color: #34a853; }
.pa-rating-google-logo .g6 { color: #ea4335; }

.pa-rating-score .score {
    font-weight: 700;
    font-size: 1.15rem;
    margin-right: 0.25rem;
}

.pa-rating-score .stars {
    color: #f59e0b;
    font-size: 0.95rem;
}

.pa-rating-label {
    font-size: 0.78rem;
    color: #6b7280;
}

.pa-rating-right {
    text-align: right;
}

.pa-rating-avatars {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 0.1rem;
}

.pa-rating-avatars .avatar {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    border: 2px solid #ffffff;
    background: linear-gradient(135deg, #6366f1, #ec4899);
    margin-left: -8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: #ffffff;
}

.pa-rating-avatars .avatar:first-child {
    margin-left: 0;
}

.pa-rating-avatars .avatar.more {
    background: #4b5563;
}

.pa-rating-count {
    font-size: 0.75rem;
    color: #6b7280;
}

/* Slider de depoimentos */
.pa-testimonials-slider-wrapper {
    margin-top: 2.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.pa-testimonials-slider {
    flex: 1;
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 0.5rem;
}

.pa-testimonials-slider::-webkit-scrollbar {
    height: 6px;
}
.pa-testimonials-slider::-webkit-scrollbar-track {
    background: transparent;
}
.pa-testimonials-slider::-webkit-scrollbar-thumb {
    background: #e5e7eb;
    border-radius: 999px;
}

/* Cards */
.pa-testimonial-card {
    min-width: 280px;
    max-width: 340px;
    background: #ffffff;
    border-radius: 20px;
    padding: 1.7rem 1.5rem 1.3rem;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pa-testimonial-text {
    font-size: 0.96rem;
    color: #374151;
    margin-bottom: 1.4rem;
}

.pa-testimonial-footer {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.pa-testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: linear-gradient(135deg, #6366f1, #ec4899);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 600;
}

.pa-testimonial-name {
    font-size: 0.9rem;
    font-weight: 600;
}

.pa-testimonial-role {
    font-size: 0.78rem;
    color: #6b7280;
}

.pa-testimonial-stars {
    font-size: 0.8rem;
    color: #f59e0b;
}

/* Botões de navegação */
.pa-testimonials-arrow {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: none;
    background: #7c3aed;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 10px 25px rgba(124, 58, 237, 0.35);
}

.pa-testimonials-arrow i {
    font-size: 1rem;
}

.pa-testimonials-arrow:hover {
    background: #6d28d9;
}

/* Responsivo */
@media (max-width: 991.98px) {
    .pa-testimonials-slider-wrapper {
        gap: 0.5rem;
    }

    .pa-rating-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.4rem;
        border-radius: 1rem;
    }

    .pa-rating-right {
        text-align: left;
        width: 100%;
    }
}

@media (max-width: 575.98px) {
    .pa-testimonials-title {
        font-size: 1.6rem;
    }

    .pa-testimonial-card {
        min-width: 260px;
    }

    .pa-testimonials-arrow {
        display: none; /* no mobile pode arrastar no dedo */
    }
}

/* ===========================
   PARCEIROS & CLIENTES
   =========================== */

.pa-partners {
    padding: 3rem 0;
    background: #f3f4f6; /* cinza claro, igual outras seções claras */
    color: #0f172a;
}

.pa-partners-title {
    font-size: 1.5rem;
    font-weight: 600;
}

.pa-partners-underline {
    width: 80px;
    height: 3px;
    background: #ff8a1f; /* laranja do PontoAgil */
    border-radius: 999px;
    margin: 0.5rem auto 0;
}

.pa-partners-wrapper {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.pa-partners-track {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 2.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 0.75rem 0;
}

.pa-partners-track::-webkit-scrollbar {
    height: 4px;
}
.pa-partners-track::-webkit-scrollbar-track {
    background: transparent;
}
.pa-partners-track::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 999px;
}

/* Cada logo */
.pa-partner-logo {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
}

.pa-partner-logo img {
    max-height: 48px;
    width: auto;
    filter: saturate(0.9); /* leve dessaturada pra encaixar no layout */
}

/* Setas laterais */
.pa-partners-arrow {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: none;
    background: #e5e7eb;
    color: #111827;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

.pa-partners-arrow i {
    font-size: 0.95rem;
}

.pa-partners-arrow:hover {
    background: #ff8a1f;
    color: #111827;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Responsivo */
@media (max-width: 575.98px) {
    .pa-partners-wrapper {
        gap: 0.5rem;
    }

    .pa-partners-arrow {
        display: none; /* no mobile arrasta com o dedo */
    }

    .pa-partner-logo img {
        max-height: 40px;
    }
}

/* ===========================
   SCROLL REVEAL (texto aparecendo ao rolar)
   =========================== */

[data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    filter: blur(4px);
    transition:
        opacity 0.7s ease,
        transform 0.7s ease,
        filter 0.7s ease;
}

/* quando entra na tela */
[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

/* variações opcionais */
[data-reveal="left"] {
    transform: translateX(-32px);
}
[data-reveal="right"] {
    transform: translateX(32px);
}
[data-reveal="up"] {
    transform: translateY(24px);
}
[data-reveal="down"] {
    transform: translateY(-24px);
}

/* um pequeno delay em alguns elementos se quiser */
[data-reveal-delay="1"] {
    transition-delay: 0.15s;
}
[data-reveal-delay="2"] {
    transition-delay: 0.3s;
}
[data-reveal-delay="3"] {
    transition-delay: 0.45s;
}

/* ===========================
   SCROLL REVEAL (texto aparecendo ao rolar)
   =========================== */

[data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    filter: blur(4px);
    transition:
        opacity 0.7s ease,
        transform 0.7s ease,
        filter 0.7s ease;
}

/* quando entra na tela */
[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

/* variações de direção */
[data-reveal="left"] {
    transform: translateX(-32px);
}
[data-reveal="right"] {
    transform: translateX(32px);
}
[data-reveal="up"] {
    transform: translateY(24px);
}
[data-reveal="down"] {
    transform: translateY(-24px);
}

/* delays opcionais */
[data-reveal-delay="1"] {
    transition-delay: 0.15s;
}
[data-reveal-delay="2"] {
    transition-delay: 0.3s;
}
[data-reveal-delay="3"] {
    transition-delay: 0.45s;
}

/* ===========================
   BOTÃO FLUTUANTE WHATSAPP
   =========================== */

.pa-whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25d366; /* cor oficial do WhatsApp */
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.35);
    z-index: 999;
    text-decoration: none;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        opacity 0.2s ease;
}

/* ligeiro “lift” no hover */
.pa-whatsapp-float:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 14px 26px rgba(0, 0, 0, 0.4);
    opacity: 0.95;
}

/* em telas muito pequenas, encostar um pouco menos nas bordas */
@media (max-width: 575.98px) {
    .pa-whatsapp-float {
        right: 16px;
        bottom: 16px;
        width: 54px;
        height: 54px;
        font-size: 26px;
    }
}
