/* ========================================
   SINAPSYS AUTOMATION - Design System
   Bootstrap 5 + Custom Theme (Improved)
======================================== */

:root {
    /* Primary Colors */
    --color-primary: #14B8A6;
    --color-primary-dark: #0D9488;
    --color-primary-light: #2DD4BF;
    --color-secondary: #F97316;
    --color-secondary-dark: #EA580C;
    --color-secondary-light: #FB923C;
    
    /* Background Colors - Dark Theme */
    --bg-dark: #0F1419;
    --bg-darker: #0A0D11;
    --bg-card: #1A2029;
    --bg-card-hover: #242D3A;
    
    /* Background Colors - Light Theme */
    --bg-light: #F8FAFC;
    --bg-light-alt: #F1F5F9;
    --bg-white: #FFFFFF;
    
    /* Text Colors */
    --text-white: #FFFFFF;
    --text-muted-dark: #B8C4D0;
    --text-on-light: #1E293B;
    --text-muted-light: #64748B;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #14B8A6, #0891B2);
    --gradient-secondary: linear-gradient(135deg, #F97316, #FB923C);
    --gradient-dark: linear-gradient(180deg, #0F1419 0%, #1A2029 100%);
    --gradient-hero: linear-gradient(135deg, rgba(20, 184, 166, 0.15) 0%, transparent 50%);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.2);
    --shadow-glow-primary: 0 0 30px rgba(20, 184, 166, 0.3);
    --shadow-glow-secondary: 0 0 30px rgba(249, 115, 22, 0.3);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Border Radius */
    --radius-sm: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
}

/* ========================================
   Base Styles
======================================== */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-on-light);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

.brand-text {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text-white);
    letter-spacing: 2px;
}

a {
    text-decoration: none;
    transition: var(--transition-normal);
}

/* ========================================
   Section Themes
======================================== */

/* Dark Section */
.section-dark {
    background-color: var(--bg-dark);
    color: var(--text-white);
}

.section-dark .text-muted,
.section-dark p {
    color: var(--text-muted-dark) !important;
}

.section-dark h1, 
.section-dark h2, 
.section-dark h3, 
.section-dark h4 {
    color: var(--text-white);
}

/* Darker Section */
.section-darker {
    background-color: var(--bg-darker);
    color: var(--text-white);
}

.section-darker .text-muted,
.section-darker p {
    color: var(--text-muted-dark) !important;
}

/* Light Section */
.section-light {
    background-color: var(--bg-light);
    color: var(--text-on-light);
}

.section-light .text-muted {
    color: var(--text-muted-light) !important;
}

/* Light Alt Section */
.section-light-alt {
    background-color: var(--bg-light-alt);
    color: var(--text-on-light);
}

/* White Section */
.section-white {
    background-color: var(--bg-white);
    color: var(--text-on-light);
}

/* Sectores con video de fondo */
.sectores-video-section {
    position: relative;
    overflow: hidden;
}

.sectores-bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    filter: saturate(0.95) brightness(0.82);
}

.sectores-video-section::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(9, 13, 19, 0.78), rgba(9, 13, 19, 0.82)),
        radial-gradient(ellipse at 20% 10%, rgba(20, 184, 166, 0.15), transparent 45%),
        radial-gradient(ellipse at 80% 85%, rgba(249, 115, 22, 0.12), transparent 50%);
}

.sectores-video-section > .container {
    position: relative;
    z-index: 2;
}

/* ========================================
   Header / Navbar
======================================== */
.navbar-dark-blur {
    background: rgba(15, 20, 25, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18) !important;
    box-shadow: none !important;
    transition: var(--transition-normal);
    padding-top: 0.85rem;
    padding-bottom: 0.85rem;
}

.navbar-dark-blur .navbar-brand img,
.footer-dark img {
    mix-blend-mode: screen;
}

.navbar-dark-blur .navbar-brand {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.navbar-dark-blur .navbar-brand::after {
    content: '';
    position: absolute;
    top: -35%;
    left: -35%;
    width: 26%;
    height: 170%;
    pointer-events: none;
    opacity: 0;
    transform: translateX(-220%) rotate(18deg);
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0),
        rgba(255, 255, 255, 0.65),
        rgba(255, 255, 255, 0)
    );
}

.navbar-dark-blur .navbar-brand:hover::after {
    opacity: 1;
    animation: logo-shine-sweep 0.55s ease-out 1;
}

.navbar-dark-blur.scrolled {
    background: rgba(10, 13, 17, 0.96);
    border-bottom: 1px solid rgba(255, 255, 255, 0.14) !important;
    box-shadow: none !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding-top: 0.55rem;
    padding-bottom: 0.55rem;
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: var(--transition-normal);
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--color-primary);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-normal);
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 60%;
}

/* Dropdown Menus */
.dropdown-menu-dark {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 0.5rem;
}

.dropdown-item {
    color: rgba(255, 255, 255, 0.7);
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

.dropdown-item:hover {
    background: rgba(20, 184, 166, 0.1);
    color: var(--color-primary);
}

/* Mega Menu */
.mega-menu {
    min-width: 600px;
    padding: 1.5rem;
}

.mega-menu h6 {
    color: var(--color-primary);
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    margin-bottom: 1rem;
}

.mega-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-menu ul li a {
    display: block;
    padding: 0.4rem 0;
    color: var(--text-muted-dark);
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.mega-menu ul li a:hover {
    color: var(--color-primary);
    padding-left: 0.5rem;
}

/* ========================================
   Buttons
======================================== */
.btn-primary-custom {
    background: var(--gradient-primary);
    border: none;
    color: white;
    padding: 0.82rem 1.9rem;
    border-radius: var(--radius-md);
    font-weight: 700;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(20, 184, 166, 0.25);
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow-primary);
    color: white;
}

.btn-primary-custom:active {
    transform: translateY(0);
}

.btn-secondary-custom {
    background: var(--gradient-secondary);
    border: none;
    color: white;
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: var(--transition-normal);
}

.btn-secondary-custom:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-secondary);
    color: white;
}

.btn-outline-primary-custom {
    background: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: var(--transition-normal);
}

.btn-outline-primary-custom:hover {
    background: var(--color-primary);
    color: white;
}

.btn-outline-light-custom {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: white;
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: var(--transition-normal);
}

.btn-outline-light-custom:hover {
    background: white;
    color: var(--bg-dark);
    border-color: white;
}

/* Badge custom */
.badge-primary {
    background: var(--gradient-primary);
    color: white;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
}

.badge-secondary {
    background: var(--gradient-secondary);
    color: white;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
}

/* Numeracion 01/02/03 en seccion de soluciones */
.solution-step-badge {
    font-size: 1rem;
    font-weight: 700;
    padding: 0.62rem 1.15rem;
    letter-spacing: 0.02em;
}

/* ========================================
   Hero Section
======================================== */
.hero-section {
    min-height: 100vh;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(20, 184, 166, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(249, 115, 22, 0.1) 0%, transparent 50%),
        var(--bg-dark);
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    filter: saturate(1.05) contrast(1.02);
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right, rgba(10, 14, 19, 0.93), rgba(10, 14, 19, 0.66)),
        linear-gradient(to bottom, rgba(8, 12, 18, 0.22), rgba(8, 12, 18, 0.45));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 3;
}

.hero-section .lead {
    max-width: 58ch !important;
    line-height: 1.85;
}

.hero-section .btn-secondary-custom {
    transform: translateZ(0);
    box-shadow: 0 12px 28px rgba(249, 115, 22, 0.25);
    font-weight: 700;
}

.hero-section .btn-secondary-custom:hover {
    transform: translateY(-3px);
}

.hero-section .btn-outline-light-custom {
    border-color: rgba(255, 255, 255, 0.45);
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-stats {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 3rem;
    padding-top: 3rem;
}

.stat-item h3 {
    font-size: 3rem;
    color: var(--color-primary);
    margin-bottom: 0.25rem;
}

.stat-item p {
    color: var(--text-muted-dark);
    font-size: 0.875rem;
    margin: 0;
}

/* ========================================
   Cards
======================================== */
.card-dark {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    transition: var(--transition-normal);
    overflow: hidden;
}

.card-dark:hover {
    transform: translateY(-5px);
    border-color: rgba(20, 184, 166, 0.3);
    box-shadow: var(--shadow-lg);
}

.card-light {
    background: var(--bg-white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-lg);
    transition: var(--transition-normal);
    overflow: hidden;
}

.card-light:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-primary);
}

/* Pillar Cards */
.pillar-card {
    position: relative;
    padding: 2rem;
    height: 100%;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    opacity: 0;
    transition: var(--transition-normal);
}

.pillar-card.pillar-primary::before {
    background: var(--gradient-primary);
}

.pillar-card.pillar-secondary::before {
    background: var(--gradient-secondary);
}

.pillar-card:hover::before {
    opacity: 1;
}

.pillar-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 16px 34px rgba(15, 25, 35, 0.13);
}

/* Icon Boxes */
.icon-box {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    transition: var(--transition-normal);
    transform-origin: center center;
    will-change: transform;
}

.icon-box-primary {
    background: rgba(20, 184, 166, 0.1);
    color: var(--color-primary);
}

.icon-box-secondary {
    background: rgba(249, 115, 22, 0.1);
    color: var(--color-secondary);
}

.card-light:hover .icon-box-primary,
.card-dark:hover .icon-box-primary {
    background: var(--gradient-primary);
    color: white;
}

.card-light:hover .icon-box-secondary,
.card-dark:hover .icon-box-secondary {
    background: var(--gradient-secondary);
    color: white;
}

/* Giro rapido del icono superior en tarjetas de pilares */
.pillar-card:hover .icon-box {
    animation: icon-spin-triple 0.5s ease-out 1;
}

/* Icon Circle (for Why Us section) */
.icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.icon-circle-primary {
    background: var(--gradient-primary);
}

.icon-circle-secondary {
    background: var(--gradient-secondary);
}

/* ========================================
   Partners Section
======================================== */
.partners-section {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    padding: 0.5rem 1rem;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-muted-light);
    background: var(--bg-white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-sm);
    transition: var(--transition-normal);
    filter: grayscale(1);
    opacity: 0.86;
}

.partner-logo:hover {
    color: var(--color-primary);
    border-color: var(--color-primary);
    transform: translateY(-2px) scale(1.02);
    filter: grayscale(0);
    opacity: 1;
    background: rgba(20, 184, 166, 0.06);
}

/* ========================================
   Solutions Section
======================================== */
.solution-visual {
    aspect-ratio: 4/3;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.solution-visual-primary {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.1), rgba(8, 145, 178, 0.05));
    border: 1px solid rgba(20, 184, 166, 0.2);
}

.solution-visual-secondary {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1), rgba(251, 146, 60, 0.05));
    border: 1px solid rgba(249, 115, 22, 0.2);
}

.solution-visual i {
    font-size: 6rem;
    opacity: 0.3;
}

.solution-visual-primary i {
    color: var(--color-primary);
}

.solution-visual-secondary i {
    color: var(--color-secondary);
}

.solution-img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: transform var(--transition-slow);
}

.solution-img:hover {
    transform: scale(1.02);
}

.solution-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.solution-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.solution-list li:last-child {
    border-bottom: none;
}

.solution-list li i {
    color: var(--color-primary);
    font-size: 1.25rem;
    margin-top: 0.1rem;
}

.section-dark .solution-list li {
    border-color: rgba(255, 255, 255, 0.1);
}

/* ========================================
   Why Us Section
======================================== */
.why-us-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    position: relative;
}

.why-us-number {
    position: absolute;
    bottom: 1rem;
    right: 1.5rem;
    font-family: 'Rajdhani', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
}

.section-light .why-us-number {
    color: rgba(0, 0, 0, 0.03);
}

/* ========================================
   Testimonial Section
======================================== */
.testimonial-quote {
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.8;
}

.testimonial-quote .highlight {
    color: var(--color-primary);
    font-style: normal;
    font-weight: 600;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: white;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
}

/* ========================================
   CTA Section
======================================== */
.cta-section {
    background: 
        radial-gradient(ellipse at 30% 50%, rgba(20, 184, 166, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 50%, rgba(249, 115, 22, 0.2) 0%, transparent 50%),
        var(--bg-dark);
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='2' cy='2' r='1' fill='white' fill-opacity='0.05'/%3E%3C/svg%3E");
    opacity: 0.5;
}

/* ========================================
   Footer
======================================== */
.footer-dark {
    background: var(--bg-darker);
}

.footer-heading {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 1.25rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-muted-dark);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-primary);
    padding-left: 0.25rem;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-muted-dark);
    font-size: 0.9rem;
}

.footer-contact li i {
    color: var(--color-primary);
    font-size: 1rem;
}

.social-link {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--bg-card);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted-dark);
    font-size: 1.1rem;
    transition: var(--transition-normal);
}

.social-link:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-3px);
}

/* ========================================
   WhatsApp Float Button
======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition-normal);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
    color: white;
}

.whatsapp-float i {
    animation: pulse 2s infinite;
}

/* ========================================
   Utilities
======================================== */
.text-primary-custom {
    color: var(--color-primary) !important;
}

.text-secondary-custom {
    color: var(--color-secondary) !important;
}

.bg-primary-custom {
    background: var(--gradient-primary) !important;
}

.bg-secondary-custom {
    background: var(--gradient-secondary) !important;
}

.section-title {
    margin-bottom: 1rem;
    letter-spacing: -0.012em;
}

.section-subtitle {
    color: var(--text-muted-light);
    font-size: 1.125rem;
    line-height: 1.75;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.section-dark .section-subtitle {
    color: var(--text-muted-dark);
}

/* ========================================
   Animations
======================================== */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

@keyframes icon-spin-triple {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes logo-shine-sweep {
    0% {
        transform: translateX(-220%) rotate(18deg);
    }
    100% {
        transform: translateX(510%) rotate(18deg);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }

/* Scroll reveal (activated with JS) */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   Responsive Adjustments
======================================== */
main > section:not(.hero-section) {
    padding-top: clamp(4.25rem, 8vw, 5.5rem) !important;
    padding-bottom: clamp(4.25rem, 8vw, 5.5rem) !important;
}

@media (max-width: 991.98px) {
    .mega-menu {
        min-width: 100%;
    }
    
    .hero-section {
        text-align: center;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
        line-height: 1.15;
    }

    .hero-section .lead {
        line-height: 1.9;
        max-width: 65ch !important;
    }
    
    .stat-item h3 {
        font-size: 2rem;
    }
    
    .solution-visual {
        margin-bottom: 2rem;
    }
}

@media (max-width: 767.98px) {
    .hero-section h1 {
        font-size: 1.85rem;
        line-height: 1.2;
    }

    .hero-section .lead {
        font-size: 1rem;
        line-height: 1.88;
    }
    
    .display-5 {
        font-size: 1.75rem;
    }
    
    .testimonial-quote {
        font-size: 1.25rem;
    }
    
    .hero-stats {
        text-align: center;
    }
    
    .stat-item {
        margin-bottom: 1.5rem;
    }
    
    .whatsapp-float {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 54px;
        height: 54px;
        font-size: 1.5rem;
    }
}
