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

body {
    font-family: 'Inter', sans-serif;
    background: #1A1A2E;
    background-attachment: fixed;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Efectos removidos */

/* Animaciones removidas */

.container {
    max-width: none;
    width: 100%;
    margin: 0;
    padding: 0;
}

.about .container {
    max-width: none !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 26, 0.95);
    backdrop-filter: blur(15px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 215, 0, 0.15);
    transition: all 0.3s ease;
    will-change: transform, background;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    max-width: none;
    width: 100%;
    margin: 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-circle {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0A0A1A;
    font-size: 20px;
    font-weight: bold;
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
    overflow: hidden;
}

.logo-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.logo-circle:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #FFD700;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    text-transform: uppercase;
}

.nav-menu a .espanol-text {
    text-transform: none;
    font-size: 0.85em;
    font-style: italic;
    color: #FFD700;
    margin-left: 0.3rem;
}

.nav-menu a:hover {
    color: #FFD700;
}

.nav-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #0A0A1A;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.2);
}

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

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-secondary:hover {
    background: #ffffff;
    color: #0A0A1A;
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    will-change: transform;
}

.hero-background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
    display: block;
    visibility: visible;
    opacity: 1;
}


.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: none;
    width: 100%;
    margin: 0;
    padding: 0 2rem;
    position: relative;
    z-index: 3;
}

.hero-content {
    padding-top: 100px;
}

/* Aplicar estilo de tarjeta al contenido izquierdo igual que el derecho */
.hero-text {
    padding: 2rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: left;
}

.hero-subtitle {
    color: #FFD700;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle-2 {
    font-size: 1.5rem;
    color: #B0B0B0;
    font-style: italic;
    margin-bottom: 2rem;
}

.hero-description {
    font-size: 1.1rem;
    color: #E0E0E0;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Hero Right Section */
.hero-right-section {
    display: none !important;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

.hero-right-content {
    text-align: center;
    color: #ffffff;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-right-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-right-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    color: #E0E0E0;
    line-height: 1.4;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}


/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}

.section-subtitle {
    color: #FFD700;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: #1A1A2E;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 10;
    overflow: hidden;
}

/* Efecto de partículas flotantes doradas súper lindo */
.about::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 215, 0, 0.3) 2px, transparent 2px),
        radial-gradient(circle at 80% 30%, rgba(255, 215, 0, 0.2) 1px, transparent 1px),
        radial-gradient(circle at 40% 60%, rgba(255, 215, 0, 0.25) 1.5px, transparent 1.5px),
        radial-gradient(circle at 70% 80%, rgba(255, 215, 0, 0.15) 1px, transparent 1px),
        radial-gradient(circle at 10% 70%, rgba(255, 215, 0, 0.2) 2px, transparent 2px),
        radial-gradient(circle at 90% 10%, rgba(255, 215, 0, 0.18) 1px, transparent 1px);
    background-size: 100px 100px, 80px 80px, 120px 120px, 90px 90px, 110px 110px, 70px 70px !important;
    animation: floatingParticles 20s ease-in-out infinite !important;
    z-index: 1 !important;
    display: block !important;
}

.about::after {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: 
        radial-gradient(circle at 60% 20%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 30% 80%, rgba(255, 255, 255, 0.08) 1.5px, transparent 1.5px),
        radial-gradient(circle at 85% 60%, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
        radial-gradient(circle at 15% 40%, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
    background-size: 150px 150px, 130px 130px, 100px 100px, 140px 140px !important;
    animation: floatingParticles2 25s ease-in-out infinite reverse !important;
    z-index: 2 !important;
    display: block !important;
}

@keyframes floatingParticles {
    0%, 100% {
        transform: translateY(0px) scale(1);
        opacity: 0.6;
    }
    20% {
        transform: translateY(-20px) scale(1.2);
        opacity: 0.9;
    }
    40% {
        transform: translateY(-10px) scale(0.8);
        opacity: 0.4;
    }
    60% {
        transform: translateY(-30px) scale(1.1);
        opacity: 0.8;
    }
    80% {
        transform: translateY(-15px) scale(0.9);
        opacity: 0.5;
    }
}

@keyframes floatingParticles2 {
    0%, 100% {
        transform: translateY(0px) scale(1);
        opacity: 0.3;
    }
    25% {
        transform: translateY(-25px) scale(1.3);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-5px) scale(0.7);
        opacity: 0.2;
    }
    75% {
        transform: translateY(-35px) scale(1.1);
        opacity: 0.6;
    }
}

/* Efectos removidos de About */

/* Animaciones removidas de About */

.about-content {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    max-width: none;
    width: 100%;
    margin: 0;
    padding: 0;
    border: none;
    background: transparent;
    position: relative;
    z-index: 3;
}

.about-text {
    flex: 1.8;
    text-align: left;
    border: none;
    background: transparent;
    padding: 0 2rem 2rem 1rem;
    margin: 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* Ajustar section-header dentro de about-text */
.about-text .section-header {
    text-align: left;
    margin-bottom: 2rem;
    padding: 0;
    max-width: 100%;
}

.about-text .section-subtitle {
    text-align: left;
    margin-bottom: 0.5rem;
}

.about-text .section-title {
    text-align: left;
    margin-bottom: 1.5rem;
    max-width: 100%;
}

.about-text p {
    font-size: 1.15rem;
    color: #E0E0E0;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    max-width: 100%;
}

.about-text strong {
    color: #FFD700;
    font-weight: 600;
}

.about-image {
    flex: 1.5;
    text-align: center;
    border: none;
    background: transparent;
    padding: 0 1rem 0 2rem;
    margin: 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    min-height: auto;
    min-width: 0;
    overflow: visible;
}

.edwin-photo {
    width: 100% !important;
    max-width: 1000px !important;
    max-height: 550px !important;
    height: auto !important;
    object-fit: contain !important;
    border-radius: 0 !important;
    border: none !important;
    display: block !important;
    margin: 0 !important;
    transition: all 0.4s ease;
    box-shadow: none !important;
    filter: grayscale(100%) contrast(1.1);
}

.edwin-photo:hover {
    transform: scale(1.02);
    box-shadow: none !important;
    filter: grayscale(0%) contrast(1);
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: #1A1A2E;
    background-image: url('images/ima.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 10;
    overflow: hidden;
}

/* Overlay oscuro para mejorar la legibilidad del contenido */
.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 26, 46, 0.85);
    z-index: 1;
}

/* Asegurar que el contenido esté por encima del overlay */
.services .container {
    position: relative;
    z-index: 2;
}

/* Efectos removidos de Services */

/* Animaciones removidas de Services */

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.service-card {
    background: #1A1A2E !important;
    background-image: 
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px) !important;
    background-size: 20px 20px !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 12px !important;
    padding: 2.5rem !important;
    text-align: center !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    overflow: hidden !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.6;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 215, 0, 0.5);
    background: #1A1A2E !important;
    background-image: 
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, transparent 50%) !important;
    background-size: 20px 20px !important;
}

.service-card:hover::before {
    opacity: 0.8;
}

.service-card.animate-in {
    animation: slideInUp 0.8s ease forwards;
}

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

.service-icon {
    width: auto !important;
    height: auto !important;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto 1.5rem auto !important;
    color: #FFD700 !important;
    font-size: 48px !important;
    font-weight: normal !important;
    box-shadow: none !important;
    transition: all 0.3s ease !important;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    color: #FFD700 !important;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.6));
}

.service-card h3 {
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin-bottom: 1.5rem !important;
    line-height: 1.3 !important;
    text-align: center !important;
    transition: all 0.3s ease !important;
}

.service-card:hover h3 {
    color: #FFD700 !important;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.service-card p {
    color: #E0E0E0 !important;
    line-height: 1.6 !important;
    font-size: 1rem !important;
    font-weight: 400 !important;
    text-align: left !important;
    opacity: 0.9 !important;
}

/* Act 60 Section */
.act60-section {
    padding: 6rem 0;
    background: #1A1A2E;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 10;
    overflow: hidden;
}

/* Efectos removidos de Act 60 */

/* Animaciones removidas de Act 60 */

.act60-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
    padding: 0 2rem;
}

.act60-badge {
    background: transparent;
    padding: 0;
    border-radius: 0;
    text-align: center;
    color: #ffffff;
    box-shadow: none;
    transition: none;
    position: relative;
    overflow: visible;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.act60-badge h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.act60-badge h4 {
    font-size: 2rem;
    font-weight: 800;
}

.act60-badge-image {
    width: 100%;
    height: auto;
    max-width: 450px;
    border-radius: 0;
    transition: all 0.4s ease;
    object-fit: cover;
    box-shadow: none;
    cursor: pointer;
}

.act60-badge-image:hover {
    transform: scale(1.05);
    filter: brightness(1.1) contrast(1.1);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.act60-text {
    padding-right: 3rem;
}

.act60-text h2 {
    font-size: 2rem;
    color: #FFD700;
    margin-bottom: 1rem;
}

.act60-text h3 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.act60-text p {
    color: #E0E0E0;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.benefits-grid {
    display: grid;
    gap: 1.5rem;
}

.benefit {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border-left: 4px solid #FFD700;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.02) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.benefit:hover {
    transform: translateX(3px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.1);
}

.benefit:hover::before {
    opacity: 1;
}

.benefit h4 {
    color: #FFD700;
    margin-bottom: 0.5rem;
}

.benefit p {
    color: #B0B0B0;
    margin: 0;
}

.benefit strong {
    color: #FFD700;
}

/* Act 60 CTA Button */
.act60-cta-button {
    margin-top: 4.5rem;
    text-align: center;
    padding-left: 0;
    width: 100%;
}

.act60-cta-button .btn {
    margin: 0;
    width: 100%;
    max-width: 100%;
}

/* Act 60 Video Section */
.act60-video-section {
    padding: 3rem 0;
    background: #1A1A2E;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    z-index: 10;
    border-left: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-right: 1px solid rgba(255, 255, 255, 0.1) !important;
}

/* Efecto sutil de líneas blancas para distinguir la sección - SOLO EN PC */
.act60-video-section::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 1px !important;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent) !important;
    z-index: 1 !important;
}

.act60-video-section::after {
    content: '' !important;
    position: absolute !important;
    left: 50% !important;
    top: 0% !important;
    bottom: 0% !important;
    width: 1px !important;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.3), transparent) !important;
    transform: translateX(-50%) !important;
    z-index: 15 !important;
    display: block !important;
}

/* OCULTAR LÍNEAS EN MÓVIL */
@media screen and (max-width: 768px) {
    .act60-video-section::before,
    .act60-video-section::after {
        display: none !important;
    }
}

/* Sin efectos de partículas en la sección del video */

/* Animaciones removidas para la sección del video */

/* Layout simétrico para video y texto */
.video-content {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    width: 100%;
    padding: 2rem 0;
    border: none;
    background: transparent;
    max-width: none;
    box-shadow: none;
    border-radius: 0;
    position: relative;
}

/* Línea vertical separadora en el medio - SOLO EN PC */
.video-content::before {
    content: '' !important;
    position: absolute !important;
    left: 50% !important;
    top: 0% !important;
    bottom: 0% !important;
    width: 1px !important;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.3), transparent) !important;
    transform: translateX(-50%) !important;
    z-index: 10 !important;
    display: block !important;
}

/* OCULTAR TODAS LAS LÍNEAS VERTICALES EN MÓVIL */
@media screen and (max-width: 768px) {
    .video-content::before {
        display: none !important;
    }
    
    .act60-video-section::before,
    .act60-video-section::after {
        display: none !important;
    }
    
    /* Ocultar cualquier línea vertical adicional */
    .video-content::after,
    .act60-video-section::before,
    .act60-video-section::after {
        display: none !important;
    }
}

.video-left {
    flex: 1;
    text-align: left;
    border: none;
    background: transparent;
    padding: 0;
    margin: 0;
    box-shadow: none;
    border-radius: 0;
    min-height: 300px !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.video-text {
    flex: 1;
    padding: 1rem;
    border: none;
    background: transparent;
    margin: 0;
    box-shadow: none;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 300px !important;
    overflow: visible !important;
}

.video-text h2 {
    color: #FFD700;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.video-text p {
    color: #ffffff;
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 1.2rem;
    max-width: none;
}

/* Video que usa todo el ancho disponible */
.act60-video {
    width: 100% !important;
    max-width: 500px !important;
    height: 350px !important;
    border-radius: 12px !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3) !important;
    border: none !important;
    display: block !important;
    margin: 0 !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
    object-fit: cover !important;
}

.act60-video:hover {
    transform: scale(1.02) !important;
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.2) !important;
}

/* Estilos específicos por ID para forzar aplicación */
#act60-video {
    width: 100% !important;
    max-width: none !important;
    height: auto !important;
    border-radius: 12px !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3) !important;
    border: none !important;
    display: block !important;
    margin: 0 !important;
    object-fit: cover !important;
}

/* Estilos adicionales para asegurar el tamaño */
.act60-video-section .video-content .act60-video {
    max-width: none !important;
    width: 100% !important;
    height: 300px !important;
}

/* Forzar altura de las tarjetas para simetría */
.act60-video-section .video-content .video-left {
    min-height: 300px !important;
    height: 300px !important;
}

.act60-video-section .video-content .video-text {
    min-height: 300px !important;
    height: 300px !important;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: #1A1A2E;
    background-image: url('images/jefe.jpg');
    background-size: cover;
    background-position: center 20%;
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 10;
    overflow: hidden;
}

/* Overlay sutil para mejor legibilidad */
.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 46, 0.7);
    z-index: 1;
}

/* Efectos removidos de Contact */

/* Animaciones removidas de Contact */

.contact-content {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 4rem;
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

.contact-content h2 {
    font-size: 2.5rem;
    color: #FFD700;
    margin-bottom: 2rem;
    text-align: left;
    padding-left: 0;
    padding-right: 6rem;
    max-width: 40%;
    margin-right: auto;
    align-self: flex-start;
}

.contact-content p {
    color: #E0E0E0 !important;
    margin-bottom: 1.2rem !important;
    line-height: 1.8 !important;
    text-align: right !important;
    padding-right: 15rem !important;
    padding-left: 0 !important;
    margin-left: auto !important;
    margin-right: -60px !important;
    max-width: 550px !important;
    width: auto !important;
    display: block !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    white-space: normal !important;
    position: relative !important;
    right: -70px !important;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7) !important;
    clear: both !important;
    letter-spacing: 0.2px !important;
    text-align-last: right !important;
    hyphens: none !important;
    margin-top: 0 !important;
    top: 0 !important;
    align-self: flex-end !important;
}

.contact-content p:first-of-type {
    margin-top: -6.5rem !important;
    top: -100px !important;
    position: relative !important;
    margin-bottom: -1rem !important;
}

.contact-content p:nth-of-type(2) {
    margin-top: -3.5rem !important;
    top: 0 !important;
    position: relative !important;
    margin-bottom: 1.2rem !important;
}

.contact-content p:nth-of-type(3) {
    margin-top: 0 !important;
    top: 0 !important;
    position: relative !important;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 12px;
    margin: 3rem auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 800px;
    width: 100%;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FFD700;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #B0B0B0;
}

.contact-cta {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
    width: auto !important;
    text-align: right !important;
    position: relative !important;
    z-index: 3 !important;
    clear: both !important;
    margin-left: auto !important;
    margin-right: -60px !important;
    padding-right: 15rem !important;
    padding-left: 0 !important;
    max-width: 550px !important;
    align-self: flex-end !important;
}

.contact-cta h3 {
    color: #FFD700;
    font-size: 1.5rem;
    font-weight: 600;
    text-align: right !important;
    margin: 0 !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8) !important;
}

/* Partner Logos Section */
.partner-logos-section {
    background: #1A1A2E;
    padding: 3rem 0;
    margin: 0;
    width: 100%;
    position: relative;
    z-index: 3;
}

.partner-logos-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.partner-logo {
    max-width: 180px;
    max-height: 90px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%) brightness(0.9);
    opacity: 0.8;
    transition: all 0.3s ease;
    cursor: pointer;
}

.partner-logo:hover {
    filter: grayscale(0%) brightness(1);
    opacity: 1;
    transform: scale(1.08);
}

/* Footer */
.footer {
    background: #1A1A2E;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 3rem;
    position: relative;
    width: 100%;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    z-index: 3;
    position: relative;
    white-space: nowrap;
}

.footer-partner-logos {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 2rem;
    flex-wrap: nowrap;
    flex: 1;
    margin: 0;
    padding-left: 2rem;
    padding-right: 2rem;
    overflow: hidden;
    position: relative;
    width: 100%;
    animation: scrollLogosRight 20s linear infinite;
}

.footer-partner-logos::before,
.footer-partner-logos::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.footer-partner-logos::before {
    left: 0;
    background: linear-gradient(to right, #1A1A2E 0%, #1A1A2E 70%, rgba(26, 26, 46, 0.8) 85%, transparent 100%);
}

.footer-partner-logos::after {
    right: 0;
    background: linear-gradient(to left, #1A1A2E 0%, #1A1A2E 70%, rgba(26, 26, 46, 0.8) 85%, transparent 100%);
}

@keyframes scrollLogosRight {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

/* Asegurar que los logos no se superpongan con el nombre */
.footer-logo {
    background: #1A1A2E;
    padding-right: 1rem;
    z-index: 10;
}

.footer-partner-logos > * {
    flex-shrink: 0;
}

.footer p {
    color: #B0B0B0;
    flex-shrink: 0;
    z-index: 3;
    margin: 0;
}

/* Contact Legal Links and Social Section */
.contact-legal-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0 1.5rem 0;
    padding: 0;
    flex-wrap: wrap;
}

.contact-legal-link {
    color: #B0B0B0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.contact-legal-link:hover {
    color: #FFD700;
    text-decoration: underline;
}

.contact-legal-separator {
    color: #B0B0B0;
    font-size: 0.9rem;
}

.contact-social-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 1.5rem 0 2rem 0;
    padding: 0;
}

.contact-social-title {
    color: #FFD700;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-social-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

.contact-social-logos img {
    max-width: 80px !important;
    max-height: 80px !important;
    width: 80px !important;
    height: 80px !important;
    min-width: 80px !important;
    min-height: 80px !important;
}

.contact-social-logos .contact-social-logo-center {
    max-width: 140px !important;
    max-height: 140px !important;
    width: 140px !important;
    height: 140px !important;
    min-width: 140px !important;
    min-height: 140px !important;
}

.contact-social-logos a img {
    max-width: 80px !important;
    max-height: 80px !important;
    width: 80px !important;
    height: 80px !important;
    min-width: 80px !important;
    min-height: 80px !important;
}

.contact-social-logos a .contact-social-logo-center {
    max-width: 140px !important;
    max-height: 140px !important;
    width: 140px !important;
    height: 140px !important;
    min-width: 140px !important;
    min-height: 140px !important;
}

.contact-social-link img {
    max-width: 80px !important;
    max-height: 80px !important;
    width: 80px !important;
    height: 80px !important;
    min-width: 80px !important;
    min-height: 80px !important;
}

.contact-social-link .contact-social-logo-center {
    max-width: 140px !important;
    max-height: 140px !important;
    width: 140px !important;
    height: 140px !important;
    min-width: 140px !important;
    min-height: 140px !important;
}

.contact-social-link {
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-social-link:hover {
    transform: scale(1.1);
}

.contact-social-logo {
    max-width: 80px !important;
    max-height: 80px !important;
    width: 80px !important;
    height: 80px !important;
    min-width: 80px !important;
    min-height: 80px !important;
    object-fit: contain !important;
    transition: all 0.3s ease;
    filter: brightness(0.9);
    display: block !important;
}

.contact-social-logo:hover {
    transform: scale(1.15);
    filter: brightness(1.2);
}

.contact-social-logo-center {
    max-width: 140px !important;
    max-height: 140px !important;
    width: 140px !important;
    height: 140px !important;
    min-width: 140px !important;
    min-height: 140px !important;
}

/* Footer Legal Links */
.footer-legal-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 1rem 0;
    padding: 0;
    flex-wrap: wrap;
}

.footer-legal-link {
    color: #B0B0B0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-legal-link:hover {
    color: #FFD700;
    text-decoration: underline;
}

.footer-legal-separator {
    color: #B0B0B0;
    font-size: 0.9rem;
}

/* Social Media Section en Footer */
.footer-social-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 1.5rem 0;
    padding: 0;
}

.footer-social-title {
    color: #FFD700;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-social-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

.footer-social-link {
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    transform: scale(1.1);
}

.footer-social-logo {
    max-width: 55px;
    max-height: 55px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: brightness(0.9);
    display: block;
}

.footer-social-logo:hover {
    transform: scale(1.15);
    filter: brightness(1.2);
}

.footer-social-logo-center {
    max-width: 65px !important;
    max-height: 65px !important;
}

.footer-partner-logo {
    max-width: 150px;
    max-height: 75px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: none;
    opacity: 1;
    transition: all 0.3s ease;
}

.footer-partner-logo:hover {
    transform: scale(1.1);
    opacity: 1;
}


/* ===== RESPONSIVE DESIGN - TABLET (768px y menos) ===== */
@media (max-width: 768px) {
    /* Header optimizado para tablet */
    .nav-container {
        padding: 1rem 1.5rem;
        flex-wrap: wrap;
    }
    
    .logo {
        order: 1;
        flex: 1;
    }
    
    .logo-text {
        font-size: 18px;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 10, 26, 0.98);
        backdrop-filter: blur(15px);
        flex-direction: column;
        padding: 1.5rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        z-index: 1001;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }
    
    .nav-menu.active {
        display: flex !important;
    }
    
    .nav-menu li {
        margin: 0.5rem 0;
        width: 100%;
    }
    
    .nav-menu a {
        display: block;
        padding: 0.8rem 1rem;
        width: 100%;
        border-radius: 6px;
        transition: all 0.3s ease;
    }
    
    .nav-menu a:hover {
        background: rgba(255, 215, 0, 0.1);
        color: #FFD700;
    }
    
    .hamburger {
        display: flex !important;
        order: 3;
        z-index: 1002;
        position: relative;
        pointer-events: auto !important;
        cursor: pointer !important;
        padding: 8px;
        margin: -8px;
        -webkit-tap-highlight-color: rgba(255, 255, 255, 0.1);
        touch-action: manipulation;
    }
    
    .hamburger span {
        pointer-events: none;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    .nav-buttons {
        order: 2;
        margin-left: auto;
        margin-right: 1rem;
    }
    
    .btn-primary {
        padding: 8px 16px;
        font-size: 12px;
    }
    
    /* Hero section optimizado */
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 2rem 1rem;
        gap: 2rem;
    }
    
    /* Mantener estilo de tarjeta en móvil */
    .hero-text {
        padding: 1.5rem;
        background: rgba(0, 0, 0, 0.3);
        border-radius: 12px;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .hero-subtitle-2 {
        font-size: 1rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-large {
        padding: 12px 24px;
        font-size: 14px;
        width: 100%;
        max-width: 280px;
    }
    
    .hero-right-section {
        display: none;
    }
    
    /* Video de fondo en móvil - MEJORADO */
    .hero-background-video {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        min-width: 100% !important;
        min-height: 100% !important;
        object-fit: cover !important;
        z-index: 1 !important;
        transform: none !important;
    }
    
    /* About section optimizado para móvil */
    .about-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 1.5rem 1rem;
    }
    
    .about-image {
        order: 1;
        flex: 1;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 1rem;
        width: 100%;
    }
    
    .edwin-photo {
        max-width: 400px !important;
        width: 100% !important;
        height: auto !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        object-fit: cover !important;
    }
    
    .about-text {
        order: 2;
        flex: 1;
        width: 100%;
        text-align: left;
        padding: 0;
    }
    
    .about-text .section-header {
        text-align: center;
        margin-bottom: 1.5rem;
    }
    
    .about-text .section-subtitle,
    .about-text .section-title {
        text-align: center;
    }
    
    .about-text p {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 1rem;
        text-align: justify;
    }
    
    .section-header {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .section-subtitle {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
    }
    
    .section-title {
        font-size: 1.6rem;
        line-height: 1.2;
        margin-bottom: 0;
    }
    
    /* Services optimizado */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 2rem 1rem;
    }
    
    .service-card {
        padding: 1.5rem;
        margin: 0;
    }
    
    .service-card h3 {
        font-size: 1.1rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .service-card p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .service-icon {
        font-size: 36px !important;
        margin-bottom: 1rem;
    }
    
    /* Act 60 section optimizado */
    .act60-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 2rem 1rem;
    }
    
    .act60-badge {
        order: 1;
        margin: 0 auto;
        max-width: 280px;
    }
    
    .act60-badge-image {
        max-width: 100%;
        height: auto;
    }
    
    .act60-text {
        order: 2;
        text-align: left;
        padding-right: 2rem;
    }
    
    .act60-text h2 {
        font-size: 1.8rem;
        text-align: center;
        margin-bottom: 1.5rem;
    }
    
    .act60-text h3 {
        font-size: 1.3rem;
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .act60-text p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    
    .benefits-grid {
        gap: 1.5rem;
    }
    
    .benefit {
        padding: 1.2rem;
    }
    
    .benefit h4 {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }
    
    .benefit p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    /* Act 60 CTA Button móvil */
    .act60-cta-button {
        margin-top: 3rem !important;
        text-align: center !important;
        padding-left: 0 !important;
        width: 100% !important;
    }
    
    .act60-cta-button .btn {
        width: 100% !important;
        max-width: 100% !important;
        display: block !important;
    }
    
    /* Video section optimizado para móvil */
    .video-content {
        flex-direction: column;
        gap: 2rem;
        padding: 2rem 1rem;
    }
    
    .video-left {
        order: 1;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .video-text {
        order: 2;
        text-align: left;
        padding: 0 1rem;
    }
    
    .video-text h2 {
        font-size: 1.8rem;
        text-align: center;
        margin-bottom: 1.5rem;
        line-height: 1.2;
        word-wrap: break-word;
    }
    
    .video-text p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1.2rem;
        text-align: justify;
        padding: 0 0.5rem;
    }
    
    .act60-video {
        max-width: 100%;
        height: auto;
        width: 100%;
        border-radius: 12px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    }
    
    /* Contact section optimizado para móvil */
    .contact {
        padding: 2rem 1rem;
        min-height: auto;
        display: flex;
        align-items: flex-start;
    }
    
    .contact-content {
        padding: 0 1rem !important;
        width: 100% !important;
        max-width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }
    
    .contact-content h2 {
        font-size: 1.8rem !important;
        text-align: center !important;
        margin-bottom: 1.5rem !important;
        padding: 0 !important;
        padding-right: 0 !important;
        max-width: 100% !important;
        width: 100% !important;
        align-self: center !important;
        margin-right: 0 !important;
    }
    
    .contact-content p {
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
        margin-bottom: 1.2rem !important;
        text-align: center !important;
        padding: 0 !important;
        padding-right: 0 !important;
        padding-left: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        max-width: 100% !important;
        width: 100% !important;
        position: static !important;
        right: 0 !important;
        top: 0 !important;
        align-self: center !important;
        text-align-last: center !important;
    }
    
    .contact-content p:first-of-type {
        margin-top: 0 !important;
        top: 0 !important;
        margin-bottom: 1.2rem !important;
    }
    
    .contact-content p:nth-of-type(2) {
        margin-top: 0 !important;
        top: 0 !important;
        margin-bottom: 1.2rem !important;
    }
    
    .contact-content p:nth-of-type(3) {
        margin-top: 0 !important;
        top: 0 !important;
        margin-bottom: 1.5rem !important;
    }
    
    .contact-cta {
        margin-top: 1.5rem !important;
        margin-bottom: 1.5rem !important;
        width: 100% !important;
    }
    
    .contact-cta h3 {
        font-size: 1.2rem !important;
        text-align: center !important;
        color: #FFD700 !important;
    }
    
    .contact-form-widget {
        margin: 2rem auto 2rem auto !important;
        max-width: 100% !important;
        width: 100% !important;
        padding: 0 0.5rem !important;
    }
    
    .contact-form-widget iframe {
        width: 100% !important;
        height: 600px !important;
        border-radius: 8px !important;
    }
    
    .contact-form {
        max-width: 100% !important;
        margin: 2rem auto !important;
        padding: 1.5rem !important;
    }
    
    .form-group {
        margin-bottom: 1.2rem !important;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px !important; /* Evita zoom en iOS */
        padding: 12px !important;
        width: 100% !important;
    }
    
    /* Partner Logos responsive */
    .partner-logos-section {
        margin: 2rem auto;
        padding: 1rem 0;
    }
    
    .partner-logos-container {
        gap: 1.5rem;
        padding: 1rem;
    }
    
    .partner-logo {
        max-width: 120px;
        max-height: 60px;
    }
    
    /* Footer optimizado para móvil */
    .footer-content {
        display: flex !important;
        flex-direction: column !important;
        text-align: center !important;
        gap: 1.5rem !important;
        grid-template-columns: 1fr !important;
        align-items: center !important;
        padding: 0 1rem !important;
    }
    
    .footer-logo {
        justify-content: center !important;
        order: 1 !important;
        width: 100% !important;
        margin-bottom: 1rem !important;
    }
    
    .footer-partner-logos {
        margin: 0 !important;
        gap: 1rem !important;
        order: 2 !important;
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 1rem !important;
        padding-right: 1rem !important;
        animation: scrollLogosRight 15s linear infinite !important;
    }
    
    .footer-partner-logos::before,
    .footer-partner-logos::after {
        width: 60px !important;
    }
    
    .footer-partner-logo {
        max-width: 100px !important;
        max-height: 50px !important;
    }
    
    .footer-legal-links {
        order: 3 !important;
        width: 100% !important;
        margin: 0.8rem 0 !important;
        gap: 0.8rem !important;
    }
    
    .footer-legal-link {
        font-size: 0.85rem !important;
    }
    
    .footer p {
        order: 4 !important;
    }
    
    .footer-social-section {
        order: 5 !important;
        width: 100% !important;
        margin: 1rem 0 !important;
        gap: 0.8rem !important;
    }
    
    .footer-social-title {
        font-size: 1rem !important;
    }
    
    .footer-social-logos {
        gap: 1rem !important;
    }
    
    .footer-social-logo {
        max-width: 45px !important;
        max-height: 45px !important;
    }
    
    .footer-social-logo-center {
        max-width: 55px !important;
        max-height: 55px !important;
    }
    
    .logo-circle {
        width: 50px;
        height: 50px;
    }
    
    .logo-text {
        font-size: 18px;
    }
}

/* ===== RESPONSIVE DESIGN - MÓVIL PEQUEÑO (480px y menos) ===== */
@media (max-width: 480px) {
    /* Header ultra compacto */
    .nav-container {
        padding: 0.8rem 1rem;
    }
    
    .logo-text {
        font-size: 16px;
    }
    
    .btn-primary {
        padding: 6px 12px;
        font-size: 11px;
    }
    
    /* Hero section ultra optimizado */
    .hero-container {
        padding: 1.5rem 0.8rem;
        gap: 1.5rem;
    }
    
    /* Mantener estilo de tarjeta en móvil pequeño */
    .hero-text {
        padding: 1.2rem;
        background: rgba(0, 0, 0, 0.3);
        border-radius: 12px;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        text-align: center;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.1;
        margin-bottom: 0.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.8rem;
    }
    
    .hero-subtitle-2 {
        font-size: 0.9rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
        line-height: 1.4;
        margin-bottom: 1.2rem;
    }
    
    .btn-large {
        padding: 10px 20px;
        font-size: 13px;
        width: 100%;
        max-width: 250px;
    }
    
    /* Video de fondo para móvil pequeño - MEJORADO */
    .hero-background-video {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        min-width: 100% !important;
        min-height: 100% !important;
        object-fit: cover !important;
        z-index: 1 !important;
        transform: none !important;
    }
    
    /* About section ultra compacto para móvil pequeño */
    .about-content {
        padding: 1.2rem 0.8rem;
        gap: 1.2rem;
    }
    
    .about-image {
        margin-bottom: 0.8rem;
    }
    
    .edwin-photo {
        max-width: 180px !important;
        width: 100% !important;
        height: auto !important;
        border-radius: 0 !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        object-fit: cover !important;
    }
    
    .about-text p {
        font-size: 0.85rem;
        line-height: 1.4;
        margin-bottom: 0.8rem;
        text-align: justify;
    }
    
    .section-title {
        font-size: 1.4rem;
        line-height: 1.1;
    }
    
    .section-subtitle {
        font-size: 0.7rem;
    }
    
    .section-header {
        margin-bottom: 1.5rem;
    }
    
    /* Services ultra compacto */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.5rem 0.8rem;
    }
    
    .service-card {
        padding: 1.2rem;
        margin: 0;
    }
    
    .service-card h3 {
        font-size: 1rem;
        line-height: 1.2;
        margin-bottom: 0.8rem;
    }
    
    .service-card p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .service-icon {
        font-size: 28px !important;
        margin-bottom: 0.8rem;
    }
    
    /* Act 60 section ultra compacto */
    .act60-content {
        padding: 1.5rem 0.8rem;
        gap: 1.5rem;
    }
    
    .act60-badge {
        max-width: 250px;
    }
    
    .act60-text h2 {
        font-size: 1.5rem;
        margin-bottom: 1.2rem;
    }
    
    .act60-text h3 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .act60-text p {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 1.2rem;
    }
    
    .benefits-grid {
        gap: 1rem;
    }
    
    .benefit {
        padding: 1rem;
    }
    
    .benefit h4 {
        font-size: 0.9rem;
        margin-bottom: 0.6rem;
    }
    
    .benefit p {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    /* Video section ultra compacto */
    .video-content {
        gap: 1.5rem;
        padding: 1.5rem 0.8rem;
    }
    
    .video-text h2 {
        font-size: 1.5rem;
        margin-bottom: 1.2rem;
    }
    
    .video-text p {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 1rem;
    }
    
    .act60-video {
        max-width: 100%;
        height: auto;
        border-radius: 8px;
        width: 100%;
    }
    
    /* Mejorar layout de video en móvil pequeño */
    .video-content {
        padding: 1.5rem 0.8rem;
        gap: 1.5rem;
    }
    
    .video-text {
        padding: 0 0.5rem;
    }
    
    .video-text h2 {
        font-size: 1.5rem;
        line-height: 1.1;
        margin-bottom: 1.2rem;
    }
    
    .video-text p {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 1rem;
        padding: 0 0.3rem;
    }
    
    /* Contact section ultra compacto para móvil pequeño */
    .contact {
        padding: 1.5rem 0.8rem !important;
        min-height: auto !important;
    }
    
    .contact-content {
        padding: 0 0.5rem !important;
        width: 100% !important;
        max-width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }
    
    .contact-content h2 {
        font-size: 1.5rem !important;
        margin-bottom: 1.2rem !important;
        text-align: center !important;
        padding: 0 !important;
        padding-right: 0 !important;
        max-width: 100% !important;
        width: 100% !important;
        align-self: center !important;
        margin-right: 0 !important;
    }
    
    .contact-content p {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
        margin-bottom: 1rem !important;
        text-align: center !important;
        padding: 0 !important;
        padding-right: 0 !important;
        padding-left: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        max-width: 100% !important;
        width: 100% !important;
        position: static !important;
        right: 0 !important;
        top: 0 !important;
        align-self: center !important;
        text-align-last: center !important;
    }
    
    .contact-content p:first-of-type,
    .contact-content p:nth-of-type(2),
    .contact-content p:nth-of-type(3) {
        margin-top: 0 !important;
        top: 0 !important;
    }
    
    .contact-cta {
        margin-top: 1rem !important;
        margin-bottom: 1rem !important;
        width: 100% !important;
    }
    
    .contact-cta h3 {
        font-size: 1.1rem !important;
        text-align: center !important;
        color: #FFD700 !important;
    }
    
    .contact-form-widget {
        margin: 1.5rem auto 1.5rem auto !important;
        max-width: 100% !important;
        width: 100% !important;
        padding: 0 0.5rem !important;
    }
    
    .contact-form-widget iframe {
        width: 100% !important;
        height: 550px !important;
        border-radius: 8px !important;
    }
    
    .contact-legal-links {
        margin: 1.5rem 0 1rem 0 !important;
        gap: 0.8rem !important;
    }
    
    .contact-legal-link {
        font-size: 0.85rem !important;
    }
    
    .contact-social-section {
        margin: 1rem 0 1.5rem 0 !important;
        gap: 0.8rem !important;
    }
    
    .contact-social-title {
        font-size: 1rem !important;
    }
    
    .contact-social-logos {
        gap: 1rem !important;
    }
    
    .contact-social-logo,
    .contact-social-logos img,
    .contact-social-logos a img,
    .contact-social-link img {
        max-width: 70px !important;
        max-height: 70px !important;
        width: 70px !important;
        height: 70px !important;
        min-width: 70px !important;
        min-height: 70px !important;
    }
    
    .contact-social-logo-center,
    .contact-social-logos .contact-social-logo-center,
    .contact-social-link .contact-social-logo-center {
        max-width: 120px !important;
        max-height: 120px !important;
        width: 120px !important;
        height: 120px !important;
        min-width: 120px !important;
        min-height: 120px !important;
    }
    
    .contact-form {
        margin: 1.5rem auto !important;
        padding: 1rem !important;
        max-width: 100% !important;
    }
    
    .form-group {
        margin-bottom: 1rem !important;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px !important;
        padding: 10px !important;
        margin-bottom: 1rem !important;
        width: 100% !important;
    }
    
    /* Partner Logos responsive móvil pequeño */
    .partner-logos-section {
        margin: 1.5rem auto;
        padding: 0.5rem 0;
    }
    
    .partner-logos-container {
        gap: 1rem;
        padding: 0.5rem;
    }
    
    .partner-logo {
        max-width: 100px;
        max-height: 50px;
    }
    
    /* Footer ultra compacto para móvil pequeño */
    .footer-content {
        display: flex !important;
        flex-direction: column !important;
        text-align: center !important;
        gap: 1rem !important;
        padding: 1.5rem 0.8rem !important;
        grid-template-columns: 1fr !important;
        align-items: center !important;
    }
    
    .footer-logo {
        justify-content: center !important;
        order: 1 !important;
        width: 100% !important;
        margin-bottom: 0.5rem !important;
    }
    
    .footer-partner-logos {
        margin: 0 !important;
        gap: 0.8rem !important;
        order: 2 !important;
        width: 100% !important;
        padding-left: 0.5rem !important;
        padding-right: 0.5rem !important;
        animation: scrollLogosRight 12s linear infinite !important;
    }
    
    .footer-partner-logos::before,
    .footer-partner-logos::after {
        width: 40px !important;
    }
    
    .footer-partner-logo {
        max-width: 80px !important;
        max-height: 40px !important;
    }
    
    .footer-legal-links {
        order: 3 !important;
        width: 100% !important;
        margin: 0.6rem 0 !important;
        gap: 0.6rem !important;
    }
    
    .footer-legal-link {
        font-size: 0.8rem !important;
    }
    
    .footer p {
        order: 4 !important;
    }
    
    .footer-social-section {
        order: 5 !important;
        width: 100% !important;
        margin: 0.8rem 0 !important;
        gap: 0.6rem !important;
    }
    
    .footer-social-title {
        font-size: 0.9rem !important;
    }
    
    .footer-social-logos {
        gap: 0.8rem !important;
    }
    
    .footer-social-logo {
        max-width: 38px !important;
        max-height: 38px !important;
    }
    
    .footer-social-logo-center {
        max-width: 48px !important;
        max-height: 48px !important;
    }
    
    .logo-circle {
        width: 40px;
        height: 40px;
    }
    
    .logo-text {
        font-size: 16px;
    }
}

/* ===== RESPONSIVE DESIGN - MÓVIL ULTRA PEQUEÑO (320px y menos) ===== */
@media (max-width: 320px) {
    /* Header ultra compacto */
    .nav-container {
        padding: 0.6rem 0.8rem;
    }
    
    .logo-text {
        font-size: 14px;
    }
    
    .btn-primary {
        padding: 5px 10px;
        font-size: 10px;
    }
    
    /* Hero section ultra compacto */
    .hero-container {
        padding: 1rem 0.6rem;
        gap: 1rem;
    }
    
    /* Mantener estilo de tarjeta en móvil ultra pequeño */
    .hero-text {
        padding: 1rem;
        background: rgba(0, 0, 0, 0.3);
        border-radius: 12px;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        text-align: center;
    }
    
    .hero-title {
        font-size: 1.5rem;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 0.7rem;
    }
    
    .hero-subtitle-2 {
        font-size: 0.8rem;
    }
    
    .hero-description {
        font-size: 0.85rem;
        line-height: 1.3;
    }
    
    .btn-large {
        padding: 8px 16px;
        font-size: 12px;
        max-width: 220px;
    }
    
    /* About section ultra compacto */
    .about-content {
        padding: 1rem 0.6rem;
        gap: 1rem;
    }
    
    .edwin-photo {
        max-width: 150px !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        object-fit: cover !important;
    }
    
    /* Video de fondo para móvil ultra pequeño - MEJORADO */
    .hero-background-video {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        min-width: 100% !important;
        min-height: 100% !important;
        object-fit: cover !important;
        z-index: 1 !important;
        transform: none !important;
    }
    
    .about-text p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
    
    .section-subtitle {
        font-size: 0.7rem;
    }
    
    /* Services ultra compacto */
    .services-grid {
        padding: 1rem 0.6rem;
        gap: 0.8rem;
    }
    
    .service-card {
        padding: 1rem;
    }
    
    .service-card h3 {
        font-size: 0.9rem;
        line-height: 1.1;
    }
    
    .service-card p {
        font-size: 0.8rem;
        line-height: 1.3;
    }
    
    .service-icon {
        font-size: 24px !important;
    }
    
    /* Act 60 section ultra compacto */
    .act60-content {
        padding: 1rem 0.6rem;
        gap: 1rem;
    }
    
    .act60-badge {
        max-width: 200px;
    }
    
    .act60-text h2 {
        font-size: 1.3rem;
    }
    
    .act60-text h3 {
        font-size: 1rem;
    }
    
    .act60-text p {
        font-size: 0.85rem;
    }
    
    .benefit {
        padding: 0.8rem;
    }
    
    .benefit h4 {
        font-size: 0.8rem;
    }
    
    .benefit p {
        font-size: 0.75rem;
    }
    
    /* Video section ultra compacto */
    .video-content {
        padding: 1rem 0.6rem;
        gap: 1rem;
    }
    
    .video-text h2 {
        font-size: 1.3rem;
    }
    
    .video-text p {
        font-size: 0.85rem;
    }
    
    /* Contact section ultra compacto para móvil muy pequeño */
    .contact {
        padding: 1rem 0.6rem !important;
        min-height: auto !important;
    }
    
    .contact-content {
        padding: 0 0.3rem !important;
        width: 100% !important;
        max-width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }
    
    .contact-content h2 {
        font-size: 1.3rem !important;
        margin-bottom: 1rem !important;
        text-align: center !important;
        padding: 0 !important;
        max-width: 100% !important;
        width: 100% !important;
        align-self: center !important;
    }
    
    .contact-content p {
        font-size: 0.85rem !important;
        line-height: 1.4 !important;
        margin-bottom: 0.8rem !important;
        text-align: center !important;
        padding: 0 !important;
        position: static !important;
        right: 0 !important;
        top: 0 !important;
        max-width: 100% !important;
        width: 100% !important;
        text-align-last: center !important;
    }
    
    .contact-content p:first-of-type,
    .contact-content p:nth-of-type(2),
    .contact-content p:nth-of-type(3) {
        margin-top: 0 !important;
        top: 0 !important;
    }
    
    .contact-cta {
        margin-top: 0.8rem !important;
        margin-bottom: 0.8rem !important;
        width: 100% !important;
    }
    
    .contact-cta h3 {
        font-size: 1rem !important;
        text-align: center !important;
        color: #FFD700 !important;
    }
    
    .contact-form-widget {
        margin: 1rem auto 1rem auto !important;
        max-width: 100% !important;
        width: 100% !important;
        padding: 0 0.3rem !important;
    }
    
    .contact-form-widget iframe {
        width: 100% !important;
        height: 500px !important;
        border-radius: 8px !important;
    }
    
    .contact-legal-links {
        margin: 1rem 0 0.8rem 0 !important;
        gap: 0.6rem !important;
    }
    
    .contact-legal-link {
        font-size: 0.8rem !important;
    }
    
    .contact-social-section {
        margin: 0.8rem 0 1rem 0 !important;
        gap: 0.6rem !important;
    }
    
    .contact-social-title {
        font-size: 0.9rem !important;
    }
    
    .contact-social-logos {
        gap: 0.8rem !important;
    }
    
    .contact-social-logo,
    .contact-social-logos img,
    .contact-social-logos a img,
    .contact-social-link img {
        max-width: 60px !important;
        max-height: 60px !important;
        width: 60px !important;
        height: 60px !important;
        min-width: 60px !important;
        min-height: 60px !important;
    }
    
    .contact-social-logo-center,
    .contact-social-logos .contact-social-logo-center,
    .contact-social-link .contact-social-logo-center {
        max-width: 105px !important;
        max-height: 105px !important;
        width: 105px !important;
        height: 105px !important;
        min-width: 105px !important;
        min-height: 105px !important;
    }
    
    .contact-form {
        margin: 1rem auto !important;
        padding: 0.8rem !important;
        max-width: 100% !important;
    }
    
    .form-group {
        margin-bottom: 0.8rem !important;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 8px !important;
        font-size: 16px !important;
        margin-bottom: 0.8rem !important;
        width: 100% !important;
    }
    
    /* Footer ultra compacto para móvil muy pequeño */
    .footer-content {
        display: flex !important;
        flex-direction: column !important;
        text-align: center !important;
        gap: 0.8rem !important;
        padding: 1rem 0.6rem !important;
        grid-template-columns: 1fr !important;
        align-items: center !important;
    }
    
    .footer-logo {
        justify-content: center !important;
        order: 1 !important;
        width: 100% !important;
        margin-bottom: 0.5rem !important;
    }
    
    .footer-partner-logos {
        margin: 0 !important;
        gap: 0.6rem !important;
        order: 2 !important;
        width: 100% !important;
        padding-left: 0.3rem !important;
        padding-right: 0.3rem !important;
        animation: scrollLogosRight 10s linear infinite !important;
    }
    
    .footer-partner-logos::before,
    .footer-partner-logos::after {
        width: 30px !important;
    }
    
    .footer-partner-logo {
        max-width: 70px !important;
        max-height: 35px !important;
    }
    
    .footer-legal-links {
        order: 3 !important;
        width: 100% !important;
        margin: 0.5rem 0 !important;
        gap: 0.5rem !important;
    }
    
    .footer-legal-link {
        font-size: 0.75rem !important;
    }
    
    .footer p {
        order: 4 !important;
    }
    
    .footer-social-section {
        order: 5 !important;
        width: 100% !important;
        margin: 0.6rem 0 !important;
        gap: 0.5rem !important;
    }
    
    .footer-social-title {
        font-size: 0.8rem !important;
    }
    
    .footer-social-logos {
        gap: 0.6rem !important;
    }
    
    .footer-social-logo {
        max-width: 32px !important;
        max-height: 32px !important;
    }
    
    .footer-social-logo-center {
        max-width: 40px !important;
        max-height: 40px !important;
    }
    
    .logo-circle {
        width: 35px;
        height: 35px;
    }
    
    .logo-text {
        font-size: 14px;
    }
    
    /* Video section ultra compacto para móvil pequeño */
    .video-content {
        padding: 1rem 0.6rem;
        gap: 1rem;
    }
    
    .video-text {
        padding: 0 0.3rem;
    }
    
    .video-text h2 {
        font-size: 1.3rem;
        line-height: 1.1;
        margin-bottom: 1rem;
    }
    
    .video-text p {
        font-size: 0.85rem;
        line-height: 1.4;
        margin-bottom: 0.8rem;
        padding: 0 0.2rem;
    }
    
    .act60-video {
        max-width: 100%;
        height: auto;
        border-radius: 8px;
        width: 100%;
    }
}

/* SOLUCIÓN PARA EL TEXTO "CERRAR" NO DESEADO */
/* Ocultar cualquier elemento que contenga texto "Cerrar" */
*:contains("Cerrar"),
*:contains("cerrar"),
*:contains("CERRAR") {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}

/* Ocultar elementos flotantes sospechosos cerca del botón SCHEDULE */
.nav-buttons::after,
.nav-buttons::before,
.btn::after,
.btn::before {
    content: none !important;
}

/* Ocultar cualquier pseudo-elemento que pueda contener texto no deseado */
*::after,
*::before {
    content: none !important;
}

/* Ocultar elementos con posición absoluta cerca del botón */
.nav-buttons * {
    position: relative !important;
}

/* Asegurar que no haya elementos flotantes */
.header * {
    overflow: hidden;
}

/* Ocultar cualquier elemento con z-index alto que pueda estar flotando */
[style*="position: absolute"],
[style*="position: fixed"] {
    display: none !important;
}

/* FORZAR ESTILOS DE TARJETAS - MÁXIMA PRIORIDAD */
.services .service-card {
    background: #1A1A2E !important;
    background-image: 
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px) !important;
    background-size: 20px 20px !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 12px !important;
    padding: 2.5rem !important;
    text-align: center !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
    transition: all 0.3s ease !important;
}

.services .service-card:hover {
    background: #1A1A2E !important;
    background-image: 
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, transparent 50%) !important;
    background-size: 20px 20px !important;
    border-color: rgba(255, 215, 0, 0.5) !important;
    transform: translateY(-5px) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3) !important;
}

.services .service-card h3 {
    color: #ffffff !important;
    text-align: center !important;
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    transition: all 0.3s ease !important;
}

.services .service-card:hover h3 {
    color: #FFD700 !important;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.5) !important;
}

.services .service-card p {
    color: #E0E0E0 !important;
    text-align: left !important;
}

.services .service-icon {
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    color: #FFD700 !important;
    width: auto !important;
    height: auto !important;
    font-size: 48px !important;
    font-weight: normal !important;
    transition: all 0.3s ease !important;
}

.services .service-card:hover .service-icon {
    transform: scale(1.1) !important;
    color: #FFD700 !important;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.8) !important;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.6)) !important;
}

/* FORZAR VISIBILIDAD DE VIDEO E IMÁGENES EN MÓVIL - MÁXIMA PRIORIDAD */
.hero-background-video {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    min-width: 100% !important;
    min-height: 100% !important;
    object-fit: cover !important;
    z-index: 1 !important;
    transform: none !important;
}

/* FORZAR VIDEO EN TODOS LOS DISPOSITIVOS MÓVILES */
@media screen and (max-width: 768px) {
    .hero-background-video {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        min-width: 100vw !important;
        min-height: 100vh !important;
        object-fit: cover !important;
        z-index: 1 !important;
        transform: none !important;
    }
}

@media screen and (max-width: 480px) {
    .hero-background-video {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        min-width: 100vw !important;
        min-height: 100vh !important;
        object-fit: cover !important;
        z-index: 1 !important;
        transform: none !important;
    }
}

.edwin-photo {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 100% !important;
    max-height: 550px !important;
    height: auto !important;
    object-fit: contain !important;
    max-width: 1000px !important;
}

/* FORZAR FOTO EN TODOS LOS DISPOSITIVOS MÓVILES */
@media screen and (max-width: 768px) {
    .edwin-photo {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: 100% !important;
        height: auto !important;
        object-fit: cover !important;
        max-width: 300px !important;
        margin: 0 auto !important;
    }
    
    .about-image {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        width: 100% !important;
    }
}

@media screen and (max-width: 480px) {
    .edwin-photo {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: 100% !important;
        height: auto !important;
        object-fit: cover !important;
        max-width: 250px !important;
    }
}

/* FORZAR EFECTO DE PARTÍCULAS FLOTANTES DORADAS SÚPER LINDO - MÁXIMA PRIORIDAD */
#about.about::before,
.about::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 215, 0, 0.3) 2px, transparent 2px),
        radial-gradient(circle at 80% 30%, rgba(255, 215, 0, 0.2) 1px, transparent 1px),
        radial-gradient(circle at 40% 60%, rgba(255, 215, 0, 0.25) 1.5px, transparent 1.5px),
        radial-gradient(circle at 70% 80%, rgba(255, 215, 0, 0.15) 1px, transparent 1px),
        radial-gradient(circle at 10% 70%, rgba(255, 215, 0, 0.2) 2px, transparent 2px),
        radial-gradient(circle at 90% 10%, rgba(255, 215, 0, 0.18) 1px, transparent 1px) !important;
    background-size: 100px 100px, 80px 80px, 120px 120px, 90px 90px, 110px 110px, 70px 70px !important;
    animation: floatingParticles 20s ease-in-out infinite !important;
    z-index: 1 !important;
    display: block !important;
}

#about.about::after,
.about::after {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: 
        radial-gradient(circle at 60% 20%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 30% 80%, rgba(255, 255, 255, 0.08) 1.5px, transparent 1.5px),
        radial-gradient(circle at 85% 60%, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
        radial-gradient(circle at 15% 40%, rgba(255, 255, 255, 0.12) 1px, transparent 1px) !important;
    background-size: 150px 150px, 130px 130px, 100px 100px, 140px 140px !important;
    animation: floatingParticles2 25s ease-in-out infinite reverse !important;
    z-index: 2 !important;
    display: block !important;
}

/* SOLUCIÓN FINAL ULTRA AGRESIVA PARA MÓVIL */
@media only screen and (max-width: 768px) {
    .hero-background-video {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        min-width: 100vw !important;
        min-height: 100vh !important;
        object-fit: cover !important;
        z-index: 1 !important;
        transform: none !important;
    }
    
    .edwin-photo {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: 100% !important;
        height: auto !important;
        object-fit: cover !important;
        max-width: 300px !important;
    }
}

/* FORZAR EN TODOS LOS DISPOSITIVOS */
.hero-background-video {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.edwin-photo {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* FORZAR VIDEO DE ACT 60 EN MÓVIL */
@media screen and (max-width: 768px) {
    .act60-video {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: 100% !important;
        height: auto !important;
        max-width: 100% !important;
        object-fit: cover !important;
        border-radius: 12px !important;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3) !important;
    }
    
    .video-left {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        width: 100% !important;
    }
}

/* FORZAR VIDEO DE ACT 60 EN TODOS LOS DISPOSITIVOS */
.act60-video {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* FORZAR VIDEOS EN MÓVIL - ULTRA AGRESIVO */
@media screen and (max-width: 768px) {
    .hero-background-video {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        min-width: 100vw !important;
        min-height: 100vh !important;
        object-fit: cover !important;
        z-index: 1 !important;
        transform: none !important;
    }
    
    .act60-video {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: 100% !important;
        height: auto !important;
        max-width: 100% !important;
        object-fit: cover !important;
        border-radius: 12px !important;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3) !important;
    }
    
    /* ELIMINAR TODAS LAS LÍNEAS EN MÓVIL */
    *::before,
    *::after {
        display: none !important;
    }
    
    .video-content::before,
    .video-content::after,
    .act60-video-section::before,
    .act60-video-section::after {
        display: none !important;
    }
}

/* ===== MODAL PARA CALENDARIO DE RESERVAS ===== */
.booking-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.booking-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.booking-modal-content {
    position: relative;
    background: #1A1A2E;
    margin: auto;
    padding: 0;
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    animation: slideDown 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.booking-modal-header {
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 165, 0, 0.1));
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.booking-modal-header h2 {
    color: #FFD700;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    text-align: center;
    flex: 1;
}

.booking-modal-close {
    color: #ffffff;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    transition: all 0.3s ease;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.booking-modal-close:hover,
.booking-modal-close:focus {
    color: #FFD700;
    background: rgba(255, 215, 0, 0.2);
    transform: rotate(90deg);
}

.booking-modal-body {
    padding: 2rem;
    overflow-y: auto;
    flex: 1;
    background: #1A1A2E;
}

.booking-modal-body iframe {
    width: 100%;
    min-height: 600px;
    border: none;
    border-radius: 8px;
    background: #ffffff;
}

/* Responsive para móvil */
@media screen and (max-width: 768px) {
    .booking-modal-content {
        width: 95%;
        max-height: 95vh;
        border-radius: 8px;
    }
    
    .booking-modal-header {
        padding: 1rem 1.5rem;
    }
    
    .booking-modal-header h2 {
        font-size: 1.4rem;
    }
    
    .booking-modal-close {
        font-size: 28px;
        width: 30px;
        height: 30px;
    }
    
    .booking-modal-body {
        padding: 1rem;
    }
    
    .booking-modal-body iframe {
        min-height: 500px;
    }
}

@media screen and (max-width: 480px) {
    .booking-modal-content {
        width: 100%;
        max-height: 100vh;
        border-radius: 0;
        border-left: none;
        border-right: none;
    }
    
    .booking-modal-header {
        padding: 0.8rem 1rem;
    }
    
    .booking-modal-header h2 {
        font-size: 1.2rem;
    }
    
    .booking-modal-body {
        padding: 0.5rem;
    }
    
    .booking-modal-body iframe {
        min-height: 400px;
    }
}

/* ===== MODAL PARA FORMULARIO ACT-60 MORE INFO ===== */
.act60-info-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.act60-info-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.act60-info-modal-content {
    position: relative;
    background: #1A1A2E;
    margin: auto;
    padding: 0;
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    animation: slideDown 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.act60-info-modal-header {
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 165, 0, 0.1));
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.act60-info-modal-header h2 {
    color: #FFD700;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    text-align: center;
    flex: 1;
}

.act60-info-modal-close {
    color: #ffffff;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    transition: all 0.3s ease;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.act60-info-modal-close:hover,
.act60-info-modal-close:focus {
    color: #FFD700;
    background: rgba(255, 215, 0, 0.2);
    transform: rotate(90deg);
}

.act60-info-modal-body {
    padding: 2rem;
    overflow-y: auto;
    flex: 1;
    background: #1A1A2E;
}

.act60-info-modal-body iframe {
    width: 100%;
    min-height: 500px;
    border: none;
    border-radius: 8px;
    background: #ffffff;
}

/* Responsive para móvil */
@media screen and (max-width: 768px) {
    .act60-info-modal-content {
        width: 95%;
        max-height: 95vh;
        border-radius: 8px;
    }
    
    .act60-info-modal-header h2 {
        font-size: 1.4rem;
    }
    
    .act60-info-modal-close {
        font-size: 28px;
        width: 30px;
        height: 30px;
    }
    
    .act60-info-modal-body {
        padding: 1rem;
    }
    
    .act60-info-modal-body iframe {
        min-height: 450px;
    }
}

@media screen and (max-width: 480px) {
    .act60-info-modal-content {
        width: 100%;
        max-height: 100vh;
        border-radius: 0;
        border-left: none;
        border-right: none;
    }
    
    .act60-info-modal-header {
        padding: 0.8rem 1rem;
    }
    
    .act60-info-modal-header h2 {
        font-size: 1.2rem;
    }
    
    .act60-info-modal-body {
        padding: 0.5rem;
    }
    
    .act60-info-modal-body iframe {
        min-height: 400px;
    }
}
