/* ==========================================================================
   Limiro Brasil - Identidade Visual Oficial & Design System
   Paleta: Roxo Ultravioleta (#8B5CF6 / #7C3AED) + Ouro/Amarelo (#FBBF24 / #F59E0B)
   Fundo: Midnight Obsidian (#080A10) + Branco Platina (#FFFFFF)
   ========================================================================== */

:root {
    /* Cores da Logo Oficial */
    --bg-base: #080a10;
    --bg-surface: #0d121f;
    --bg-card: rgba(18, 24, 38, 0.7);
    --bg-card-hover: rgba(25, 34, 56, 0.85);
    
    /* Tons da Marca */
    --purple-primary: #8b5cf6;
    --purple-glow: #a855f7;
    --purple-dark: #6d28d9;
    --gold-primary: #fbbf24;
    --gold-hover: #f59e0b;
    --gold-dark: #d97706;
    
    /* Gradientes */
    --grad-purple: linear-gradient(135deg, #a855f7 0%, #7c3aed 100%);
    --grad-gold: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    --grad-rose: linear-gradient(135deg, #f43f5e 0%, #ec4899 100%);
    --grad-cyan: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
    
    /* Textos */
    --text-white: #ffffff;
    --text-slate: #cbd5e1;
    --text-muted: #94a3b8;
    --text-subtle: #64748b;
    
    /* WhatsApp */
    --wa-green: #25d366;
    --wa-green-hover: #20ba5a;
    
    /* Bordas & Sombras */
    --border-glass: rgba(255, 255, 255, 0.09);
    --border-purple-glow: rgba(139, 92, 246, 0.35);
    --border-gold-glow: rgba(251, 191, 36, 0.35);
    
    --shadow-purple: 0 10px 30px rgba(139, 92, 246, 0.25);
    --shadow-gold: 0 10px 30px rgba(251, 191, 36, 0.2);
    --shadow-deep: 0 20px 40px -10px rgba(0, 0, 0, 0.7);
    
    /* Tipografia & Formas */
    --font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-full: 9999px;
    
    --transition-fast: all 0.2s ease;
    --transition-smooth: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset Básico */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-family);
    background-color: var(--bg-base);
    color: var(--text-slate);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    position: relative;
}

/* Malha de Fundo Sutil */
.bg-grid-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: radial-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
    z-index: 0;
}

/* Luzes Ambientais (Aura Neon) */
.ambient-glow {
    position: fixed;
    border-radius: 50%;
    filter: blur(140px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.35;
}

.glow-purple {
    top: -150px;
    left: 25%;
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, #7c3aed 0%, transparent 70%);
}

.glow-gold {
    top: 35%;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #f59e0b 0%, transparent 70%);
}

.glow-subtle {
    bottom: -100px;
    left: 10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, #6366f1 0%, transparent 70%);
}

img, svg {
    display: block;
    max-width: 100%;
}

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

ul {
    list-style: none;
}

button {
    font-family: inherit;
    border: none;
    background: none;
    cursor: pointer;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 1;
}

/* ==========================================================================
   Header & Navbar
   ========================================================================== */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgba(8, 10, 16, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-glass);
    transition: var(--transition-smooth);
}

.header.scrolled {
    background-color: rgba(8, 10, 16, 0.95);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.logo-box {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--purple-primary);
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.4);
    background: #000;
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-name {
    font-size: 1.35rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    color: var(--text-white);
}

.brand-sub {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.25em;
    color: var(--gold-primary);
}

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 1.4rem;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    white-space: nowrap;
    transition: var(--transition-smooth);
}

.nav-link:hover {
    color: var(--text-white);
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.5);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.btn-email-top {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.5rem 0.95rem;
    font-size: 0.825rem;
    font-weight: 700;
    color: var(--gold-primary);
    background: rgba(251, 191, 36, 0.08);
    border: 1px solid rgba(251, 191, 36, 0.25);
    border-radius: var(--radius-full);
    transition: var(--transition-smooth);
}

.btn-email-top:hover {
    background: rgba(251, 191, 36, 0.18);
    border-color: var(--gold-primary);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.25);
}

.btn-insta-top {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.1rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-full);
    transition: var(--transition-smooth);
}

.btn-insta-top:hover {
    background: linear-gradient(135deg, rgba(193, 53, 132, 0.3), rgba(244, 63, 94, 0.3));
    border-color: #f43f5e;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(244, 63, 94, 0.3);
}

.mobile-email {
    width: 100%;
    justify-content: center;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

/* Botões Globais */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    padding: 0.75rem 1.55rem;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    transition: var(--transition-smooth);
    white-space: nowrap;
}

.btn-primary-gradient {
    background: var(--grad-purple);
    color: #ffffff;
    box-shadow: var(--shadow-purple);
}

.btn-primary-gradient:hover {
    filter: brightness(1.15);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.5);
}

.btn-whatsapp-glow {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: #ffffff;
    padding: 1.05rem 2.25rem;
    font-size: 1.1rem;
    font-weight: 800;
    border-radius: var(--radius-full);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.65);
    filter: brightness(1.08);
}

.btn-outline-glass {
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
    border: 1px solid var(--border-glass);
    padding: 1.05rem 2rem;
    font-size: 1.05rem;
    font-weight: 700;
    backdrop-filter: blur(10px);
}

.btn-outline-glass:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.btn-gold-action {
    background: var(--grad-gold);
    color: #000000;
    padding: 0.9rem 1.85rem;
    font-size: 1.05rem;
    font-weight: 800;
    box-shadow: var(--shadow-gold);
}

.btn-gold-action:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.4);
}

.btn-whatsapp-giant {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: #ffffff;
    padding: 1.25rem 2.75rem;
    font-size: 1.25rem;
    font-weight: 800;
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.5);
}

.btn-whatsapp-giant:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 45px rgba(37, 211, 102, 0.7);
}

.btn-full {
    width: 100%;
}

/* Mobile Toggle & Menu */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
}

.mobile-toggle span {
    width: 100%;
    height: 2px;
    background-color: #ffffff;
    border-radius: 2px;
    transition: var(--transition-smooth);
}

.mobile-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: rgba(8, 10, 16, 0.98);
    border-bottom: 1px solid var(--border-glass);
    padding: 1.75rem;
    backdrop-filter: blur(20px);
}

.mobile-menu.open {
    display: block;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.mobile-nav-link {
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-top: 1rem;
}

.mobile-insta {
    justify-content: center;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
    padding: 4.5rem 0 3.5rem;
    text-align: center;
}

.hero-content {
    max-width: 960px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.45rem 1.35rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(139, 92, 246, 0.35);
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.badge-status-dot {
    width: 8px;
    height: 8px;
    background-color: var(--gold-primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--gold-primary);
}

.badge-arrow-svg {
    color: var(--gold-primary);
}

.hero-title {
    font-size: 3.4rem;
    font-weight: 900;
    line-height: 1.18;
    letter-spacing: -0.03em;
    color: var(--text-white);
    margin-bottom: 1.5rem;
}

.text-gradient-purple {
    background: var(--grad-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-gold {
    background: var(--grad-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.75rem;
    line-height: 1.6;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

/* CARDS DE SERVIÇOS NA HERO COM MOCKUPS 3D VISUAIS E ULTRA PREMIUM */
.hero-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.35rem;
    align-items: stretch;
    margin-bottom: 3.5rem;
}

.hero-service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    height: 100%;
    text-align: left;
    backdrop-filter: blur(14px);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.5);
}

.hero-service-card:hover {
    transform: translateY(-8px);
    background: var(--bg-card-hover);
}

.hero-service-card:hover .service-mockup-img {
    transform: scale(1.05);
}

.highlight-purple:hover {
    border-color: rgba(139, 92, 246, 0.6);
    box-shadow: 0 15px 35px rgba(139, 92, 246, 0.25);
}

.highlight-gold:hover {
    border-color: rgba(251, 191, 36, 0.6);
    box-shadow: 0 15px 35px rgba(251, 191, 36, 0.22);
}

/* Área de Imagem Mockup (40% a 45% da altura) */
.service-card-media {
    width: 100%;
    height: 215px;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at center, #151b2c 0%, #090c14 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.service-mockup-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Selos / Badges sobrepostos */
.service-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.32rem 0.75rem;
    border-radius: var(--radius-full);
    backdrop-filter: blur(10px);
}

.tag-purple {
    background: rgba(139, 92, 246, 0.35);
    color: #f3e8ff;
    border: 1px solid rgba(168, 85, 247, 0.5);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.tag-gold {
    background: rgba(251, 191, 36, 0.35);
    color: #fef08a;
    border: 1px solid rgba(251, 191, 36, 0.5);
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.25);
}

/* Corpo e Informações do Card */
.service-card-body {
    padding: 1.5rem 1.25rem 1.4rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-card-body h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 0.45rem;
    line-height: 1.3;
}

.service-card-body p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 1.15rem;
}

/* Lista de Benefícios */
.service-benefits-list {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-benefits-list li {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: #cbd5e1;
}

.benefit-check-svg {
    flex-shrink: 0;
}

.check-purple {
    color: #c084fc;
}

.check-gold {
    color: var(--gold-primary);
}

/* Botões de Ação dentro do Card */
.btn-service-action {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.75rem 1.15rem;
    border-radius: var(--radius-full);
    font-size: 0.88rem;
    font-weight: 800;
    transition: var(--transition-smooth);
    margin-top: auto;
}

.btn-action-purple {
    background: rgba(139, 92, 246, 0.15);
    color: #ffffff;
    border: 1px solid rgba(139, 92, 246, 0.35);
}

.btn-action-purple:hover {
    background: var(--grad-purple);
    border-color: transparent;
    box-shadow: var(--shadow-purple);
    transform: translateY(-2px);
    color: #ffffff;
}

.btn-action-gold {
    background: rgba(251, 191, 36, 0.15);
    color: #ffffff;
    border: 1px solid rgba(251, 191, 36, 0.35);
}

.btn-action-gold:hover {
    background: var(--grad-gold);
    color: #000000;
    border-color: transparent;
    box-shadow: var(--shadow-gold);
    transform: translateY(-2px);
}

.hero-cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

/* ==========================================================================
   Demonstração do Chatbot IA no WhatsApp (Mockup)
   ========================================================================== */
.demo-section {
    padding: 5.5rem 0;
    background: linear-gradient(180deg, transparent 0%, rgba(139, 92, 246, 0.04) 50%, transparent 100%);
}

.niche-tab-selector {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
    background: rgba(255, 255, 255, 0.04);
    padding: 0.5rem;
    border-radius: var(--radius-full);
    border: 1px solid var(--border-glass);
    flex-wrap: wrap;
}

.niche-tab {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.35rem;
    border-radius: var(--radius-full);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-muted);
    background: transparent;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.niche-tab:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.06);
}

.niche-tab.active {
    color: #000000;
    background: var(--grad-gold);
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.35);
}

.tab-svg {
    flex-shrink: 0;
}

.demo-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3.5rem;
    align-items: center;
    margin-top: 3.5rem;
}

.badge-tag-purple {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 0.35rem 1rem;
    background: rgba(139, 92, 246, 0.15);
    color: #c084fc;
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: var(--radius-full);
    margin-bottom: 1rem;
}

.badge-tag-rose {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 0.35rem 1rem;
    background: rgba(244, 63, 94, 0.15);
    color: #fb7185;
    border: 1px solid rgba(244, 63, 94, 0.3);
    border-radius: var(--radius-full);
    margin-bottom: 1rem;
}

.badge-tag-cyan {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 0.35rem 1rem;
    background: rgba(6, 182, 212, 0.15);
    color: #38bdf8;
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: var(--radius-full);
    margin-bottom: 1rem;
}

.badge-tag-orange {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 0.35rem 1rem;
    background: rgba(249, 115, 22, 0.15);
    color: #fb923c;
    border: 1px solid rgba(249, 115, 22, 0.35);
    border-radius: var(--radius-full);
    margin-bottom: 1rem;
}

.badge-tag-indigo {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 0.35rem 1rem;
    background: rgba(99, 102, 241, 0.15);
    color: #818cf8;
    border: 1px solid rgba(99, 102, 241, 0.35);
    border-radius: var(--radius-full);
    margin-bottom: 1rem;
}

.badge-tag-gold {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 0.35rem 1rem;
    background: rgba(251, 191, 36, 0.15);
    color: var(--gold-primary);
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: var(--radius-full);
    margin-bottom: 1rem;
}

.niche-info-content {
    display: none;
    animation: fadeIn 0.4s ease-out;
}

.niche-info-content.active {
    display: block;
}

.niche-heading {
    font-size: 1.85rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.3;
    margin: 0.75rem 0 1rem;
}

.section-title {
    font-size: 2.6rem;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--text-white);
    margin-bottom: 1.25rem;
}

.section-desc {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.demo-feature-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.demo-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feat-check-svg {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.check-rose {
    background: rgba(244, 63, 94, 0.2);
    color: #fb7185;
    border: 1px solid rgba(244, 63, 94, 0.4);
}

.check-cyan {
    background: rgba(6, 182, 212, 0.2);
    color: #38bdf8;
    border: 1px solid rgba(6, 182, 212, 0.4);
}

.check-orange {
    background: rgba(249, 115, 22, 0.2);
    color: #fb923c;
    border: 1px solid rgba(249, 115, 22, 0.4);
}

.check-indigo {
    background: rgba(99, 102, 241, 0.2);
    color: #818cf8;
    border: 1px solid rgba(99, 102, 241, 0.4);
}

.check-gold {
    background: rgba(251, 191, 36, 0.2);
    color: var(--gold-primary);
    border: 1px solid rgba(251, 191, 36, 0.4);
}

.demo-feature-item strong {
    color: var(--text-white);
    display: block;
    font-size: 1.05rem;
    margin-bottom: 0.2rem;
}

.demo-feature-item span {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Celular Mockup & Dynamic Island */
.phone-mockup {
    background: #0b0f1a;
    border: 2px solid rgba(244, 63, 94, 0.4);
    border-radius: 40px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 35px rgba(244, 63, 94, 0.25);
    overflow: hidden;
    max-width: 390px;
    margin: 0 auto;
    position: relative;
    transition: var(--transition-smooth);
}

.phone-mockup.theme-salao {
    border-color: rgba(244, 63, 94, 0.5);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 35px rgba(244, 63, 94, 0.3);
}

.phone-mockup.theme-dentista {
    border-color: rgba(6, 182, 212, 0.5);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 35px rgba(6, 182, 212, 0.3);
}

.phone-mockup.theme-funilaria {
    border-color: rgba(249, 115, 22, 0.5);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 35px rgba(249, 115, 22, 0.3);
}

.phone-mockup.theme-advocacia {
    border-color: rgba(99, 102, 241, 0.5);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 35px rgba(99, 102, 241, 0.3);
}

.phone-mockup.theme-loja {
    border-color: rgba(251, 191, 36, 0.5);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 35px rgba(251, 191, 36, 0.3);
}

.phone-dynamic-island {
    width: 100px;
    height: 22px;
    background: #000000;
    border-radius: 14px;
    margin: 10px auto 4px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 10px;
    gap: 6px;
}

.island-camera {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #111827;
}

.island-sensor {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #064e3b;
}

.phone-header {
    background: #151c2e;
    padding: 0.85rem 1.15rem;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.phone-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ffffff;
    flex-shrink: 0;
}

.avatar-rose {
    background: var(--grad-rose);
    box-shadow: 0 0 12px rgba(244, 63, 94, 0.5);
}

.avatar-cyan {
    background: var(--grad-cyan);
    box-shadow: 0 0 12px rgba(6, 182, 212, 0.5);
}

.avatar-orange {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    box-shadow: 0 0 12px rgba(249, 115, 22, 0.5);
}

.avatar-indigo {
    background: linear-gradient(135deg, #6366f1 0%, #4338ca 100%);
    box-shadow: 0 0 12px rgba(99, 102, 241, 0.5);
}

.avatar-gold {
    background: var(--grad-gold);
    color: #000000;
    box-shadow: 0 0 12px rgba(251, 191, 36, 0.5);
}

.phone-user-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.user-name {
    font-size: 0.95rem;
    font-weight: 800;
    color: #ffffff;
}

.user-sub-badge {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.1rem;
}

.status-indicator {
    width: 7px;
    height: 7px;
    background-color: #25d366;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 6px #25d366;
}

.user-status-text {
    font-size: 0.75rem;
    color: #94a3b8;
    font-weight: 600;
}

.phone-header-icons {
    display: flex;
    gap: 0.75rem;
    color: #94a3b8;
}

.phone-chat-body {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: #080c16;
}

.chat-bubble {
    max-width: 86%;
    padding: 0.85rem 1.1rem;
    border-radius: 18px;
    font-size: 0.9rem;
    line-height: 1.45;
}

.user-msg {
    align-self: flex-end;
    background: #4c1d95;
    color: #ffffff;
    border-bottom-right-radius: 4px;
}

.bot-msg {
    align-self: flex-start;
    background: #182032;
    color: #e2e8f0;
    border-bottom-left-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.bot-msg p {
    margin-bottom: 0.4rem;
}

.chat-time {
    display: block;
    font-size: 0.7rem;
    color: var(--text-subtle);
    text-align: right;
    margin-top: 0.25rem;
}

.read-ticks {
    color: #38bdf8;
    font-weight: bold;
}

.phone-input-bar {
    background: #151c2e;
    padding: 0.85rem 1.15rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--text-subtle);
}

.input-fake-text {
    font-size: 0.85rem;
}

.mic-icon-svg {
    color: #94a3b8;
}

.phone-caption {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.phone-caption strong {
    color: var(--gold-primary);
}

/* ==========================================================================
   Grade Detalhada de Serviços
   ========================================================================== */
.services-detail-section {
    padding: 5.5rem 0;
}

.services-full-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.service-detail-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 3rem 2.5rem;
    backdrop-filter: blur(14px);
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

.service-detail-card:hover {
    transform: translateY(-6px);
    background: var(--bg-card-hover);
}

.card-glow-purple:hover {
    border-color: rgba(139, 92, 246, 0.5);
    box-shadow: var(--shadow-purple);
}

.card-glow-gold:hover {
    border-color: rgba(251, 191, 36, 0.5);
    box-shadow: var(--shadow-gold);
}

.card-top-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.card-badge-hot {
    font-size: 0.8rem;
    font-weight: 800;
    padding: 0.35rem 0.85rem;
    background: var(--grad-purple);
    color: #ffffff;
    border-radius: var(--radius-full);
}

.card-badge-gold {
    font-size: 0.8rem;
    font-weight: 800;
    padding: 0.35rem 0.85rem;
    background: var(--grad-gold);
    color: #000000;
    border-radius: var(--radius-full);
}

.card-badge-purple {
    font-size: 0.8rem;
    font-weight: 800;
    padding: 0.35rem 0.85rem;
    background: rgba(139, 92, 246, 0.2);
    color: #c084fc;
    border: 1px solid rgba(139, 92, 246, 0.4);
    border-radius: var(--radius-full);
}

.service-detail-card h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.service-full-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.75rem;
}

.service-highlights {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2.25rem;
    flex-grow: 1;
}

.hl-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-white);
}

.hl-arrow {
    color: var(--purple-glow);
    font-weight: 900;
    font-size: 1.1rem;
}

.hl-arrow-gold {
    color: var(--gold-primary);
    font-weight: 900;
    font-size: 1.1rem;
}

.btn-card-gradient {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 800;
    color: #ffffff;
    transition: var(--transition-smooth);
}

.btn-card-gradient:hover {
    background: var(--grad-purple);
    border-color: transparent;
    box-shadow: var(--shadow-purple);
    transform: translateY(-2px);
}

.btn-gold-variant:hover {
    background: var(--grad-gold);
    color: #000000;
    box-shadow: var(--shadow-gold);
}

/* ==========================================================================
   Diferenciais & Bento Grid
   ========================================================================== */
.differentials-section {
    padding: 5.5rem 0;
}

.diff-container-box {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 4.5rem 3.5rem;
    backdrop-filter: blur(14px);
}

.diff-header {
    margin-bottom: 3.5rem;
}

.diff-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.diff-card-item {
    text-align: center;
}

.diff-icon-circle-svg {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.diff-card-item h4 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 0.6rem;
}

.diff-card-item p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ==========================================================================
   Depoimentos & Prova Social
   ========================================================================== */
.testimonials-section {
    padding: 5.5rem 0;
    background: linear-gradient(180deg, transparent 0%, rgba(251, 191, 36, 0.03) 50%, transparent 100%);
}

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

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(251, 191, 36, 0.4);
    box-shadow: var(--shadow-gold);
}

.stars-row {
    color: var(--gold-primary);
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 1.25rem;
}

.testimonial-quote {
    font-size: 1rem;
    color: var(--text-slate);
    line-height: 1.6;
    margin-bottom: 2rem;
    flex-grow: 1;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 0.95rem;
    color: #ffffff;
}

.author-pink {
    background: var(--grad-rose);
    box-shadow: 0 0 10px rgba(244, 63, 94, 0.4);
}

.author-cyan {
    background: var(--grad-cyan);
    box-shadow: 0 0 10px rgba(6, 182, 212, 0.4);
}

.author-gold {
    background: var(--grad-gold);
    color: #000000;
    box-shadow: 0 0 10px rgba(251, 191, 36, 0.4);
}

.author-info strong {
    display: block;
    color: var(--text-white);
    font-size: 0.95rem;
}

.author-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-section {
    padding: 5.5rem 0;
}

.faq-container {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item.active {
    border-color: rgba(139, 92, 246, 0.6);
    box-shadow: var(--shadow-purple);
}

.faq-btn {
    width: 100%;
    padding: 1.5rem 1.75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text-white);
}

.faq-toggle-icon {
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--gold-primary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle-icon {
    transform: rotate(45deg);
    color: var(--purple-glow);
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease-out;
    padding: 0 1.75rem;
}

.faq-body p {
    padding-bottom: 1.5rem;
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ==========================================================================
   CTA Final Cinematográfico
   ========================================================================== */
.cta-cinematic-section {
    padding: 5rem 0;
}

.cta-glow-container {
    background: linear-gradient(135deg, rgba(109, 40, 217, 0.25) 0%, rgba(251, 191, 36, 0.15) 100%);
    border: 1px solid rgba(139, 92, 246, 0.5);
    border-radius: var(--radius-lg);
    padding: 5.5rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-deep);
}

.cta-content-wrapper {
    max-width: 760px;
    margin: 0 auto;
}

.cta-logo-wrap {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    border: 2px solid var(--gold-primary);
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.5);
}

.cta-logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-label {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--gold-primary);
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.cta-main-title {
    font-size: 2.9rem;
    font-weight: 900;
    color: var(--text-white);
    line-height: 1.2;
    margin-bottom: 1.25rem;
}

.cta-main-desc {
    font-size: 1.2rem;
    color: var(--text-slate);
    margin-bottom: 2.75rem;
    line-height: 1.6;
}

.cta-corp-email-card {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
    padding: 0.85rem 1.6rem;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(251, 191, 36, 0.35);
    border-radius: var(--radius-full);
    backdrop-filter: blur(10px);
    flex-wrap: wrap;
    transition: var(--transition-smooth);
}

.cta-corp-email-card:hover {
    border-color: var(--gold-primary);
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.25);
    transform: translateY(-2px);
    background: rgba(0, 0, 0, 0.6);
}

.corp-email-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
}

.corp-email-badge svg {
    color: var(--gold-primary);
}

.corp-email-address {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--gold-primary);
    transition: var(--transition-smooth);
}

.corp-email-address:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    border-top: 1px solid var(--border-glass);
    padding-top: 5rem;
    background: #06080d;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3.5rem;
    margin-bottom: 4rem;
}

.footer-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin: 1.25rem 0 1rem;
    max-width: 380px;
    line-height: 1.6;
}

.footer-contacts-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
}

.footer-contact-item {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--gold-primary);
    transition: var(--transition-smooth);
}

.footer-contact-item:hover {
    color: #ffffff;
    transform: translateX(4px);
}

.btn-insta-footer {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.55rem 1.1rem;
    font-size: 0.9rem;
    font-weight: 700;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-full);
}

.btn-insta-footer:hover {
    color: var(--gold-primary);
    border-color: var(--gold-primary);
}

.footer-heading {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 1.25rem;
}

.footer-links-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-links-col a {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.footer-links-col a:hover {
    color: var(--purple-glow);
    padding-left: 4px;
}

.footer-bottom-bar {
    border-top: 1px solid var(--border-glass);
    padding: 1.75rem 0;
    font-size: 0.9rem;
    color: var(--text-subtle);
}

.footer-tech-credit strong {
    color: var(--gold-primary);
    font-weight: 800;
}

.footer-bottom-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

/* ==========================================================================
   Botão Flutuante do WhatsApp
   ========================================================================== */
.floating-whatsapp-btn {
    position: fixed;
    bottom: 2.25rem;
    right: 2.25rem;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
    z-index: 9999;
    transition: var(--transition-smooth);
}

.floating-whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.7);
}

.wa-ripple-effect {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #25d366;
    opacity: 0.6;
    animation: pulse 2s infinite;
    z-index: -1;
}

.wa-tooltip-text {
    position: absolute;
    right: 76px;
    background-color: #131a2a;
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 0.45rem 0.95rem;
    border-radius: var(--radius-sm);
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.floating-whatsapp-btn:hover .wa-tooltip-text {
    opacity: 1;
    transform: translateX(-6px);
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.6); opacity: 0; }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   Responsividade & Auditoria Mobile Completa
   ========================================================================== */

/* Telas médias / Desktop compacto (1025px - 1280px) */
@media (max-width: 1280px) {
    .nav-desktop {
        gap: 1.15rem;
    }

    .nav-link {
        font-size: 0.88rem;
    }

    .btn-email-top span {
        display: none;
    }

    .btn-email-top {
        padding: 0.5rem 0.65rem;
    }
}

/* Tablets e Telas Menores (<= 1024px) */
@media (max-width: 1024px) {
    .nav-desktop, 
    .btn-email-top, 
    #btn-insta-header {
        display: none !important;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .demo-wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .services-full-grid {
        grid-template-columns: 1fr;
    }

    .diff-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

/* Tablets em modo retrato e Smartphones grandes (<= 768px) */
@media (max-width: 768px) {
    .header-container {
        height: 72px;
    }

    .logo-box {
        width: 38px;
        height: 38px;
    }

    .brand-name {
        font-size: 1.2rem;
    }

    .brand-sub {
        font-size: 0.65rem;
    }

    .btn-primary-gradient#btn-header-cta {
        padding: 0.55rem 1rem;
        font-size: 0.85rem;
    }

    .niche-tab-selector {
        display: flex;
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding: 0.4rem;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
        border-radius: var(--radius-full);
        width: 100%;
    }

    .niche-tab-selector::-webkit-scrollbar {
        display: none;
    }

    .niche-tab {
        flex-shrink: 0;
        white-space: nowrap;
        padding: 0.55rem 1rem;
        font-size: 0.85rem;
    }

    .diff-cards-grid {
        grid-template-columns: 1fr;
    }

    .diff-container-box {
        padding: 2.5rem 1.5rem;
    }

    .service-detail-card {
        padding: 2rem 1.5rem;
    }
}

/* Smartphones em geral (<= 640px) */
@media (max-width: 640px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .hero-services-grid {
        grid-template-columns: 1fr;
    }

    .hero-cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-hero-main, 
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }

    .cta-main-title {
        font-size: 2rem;
    }

    .cta-glow-container {
        padding: 3rem 1.5rem;
    }

    .cta-corp-email-card {
        flex-direction: column;
        text-align: center;
        gap: 0.4rem;
        padding: 0.9rem 1.2rem;
        border-radius: 16px;
        width: 100%;
    }

    .corp-email-address {
        word-break: break-all;
        font-size: 0.88rem;
    }

    .floating-whatsapp-btn {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 56px;
        height: 56px;
    }
}

/* Smartphones compactos (<= 480px) */
@media (max-width: 480px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .hero-title {
        font-size: 1.95rem;
    }

    .section-title {
        font-size: 1.85rem;
    }

    .phone-mockup {
        border-radius: 28px;
        width: 100%;
        max-width: 100%;
    }

    .phone-header {
        padding: 0.75rem 0.85rem;
    }

    .phone-contact-info strong {
        font-size: 0.85rem;
    }

    .phone-contact-info span {
        font-size: 0.72rem;
    }

    .phone-avatar {
        width: 36px;
        height: 36px;
    }

    .phone-body-chat {
        padding: 1rem 0.75rem 1.25rem;
    }

    .chat-bubble {
        max-width: 92%;
        font-size: 0.85rem;
        padding: 0.75rem 0.85rem;
    }

    .btn-whatsapp-giant {
        font-size: 0.95rem;
        padding: 1rem 1.25rem;
        width: 100%;
    }

    .floating-whatsapp-btn {
        bottom: 1.25rem;
        right: 1.25rem;
        width: 52px;
        height: 52px;
    }
}
