/**
 * Pet Marketing - Estilos Principais
 * Baseado rigorosamente em layout/hero.png e layout/rodape.png
 */

/* ==============================================================
   1. VARIÁVEIS DO DESIGN SYSTEM
   ============================================================== */
:root {
    --pm-primary: #FFBC00;
    /* Amarelo vibrante do layout */
    --pm-primary-hover: #E8A800;
    /* Tom ligeiramente mais quente para hover */
    --pm-primary-light: #FFF9E6;
    /* Tom de fundo sutil para realces */
    --pm-dark: #111111;
    /* Preto/chumbo dos títulos */
    --pm-text: #2D3748;
    /* Cor do corpo de texto */
    --pm-text-muted: #64748B;
    /* Texto auxiliar e créditos */
    --pm-border: #E2E8F0;
    /* Bordas suaves */
    --pm-border-light: #ECEFF1;
    /* Linha divisória do rodapé */
    --pm-white: #FFFFFF;

    /* Tipografia */
    --pm-font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Formas e Sombras */
    --pm-radius-pill: 9999px;
    --pm-radius-modal: 20px;
    --pm-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --pm-shadow-btn: 0 4px 14px rgba(255, 188, 0, 0.32);
    --pm-shadow-hover: 0 6px 20px rgba(255, 188, 0, 0.45);

    /* Transições */
    --pm-transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==============================================================
   2. RESET E REGRAS GERAIS
   ============================================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--pm-font-main);
    color: var(--pm-text);
    background-color: var(--pm-white);
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--pm-transition);
}

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

/* ==============================================================
   3. CABEÇALHO / HEADER (Transparente sobre o hero, branco ao fixar)
   ============================================================== */
.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    padding: 8px 0;
    transition: background-color 0.28s ease, box-shadow 0.28s ease, padding 0.28s ease;
}

.site-header.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--pm-white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
    padding: 4px 0;
    animation: slideDownHeader 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideDownHeader {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.header-logo {
    height: auto;
    max-height: 52px;
    width: auto;
    object-fit: contain;
}

.nav-links-menu .nav-link {
    font-family: var(--pm-font-main);
    font-size: 15px;
    font-weight: 500;
    color: #1E293B;
    padding: 8px 16px !important;
    transition: var(--pm-transition);
}

.nav-links-menu .nav-link:hover,
.nav-links-menu .nav-link.active {
    color: #000000;
    font-weight: 600;
}

/* Botão Header CTA (Dois níveis de texto + WhatsApp) */
.btn-header-cta {
    background-color: var(--pm-primary);
    color: var(--pm-dark);
    border: none;
    border-radius: var(--pm-radius-pill);
    padding: 8px 22px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--pm-shadow-btn);
    transition: var(--pm-transition);
    cursor: pointer;
}

.btn-header-cta .bi-whatsapp {
    font-size: 22px;
    line-height: 1;
    color: var(--pm-dark);
}

.btn-header-cta .btn-text-group {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.btn-header-cta .btn-top-text {
    font-size: 13px;
    font-weight: 800;
    line-height: 1.15;
    color: #000000;
    letter-spacing: -0.01em;
}

.btn-header-cta .btn-bottom-text {
    font-size: 11.5px;
    font-weight: 600;
    line-height: 1.15;
    color: #000000;
    letter-spacing: -0.01em;
}

.btn-header-cta:hover {
    background-color: var(--pm-primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--pm-shadow-hover);
}

.btn-header-cta-mobile {
    background-color: var(--pm-primary);
    color: var(--pm-dark);
    border: none;
    border-radius: var(--pm-radius-pill);
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* ==============================================================
   4. SEÇÃO HERO (Imagem de fundo com degradê da esquerda p/ dir)
   ============================================================== */
.hero-section {
    position: relative;
    background-color: #FFFFFF;
    background-image:
        linear-gradient(to right,
            #FFFFFF 0%,
            #FFFFFF 36%,
            rgba(255, 255, 255, 0.95) 46%,
            rgba(255, 255, 255, 0.6) 58%,
            rgba(255, 255, 255, 0) 72%),
        url('../img/hero.webp');
    background-repeat: no-repeat;
    background-position: right center;
    background-size: cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 115px;
    /* Espaço para o cabeçalho transparente */
    padding-bottom: 50px;
    overflow: hidden;
}

.hero-row {
    position: relative;
    min-height: calc(100vh - 165px);
}

.hero-content-col {
    z-index: 5;
}

.hero-text-block {
    max-width: 580px;
    padding-top: 10px;
}

/* Eyebrow Superior */
.hero-eyebrow {
    font-family: var(--pm-font-main);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #4B5563;
    text-transform: uppercase;
    margin-bottom: 16px;
}

/* Título H1 */
.hero-title {
    font-family: var(--pm-font-main);
    font-size: clamp(2.35rem, 4.3vw, 3.8rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.035em;
    color: var(--pm-dark);
    margin-bottom: 22px;
}

.hero-title .text-highlight {
    color: var(--pm-primary);
    display: inline;
}

/* Subtítulo */
.hero-subtitle {
    font-size: 1.05rem;
    line-height: 1.62;
    color: #374151;
    max-width: 500px;
    margin-bottom: 34px;
    font-weight: 450;
}

/* Botões de Ação Hero */
.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 42px;
}

/* CTA 1: Amarelo com WhatsApp e Seta */
.btn-hero-primary {
    background-color: var(--pm-primary);
    color: #000000;
    font-size: 15px;
    font-weight: 700;
    padding: 13px 26px;
    border-radius: var(--pm-radius-pill);
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--pm-shadow-btn);
    transition: var(--pm-transition);
    cursor: pointer;
}

.btn-hero-primary .bi-whatsapp {
    font-size: 18px;
    line-height: 1;
}

.btn-hero-primary .bi-arrow-right {
    font-size: 16px;
    transition: transform 0.2s ease;
}

.btn-hero-primary:hover {
    background-color: var(--pm-primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--pm-shadow-hover);
}

.btn-hero-primary:hover .bi-arrow-right {
    transform: translateX(4px);
}

/* CTA 2: Branco com Borda e Seta */
.btn-hero-secondary {
    background-color: var(--pm-white);
    color: #111111;
    font-size: 15px;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: var(--pm-radius-pill);
    border: 1.5px solid #111111;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: var(--pm-transition);
    cursor: pointer;
}

.btn-hero-secondary .bi-arrow-right {
    font-size: 16px;
    transition: transform 0.2s ease;
}

.btn-hero-secondary:hover {
    background-color: #F9FAFB;
    border-color: var(--pm-primary);
    color: #000000;
    transform: translateY(-2px);
}

.btn-hero-secondary:hover .bi-arrow-right {
    transform: translateX(4px);
}

/* Barra de Destaques / Features Inferior */
.hero-features-bar {
    display: flex;
    align-items: flex-start;
    gap: 34px;
}

.hero-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
}

.hero-feature-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 38px;
}

.hero-feature-name {
    font-size: 13.5px;
    font-weight: 700;
    color: #111111;
    white-space: nowrap;
}

/* ==============================================================
   5. SEÇÃO GERIR MELHOR (layout/gerir.png)
   ============================================================== */
.gerir-section {
    background-color: var(--pm-white);
    position: relative;
}

.gerir-eyebrow {
    font-family: var(--pm-font-main);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #4B5563;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.gerir-title {
    font-family: var(--pm-font-main);
    font-size: clamp(2.2rem, 3.8vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: var(--pm-dark);
    margin-bottom: 24px;
}

.gerir-title .text-highlight {
    color: var(--pm-primary);
}

.gerir-text-content p {
    font-size: 1.02rem;
    line-height: 1.68;
    color: #374151;
    margin-bottom: 16px;
}

.gerir-text-content p:last-child {
    margin-bottom: 0;
}

/* Grade de 4 Itens Integrados ao Texto */
.gerir-items-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 18px;
    margin: 28px 0 32px;
}

.gerir-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: #F8FAFC;
    border: 1px solid #EDF2F7;
    border-radius: 12px;
    padding: 12px 18px;
    transition: var(--pm-transition);
}

.gerir-item:hover {
    background-color: #FFFDF5;
    border-color: #FFE58F;
    transform: translateY(-2px);
}

.gerir-item-icon {
    width: 38px;
    height: 38px;
    background-color: #FFFFFF;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #111111;
    border: 1px solid #E2E8F0;
    flex-shrink: 0;
    transition: var(--pm-transition);
}

.gerir-item:hover .gerir-item-icon {
    color: var(--pm-primary);
    border-color: var(--pm-primary);
}

.gerir-item-title {
    font-size: 14px;
    font-weight: 700;
    color: #1A202C;
    line-height: 1.3;
}

/* Botão CTA da Seção Gerir */
.btn-gerir-primary {
    background-color: var(--pm-primary);
    color: #000000;
    font-size: 15px;
    font-weight: 700;
    padding: 13px 28px;
    border-radius: var(--pm-radius-pill);
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--pm-shadow-btn);
    transition: var(--pm-transition);
    cursor: pointer;
}

.btn-gerir-primary .bi-whatsapp {
    font-size: 19px;
    line-height: 1;
}

.btn-gerir-primary .bi-arrow-right {
    font-size: 16px;
    transition: transform 0.2s ease;
}

.btn-gerir-primary:hover {
    background-color: var(--pm-primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--pm-shadow-hover);
}

.btn-gerir-primary:hover .bi-arrow-right {
    transform: translateX(4px);
}

/* Coluna de Imagem (Espaço reservado sem efeitos) */
.gerir-image-wrapper {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
}

.gerir-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
}

/* ==============================================================
   6. SEÇÃO O QUE É A PET MARKETING (layout/o-que-e.png)
   ============================================================== */
.o-que-e-section {
    background-color: #FAF6F1;
    position: relative;
    overflow: hidden;
}

.o-que-e-text-block {
    max-width: 580px;
}

.o-que-e-title {
    font-family: var(--pm-font-main);
    font-size: clamp(2.2rem, 3.8vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: #111111;
    margin-bottom: 22px;
}

.o-que-e-title .text-highlight {
    color: var(--pm-primary);
}

.o-que-e-lead {
    font-family: var(--pm-font-main);
    font-size: 1.08rem;
    font-weight: 700;
    color: #1A202C;
    line-height: 1.45;
    margin-bottom: 16px;
}

.o-que-e-text {
    font-size: 0.98rem;
    color: #4A5568;
    line-height: 1.62;
    margin-bottom: 28px;
}

/* Botão CTA da Seção O Que É */
.btn-o-que-e {
    background-color: var(--pm-primary);
    color: #000000;
    font-size: 15px;
    font-weight: 700;
    padding: 13px 28px;
    border-radius: var(--pm-radius-pill);
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--pm-shadow-btn);
    transition: var(--pm-transition);
    cursor: pointer;
    text-decoration: none;
}

.btn-o-que-e .bi-whatsapp {
    font-size: 19px;
    line-height: 1;
}

.btn-o-que-e .bi-arrow-right {
    font-size: 16px;
    transition: transform 0.2s ease;
}

.btn-o-que-e:hover {
    background-color: var(--pm-primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--pm-shadow-hover);
    color: #000000;
}

.btn-o-que-e:hover .bi-arrow-right {
    transform: translateX(4px);
}

/* Coluna de Mídia (Gato + Pata + Slogan) */
.o-que-e-media-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.o-que-e-img {
    max-width: 100%;
    height: auto;
    display: block;
    user-select: none;
    pointer-events: none;
}

/* ==============================================================
   7. SEÇÃO PILARES (layout/pilares.png)
   ============================================================== */
.pilares-section {
    background-color: var(--pm-white);
    position: relative;
}

.pilares-header {
    max-width: 650px;
}

.pilares-title {
    font-family: var(--pm-font-main);
    font-size: clamp(2.2rem, 3.8vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: var(--pm-dark);
    margin-bottom: 14px;
}

.pilares-title .text-highlight {
    color: var(--pm-primary);
}

.pilares-subtitle {
    font-size: 1.05rem;
    color: #4B5563;
    line-height: 1.5;
    margin: 0;
    font-weight: 450;
}

/* Card Individual de Pilar */
.pilar-card {
    background-color: var(--pm-white);
    border: 1.5px solid #F1F3F5;
    border-radius: 20px;
    padding: 30px 22px;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.025);
    transition: var(--pm-transition);
    cursor: pointer;
    text-decoration: none !important;
}

.pilar-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
    border-color: #E2E8F0;
}

/* Círculo do Ícone */
.pilar-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #000000;
    margin-bottom: 22px;
    flex-shrink: 0;
}

/* Cores Exatas dos Círculos extraídas do layout */
.pilar-icon-purple {
    background-color: #B588F8;
}

.pilar-icon-yellow {
    background-color: #FFBC00;
}

.pilar-icon-green {
    background-color: #00CD68;
}

.pilar-icon-blue {
    background-color: #0087FF;
}

.pilar-number {
    font-family: var(--pm-font-main);
    font-size: 14px;
    font-weight: 800;
    color: #111111;
    margin-bottom: 6px;
    display: block;
    letter-spacing: -0.01em;
}

.pilar-card-title {
    font-family: var(--pm-font-main);
    font-size: 1.15rem;
    font-weight: 800;
    color: #111111;
    line-height: 1.28;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.pilar-card-desc {
    font-size: 0.92rem;
    color: #4B5563;
    line-height: 1.55;
    margin-bottom: 24px;
    flex-grow: 1;
}

.pilar-card-link {
    font-size: 14px;
    font-weight: 700;
    color: #111111;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    margin-top: auto;
    transition: var(--pm-transition);
}

.pilar-card-link .bi-arrow-right {
    font-size: 15px;
    transition: transform 0.2s ease;
}

.pilar-card:hover .pilar-card-link {
    color: var(--pm-primary-hover);
}

.pilar-card:hover .pilar-card-link .bi-arrow-right {
    transform: translateX(4px);
}

/* ==============================================================
   8. SEÇÃO SOLUÇÕES COMPLETAS (layout/solucoes-completas.png)
   ============================================================== */
.solucoes-section {
    background-color: var(--pm-white);
    position: relative;
}

.solucoes-header-text {
    max-width: 680px;
}

.solucoes-title {
    font-family: var(--pm-font-main);
    font-size: clamp(2.2rem, 3.8vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: var(--pm-dark);
    margin-bottom: 14px;
}

.solucoes-title .text-highlight {
    color: var(--pm-primary);
}

.solucoes-subtitle {
    font-size: 1.02rem;
    color: #4B5563;
    line-height: 1.55;
    margin: 0;
    font-weight: 450;
}

/* Botão no cabeçalho com borda amarela */
.btn-solucoes-outline {
    background-color: var(--pm-white);
    color: var(--pm-dark);
    border: 1.5px solid var(--pm-primary);
    border-radius: var(--pm-radius-pill);
    padding: 12px 28px;
    font-size: 14.5px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: var(--pm-transition);
    white-space: nowrap;
    cursor: pointer;
}

.btn-solucoes-outline .bi-arrow-right {
    font-size: 16px;
    transition: transform 0.2s ease;
}

.btn-solucoes-outline:hover {
    background-color: var(--pm-primary);
    color: #000000;
    transform: translateY(-2px);
    box-shadow: var(--pm-shadow-btn);
}

.btn-solucoes-outline:hover .bi-arrow-right {
    transform: translateX(4px);
}

/* Grade de 5 Colunas no Desktop */
.solucoes-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

/* Card Individual de Solução */
.solucao-card {
    background-color: var(--pm-white);
    border: 1.5px solid #F1F3F5;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.03);
    transition: var(--pm-transition);
    cursor: pointer;
}

.solucao-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.09);
    border-color: #E2E8F0;
}

/* Container de Imagem no topo do card */
.solucao-img-box {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    background-color: #F8FAFC;
}

.solucao-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.solucao-card:hover .solucao-img {
    transform: scale(1.04);
}

/* Badge Circular Sobreposto */
.solucao-badge {
    position: absolute;
    bottom: -15px;
    left: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2.5px solid #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    z-index: 2;
    transition: var(--pm-transition);
}

.solucao-card:hover .solucao-badge {
    transform: scale(1.1);
}

.solucao-badge.badge-purple {
    background-color: #B588F8;
    color: #000000;
}

.solucao-badge.badge-yellow {
    background-color: #FFBC00;
    color: #000000;
}

.solucao-badge.badge-green {
    background-color: #00CD68;
    color: #FFFFFF;
}

.solucao-badge.badge-cyan {
    background-color: #00C0F0;
    color: #000000;
}

.solucao-badge.badge-teal {
    background-color: #00B4D8;
    color: #000000;
}

/* Corpo do Card e Título */
.solucao-card-body {
    padding: 24px 16px 20px;
    flex-grow: 1;
    display: flex;
    align-items: center;
}

.solucao-card-title {
    font-family: var(--pm-font-main);
    font-size: 14.5px;
    font-weight: 800;
    color: #111111;
    line-height: 1.3;
    margin: 0;
    letter-spacing: -0.015em;
    transition: var(--pm-transition);
}

.solucao-card:hover .solucao-card-title {
    color: var(--pm-primary-hover);
}

/* Card Modular sem imagem */
.solucao-card.no-img {
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 250px;
    background-color: var(--pm-white);
    border: 1.5px solid #F1F3F5;
    border-radius: 20px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.03);
    transition: var(--pm-transition);
}

.solucao-card.no-img:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
    border-color: #E2E8F0;
}

.solucao-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.solucao-card.no-img .solucao-badge {
    position: static;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: none;
    font-size: 18px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.solucao-card-arrow {
    font-size: 18px;
    color: #9CA3AF;
    transition: transform 0.25s ease, color 0.25s ease;
}

.solucao-card.no-img:hover .solucao-card-arrow {
    transform: translate(3px, -3px);
    color: var(--pm-dark);
}

.solucao-card.no-img .solucao-card-body {
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}

.solucao-card-question {
    font-size: 0.92rem;
    color: #4B5563;
    line-height: 1.45;
    margin-bottom: 16px;
    font-weight: 500;
}

.solucao-card-target {
    margin-top: auto;
}

.solucao-card-prefix {
    display: block;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 700;
    color: #9CA3AF;
    margin-bottom: 2px;
}

.solucao-card.no-img .solucao-card-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--pm-dark);
    line-height: 1.25;
}

.solucao-card.no-img:hover .solucao-card-title {
    color: var(--pm-dark);
}

/* Banner de Integração no Rodapé da Seção */
.solucoes-footer-banner {
    background-color: #F8FAFC;
    border: 1.5px dashed #E2E8F0;
    transition: var(--pm-transition);
}

.solucoes-footer-banner:hover {
    border-color: var(--pm-primary);
    background-color: #FFFDF5;
}

/* ==============================================================
   9. SEÇÃO DEPOIMENTOS (layout/depoimentos.png)
   ============================================================== */
.depoimentos-section {
    background-color: #FAF6F1;
    position: relative;
    overflow: hidden;
}

.depoimentos-eyebrow {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #78716C;
    margin-bottom: 8px;
}

.depoimentos-title {
    font-family: var(--pm-font-main);
    font-size: clamp(2rem, 3.4vw, 2.75rem);
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.025em;
    color: #111111;
}

.depoimentos-title strong {
    font-weight: 800;
}

/* Setas de Navegação */
.btn-testimonial-nav {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #FFFFFF;
    border: 1px solid #EAE3D9;
    color: #A26B4A;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: var(--pm-transition);
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.btn-testimonial-nav:hover {
    background-color: var(--pm-primary);
    border-color: var(--pm-primary);
    color: #000000;
    transform: translateY(-2px);
    box-shadow: var(--pm-shadow-sm);
}

/* Slider de Depoimentos */
.testimonial-slider-container {
    position: relative;
    min-height: 220px;
}

.testimonial-card {
    display: none;
    opacity: 0;
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.testimonial-card.active {
    display: block;
    opacity: 1;
    animation: fadeInCard 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes fadeInCard {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonial-card-inner {
    background: #FFFFFF;
    border-radius: 28px;
    padding: 38px 46px;
    display: flex;
    align-items: center;
    gap: 36px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(230, 220, 210, 0.3);
}

.testimonial-author-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.testimonial-avatar-box {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
}

.testimonial-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.testimonial-stars {
    color: #FFB800;
    font-size: 13.5px;
    display: flex;
    gap: 3px;
}

.testimonial-content-col {
    flex-grow: 1;
}

.testimonial-quote {
    font-family: var(--pm-font-main);
    font-size: 1.12rem;
    font-weight: 450;
    color: #1F2937;
    line-height: 1.55;
    margin: 0 0 16px 0;
    font-style: normal;
}

.testimonial-author-meta .author-name {
    font-family: var(--pm-font-main);
    font-size: 1rem;
    font-weight: 800;
    color: #111111;
    display: block;
    margin-bottom: 2px;
    line-height: 1.25;
}

.testimonial-author-meta .author-company {
    font-size: 0.88rem;
    color: #6B7280;
    display: block;
    line-height: 1.3;
}

/* Dots */
.testimonial-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 22px;
}

.testimonial-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background-color: #DFD3C6;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: var(--pm-transition);
}

.testimonial-dot.active {
    background-color: #111111;
    transform: scale(1.15);
}

/* Badge Gráfico da Pata na Direita */
.depoimentos-paw-badge {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.paw-badge-img {
    max-width: 320px;
    height: auto;
    display: block;
    user-select: none;
    pointer-events: none;
}

/* ==============================================================
   10. SEÇÃO CTA FINAL (layout/cta-final.png)
   ============================================================== */
.cta-final-section {
    position: relative;
    background-color: var(--pm-white);
}

.cta-final-box {
    background-color: #050505;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.18);
}

/* Coluna 1: Imagem do Cão */
.cta-dog-col {
    position: relative;
}

.cta-dog-wrapper {
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    overflow: hidden;
}

.cta-dog-img {
    width: 100%;
    max-width: 380px;
    height: auto;
    max-height: 340px;
    display: block;
    object-fit: cover;
    object-position: bottom left;
}

/* Coluna 2: Conteúdo Principal e CTA */
.cta-content-col {
    position: relative;
    z-index: 2;
}

.cta-content-inner {
    padding: 48px 30px 48px 50px;
}

.cta-final-title {
    font-family: var(--pm-font-main);
    font-size: clamp(1.85rem, 2.6vw, 2.35rem);
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.18;
    margin-bottom: 14px;
    letter-spacing: -0.025em;
}

.cta-final-title .text-highlight {
    color: var(--pm-primary);
}

.cta-final-subtitle {
    font-size: 0.95rem;
    color: #CCCCCC;
    line-height: 1.55;
    margin-bottom: 26px;
    max-width: 560px;
    font-weight: 400;
}

.btn-cta-final {
    background-color: var(--pm-primary);
    color: #000000;
    font-size: 15px;
    font-weight: 700;
    padding: 13px 26px;
    border-radius: var(--pm-radius-pill);
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 18px rgba(255, 188, 0, 0.35);
    transition: var(--pm-transition);
    cursor: pointer;
    text-decoration: none;
}

.btn-cta-final .bi-whatsapp {
    font-size: 19px;
    line-height: 1;
}

.btn-cta-final .bi-arrow-right {
    font-size: 16px;
    transition: transform 0.2s ease;
}

.btn-cta-final:hover {
    background-color: var(--pm-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 188, 0, 0.55);
    color: #000000;
}

.btn-cta-final:hover .bi-arrow-right {
    transform: translateX(4px);
}

/* Coluna 3: 4 Benefícios */
.cta-benefits-col {
    position: relative;
    z-index: 2;
}

.cta-benefits-list {
    padding: 44px 36px 44px 10px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.cta-benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cta-benefit-item .benefit-icon {
    color: #FFFFFF;
    font-size: 20px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    flex-shrink: 0;
}

.cta-benefit-item .benefit-text {
    color: #FFFFFF;
    font-size: 14.5px;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

/* ==============================================================
   11. RODAPÉ / FOOTER (layout/rodape.png)
   ============================================================== */
.site-footer {
    background-color: var(--pm-white);
    padding: 36px 0 22px;
    position: relative;
    border-top: 1px solid #F1F3F5;
}

.footer-top-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

/* Coluna Esquerda do Rodapé */
.footer-brand-col {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.footer-logo {
    height: auto;
    max-height: 48px;
    width: auto;
    object-fit: contain;
}

.footer-tagline {
    font-size: 13.5px;
    color: #374151;
    line-height: 1.35;
    font-weight: 500;
}

/* Coluna Central do Rodapé */
.footer-center-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.footer-nav {
    display: flex;
    align-items: center;
    gap: 22px;
}

.footer-nav a {
    font-size: 14.5px;
    font-weight: 600;
    color: #1F2937;
    transition: var(--pm-transition);
}

.footer-nav a:hover {
    color: var(--pm-primary);
}

.footer-social-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.footer-social-links a {
    color: #111111;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--pm-transition);
}

.footer-social-links a:hover {
    color: var(--pm-primary);
    transform: translateY(-2px);
}

/* Coluna Direita do Rodapé */
.footer-cta-col {
    flex-shrink: 0;
}

.btn-footer-cta {
    background-color: var(--pm-primary);
    color: #000000;
    font-size: 14.5px;
    font-weight: 700;
    padding: 11px 26px;
    border-radius: var(--pm-radius-pill);
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 3px 12px rgba(255, 188, 0, 0.28);
    transition: var(--pm-transition);
    cursor: pointer;
}

.btn-footer-cta .bi-whatsapp {
    font-size: 18px;
    line-height: 1;
}

.btn-footer-cta:hover {
    background-color: var(--pm-primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--pm-shadow-btn);
}

/* Divisória do Rodapé */
.footer-divider {
    border: 0;
    border-top: 1px solid var(--pm-border-light);
    margin: 26px 0 16px;
    opacity: 1;
}

/* Linha Inferior do Rodapé */
.footer-bottom-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    color: #64748B;
    font-weight: 500;
}

.footer-heart {
    display: inline-block;
    color: var(--pm-primary);
}

/* ==============================================================
   6. MODAL DO WHATSAPP (PADRÃO README.MD)
   ============================================================== */
.whatsapp-modal-box {
    border: none;
    border-radius: var(--pm-radius-modal);
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.18);
}

.whatsapp-modal-header {
    background-color: #075E54;
    color: var(--pm-white);
    border: none;
    padding: 18px 24px;
}

.whatsapp-avatar {
    width: 44px;
    height: 44px;
    background-color: #25D366;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.whatsapp-status {
    color: #A7F3D0;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background-color: #25D366;
    border-radius: 50%;
    display: inline-block;
    animation: pulseDot 2s infinite;
}

@keyframes pulseDot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(0.85);
    }
}

.modal-lead-text {
    font-size: 14px;
    color: #4B5563;
    margin-bottom: 20px;
}

.form-label {
    font-size: 13.5px;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 6px;
}

.form-control-lg {
    font-size: 15px;
    border-radius: 12px;
    padding: 12px 16px;
    border: 1.5px solid #E2E8F0;
    transition: var(--pm-transition);
}

.form-control-lg:focus {
    border-color: #25D366;
    box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.15);
}

.lgpd-note {
    background-color: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 12px;
    color: #64748B;
    line-height: 1.45;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
}

.btn-whatsapp-submit {
    background-color: #25D366;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 15px;
    border-radius: var(--pm-radius-pill);
    padding: 14px 24px;
    width: 100%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
    transition: var(--pm-transition);
}

.btn-whatsapp-submit:hover {
    background-color: #20BA59;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
}

/* ==============================================================
   7. PÁGINAS INTERNAS DE SOLUÇÕES (Estilo Harmônico com a Home)
   ============================================================== */
.page-solucao {
    background-color: #FAF9F6;
}

.solucao-hero-section {
    position: relative;
    background-color: var(--pm-white);
    background-image: radial-gradient(circle at 90% 20%, rgba(255, 188, 0, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 10% 80%, rgba(181, 136, 248, 0.08) 0%, transparent 45%);
    padding-top: 135px;
    /* Espaço seguro sob o cabeçalho absoluto */
    padding-bottom: 60px;
}

.solucao-hero-content {
    position: relative;
    z-index: 5;
}

/* Heroes específicos das soluções com imagem de fundo e degradê */
.solucao-hero-marca-presenca {
    background-color: #FFFFFF;
    background-image:
        linear-gradient(to right,
            #FFFFFF 0%,
            #FFFFFF 36%,
            rgba(255, 255, 255, 0.95) 46%,
            rgba(255, 255, 255, 0.6) 58%,
            rgba(255, 255, 255, 0) 72%),
        url('../img/hero-marca-presenca.jpg');
    background-repeat: no-repeat;
    background-position: right center;
    background-size: cover;
    min-height: 480px;
    display: flex;
    align-items: center;
    padding-top: 135px;
    padding-bottom: 60px;
}

.solucao-hero-gestao {
    background-color: #FFFFFF;
    background-image:
        linear-gradient(to right,
            #FFFFFF 0%,
            #FFFFFF 36%,
            rgba(255, 255, 255, 0.95) 46%,
            rgba(255, 255, 255, 0.6) 58%,
            rgba(255, 255, 255, 0) 72%),
        url('../img/hero-gestao.jpg');
    background-repeat: no-repeat;
    background-position: right center;
    background-size: cover;
    min-height: 480px;
    display: flex;
    align-items: center;
    padding-top: 135px;
    padding-bottom: 60px;
}

.solucao-hero-marketing {
    background-color: #FFFFFF;
    background-image:
        linear-gradient(to right,
            #FFFFFF 0%,
            #FFFFFF 36%,
            rgba(255, 255, 255, 0.95) 46%,
            rgba(255, 255, 255, 0.6) 58%,
            rgba(255, 255, 255, 0) 72%),
        url('../img/hero-mkt-aquisicao.jpg');
    background-repeat: no-repeat;
    background-position: right center;
    background-size: cover;
    min-height: 480px;
    display: flex;
    align-items: center;
    padding-top: 135px;
    padding-bottom: 60px;
}

.solucao-hero-relacionamento {
    background-color: #FFFFFF;
    background-image:
        linear-gradient(to right,
            #FFFFFF 0%,
            #FFFFFF 36%,
            rgba(255, 255, 255, 0.95) 46%,
            rgba(255, 255, 255, 0.6) 58%,
            rgba(255, 255, 255, 0) 72%),
        url('../img/hero-relacionamento.jpg');
    background-repeat: no-repeat;
    background-position: right center;
    background-size: cover;
    min-height: 480px;
    display: flex;
    align-items: center;
    padding-top: 135px;
    padding-bottom: 60px;
}

.solucao-breadcrumb .breadcrumb-item a {
    color: #64748B;
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 500;
    transition: var(--pm-transition);
}

.solucao-breadcrumb .breadcrumb-item a:hover {
    color: var(--pm-dark);
}

.solucao-breadcrumb .breadcrumb-item.active {
    color: var(--pm-dark);
    font-weight: 700;
    font-size: 13.5px;
}

.solucao-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.solucao-eyebrow .solucao-badge {
    position: static;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    font-size: 16px;
    border: none;
    box-shadow: none;
}

.solucao-category-name {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #64748B;
}

.solucao-hero-title {
    font-family: var(--pm-font-main);
    font-size: clamp(2.4rem, 4.2vw, 3.5rem);
    font-weight: 800;
    color: var(--pm-dark);
    letter-spacing: -0.03em;
    line-height: 1.12;
}

.solucao-hero-title .text-highlight {
    color: var(--pm-primary);
}

.solucao-hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    color: #4B5563;
    line-height: 1.5;
    font-weight: 500;
    max-width: 620px;
}

.btn-solucao-main-cta {
    background-color: var(--pm-primary);
    color: #000000;
    font-weight: 700;
    font-size: 15px;
    border-radius: var(--pm-radius-pill);
    padding: 14px 30px;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--pm-shadow-btn);
    transition: var(--pm-transition);
}

.btn-solucao-main-cta:hover {
    background-color: var(--pm-primary-hover);
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 188, 0, 0.4);
}

/* Seção de Detalhes / Serviços */
.solucao-detalhes-section {
    background-color: #FAF9F6;
}

.solucao-section-header {
    max-width: 600px;
}

.solucao-section-title {
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--pm-dark);
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.solucao-section-subtitle {
    font-size: 1rem;
    color: #64748B;
    margin: 0;
}

/* Card Individual de Item */
.solucao-item-card {
    background-color: var(--pm-white);
    border: 1.5px solid #F1F3F5;
    border-radius: 20px;
    padding: 28px 24px;
    height: 100%;
    display: flex;
    gap: 20px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.025);
    transition: var(--pm-transition);
}

.solucao-item-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.07);
    border-color: #E2E8F0;
}

.solucao-item-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.solucao-item-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--pm-dark);
    margin-bottom: 8px;
    line-height: 1.3;
}

.solucao-item-desc {
    font-size: 0.95rem;
    color: #4B5563;
    line-height: 1.55;
    margin: 0;
}

/* Banner de CTA de Rodapé */
.solucao-cta-card {
    background: linear-gradient(135deg, #111827 0%, #1F2937 100%);
    border-radius: 24px;
    padding: 40px 36px;
    color: var(--pm-white);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.solucao-cta-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 8px;
}

.solucao-cta-desc {
    font-size: 1rem;
    color: #9CA3AF;
}

/* Seção Fluida de CRM */
.badge-icon-sm {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
}

.crm-fluid-section {
    background-color: var(--pm-white);
}

.crm-features-list {
    border: 1.5px solid #F1F3F5;
}

/* ==============================================================
   SEÇÃO POR QUE PET MARKETING? (DIFERENCIAIS)
   ============================================================== */
.por-que-section {
    background: linear-gradient(180deg, #FFFFFF 0%, #FFFDF7 100%);
    position: relative;
}

.por-que-eyebrow {
    letter-spacing: 0.12em;
    color: #64748B;
}

.por-que-title {
    font-family: var(--pm-font-main);
    font-weight: 800;
    color: var(--pm-dark);
}

.por-que-card {
    background-color: var(--pm-white);
    border: 1.5px solid #F1F3F5;
    border-radius: 20px;
    padding: 30px 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.025);
    transition: var(--pm-transition);
}

.por-que-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.07);
    border-color: #E2E8F0;
}

.por-que-card-wide {
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
}

.por-que-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.por-que-card-wide .por-que-icon-box {
    margin-bottom: 0;
}

.por-que-card-title {
    font-family: var(--pm-font-main);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--pm-dark);
    margin-bottom: 10px;
    line-height: 1.3;
}

.por-que-card-desc {
    font-size: 0.94rem;
    color: #4B5563;
    line-height: 1.55;
    margin: 0;
}

/* ==============================================================
   SEÇÃO PERGUNTAS FREQUENTES (FAQ)
   ============================================================== */
.faq-section {
    background-color: #FAF9F6;
    position: relative;
}

.faq-title {
    font-family: var(--pm-font-main);
    font-weight: 800;
    color: var(--pm-dark);
}

.custom-accordion .accordion-item {
    border: 1.5px solid #E9ECEF;
    border-radius: 16px !important;
    overflow: hidden;
    background-color: var(--pm-white);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.02);
    transition: var(--pm-transition);
}

.custom-accordion .accordion-item:hover {
    border-color: #D1D5DB;
}

.custom-accordion .accordion-button {
    font-family: var(--pm-font-main);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--pm-dark);
    background-color: var(--pm-white);
    padding: 20px 24px;
    box-shadow: none !important;
}

.custom-accordion .accordion-button:not(.collapsed) {
    color: var(--pm-dark);
    background-color: #FFFDF5;
    border-bottom: 1px solid #F1F3F5;
}

.custom-accordion .accordion-button::after {
    background-size: 1.1rem;
    transition: transform 0.25s ease;
}

.custom-accordion .accordion-body {
    font-size: 0.96rem;
    color: #4B5563;
    line-height: 1.6;
    padding: 20px 24px;
    background-color: #FFFDF8;
}

/* ==============================================================
   12. BOTÃO FLUTUANTE DE WHATSAPP COM ANIMAÇÃO DE PULSE E BADGE
   ============================================================== */
.whatsapp-float-wrapper {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1040;
}

.btn-whatsapp-float {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #25D366;
    color: #FFFFFF;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
    cursor: pointer;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease, background-color 0.25s ease;
    padding: 0;
    outline: none;
    text-decoration: none;
}

.btn-whatsapp-float:hover {
    transform: scale(1.08);
    background-color: #22c35e;
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.65);
    color: #FFFFFF;
}

/* Animação de Pulse ao fundo */
.whatsapp-float-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: rgba(37, 211, 102, 0.65);
    z-index: -1;
    animation: waPulse 2s infinite cubic-bezier(0.4, 0, 0.6, 1);
}

@keyframes waPulse {
    0% {
        transform: scale(1);
        opacity: 0.75;
    }
    50% {
        transform: scale(1.48);
        opacity: 0;
    }
    100% {
        transform: scale(1.48);
        opacity: 0;
    }
}

/* Badge de notificação estilo WhatsApp (Vermelho com número 1) */
.whatsapp-float-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background-color: #FF3B30;
    color: #FFFFFF;
    font-size: 11.5px;
    font-weight: 800;
    font-family: var(--pm-font-main);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #FFFFFF;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
    line-height: 1;
    animation: waBadgeBounce 3s infinite ease-in-out;
}

@keyframes waBadgeBounce {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.15);
    }
}