/* ============================================
   QUICKCLEAN SERVICES - CSS COMPLETO
   VERSIÓN CON LOGO GRANDE Y DOMINANTE
============================================ */

/* ============================================
   VARIABLES CSS
============================================ */
:root {
    --primary: #1EA7FF;
    --primary-dark: #1B7FE8;
    --primary-deep: #2E49C9;
    --bg-dark: #09111F;
    --bg-secondary: #0F1A2D;
    --text-white: #FFFFFF;
    --text-secondary: #C7D3E3;
    --accent: #5ED3FF;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    --font: 'Outfit', sans-serif;
    --radius: 24px;
    --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   RESET Y BASE
============================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font);
    background: var(--bg-dark);
    color: var(--text-white);
    overflow-x: hidden;
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ============================================
   SCROLLBAR
============================================ */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* ============================================
   GLASSMORPHISM UTILITY
============================================ */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
}

/* ============================================
   FONDOS / GLOW / PARTÍCULAS
============================================ */
.bg-particles {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.bg-glow {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.3;
}

.glow-1 {
    width: 500px;
    height: 500px;
    top: -150px;
    right: -100px;
    background: var(--primary);
}

.glow-2 {
    width: 400px;
    height: 400px;
    bottom: 20%;
    left: -100px;
    background: var(--primary-deep);
}

.glow-3 {
    width: 300px;
    height: 300px;
    top: 40%;
    right: 10%;
    background: var(--accent);
}

.glow-4 {
    width: 200px;
    height: 200px;
    bottom: 10%;
    right: 30%;
    background: var(--primary-dark);
}

/* ============================================
   HERO LINES
============================================ */
.hero-lines {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.hero-lines .line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(30, 167, 255, 0.08), transparent);
    height: 1px;
    width: 100%;
    animation: lineMove 8s ease-in-out infinite alternate;
}

.line-1 {
    top: 15%;
    animation-delay: 0s;
}

.line-2 {
    top: 35%;
    animation-delay: 1.5s;
}

.line-3 {
    top: 55%;
    animation-delay: 3s;
}

.line-4 {
    top: 75%;
    animation-delay: 4.5s;
}

@keyframes lineMove {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* ============================================
   HEADER
============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(9, 17, 31, 0.85);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--glass-border);
    padding: 10px 0;
}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* ============================================
   LOGO DOMINANTE - VERSIÓN EXTRA GRANDE
============================================ */
.logo-dominant {
    display: flex;
    align-items: center;
    gap: 24px;
    text-decoration: none;
    position: relative;
    transition: var(--transition);
    padding: 6px 0;
}

/* Efecto hover del logo */
.logo-dominant:hover {
    transform: scale(1.03);
}

/* ============================================
   WRAPPER DEL ICONO - MUY GRANDE
============================================ */
.logo-icon-large {
    position: relative;
    flex-shrink: 0;
    width: 96px;
    height: 96px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Imagen del logo - TAMAÑO GRANDE */
.logo-img-large {
    width: 80px;
    height: 80px;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 0 40px rgba(30, 167, 255, 0.2));
    transition: var(--transition);
    position: relative;
    z-index: 2;
}

/* Efecto hover en la imagen */
.logo-dominant:hover .logo-img-large {
    filter: drop-shadow(0 0 60px rgba(30, 167, 255, 0.35));
    transform: scale(1.08) rotate(-3deg);
}

/* ============================================
   GLOW INTERNO DETRÁS DEL LOGO
============================================ */
.logo-glow-inner {
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(30, 167, 255, 0.15), transparent 70%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
    z-index: 0;
}

.logo-dominant:hover .logo-glow-inner {
    opacity: 1;
}

/* ============================================
   ANILLO DE BRILLO - MÁS GRANDE
============================================ */
.logo-ring-large {
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2.5px solid rgba(30, 167, 255, 0.15);
    animation: ringSpin 12s linear infinite;
    pointer-events: none;
    z-index: 1;
}

.logo-ring-large::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: rgba(30, 167, 255, 0.3);
    border-right-color: rgba(94, 211, 255, 0.2);
    animation: ringSpin 8s linear infinite reverse;
}

.logo-ring-large::after {
    content: '';
    position: absolute;
    inset: 4px;
    border-radius: 50%;
    border: 1.5px solid rgba(94, 211, 255, 0.06);
}

@keyframes ringSpin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* ============================================
   TEXTO DEL LOGO - MUY GRANDE
============================================ */
.logo-text-large {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

/* Texto principal - GRANDE */
.logo-text-big {
    font-family: var(--font);
    font-weight: 900;
    font-size: 2.8rem;
    letter-spacing: -1.5px;
    color: var(--text-white);
    display: flex;
    align-items: center;
    gap: 4px;
    line-height: 1.05;
}

.logo-text-big span {
    color: var(--primary);
    position: relative;
}

/* Línea subrayado más gruesa */
.logo-text-big span::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 4px;
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.logo-dominant:hover .logo-text-big span::after {
    transform: scaleX(1);
}

/* Tagline - MÁS GRANDE */
.logo-tagline-big {
    font-family: var(--font);
    font-weight: 400;
    font-size: 0.9rem;
    color: var(--text-secondary);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: 4px;
    opacity: 0.7;
    transition: var(--transition);
}

.logo-dominant:hover .logo-tagline-big {
    opacity: 1;
    color: var(--primary);
}

/* ============================================
   GLOW FONDO DEL LOGO
============================================ */
.logo-dominant::before {
    content: '';
    position: absolute;
    inset: -20px;
    border-radius: 35px;
    background: radial-gradient(circle at center, rgba(30, 167, 255, 0.08), transparent 70%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.logo-dominant:hover::before {
    opacity: 1;
}

/* ============================================
   ANIMACIÓN DE ENTRADA
============================================ */
@keyframes logoEntranceBig {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.logo-dominant {
    animation: logoEntranceBig 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

/* ============================================
   PULSO SUTIL DEL LOGO - MÁS NOTABLE
============================================ */
@keyframes logoPulseBig {
    0%, 100% {
        filter: drop-shadow(0 0 40px rgba(30, 167, 255, 0.12));
    }
    50% {
        filter: drop-shadow(0 0 60px rgba(30, 167, 255, 0.25));
    }
}

.logo-img-large {
    animation: logoPulseBig 4s ease-in-out infinite;
}

.logo-dominant:hover .logo-img-large {
    animation-play-state: paused;
}

/* ============================================
   HEADER SCROLL - LOGO SE REDUCE PERO SIGUE GRANDE
============================================ */
.header.scrolled .logo-icon-large {
    width: 72px;
    height: 72px;
}

.header.scrolled .logo-img-large {
    width: 60px;
    height: 60px;
}

.header.scrolled .logo-text-big {
    font-size: 2rem;
}

.header.scrolled .logo-tagline-big {
    font-size: 0.7rem;
}

.header.scrolled .logo-ring-large {
    display: none;
}

.header.scrolled .logo-dominant {
    gap: 18px;
}

/* ============================================
   LOGO EN EL FOOTER
============================================ */
.footer-brand .logo-dominant {
    gap: 18px;
}

.footer-brand .logo-icon-large {
    width: 72px;
    height: 72px;
}

.footer-brand .logo-img-large {
    width: 60px;
    height: 60px;
}

.footer-brand .logo-text-big {
    font-size: 2rem;
}

.footer-brand .logo-tagline-big {
    font-size: 0.7rem;
}

.footer-brand .logo-ring-large {
    display: none;
}

.footer-brand .logo-glow-inner {
    display: none;
}

/* ============================================
   LOGO RESPONSIVE - SIGUE SIENDO GRANDE
============================================ */
/* Tablet */
@media (max-width: 1024px) {
    .logo-dominant {
        gap: 20px;
    }
    
    .logo-icon-large {
        width: 80px;
        height: 80px;
    }
    
    .logo-img-large {
        width: 66px;
        height: 66px;
    }
    
    .logo-text-big {
        font-size: 2.4rem;
    }
    
    .logo-tagline-big {
        font-size: 0.8rem;
        letter-spacing: 2.5px;
    }

    .header.scrolled .logo-icon-large {
        width: 64px;
        height: 64px;
    }

    .header.scrolled .logo-img-large {
        width: 54px;
        height: 54px;
    }

    .header.scrolled .logo-text-big {
        font-size: 1.8rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .logo-dominant {
        gap: 16px;
    }
    
    .logo-icon-large {
        width: 68px;
        height: 68px;
    }
    
    .logo-img-large {
        width: 56px;
        height: 56px;
    }
    
    .logo-text-big {
        font-size: 2rem;
    }
    
    .logo-tagline-big {
        font-size: 0.7rem;
        letter-spacing: 2px;
    }
    
    .logo-ring-large {
        display: none;
    }

    .logo-glow-inner {
        display: none;
    }

    .header.scrolled .logo-icon-large {
        width: 56px;
        height: 56px;
    }

    .header.scrolled .logo-img-large {
        width: 46px;
        height: 46px;
    }

    .header.scrolled .logo-text-big {
        font-size: 1.6rem;
    }

    .header.scrolled .logo-tagline-big {
        font-size: 0.6rem;
    }
}

/* Mobile pequeño */
@media (max-width: 480px) {
    .logo-dominant {
        gap: 12px;
    }
    
    .logo-icon-large {
        width: 56px;
        height: 56px;
    }
    
    .logo-img-large {
        width: 48px;
        height: 48px;
    }
    
    .logo-text-big {
        font-size: 1.6rem;
        letter-spacing: -0.5px;
    }
    
    .logo-tagline-big {
        font-size: 0.6rem;
        letter-spacing: 1.5px;
        margin-top: 2px;
    }
    
    .logo-text-big span::after {
        height: 3px;
        bottom: -3px;
    }

    .header.scrolled .logo-icon-large {
        width: 48px;
        height: 48px;
    }

    .header.scrolled .logo-img-large {
        width: 40px;
        height: 40px;
    }

    .header.scrolled .logo-text-big {
        font-size: 1.3rem;
    }

    .header.scrolled .logo-tagline-big {
        font-size: 0.5rem;
    }
}

/* Móvil muy pequeño */
@media (max-width: 360px) {
    .logo-dominant {
        gap: 10px;
    }
    
    .logo-icon-large {
        width: 48px;
        height: 48px;
    }
    
    .logo-img-large {
        width: 40px;
        height: 40px;
    }
    
    .logo-text-big {
        font-size: 1.3rem;
    }
    
    .logo-tagline-big {
        font-size: 0.5rem;
        letter-spacing: 1px;
    }

    .header.scrolled .logo-icon-large {
        width: 40px;
        height: 40px;
    }

    .header.scrolled .logo-img-large {
        width: 34px;
        height: 34px;
    }

    .header.scrolled .logo-text-big {
        font-size: 1.1rem;
    }
}

/* ============================================
   NAVIGATION
============================================ */
.nav ul {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition);
    position: relative;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
    border-radius: 2px;
}

.nav a:hover,
.nav a.active {
    color: var(--text-white);
}

.nav a:hover::after,
.nav a.active::after {
    width: 100%;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.menu-toggle span {
    width: 28px;
    height: 2.5px;
    background: var(--text-white);
    border-radius: 4px;
    transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   BUTTONS
============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 60px;
    font-family: var(--font);
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-sm {
    padding: 10px 22px;
    font-size: 0.85rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-deep));
    color: var(--text-white);
    box-shadow: 0 0 30px rgba(30, 167, 255, 0.25);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 50px rgba(30, 167, 255, 0.4);
}

.btn-secondary {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    color: var(--text-white);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    border-color: var(--primary);
}

.btn-block {
    width: 100%;
}

/* ============================================
   SECTION HEADERS
============================================ */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.section-badge {
    display: inline-block;
    padding: 6px 20px;
    border-radius: 50px;
    background: rgba(30, 167, 255, 0.12);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 16px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    color: var(--text-secondary);
    font-size: 1.05rem;
    max-width: 560px;
    margin: 0 auto;
}

/* ============================================
   HERO
============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 24px 60px;
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    border-radius: 50px;
    background: rgba(30, 167, 255, 0.1);
    border: 1px solid rgba(30, 167, 255, 0.15);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 20px;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.hero-stat {
    display: flex;
    flex-direction: column;
}

.hero-stat-number {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-white);
}

.hero-stat-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 400;
}

/* Hero Image */
.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 550px;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--bg-secondary);
    border: 1px solid var(--glass-border);
}

.hero-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 4/3;
}

.hero-image-glow {
    position: absolute;
    inset: -20%;
    background: radial-gradient(circle at center, rgba(30, 167, 255, 0.15), transparent 60%);
    pointer-events: none;
}

.hero-image-ring {
    position: absolute;
    inset: -12px;
    border-radius: var(--radius);
    border: 1px solid rgba(30, 167, 255, 0.1);
    pointer-events: none;
    animation: ringPulse 3s ease-in-out infinite;
}

@keyframes ringPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.03);
        opacity: 1;
    }
}

/* Floating Cards */
.floating-card {
    position: absolute;
    padding: 14px 20px;
    border-radius: 16px;
    background: rgba(15, 26, 45, 0.85);
    backdrop-filter: blur(18px);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 0.85rem;
    animation: floatCard 4s ease-in-out infinite;
}

.floating-card i {
    color: var(--primary);
    font-size: 1.1rem;
}

.floating-card-1 {
    top: -10px;
    right: -20px;
    animation-delay: 0s;
}

.floating-card-2 {
    bottom: -10px;
    left: -20px;
    animation-delay: 1.5s;
}

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Hero Scroll */
.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: var(--text-secondary);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 2px;
    animation: scrollBounce 2s ease-in-out infinite;
    z-index: 2;
}

.hero-scroll i {
    font-size: 1.2rem;
    color: var(--primary);
}

@keyframes scrollBounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(8px);
    }
}

/* ============================================
   SERVICES (SWIPER)
============================================ */
.services {
    padding: 80px 24px;
    position: relative;
}

.servicesSwiper {
    padding: 20px 0 60px;
    overflow: visible;
}

.servicesSwiper .swiper-slide {
    height: auto;
    transition: transform 0.3s ease;
}

.servicesSwiper .swiper-slide:hover {
    transform: translateY(-6px);
}

.service-card {
    height: 100%;
    padding: 32px 28px;
    border-radius: var(--radius);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
    border: 1px solid var(--glass-border);
    transition: var(--transition);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-card:hover {
    border-color: var(--primary);
    box-shadow: 0 0 40px rgba(30, 167, 255, 0.1);
}

.service-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(30, 167, 255, 0.1);
    margin-bottom: 20px;
    font-size: 1.8rem;
    color: var(--primary);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: rgba(30, 167, 255, 0.2);
    box-shadow: 0 0 30px rgba(30, 167, 255, 0.15);
}

.service-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition);
}

.service-link i {
    transition: var(--transition);
}

.service-link:hover i {
    transform: translateX(4px);
}

.servicesSwiper .swiper-button-next,
.servicesSwiper .swiper-button-prev {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    color: var(--text-white);
    transition: var(--transition);
}

.servicesSwiper .swiper-button-next:hover,
.servicesSwiper .swiper-button-prev:hover {
    background: rgba(30, 167, 255, 0.2);
    border-color: var(--primary);
}

.servicesSwiper .swiper-button-next:after,
.servicesSwiper .swiper-button-prev:after {
    font-size: 1.1rem;
}

.services-pagination .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.3);
    opacity: 1;
}

.services-pagination .swiper-pagination-bullet-active {
    background: var(--primary);
    width: 24px;
    border-radius: 4px;
}

/* ============================================
   BENEFITS
============================================ */
.benefits {
    padding: 80px 24px;
    background: var(--bg-secondary);
}

.benefits-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.benefit-card {
    padding: 32px 28px;
    border-radius: var(--radius);
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    text-align: center;
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary);
    box-shadow: 0 0 40px rgba(30, 167, 255, 0.08);
}

.benefit-icon {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(30, 167, 255, 0.15), rgba(46, 73, 201, 0.15));
    margin: 0 auto 18px;
    font-size: 1.6rem;
    color: var(--primary);
}

.benefit-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.benefit-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ============================================
   COUNTERS
============================================ */
.counters-section {
    padding: 60px 24px;
}

.counters-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.counter-card {
    text-align: center;
    padding: 32px 20px;
    border-radius: var(--radius);
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
}

.counter {
    display: block;
    font-size: 2.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.counter-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* ============================================
   PROCESS
============================================ */
.process {
    padding: 80px 24px;
    background: var(--bg-secondary);
}

.process-steps {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.process-step {
    text-align: center;
    flex: 1;
    max-width: 200px;
    position: relative;
}

.step-number {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.step-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(30, 167, 255, 0.15), rgba(46, 73, 201, 0.15));
    margin: 0 auto 12px;
    font-size: 1.3rem;
    color: var(--primary);
}

.process-step h4 {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 4px;
}

.process-step p {
    color: var(--text-secondary);
    font-size: 0.8rem;
    line-height: 1.5;
}

.process-line {
    flex: 0 0 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--primary-deep));
    position: relative;
}

.process-line::after {
    content: '';
    position: absolute;
    right: -4px;
    top: -4px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary);
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }
}

/* ============================================
   GALLERY
============================================ */
.gallery {
    padding: 80px 24px;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    border-radius: 50px;
    background: var(--glass-bg);
    backdrop-filter: blur(8px);
    border: 1px solid var(--glass-border);
    color: var(--text-secondary);
    font-family: var(--font);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.filter-btn i {
    color: var(--primary);
}

.filter-btn:hover {
    background: rgba(30, 167, 255, 0.1);
    border-color: var(--primary);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--primary), var(--primary-deep));
    border-color: transparent;
    color: var(--text-white);
}

.filter-btn.active i {
    color: var(--text-white);
}

.gallerySwiper {
    padding: 10px 0 50px;
}

.gallery-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    aspect-ratio: 16/10;
    cursor: pointer;
    background: var(--bg-secondary);
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-card:hover img {
    transform: scale(1.06);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(30, 167, 255, 0.75), rgba(46, 73, 201, 0.75));
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: var(--text-white);
    transform: translateY(20px);
    transition: var(--transition);
}

.gallery-card:hover .overlay-content {
    transform: translateY(0);
}

.overlay-content i {
    font-size: 2.2rem;
    display: block;
    margin-bottom: 8px;
}

.overlay-content span {
    font-weight: 600;
    font-size: 0.9rem;
}

/* Gallery Videos */
.gallery-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-card.video-card {
    position: relative;
}

.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(30, 167, 255, 0.9);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2;
    font-size: 1.8rem;
    color: var(--text-white);
    transition: var(--transition);
}

.video-play-button i {
    margin-left: 4px;
}

.gallerySwiper .swiper-button-next,
.gallerySwiper .swiper-button-prev {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    color: var(--text-white);
    transition: var(--transition);
}

.gallerySwiper .swiper-button-next:hover,
.gallerySwiper .swiper-button-prev:hover {
    background: rgba(30, 167, 255, 0.2);
    border-color: var(--primary);
}

.gallerySwiper .swiper-button-next:after,
.gallerySwiper .swiper-button-prev:after {
    font-size: 1rem;
}

.gallerySwiper .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.3);
}

.gallerySwiper .swiper-pagination-bullet-active {
    background: var(--primary);
}

.gallery-stats {
    text-align: center;
    margin-top: 20px;
}

.gallery-count {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    border-radius: 50px;
    background: var(--glass-bg);
    backdrop-filter: blur(8px);
    border: 1px solid var(--glass-border);
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.gallery-count i {
    color: var(--primary);
}

.no-images-message {
    text-align: center;
    padding: 60px 20px;
    border-radius: var(--radius);
    background: var(--glass-bg);
    border: 1px dashed var(--glass-border);
}

.no-images-message i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 16px;
}

.no-images-message p {
    color: var(--text-secondary);
}

.no-images-message small {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
}

/* ============================================
   BEFORE / AFTER
============================================ */
.before-after {
    padding: 80px 24px;
    background: var(--bg-secondary);
}

.ba-slider {
    max-width: 800px;
    margin: 0 auto;
}

.ba-container {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 16/10;
    background: var(--bg-dark);
}

.ba-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.ba-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ba-before {
    z-index: 1;
}

.ba-after {
    z-index: 2;
    width: 50%;
}

.ba-label {
    position: absolute;
    bottom: 16px;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-white);
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.ba-before .ba-label {
    left: 16px;
}

.ba-after .ba-label {
    right: 16px;
    background: rgba(30, 167, 255, 0.7);
}

.ba-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 0 30px rgba(30, 167, 255, 0.4);
    transition: var(--transition);
}

.ba-handle:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

/* ============================================
   TESTIMONIALS
============================================ */
.testimonials {
    padding: 80px 24px;
}

.testimonialsSwiper {
    padding: 20px 0 50px;
    max-width: 1100px;
    margin: 0 auto;
}

.testimonial-card {
    padding: 32px 28px;
    border-radius: var(--radius);
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.testimonial-card:hover {
    border-color: var(--primary);
}

.testimonial-stars {
    color: #FFD700;
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.testimonial-comment {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary);
}

.testimonial-author strong {
    display: block;
    font-weight: 700;
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.testimonials-pagination .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.3);
}

.testimonials-pagination .swiper-pagination-bullet-active {
    background: var(--primary);
}

/* ============================================
   FAQ
============================================ */
.faq {
    padding: 80px 24px;
    background: var(--bg-secondary);
}

.faq-container {
    max-width: 820px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--glass-border);
    padding: 4px 0;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 0;
    background: none;
    border: none;
    color: var(--text-white);
    font-family: var(--font);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    text-align: left;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question i {
    flex-shrink: 0;
    color: var(--primary);
    transition: var(--transition);
    font-size: 0.9rem;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
    opacity: 0;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.7;
    padding-bottom: 20px;
    font-size: 0.95rem;
}

/* ============================================
   COVERAGE
============================================ */
.coverage {
    padding: 80px 24px;
}

.coverage-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.coverage-map {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--glass-border);
}

.coverage-map img {
    width: 100%;
    display: block;
}

.map-pin {
    position: absolute;
    color: var(--primary);
    font-size: 1.8rem;
    animation: pinPulse 2s ease-in-out infinite;
}

.pin-1 {
    top: 30%;
    left: 25%;
    animation-delay: 0s;
}

.pin-2 {
    top: 45%;
    left: 55%;
    animation-delay: 0.7s;
}

.pin-3 {
    top: 60%;
    left: 40%;
    animation-delay: 1.4s;
}

@keyframes pinPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.6;
    }
}

.coverage-info h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.coverage-info ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 24px;
}

.coverage-info ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.coverage-info ul li i {
    color: var(--primary);
}

/* ============================================
   CONTACT
============================================ */
.contact {
    padding: 80px 24px;
    background: var(--bg-secondary);
}

.contact-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: start;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 36px 32px;
    border-radius: var(--radius);
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group label i {
    color: var(--primary);
    font-size: 0.8rem;
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: var(--text-white);
    font-family: var(--font);
    font-size: 0.95rem;
    transition: var(--transition);
    outline: none;
    width: 100%;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(30, 167, 255, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 24px;
    border-radius: 18px;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.contact-card:hover {
    border-color: var(--primary);
}

.contact-card i {
    font-size: 1.3rem;
    color: var(--primary);
    width: 40px;
    text-align: center;
}

.contact-card strong {
    display: block;
    font-weight: 600;
    font-size: 0.85rem;
}

.contact-card span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ============================================
   FOOTER
============================================ */
.footer {
    padding: 60px 24px 30px;
    background: var(--bg-secondary);
    border-top: 1px solid var(--glass-border);
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--glass-border);
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 320px;
    margin: 16px 0 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-secondary);
    transition: var(--transition);
}

.footer-social a:hover {
    background: rgba(30, 167, 255, 0.15);
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-3px);
}

.footer-links h4 {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 16px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links ul a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links ul a:hover {
    color: var(--primary);
}

.footer-links ul a i {
    width: 18px;
    color: var(--primary);
}

.footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.footer-bottom div {
    display: flex;
    gap: 24px;
}

.footer-bottom a:hover {
    color: var(--primary);
}

/* ============================================
   BOTONES FLOTANTES
============================================ */
.float-btn {
    position: fixed;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    z-index: 9999;
    transition: var(--transition);
    box-shadow: 0 0 30px rgba(30, 167, 255, 0.25);
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
}

.float-btn i {
    font-size: 1.6rem;
}

.float-btn:hover {
    transform: scale(1.08);
}

.float-whatsapp {
    bottom: 24px;
    right: 24px;
    background: #25D366;
    animation: floatGlow 2.5s ease-in-out infinite;
}

.float-phone {
    bottom: 90px;
    right: 24px;
    background: linear-gradient(135deg, var(--primary), var(--primary-deep));
    animation-delay: 0.5s;
}

.float-instagram {
    bottom: 156px;
    right: 24px;
    background: linear-gradient(135deg, #833AB4, #E4405F);
    animation-delay: 1s;
}

@keyframes floatGlow {
    0%, 100% {
        box-shadow: 0 0 30px rgba(30, 167, 255, 0.25);
    }
    50% {
        box-shadow: 0 0 50px rgba(30, 167, 255, 0.5);
    }
}

/* ============================================
   LIGHTBOX
============================================ */
.lightbox {
    display: none;
    position: fixed;
    z-index: 10000;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(20px);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    cursor: pointer;
}

.lightbox-content {
    max-width: 85%;
    max-height: 85%;
    border-radius: 18px;
    box-shadow: 0 0 60px rgba(30, 167, 255, 0.15);
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.85);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-caption {
    margin-top: 20px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
}

.close-lightbox {
    position: absolute;
    top: 30px;
    right: 40px;
    color: var(--text-white);
    font-size: 2.8rem;
    font-weight: 300;
    transition: var(--transition);
    cursor: pointer;
}

.close-lightbox:hover {
    color: var(--primary);
    transform: rotate(90deg);
}

/* ============================================
   VIDEO MODAL
============================================ */
.video-modal {
    display: none;
    position: fixed;
    z-index: 10001;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(20px);
    align-items: center;
    justify-content: center;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 1000px;
    border-radius: 18px;
    overflow: hidden;
}

#modalVideo {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 0 60px rgba(30, 167, 255, 0.15);
}

.close-video {
    position: absolute;
    top: -38px;
    right: 0;
    color: var(--text-white);
    font-size: 2.4rem;
    font-weight: 300;
    cursor: pointer;
    transition: var(--transition);
}

.close-video:hover {
    color: var(--primary);
    transform: rotate(90deg);
}

/* ============================================
   RESPONSIVE
============================================ */

/* 1024px - Tablet Landscape */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-description {
        margin: 0 auto 32px;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-image-wrapper {
        max-width: 450px;
        margin: 0 auto;
    }

    .floating-card-1 {
        top: -10px;
        right: 10px;
    }

    .floating-card-2 {
        bottom: -10px;
        left: 10px;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .counters-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps {
        flex-wrap: wrap;
        gap: 20px;
    }

    .process-line {
        display: none;
    }

    .coverage-container {
        grid-template-columns: 1fr;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .footer-brand p {
        max-width: 100%;
    }
}

/* 768px - Tablet Portrait */
@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--bg-dark);
        border-left: 1px solid var(--glass-border);
        padding: 80px 32px 40px;
        transition: var(--transition);
        overflow-y: auto;
    }

    .nav.open {
        right: 0;
    }

    .nav ul {
        flex-direction: column;
        gap: 20px;
    }

    .nav a {
        font-size: 1.1rem;
    }

    .menu-toggle {
        display: flex;
    }

    .header-actions .btn-sm {
        display: none;
    }

    .hero h1 {
        font-size: 2.4rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .counters-grid {
        grid-template-columns: 1fr 1fr;
    }

    .counters-grid .counter-card:last-child {
        grid-column: 1 / -1;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .footer-bottom div {
        justify-content: center;
        flex-wrap: wrap;
    }

    .float-btn {
        width: 48px;
        height: 48px;
    }

    .float-btn i {
        font-size: 1.3rem;
    }

    .float-whatsapp {
        bottom: 20px;
        right: 20px;
    }

    .float-phone {
        bottom: 80px;
        right: 20px;
    }

    .float-instagram {
        bottom: 140px;
        right: 20px;
    }

    .contact-form {
        grid-template-columns: 1fr;
        padding: 24px 20px;
    }

    .testimonial-card {
        padding: 24px 20px;
    }

    .ba-handle {
        width: 40px;
        height: 40px;
        font-size: 0.8rem;
    }

    .floating-card {
        font-size: 0.7rem;
        padding: 10px 14px;
    }

    .floating-card i {
        font-size: 0.9rem;
    }

    .floating-card-1 {
        top: 0;
        right: 0;
    }

    .floating-card-2 {
        bottom: 0;
        left: 0;
    }

    .gallery-filters {
        gap: 8px;
    }

    .filter-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
}

/* 480px - Mobile */
@media (max-width: 480px) {
    .header-container {
        padding: 0 16px;
    }

    .hero {
        padding: 80px 16px 40px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-actions .btn {
        width: 100%;
        max-width: 300px;
    }

    .hero-stats {
        gap: 24px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-stat-number {
        font-size: 1.3rem;
    }

    .hero-image-wrapper {
        max-width: 100%;
    }

    .counters-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .counter {
        font-size: 2rem;
    }

    .counter-card {
        padding: 20px 16px;
    }

    .service-card {
        padding: 24px 20px;
    }

    .benefit-card {
        padding: 24px 20px;
    }

    .servicesSwiper .swiper-button-next,
    .servicesSwiper .swiper-button-prev {
        display: none;
    }

    .gallerySwiper .swiper-button-next,
    .gallerySwiper .swiper-button-prev {
        display: none;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .section-description {
        font-size: 0.9rem;
    }

    .coverage-info ul {
        grid-template-columns: 1fr;
    }

    .close-lightbox {
        top: 20px;
        right: 20px;
        font-size: 2rem;
    }

    .close-video {
        top: -30px;
        font-size: 1.8rem;
    }

    .video-modal-content {
        width: 95%;
    }

    .lightbox-content {
        max-width: 95%;
    }

    .services {
        padding: 60px 16px;
    }

    .benefits {
        padding: 60px 16px;
    }

    .process {
        padding: 60px 16px;
    }

    .gallery {
        padding: 60px 16px;
    }

    .before-after {
        padding: 60px 16px;
    }

    .testimonials {
        padding: 60px 16px;
    }

    .faq {
        padding: 60px 16px;
    }

    .coverage {
        padding: 60px 16px;
    }

    .contact {
        padding: 60px 16px;
    }

    .footer {
        padding: 40px 16px 20px;
    }
}

/* 320px - Small Mobile */
@media (max-width: 320px) {
    .hero h1 {
        font-size: 1.6rem;
    }

    .counters-grid {
        grid-template-columns: 1fr;
    }

    .counter-card {
        padding: 16px;
    }

    .process-step {
        max-width: 100%;
    }

    .filter-btn {
        padding: 6px 12px;
        font-size: 0.7rem;
    }

    .filter-btn i {
        font-size: 0.7rem;
    }
}

/* ============================================
   UTILITY: VISIBILITY
============================================ */
.hidden {
    display: none !important;
}

.visible {
    display: block !important;
}

/* ============================================
   ANIMATION: RIPPLE (JS)
============================================ */
.ripple-effect {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: scale(0);
    animation: rippleAnim 0.6s ease-out forwards;
    pointer-events: none;
}

@keyframes rippleAnim {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* ============================================
   ANIMACIÓN PARA PARTÍCULAS (JS)
============================================ */
@keyframes particleFloat {
    0% {
        transform: translateY(0) scale(0.5);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-120vh) scale(1.2);
        opacity: 0;
    }
}

/* ============================================
   PREVENT FLOATING BUTTONS MOVEMENT
============================================ */
.float-whatsapp,
.float-phone,
.float-instagram {
    will-change: auto;
}

.float-whatsapp:active,
.float-phone:active,
.float-instagram:active {
    transform: none !important;
}