/* Variables CSS */
:root {
    --primary: #8B4A9C;
    --primary-light: #A569BD;
    --primary-dark: #6B2A7C;
    --accent: #F39C12;
    --accent-light: #F7DC6F;
    --accent-dark: #D68910;
    --background: #1A0B2E;
    --surface: #2D1B3D;
    --surface-light: #3E2857;
    --surface-lighter: #4A3268;
    --text-primary: #FFFFFF;
    --text-secondary: #D5A6E6;
    --text-muted: #B39DDB;
    --success: #27AE60;
    --gradient-primary: linear-gradient(135deg, #8B4A9C 0%, #A569BD 50%, #F39C12 100%);
    --gradient-secondary: linear-gradient(135deg, #2D1B3D 0%, #3E2857 100%);
    --gradient-accent: linear-gradient(135deg, #F39C12 0%, #F7DC6F 100%);
    --shadow-soft: 0 8px 32px rgba(139, 74, 156, 0.15);
    --shadow-glow: 0 0 30px rgba(243, 156, 18, 0.3);
    --shadow-strong: 0 12px 48px rgba(139, 74, 156, 0.25);
    --border-radius: 20px;
    --border-radius-small: 12px;
    --border-radius-large: 32px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
}

/* Reset y Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    /* Desktop - 80px es correcto para desktop */
}

/* Smooth scroll personalizado con easing */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: auto;
    }
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--background);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    font-size: 16px;
    width: 100%;
    max-width: 100vw;
}

/* Prevenir scroll horizontal global */
html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

* {
    box-sizing: border-box;
    max-width: 100%;
}

/* Prevenir scroll horizontal estricto */
*, *::before, *::after {
    box-sizing: border-box;
}

img, video, iframe {
    max-width: 100%;
    height: auto;
}

/* Evitar desbordamiento de texto */
h1, h2, h3, h4, h5, h6, p, span, a, div {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

/* Control absoluto de scroll horizontal */
html, body {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100vw !important;
}

/* Prevenir transformaciones que causen overflow */
* {
    max-width: 100% !important;
}

/* Botón especial para masaje erótico */
.hero-extra-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    margin-top: 20px;
}

.btn-special {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 50%, #8e44ad 100%);
    color: white;
    border: none;
    padding: 18px 35px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 
        0 8px 25px rgba(231, 76, 60, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: special-glow 3s ease-in-out infinite alternate;
}

.btn-special::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn-special:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 15px 40px rgba(231, 76, 60, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #c0392b 0%, #e74c3c 50%, #9b59b6 100%);
}

.btn-special:hover::before {
    left: 100%;
}

.btn-special i {
    font-size: 1.3rem;
    animation: fire-flicker 1.5s ease-in-out infinite alternate;
}

@keyframes special-glow {
    0% { 
        box-shadow: 
            0 8px 25px rgba(231, 76, 60, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }
    100% { 
        box-shadow: 
            0 12px 35px rgba(231, 76, 60, 0.6),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }
}

@keyframes fire-flicker {
    0% { 
        transform: scale(1) rotate(0deg);
        color: #ff6b6b;
    }
    100% { 
        transform: scale(1.1) rotate(2deg);
        color: #ff4757;
    }
}

/* ELIMINADO: contain rompe position fixed
*:not(.custom-cursor):not(.cursor-trail):not(.particle):not(.particle-enhanced) {
    contain: layout style !important;
}
*/

/* Background Effects */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 80%, rgba(139, 74, 156, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(243, 156, 18, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(165, 105, 189, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
    animation: backgroundPulse 8s ease-in-out infinite;
}

/* Ondas de energía animadas */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 50% 50%, rgba(139, 74, 156, 0.03) 0%, transparent 70%),
        radial-gradient(circle at 25% 25%, rgba(243, 156, 18, 0.02) 0%, transparent 60%);
    pointer-events: none;
    z-index: -1;
    animation: energyWaves 12s linear infinite;
}

@keyframes backgroundPulse {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.8;
    }
}

@keyframes energyWaves {
    0% {
        transform: scale(1) rotate(0deg);
    }

    50% {
        transform: scale(1.1) rotate(180deg);
    }

    100% {
        transform: scale(1) rotate(360deg);
    }
}

/* Partículas flotantes mejoradas - DESACTIVADAS TEMPORALMENTE */
.floating-particles {
    display: none !important;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    max-width: 100vw;
    max-height: 100vh;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.particle-enhanced {
    display: none !important;
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0.6;
    animation: floatUp 15s linear infinite;
}

.particle-enhanced:nth-child(odd) {
    background: var(--primary-light);
    animation-duration: 20s;
}

.particle-enhanced:nth-child(3n) {
    width: 6px;
    height: 6px;
    background: rgba(243, 156, 18, 0.8);
    animation-duration: 25s;
}

@keyframes floatUp {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0.6;
    }

    90% {
        opacity: 0.6;
    }

    100% {
        transform: translateY(-50px) rotate(360deg);
        opacity: 0;
    }
}

/* Animaciones de scroll reveal */
.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.scroll-reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

.scroll-reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

.scroll-reveal-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-reveal-scale.revealed {
    opacity: 1;
    transform: scale(1);
}

/* Delays para animaciones secuenciales */
.scroll-reveal.delay-1 {
    transition-delay: 0.1s;
}

.scroll-reveal.delay-2 {
    transition-delay: 0.2s;
}

.scroll-reveal.delay-3 {
    transition-delay: 0.3s;
}

.scroll-reveal.delay-4 {
    transition-delay: 0.4s;
}

.scroll-reveal.delay-5 {
    transition-delay: 0.5s;
}

.scroll-reveal.delay-6 {
    transition-delay: 0.6s;
}

/* Cursor personalizado optimizado */
body {
    cursor: none;
}

.custom-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    background: var(--accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transition: none;
    box-shadow:
        0 0 20px rgba(243, 156, 18, 0.8),
        0 0 40px rgba(243, 156, 18, 0.4),
        inset 0 0 10px rgba(255, 255, 255, 0.3);
    will-change: transform;
    opacity: 1;
    mix-blend-mode: difference; /* Para que se vea en cualquier fondo */
}

.custom-cursor::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    width: 40px;
    height: 40px;
    border: 2px solid rgba(243, 156, 18, 0.4);
    border-radius: 50%;
    transition: all 0.2s ease;
    animation: cursorRing 2s ease-in-out infinite;
}

@keyframes cursorRing {
    0%, 100% {
        transform: scale(1);
        opacity: 0.4;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.custom-cursor.hover {
    transform: scale(1.3);
    background: var(--primary-light);
    box-shadow: 0 0 25px rgba(139, 74, 156, 0.6);
}

.custom-cursor.hover::before {
    transform: scale(1.1);
    border-color: rgba(139, 74, 156, 0.4);
}

.cursor-trail {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9997;
    opacity: 0.6;
    transition: none;
    will-change: transform;
    box-shadow: 0 0 10px rgba(243, 156, 18, 0.5);
}

/* Scrollbar personalizado elegante */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--background);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 10px;
    border: 2px solid var(--background);
    box-shadow: inset 0 0 10px rgba(243, 156, 18, 0.3);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--primary-light) 0%, var(--accent-light) 100%);
    box-shadow:
        inset 0 0 10px rgba(243, 156, 18, 0.5),
        0 0 20px rgba(139, 74, 156, 0.3);
}

::-webkit-scrollbar-thumb:active {
    background: linear-gradient(180deg, var(--primary-dark) 0%, var(--accent-dark) 100%);
}

/* Firefox scrollbar */
html {
    scrollbar-width: thin;
    scrollbar-color: var(--primary) var(--background);
}

/* Indicador de progreso de scroll mejorado */
#scroll-progress {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 0% !important;
    height: 4px !important;
    background: linear-gradient(90deg, #8B4A9C 0%, #A569BD 50%, #F39C12 100%) !important;
    z-index: 10000 !important;
    transition: width 0.1s ease !important;
    box-shadow: 0 0 10px rgba(243, 156, 18, 0.5) !important;
}

/* Fallback para cuando el cursor personalizado no funciona */
body.no-custom-cursor {
    cursor: auto !important;
}

body.no-custom-cursor .custom-cursor,
body.no-custom-cursor .cursor-trail {
    display: none !important;
}

/* Optimizaciones para móviles */
.mobile-optimized .custom-cursor,
.mobile-optimized .cursor-trail,
.mobile-optimized .floating-particles,
.mobile-optimized .particle-enhanced {
    display: none !important;
}

.mobile-optimized body::before,
.mobile-optimized body::after {
    animation: none !important;
}

.mobile-optimized .btn-primary::after,
.mobile-optimized .btn-secondary::before {
    display: none !important;
}

/* Lazy loading placeholder */
.lazy-image {
    filter: blur(5px);
    transition: filter 0.3s;
}

.lazy-image.loaded {
    filter: blur(0);
}

/* Prevenir scroll horizontal en móviles */
@media (max-width: 768px) {

    /* Header optimizado para móvil */
    html {
        scroll-padding-top: 120px;
    }

    .header {
        height: auto;
        min-height: 60px;
    }

    .header-content {
        padding: 0;
        min-height: 60px;
    }

    .logo {
        font-size: 0.9rem;
        gap: 8px;
    }

    .logo img {
        width: 35px;
        height: 35px;
    }

    .logo span {
        display: none;
        /* Ocultar texto en móvil para más espacio */
    }

    /* Hero section con padding ajustado */
    .hero {
        padding: 140px 0 40px !important; /* Más padding para móvil también */
        min-height: 90vh;
    }

    /* Todas las secciones con padding ajustado */
    .experience,
    .services,
    .benefits,
    .faq,
    .contact {
        padding: 60px 0 40px;
        /* Reducido de 100px */
    }

    .container {
        width: 95%;
        padding: 0 15px;
        /* Aumentado de 10px para mejor legibilidad */
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-primary-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 16px 20px;
        font-size: 0.95rem;
        max-width: 100%;
        word-wrap: break-word;
    }

    .services-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .values-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .hero-features {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .feature-item {
        flex: 1 1 auto;
        min-width: 0;
        font-size: 0.85rem;
        padding: 10px 12px;
        max-width: 100%;
    }

    /* FAQ spacing mejorado */
    .faq-item {
        margin-bottom: 20px;
        /* Más espacio entre preguntas */
    }

    .faq-question {
        padding: 18px 20px;
        /* Más padding interno */
        font-size: 1rem;
        line-height: 1.4;
    }

    .faq-answer {
        padding: 20px;
        /* Más espacio interno */
        margin-top: 10px;
        /* Separación del botón */
    }

    /* Títulos de sección más pequeños en móvil */
    .section-header h2 {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
        margin-bottom: 20px;
        padding: 0 10px;
        /* Padding lateral para evitar cortes */
    }

    .section-subtitle {
        font-size: 1rem;
        padding: 0 10px;
    }

    /* Service cards optimizadas */
    .service-card {
        padding: 25px 20px;
        margin-bottom: 20px;
    }

    .service-card h3 {
        font-size: 1.3rem;
        line-height: 1.3;
        margin-bottom: 15px;
    }

    /* Contact cards en stack */
    .contact-content {
        flex-direction: column;
        gap: 30px;
    }

    .contact-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* ELIMINAR - SERÁ REDEFINIDO AL FINAL */

    .whatsapp-text,
    .telegram-text {
        display: none;
        /* Ocultar texto en móvil */
    }

    /* Prevenir scroll horizontal adicional */
    .particle,
    .particle-enhanced,
    .floating-particles {
        max-width: 100vw;
        overflow: hidden;
    }

    /* Asegurar que elementos fixed no causen overflow */
    .custom-cursor,
    .cursor-trail {
        max-width: 20px;
        max-height: 20px;
    }

    /* Hero title responsive */
    .hero-title {
        font-size: clamp(2rem, 8vw, 3.5rem);
        line-height: 1.1;
        word-break: break-word;
        max-width: 100%;
        overflow-wrap: break-word;
    }

    /* Hero content sin overflow */
    .hero-content {
        max-width: 100%;
        overflow: hidden;
    }

    .hero-text {
        max-width: 100%;
        overflow: hidden;
    }

    .hero-subtitle {
        max-width: 100%;
        word-break: break-word;
    }

    /* Botones móvil sin overflow */
    .hero-primary-buttons {
        max-width: 100%;
        overflow: hidden;
    }

    .hero-primary-buttons a {
        white-space: normal;
        overflow: hidden;
        word-wrap: break-word;
        max-width: 100%;
    }

    /* Menu móvil optimizado */
    .nav.open {
        position: fixed;
        top: 60px; /* Ajustado para header más pequeño */
        left: 0;
        width: 100vw;
        height: calc(100vh - 60px);
        background: rgba(26, 11, 46, 0.98);
        backdrop-filter: blur(20px);
        padding: 20px;
        z-index: 999;
        overflow-y: auto;
        overflow-x: hidden;
        max-width: 100vw;
    }

    .nav.open ul {
        flex-direction: column;
        gap: 15px;
        height: 100%;
        overflow-y: auto;
    }

    .nav.open ul li a {
        padding: 15px 20px;
        font-size: 1.1rem;
        border-radius: 12px;
        background: rgba(139, 74, 156, 0.1);
        border: 1px solid rgba(139, 74, 156, 0.2);
    }

    /* Menu toggle mejorado */
    .menu-toggle {
        display: flex;
        z-index: 1001;
        width: 40px;
        height: 40px;
        padding: 0;
        align-items: center;
        justify-content: center;
    }
    
    .menu-toggle span {
        width: 18px;
        height: 2px;
    }

    /* Ocultar navegación desktop en móvil */
    .nav:not(.open) {
        display: none;
    }
}

/* Ocultar cursor en dispositivos táctiles */
@media (hover: none) and (pointer: coarse) {
    body {
        cursor: auto !important;
    }

    .custom-cursor,
    .cursor-trail,
    .floating-particles,
    .particle-enhanced {
        display: none !important;
    }

    /* Reducir animaciones en móvil */
    .btn-primary::after,
    .btn-secondary::before,
    body::before,
    body::after {
        animation: none !important;
    }

    /* Simplificar hover effects */
    .btn-primary:hover,
    .btn-secondary:hover {
        transform: none !important;
    }
}

/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Loading Screen */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--background);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    visibility: visible;
    transition: var(--transition);
}

#loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    text-align: center;
    color: var(--text-secondary);
}

.loader-circle {
    width: 60px;
    height: 60px;
    border: 3px solid var(--surface-light);
    border-top: 3px solid var(--accent);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Header - Sistema limpio y funcional */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(26, 11, 46, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(139, 74, 156, 0.2);
    z-index: 1000;
    transition: var(--transition);
    height: auto;
    padding: 15px 0; /* Padding normal para desktop */
}

.header.scrolled {
    background: rgba(26, 11, 46, 0.98);
    box-shadow: var(--shadow-soft);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-primary);
    text-decoration: none;
}

.logo img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent);
    transition: var(--transition);
}

.logo:hover img {
    transform: scale(1.1);
    box-shadow: var(--shadow-glow);
}

/* Navigation */
.nav ul {
    display: flex;
    list-style: none;
    gap: 5px;
}

.nav ul li a {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    border-radius: var(--border-radius-small);
    transition: var(--transition);
    overflow: hidden;
}

.nav ul li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    transition: var(--transition);
    z-index: -1;
}

.nav ul li a:hover {
    color: var(--text-primary);
    transform: translateY(-2px);
}

.nav ul li a:hover::before {
    left: 0;
}

.nav ul li a i {
    font-size: 0.8rem;
}

/* Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    border-radius: var(--border-radius-small);
    transition: var(--transition);
    position: relative;
}

.menu-toggle:hover {
    background: var(--surface-light);
}

.menu-toggle span {
    width: 20px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(0, 5px);
}

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

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(0, -5px);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 60px; /* Más padding para que no tape el header */
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0.6;
    animation: float var(--duration, 15s) infinite linear;
    animation-delay: var(--delay, 0s);
}

.particle:nth-child(1) {
    top: 20%;
    left: 10%;
}

.particle:nth-child(2) {
    top: 60%;
    right: 15%;
}

.particle:nth-child(3) {
    bottom: 20%;
    left: 20%;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.6;
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 1;
    }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-text {
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
}

.title-line {
    display: block;
    color: var(--text-primary);
}

.title-line.accent {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-features {
    display: flex;
    gap: 24px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: var(--surface);
    border-radius: var(--border-radius-small);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    border: 1px solid rgba(139, 74, 156, 0.2);
    transition: var(--transition);
}

.feature-item:hover {
    background: var(--surface-light);
    border-color: var(--accent);
    transform: translateY(-2px);
}

.feature-item i {
    color: var(--accent);
    font-size: 1rem;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.hero-primary-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-contact {
    min-width: 200px;
    justify-content: center;
}

.hero-contact.telegram {
    background: var(--gradient-secondary);
    border: 1px solid #0088cc;
}

.hero-contact.telegram:hover {
    background: #0088cc;
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 136, 204, 0.4);
}

.hero-image {
    animation: fadeInRight 1s ease-out 0.3s both;
}

.image-container {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-strong);
}

.image-container img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: var(--transition);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 74, 156, 0.2) 0%, rgba(243, 156, 18, 0.1) 100%);
    opacity: 0;
    transition: var(--transition);
}

.image-container:hover .image-overlay {
    opacity: 1;
}

.image-container:hover img {
    transform: scale(1.05);
}

/* Buttons con efectos morphing */
.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    border-radius: var(--border-radius-large);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: var(--gradient-accent);
    color: var(--background);
    box-shadow: var(--shadow-soft);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: -1;
}

.btn-primary:hover::before {
    left: 0;
}

.btn-primary:hover::after {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    color: var(--text-primary);
    transform: translateY(-5px) scale(1.05);
    box-shadow:
        var(--shadow-glow),
        0 20px 40px rgba(139, 74, 156, 0.3);
    border-radius: 25px;
}

.btn-secondary {
    background: transparent;
    color: var(--text-secondary);
    border: 2px solid var(--surface-light);
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--gradient-primary);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.btn-secondary:hover::before {
    width: 100%;
}

.btn-secondary:hover {
    color: var(--text-primary);
    border-color: var(--accent);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 30px rgba(243, 156, 18, 0.2);
    border-radius: 25px;
}

.btn-primary.large {
    padding: 20px 40px;
    font-size: 1.1rem;
}

/* Efecto de pulsación en botones */
@keyframes buttonPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(243, 156, 18, 0.4);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(243, 156, 18, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(243, 156, 18, 0);
    }
}

.btn-primary:active {
    animation: buttonPulse 0.6s ease-out;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Experience Section */
.experience {
    padding: 100px 0;
    background: var(--surface);
}

.experience-content {
    max-width: 900px;
    margin: 0 auto;
}

.highlight-box {
    background: var(--gradient-secondary);
    padding: 40px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(139, 74, 156, 0.3);
    margin-bottom: 50px;
    position: relative;
}

.highlight-box i {
    color: var(--accent);
    font-size: 2rem;
    margin-bottom: 20px;
}

.highlight-box p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.highlight-box strong {
    color: var(--accent);
    font-size: 1.2rem;
}

/* Experience CTA */
.experience-cta {
    text-align: center;
    margin: 40px 0 50px 0;
    padding: 20px 0;
}

/* CTA Banner Section */
.cta-banner {
    padding: 50px 0;
    background: linear-gradient(135deg, rgba(139, 74, 156, 0.1) 0%, rgba(243, 156, 18, 0.1) 100%);
    border-top: 1px solid rgba(139, 74, 156, 0.2);
    border-bottom: 1px solid rgba(139, 74, 156, 0.2);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(243, 156, 18, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.cta-banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    position: relative;
    z-index: 2;
}

.cta-banner-text h3 {
    color: var(--accent);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 8px;
    font-family: 'Playfair Display', serif;
}

.cta-banner-text p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin: 0;
}

.btn-cta-special {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 50%, #8e44ad 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 8px 25px rgba(231, 76, 60, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-cta-special::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.btn-cta-special:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 15px 40px rgba(231, 76, 60, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #c0392b 0%, #e74c3c 50%, #9b59b6 100%);
}

.btn-cta-special:hover::before {
    left: 100%;
}

.btn-cta-special .btn-icon {
    font-size: 1.3rem;
    animation: pulse-icon 2s ease-in-out infinite;
}

.btn-cta-special .btn-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.btn-cta-special:hover .btn-arrow {
    transform: translateX(5px);
}

@keyframes pulse-icon {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* CTA Banner Responsive */
@media (max-width: 768px) {
    .cta-banner {
        padding: 40px 0;
    }
    
    .cta-banner-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .cta-banner-text h3 {
        font-size: 1.5rem;
    }
    
    .cta-banner-text p {
        font-size: 1rem;
    }
    
    .btn-cta-special {
        padding: 18px 36px;
        font-size: 1rem;
    }
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.value-item {
    background: var(--surface-light);
    padding: 30px 24px;
    border-radius: var(--border-radius);
    text-align: center;
    border: 1px solid rgba(139, 74, 156, 0.2);
    transition: var(--transition);
}

.value-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: var(--shadow-soft);
}

.value-item i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 16px;
    display: block;
}

.value-item h4 {
    color: var(--text-primary);
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.value-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: var(--background);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--surface);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(139, 74, 156, 0.2);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0.05;
    transition: var(--transition);
    z-index: 0;
}

.service-card:hover::before {
    left: 0;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: var(--shadow-strong);
}

.service-card.featured {
    border-color: var(--accent);
    background: var(--surface-light);
}

.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-accent);
    color: var(--background);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.service-icon i {
    font-size: 2rem;
    color: var(--text-primary);
}

.service-card h3 {
    color: var(--text-primary);
    font-size: 1.4rem;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
    z-index: 1;
}

.service-features span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.service-features i {
    color: var(--accent);
    font-size: 0.8rem;
}

/* Benefits Section */
.benefits {
    padding: 100px 0;
    background: var(--surface);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.benefit-item {
    background: var(--surface-light);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    border: 1px solid rgba(139, 74, 156, 0.2);
    transition: var(--transition);
}

.benefit-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: var(--shadow-soft);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.benefit-icon i {
    font-size: 1.8rem;
    color: var(--background);
}

.benefit-item h4 {
    color: var(--text-primary);
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.benefit-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: var(--background);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    background: var(--surface);
    border-radius: var(--border-radius);
    border: 1px solid rgba(139, 74, 156, 0.2);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--accent);
}

.faq-question {
    width: 100%;
    padding: 24px 30px;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--surface-light);
}

.faq-question i {
    color: var(--accent);
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}

.faq-item.active .faq-answer {
    opacity: 1;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease 0.1s;
}

.faq-answer p {
    padding: 0 30px 24px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--surface);
}

.contact-content {
    max-width: 900px;
    margin: 0 auto;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.contact-card {
    background: var(--surface-light);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    border: 1px solid rgba(139, 74, 156, 0.2);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: var(--shadow-soft);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-icon i {
    font-size: 1.5rem;
    color: var(--text-primary);
}

.contact-card h4 {
    color: var(--text-primary);
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.contact-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.contact-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
}

.contact-link:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.contact-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
}

/* Desktop Contact CTA */
@media (min-width: 769px) {
    .contact-cta {
        flex-direction: row;
        justify-content: center;
        gap: 20px;
    }

    .hero-primary-buttons {
        flex-direction: row;
        gap: 20px;
    }

    .hero-contact {
        min-width: 220px;
        max-width: none;
    }
}

/* Footer */
.footer {
    background: var(--background);
    padding: 50px 0 30px;
    border-top: 1px solid rgba(139, 74, 156, 0.2);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-primary);
    font-weight: 600;
}

.footer-logo img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--accent);
}

.footer-links a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-light);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(139, 74, 156, 0.1);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.footer-disclaimer {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* ELIMINAR - SERÁ REDEFINIDO AL FINAL */

.whatsapp-float:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.4);
}

.whatsapp-float i {
    font-size: 1.5rem;
}

.whatsapp-text {
    font-size: 0.9rem;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* ELIMINAR - SERÁ REDEFINIDO AL FINAL */

.telegram-float:hover {
    background: #006bb3;
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 136, 204, 0.4);
}

.telegram-float i {
    font-size: 1.5rem;
}

.telegram-text {
    font-size: 0.9rem;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: var(--gradient-primary);
    color: var(--text-primary);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-soft);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

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

/* Responsive Design */
@media (max-width: 768px) {
    html {
        scroll-padding-top: 120px;
    }

    .container {
        width: 95%;
        padding: 0 15px;
    }

    /* Header Mobile */
    .nav {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(26, 11, 46, 0.98);
        backdrop-filter: blur(20px);
        transform: translateX(-100%);
        transition: var(--transition);
        z-index: 999;
    }

    .nav.open {
        transform: translateX(0);
    }

    .nav ul {
        flex-direction: column;
        padding: 20px;
        gap: 0;
    }

    .nav ul li a {
        justify-content: flex-start;
        padding: 16px 20px;
        border-radius: 0;
        border-bottom: 1px solid rgba(139, 74, 156, 0.2);
    }

    .menu-toggle {
        display: flex;
        z-index: 1001;
    }

    /* Hero Mobile */
    .hero {
        padding: 140px 0 40px !important; /* Más padding para móvil también */
        min-height: 90vh;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

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

    .hero-features {
        justify-content: center;
    }

    .hero-cta {
        justify-content: center;
    }

    .image-container img {
        height: 300px;
    }

    /* Sections Mobile */
    .services, .benefits, .experience, .contact, .faq {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    /* Services Mobile */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card {
        padding: 30px 20px;
    }

    /* Benefits Mobile */
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Values Mobile */
    .values-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .value-item {
        padding: 20px;
    }

    /* Contact Mobile */
    .contact-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Footer Mobile */
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    /* Buttons Mobile */
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .hero-primary-buttons {
        flex-direction: column;
        width: 100%;
        align-items: center;
    }

    .hero-contact {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    /* Botones mobile ya definidos arriba - sin duplicar */

    .back-to-top {
        bottom: 90px;
        left: 20px;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .feature-item {
        padding: 8px 12px;
        font-size: 0.8rem;
    }

    .service-card, .benefit-item, .value-item {
        padding: 20px 15px;
    }

    .highlight-box {
        padding: 25px 20px;
    }

    .faq-question {
        padding: 20px;
        font-size: 1rem;
    }

    .faq-answer p {
        padding: 0 20px 20px;
    }
}

/* =================================================================== */
/* BOTONES FLOTANTES - VERSIÓN FINAL QUE FUNCIONA */
/* =================================================================== */

/* WhatsApp Button */
#whatsapp-float {
    position: fixed !important;
    bottom: 30px !important;
    right: 30px !important;
    width: 60px !important;
    height: 60px !important;
    background: #25D366 !important;
    color: white !important;
    border-radius: 50px !important;
    text-decoration: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 1001 !important; /* Debajo del loading (9999) */
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4) !important;
    transition: transform 0.3s ease !important;
    opacity: 0 !important; /* Oculto inicialmente */
}

#whatsapp-float:hover {
    transform: translateY(-3px) !important;
    background: #128C7E !important;
}

#whatsapp-float i {
    font-size: 1.5rem !important;
    margin: 0 !important;
}

#whatsapp-float .whatsapp-text {
    display: none !important;
}

/* Telegram Button */
#telegram-float {
    position: fixed !important;
    bottom: 100px !important;
    right: 30px !important;
    width: 60px !important;
    height: 60px !important;
    background: #0088cc !important;
    color: white !important;
    border-radius: 50px !important;
    text-decoration: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 1001 !important; /* Debajo del loading (9999) */
    box-shadow: 0 4px 12px rgba(0, 136, 204, 0.4) !important;
    transition: transform 0.3s ease !important;
    opacity: 0 !important; /* Oculto inicialmente */
}

#telegram-float:hover {
    transform: translateY(-3px) !important;
    background: #006bb3 !important;
}

#telegram-float i {
    font-size: 1.5rem !important;
    margin: 0 !important;
}

#telegram-float .telegram-text {
    display: none !important;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    #whatsapp-float {
        bottom: 20px !important;
        right: 20px !important;
        width: 50px !important;
        height: 50px !important;
    }
    
    #telegram-float {
        bottom: 80px !important;
        right: 20px !important;
        width: 50px !important;
        height: 50px !important;
    }
    
    #whatsapp-float i,
    #telegram-float i {
        font-size: 1.3rem !important;
    }
}

/* Mostrar botones después del loading */
body:not(.loading) #whatsapp-float,
body:not(.loading) #telegram-float {
    opacity: 1 !important;
    transition: opacity 0.5s ease 0.5s !important; /* Delay de 0.5s después del loading */
}