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

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #18223b;
}

/* Header */
.header {
    background: linear-gradient(135deg, #18223b 0%, #1a2a4a 50%, #18223b 100%);
    padding: 0;
    height: 220px;
    min-height: 220px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 220px;
    min-height: 220px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

/* Logo */
.logo {
    width: 300px !important;
    height: 300px !important;
    min-width: 300px !important;
    min-height: 300px !important;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}

.logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Información de contacto */
.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #FFD700;
    font-size: 18px !important;
    font-weight: 600;
}

.phone i {
    color: #18223b;
    font-size: 18px !important;
    background-color: #FFD700;
    padding: 8px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px !important;
    height: 32px !important;
    min-width: 32px !important;
    min-height: 32px !important;
}

.phone-numbers {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.phone-numbers span {
    color: #FFD700;
    font-size: 16px !important;
    font-weight: 600;
}

/* Redes sociales */
.social-media {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px !important;
    height: 45px !important;
    min-width: 45px !important;
    min-height: 45px !important;
    border-radius: 8px;
    color: #18223b;
    text-decoration: none;
    font-size: 22px !important;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    background-color: #FFD700;
}

.social-icon::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.5s;
}

.social-icon:hover::before {
    left: 100%;
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
    background-color: #FFED4E;
}

.whatsapp {
    background-color: #FFD700;
}

.facebook {
    background-color: #FFD700;
}

.instagram {
    background-color: #FFD700;
}

.tiktok {
    background-color: #FFD700;
}

/* Barra de Navegación */
.navbar {
    background: rgba(24, 34, 59, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 220px;
    z-index: 1001;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 85px;
    position: relative;
}

.nav-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
}



.nav-menu li {
    margin: 0;
}

.nav-menu a {
    display: block;
    color: white;
    text-decoration: none;
    font-family: Arial, sans-serif;
    font-size: 18px !important;
    font-weight: 600;
    padding: 30px 35px !important;
    transition: all 0.3s ease;
    text-transform: none;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    pointer-events: auto;
    cursor: pointer;
    z-index: 10;
}

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

.nav-menu a:hover::before {
    left: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #FFD700 !important;
    background: rgba(255, 215, 0, 0.1) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2) !important;
}

.nav-menu a.active {
    border-bottom: 2px solid #FFD700;
}

/* Hover amarillo para TODOS los enlaces */
a:hover {
    color: #FFD700 !important;
    transition: color 0.3s ease;
}


.nav-menu a:active {
    transform: translateY(-1px);
}

html body .navbar .nav-menu a.nav-privacy-link {
    font-size: 14px !important;
    padding: 18px 22px !important;
    line-height: 1.35;
    text-align: center;
    min-width: fit-content;
    max-width: none;
    box-sizing: border-box;
}

html body .navbar .nav-menu a.nav-privacy-link .nav-privacy-line {
    display: inline-block;
    white-space: nowrap;
}

/* ===== MENÚ RESPONSIVE GLOBAL (CELULAR Y TABLET) ===== */
.mobile-menu-toggle,
.responsive-mobile-menu {
    display: none;
}

/* Slider Hero */
.hero-slider {
    position: relative;
    height: 100vh;
    margin-top: -220px; /* Se extiende hasta el header */
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1.05);
}

.slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 5;
}

.slide.active .slide-content {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    transition: all 0.8s ease-out;
}

.slide-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: linear-gradient(
        135deg,
        rgba(24, 34, 59, 0.9) 0%,
        rgba(24, 34, 59, 0.7) 30%,
        rgba(24, 34, 59, 0.5) 60%,
        rgba(24, 34, 59, 0.3) 100%
    );
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

/* Overlay más sutil solo para el primer slide */
.slide:first-child .slide-overlay {
    background: linear-gradient(
        135deg,
        rgba(24, 34, 59, 0.4) 0%,
        rgba(24, 34, 59, 0.3) 30%,
        rgba(24, 34, 59, 0.2) 60%,
        rgba(24, 34, 59, 0.1) 100%
    );
}

/* Contenido del slider */
.slide-content {
    position: absolute;
    top: 60%;
    left: 50%;
    width: 100%;
    transform: translate(-50%, -50%);
    z-index: 10;
    padding: 40px 60px 0 60px;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.9);
    transition: all 0.8s ease-out;
}

.slide-content .hero-text {
    max-width: 800px;
    text-align: left;
    margin-top: 20px;
}



.slide-content .hero-title {
    font-family: Arial, sans-serif;
    font-weight: bold;
    color: #FFFFFF;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.slide-content .hero-title-main {
    font-size: 3rem;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.slide-content .hero-title-sub {
    font-size: 2rem;
    letter-spacing: 2px;
    font-weight: 600;
}

.slide-content .hero-description {
    font-family: Arial, sans-serif;
    font-size: 1.1rem;
    color: #FFFFFF;
    line-height: 1.5;
    margin-bottom: 35px;
    opacity: 1;
}

.slide-content .hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: flex-start;
    position: relative;
    z-index: 15;
    pointer-events: auto;
}

.slide-content .btn-primary {
    background: #FFD700;
    color: #18223b;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-family: Arial, sans-serif;
    font-weight: bold;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    position: relative;
    z-index: 15;
    pointer-events: auto;
    cursor: pointer;
}

.slide-content .btn-primary:hover {
    background: #FFED4E;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.slide-content .btn-secondary {
    background: transparent;
    color: #FFFFFF;
    padding: 16px 32px;
    border: 2px solid #FFFFFF;
    border-radius: 8px;
    text-decoration: none;
    font-family: Arial, sans-serif;
    font-weight: bold;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.slide-content .btn-secondary:hover {
    background: #FFFFFF;
    color: #18223b;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* Animaciones para el slider */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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



/* Efecto de resplandor para el título */
.slide.active .main-title {
    animation: slideInLeft 1s ease-out 0.5s forwards, glow 2s ease-in-out 1.5s infinite alternate;
}



@keyframes glow {
    from {
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7), 0 0 10px rgba(255, 255, 255, 0.3);
    }
    to {
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7), 0 0 20px rgba(255, 255, 255, 0.6);
    }
}

/* Controles del Slider */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(24, 34, 59, 0.8);
    border: 2px solid #FFD700;
    color: #FFD700;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-btn:hover {
    background: #FFD700;
    color: #18223b;
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 30px;
}

.next-btn {
    right: 30px;
}

/* Indicadores */
.slider-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.indicator {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #FFD700;
    transform: scale(1.2);
}

.indicator:hover {
    background: #FFD700;
    transform: scale(1.1);
}

/* Sección de Video */
.video-section {
    background: linear-gradient(135deg, #18223b 0%, #1a2a4a 50%, #18223b 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.video-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 60%),
        radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.video-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 215, 0, 0.2);
}

.intro-video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

/* Responsive para video */
@media (max-width: 768px) {
    .video-section {
        padding: 60px 0;
    }
    
    .video-wrapper {
        padding: 0 15px;
        border-radius: 15px;
    }
    
    .intro-video {
        border-radius: 15px;
    }
}

/* Sección de Presentación de la Empresa */
.company-presentation {
    background: #18223b;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.company-presentation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.25) 0%, transparent 60%),
        radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.2) 0%, transparent 60%),
        linear-gradient(45deg, transparent 20%, rgba(255, 215, 0, 0.15) 50%, transparent 80%);
}

.company-presentation::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(255, 215, 0, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.08) 0%, transparent 30%);
    animation: modernFloat 12s ease-in-out infinite;
}

@keyframes modernFloat {
    0%, 100% {
        transform: translateY(0px) scale(1);
        opacity: 0.8;
    }
    33% {
        transform: translateY(-15px) scale(1.1);
        opacity: 1;
    }
    66% {
        transform: translateY(10px) scale(0.9);
        opacity: 0.6;
    }
}

.presentation-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.presentation-content {
    text-align: left;
    color: white;
}

.company-title {
    font-family: Arial, sans-serif;
    font-size: 3.2rem;
    font-weight: bold;
    margin-bottom: 40px;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(-50px) scale(0.9);
    animation: slideInFromTop 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    position: relative;
}

/* Título sin decoraciones - diseño limpio y moderno */

.presentation-text {
    max-width: 1000px;
    margin: 0 auto 80px;
}

.main-description {
    font-family: Arial, sans-serif;
    font-size: 1.8rem;
    font-weight: normal;
    margin-bottom: 25px;
    color: #FFFFFF;
    line-height: 1.6;
    opacity: 0;
    transform: translateX(-100px);
    animation: slideInFromLeft 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s forwards;
}

/* Animación eliminada - diseño limpio */

/* Nuevas animaciones modernas */
@keyframes slideInFromTop {
    0% {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes slideInFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    0% {
        opacity: 0;
        transform: translateX(100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.secondary-description {
    font-family: Arial, sans-serif;
    font-size: 1.5rem;
    font-weight: normal;
    color: #FFFFFF;
    line-height: 1.6;
    opacity: 0;
    transform: translateX(100px);
    animation: slideInFromRight 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.6s forwards;
}

/* Diseño limpio y moderno sin animaciones complejas */
.presentation-text {
    position: relative;
}

.main-description {
    position: relative;
    overflow: hidden;
}

.secondary-description {
    position: relative;
}



/* Sección de Certificaciones */
.certifications-section {
    background: #18223b;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}



.certifications-content {
    position: relative;
    z-index: 2;
}

.certifications-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: Arial, sans-serif;
    font-size: 2.5rem;
    font-weight: bold;
    color: #FFD700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    animation: slideInFromTop 1s ease-out;
}

.section-subtitle {
    font-family: Arial, sans-serif;
    font-size: 1.2rem;
    color: #FFFFFF;
    opacity: 0.9;
    animation: slideInFromTop 1s ease-out 0.2s both;
}

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

.certification-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    animation: slideInFromLeft 0.8s ease-out both;
}

.certification-item:nth-child(2) { animation-delay: 0.1s; }
.certification-item:nth-child(3) { animation-delay: 0.2s; }
.certification-item:nth-child(4) { animation-delay: 0.3s; }
.certification-item:nth-child(5) { animation-delay: 0.4s; }
.certification-item:nth-child(6) { animation-delay: 0.5s; }

.certification-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.5);
}

.certification-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FFD700, #FFED4E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: #18223b;
    transition: all 0.3s ease;
}

.certification-item:hover .certification-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4);
}

.certification-item h3 {
    font-family: Arial, sans-serif;
    font-size: 1.3rem;
    font-weight: bold;
    color: #FFFFFF;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.certification-item p {
    font-family: Arial, sans-serif;
    font-size: 1rem;
    color: #FFFFFF;
    opacity: 0.8;
    line-height: 1.5;
}

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

.highlight-item {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    align-items: flex-start;
    gap: 25px;
    transition: all 0.3s ease;
    animation: slideInFromRight 0.8s ease-out both;
}

.highlight-item:nth-child(2) { animation-delay: 0.3s; }

.highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(255, 215, 0, 0.15);
    border-color: rgba(255, 215, 0, 0.6);
}

.highlight-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #FFD700, #FFED4E);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #18223b;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.highlight-item:hover .highlight-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

.highlight-content h3 {
    font-family: Arial, sans-serif;
    font-size: 1.4rem;
    font-weight: bold;
    color: #FFD700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.highlight-content p {
    font-family: Arial, sans-serif;
    font-size: 1.1rem;
    color: #FFFFFF;
    line-height: 1.6;
    opacity: 0.9;
}

/* Animaciones */
@keyframes slideInFromTop {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

/* Sección Quiénes Somos */
.about-section {
    background: linear-gradient(135deg, #1a2a4a 0%, #18223b 50%, #1a2a4a 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 60%),
        radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.08) 0%, transparent 60%);
    z-index: 1;
}

.about-content {
    position: relative;
    z-index: 2;
}

.about-header {
    text-align: center;
    margin-bottom: 60px;
}

.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-text {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
    padding: 40px;
    animation: slideInFromLeft 0.8s ease-out;
}

.about-description h3 {
    font-family: Arial, sans-serif;
    font-size: 1.5rem;
    font-weight: bold;
    color: #FFD700;
    margin-bottom: 15px;
    margin-top: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-description h3:first-child {
    margin-top: 0;
}

.about-description p {
    font-family: Arial, sans-serif;
    font-size: 1rem;
    color: #FFFFFF;
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.9;
}

.about-description ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-description li {
    font-family: Arial, sans-serif;
    font-size: 1rem;
    color: #FFFFFF;
    line-height: 1.6;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    opacity: 0.9;
}

.about-description li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #FFD700;
    font-weight: bold;
    font-size: 1.2rem;
}

.about-catalog {
    animation: slideInFromRight 0.8s ease-out;
}

.catalog-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.catalog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.6);
}

.catalog-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FFD700, #FFED4E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2.5rem;
    color: #18223b;
    transition: all 0.3s ease;
}

.catalog-card:hover .catalog-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4);
}

.catalog-card h3 {
    font-family: Arial, sans-serif;
    font-size: 1.4rem;
    font-weight: bold;
    color: #FFFFFF;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.catalog-card p {
    font-family: Arial, sans-serif;
    font-size: 1rem;
    color: #FFFFFF;
    line-height: 1.5;
    margin-bottom: 25px;
    opacity: 0.9;
}

.btn-catalog {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #FFD700, #FFED4E);
    color: #18223b;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-family: Arial, sans-serif;
    font-weight: bold;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.btn-catalog:hover {
    background: linear-gradient(135deg, #FFED4E, #FFD700);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    color: #18223b;
}

.btn-catalog i {
    font-size: 18px;
}

/* Responsive para Quiénes Somos */
@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-text {
        padding: 30px;
    }
    
    .catalog-card {
        padding: 30px;
    }
    
    .about-description h3 {
        font-size: 1.3rem;
    }
    
    .about-description p {
        font-size: 0.95rem;
    }
}

/* Sección hero */
.hero {
    padding: 80px 20px;
    text-align: center;
    color: white;
}

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

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #FFD700;
}

.hero p {
    font-size: 1.2rem;
    color: #E0E0E0;
}

/* Media Queries para responsividad */
@media (max-width: 1024px) {
    /* Header/nav en móvil: evita superposición sobre contenido */
    .header {
        position: relative;
        top: auto;
    }

    .navbar {
        position: sticky;
        top: 0;
    }

    .navbar .nav-menu {
        display: none;
    }

    .nav-container {
        justify-content: flex-end;
        min-height: 76px;
    }

    .mobile-menu-toggle {
        width: 58px;
        height: 58px;
        border-radius: 50%;
        border: none;
        background: #FFD700;
        color: #18223b;
        font-size: 1.45rem;
        font-weight: 700;
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
        transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
    }

    .mobile-menu-toggle:hover,
    .mobile-menu-toggle:focus-visible {
        transform: translateY(-2px) scale(1.02);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.42);
        background: #ffe24d;
        outline: none;
    }

    .mobile-menu-toggle.is-open i {
        transform: rotate(90deg);
        transition: transform 0.25s ease;
    }

    .responsive-mobile-menu {
        position: absolute;
        top: calc(100% + 10px);
        right: 20px;
        width: min(88vw, 360px);
        list-style: none;
        margin: 0;
        padding: 14px;
        border-radius: 14px;
        background: rgba(24, 34, 59, 0.97);
        border: 1px solid rgba(255, 255, 255, 0.12);
        box-shadow: 0 16px 36px rgba(0, 0, 0, 0.42);
        opacity: 0;
        transform: translateY(-8px) scale(0.97);
        transform-origin: top right;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
        z-index: 1200;
        display: block;
    }

    .responsive-mobile-menu.is-open {
        opacity: 1;
        transform: translateY(0) scale(1);
        visibility: visible;
        pointer-events: auto;
    }

    .responsive-mobile-menu li + li {
        margin-top: 8px;
    }

    .responsive-mobile-menu a {
        display: block;
        color: #ffffff;
        text-decoration: none;
        font-size: 1.03rem;
        font-weight: 600;
        line-height: 1.35;
        padding: 12px 14px;
        border-radius: 10px;
        transition: background-color 0.25s ease, color 0.25s ease;
    }

    .responsive-mobile-menu a:hover,
    .responsive-mobile-menu a:focus-visible {
        background: rgba(255, 215, 0, 0.2);
        color: #FFD700;
        outline: none;
    }

    .mobile-debug-badge,
    .mobile-social-links {
        display: none !important;
    }

    .header-container {
        max-width: 900px;
        padding: 0 15px;
    }
    
    .nav-container {
        max-width: 900px;
        padding: 0 15px;
    }
    
    .nav-menu a {
        padding: 30px 35px !important;
        font-size: 18px !important;
    }
    
    .logo {
        width: 300px !important;
        height: 300px !important;
        min-width: 300px !important;
        min-height: 300px !important;
    }
    
    .phone {
        font-size: 18px !important;
    }
    
    .phone i {
        width: 32px !important;
        height: 32px !important;
        min-width: 32px !important;
        min-height: 32px !important;
        font-size: 18px !important;
    }
    
    .phone-numbers span {
        font-size: 16px !important;
    }
    
    .social-icon {
        width: 45px !important;
        height: 45px !important;
        min-width: 45px !important;
        min-height: 45px !important;
        font-size: 22px !important;
    }
    
    .nav-menu a {
        padding: 30px 35px !important;
        font-size: 18px !important;
    }
    
    .phone {
        font-size: 16px;
    }
    
    .phone i {
        width: 30px;
        height: 30px;
        font-size: 17px;
        padding: 7px;
    }
    
    .social-icon {
        width: 42px;
        height: 42px;
        font-size: 21px;
    }
    
    /* Slider responsivo */
    .slide-content .main-title {
        font-size: 2.8rem;
    }
    
    .slide-content .first-paragraph,
    .slide-content .second-paragraph {
        font-size: 1.3rem;
    }
    
    /* Presentación responsiva */
    .company-title {
        font-size: 2.8rem;
    }
    
    .main-description {
        font-size: 1.4rem;
    }
    
    .secondary-description {
        font-size: 1.2rem;
    }
    
    .presentation-stats {
        gap: 40px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .slider-btn {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    /* Hero Main responsivo */
    .slide-content .hero-title-main {
        font-size: 2.5rem;
    }
    
    .slide-content .hero-title-sub {
        font-size: 1.6rem;
    }
    

    
    .slide-content .hero-description {
        font-size: 1rem;
    }
    
    .slide-content .hero-description {
        font-size: 1.1rem;
    }
    
    .slide-content {
        padding: 0 40px;
        max-width: 1200px;
    }
    
    .slide-content .hero-text {
        max-width: 700px;
        text-align: left;
    }
}

@media (min-width: 1025px) {
    .mobile-menu-toggle,
    .responsive-mobile-menu {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .header {
        height: 220px !important;
        min-height: 220px !important;
        padding: 0;
    }
    
    .header-container {
        flex-direction: row;
        height: 220px !important;
        min-height: 220px !important;
        gap: 20px;
        padding: 0 20px;
    }
    
    .logo {
        width: 300px !important;
        height: 300px !important;
        min-width: 300px !important;
        min-height: 300px !important;
    }
    
    .contact-info {
        order: 2;
    }
    
    .phone {
        font-size: 18px !important;
    }
    
    .phone i {
        width: 32px !important;
        height: 32px !important;
        min-width: 32px !important;
        min-height: 32px !important;
        font-size: 18px !important;
        padding: 8px;
    }
    
    .phone-numbers span {
        font-size: 16px !important;
    }
    
    .social-icon {
        width: 45px !important;
        height: 45px !important;
        min-width: 45px !important;
        min-height: 45px !important;
        font-size: 22px !important;
    }
    
    .social-media {
        order: 3;
        gap: 12px;
    }
    
    /* Hero Main móvil */
    .slide-content .hero-title-main {
        font-size: 2rem;
        letter-spacing: 2px;
    }
    
    .slide-content .hero-title-sub {
        font-size: 1.3rem;
        letter-spacing: 1px;
    }
    

    
    .slide-content .hero-description {
        font-size: 0.9rem;
    }
    
    /* Certificaciones responsivo */
    .section-title {
        font-size: 2rem;
    }
    
    .certifications-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .certification-item {
        padding: 25px;
    }
    
    .services-highlight {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .highlight-item {
        padding: 30px;
        flex-direction: column;
        text-align: center;
    }
    
    .highlight-icon {
        margin: 0 auto 20px;
    }
    
    .slide-content .hero-description {
        font-size: 1rem;
    }
    
    .slide-content .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .slide-content .btn-primary,
    .slide-content .btn-secondary {
        padding: 14px 28px;
        font-size: 14px;
        text-align: center;
    }
    
    .slide-content {
        padding: 0 20px;
        max-width: 100%;
    }
    
    .slide-content .hero-text {
        max-width: 100%;
        text-align: left;
    }
    

    
    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
    }
    
        .nav-menu a {
        padding: 30px 35px !important;
        font-size: 18px !important;
    }
    
    .social-icon {
        width: 45px;
        height: 45px;
        font-size: 24px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    /* Slider móvil */
    .hero-slider {
        margin-top: 0;
        height: 70vh;
    }
    
    .slide-content .main-title {
        font-size: 2.2rem;
    }
    
    .slide-content .first-paragraph,
    .slide-content .second-paragraph {
        font-size: 1.1rem;
    }
    
    /* Presentación móvil */
    .company-presentation {
        padding: 60px 0;
    }
    
    .company-title {
        font-size: 2.2rem;
        margin-bottom: 30px;
    }
    
    .main-description {
        font-size: 1.2rem;
    }
    
    .secondary-description {
        font-size: 1.1rem;
    }
    
    .presentation-stats {
        gap: 30px;
        margin-top: 40px;
    }
    
    .stat-item {
        gap: 10px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 1rem;
        max-width: 120px;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .prev-btn {
        left: 15px;
    }
    
    .next-btn {
        right: 15px;
    }
    
    .slider-indicators {
        bottom: 20px;
    }
}

@media (max-width: 480px) {
    .header {
        height: 220px !important;
        min-height: 220px !important;
    }
    
    .header-container {
        height: 220px !important;
        min-height: 220px !important;
        padding: 0 20px;
        gap: 20px;
    }
    
    .navbar {
        min-height: 85px !important;
    }
    
    .nav-container {
        min-height: 85px !important;
        padding: 15px 20px !important;
    }
    
    .logo {
        width: 300px !important;
        height: 300px !important;
        min-width: 300px !important;
        min-height: 300px !important;
    }
    
    .phone {
        font-size: 18px !important;
    }
    
    .phone i {
        width: 32px !important;
        height: 32px !important;
        min-width: 32px !important;
        min-height: 32px !important;
        font-size: 18px !important;
        padding: 8px;
    }
    
    .phone-numbers span {
        font-size: 16px !important;
    }
    
    .social-icon {
        width: 45px !important;
        height: 45px !important;
        min-width: 45px !important;
        min-height: 45px !important;
        font-size: 22px !important;
    }
    
    .nav-menu a {
        padding: 30px 35px !important;
        font-size: 18px !important;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    /* Sección de Contacto - Responsive */
    .contact-section {
        padding: 40px 0;
    }
    
    .contact-hero {
        padding: 80px 0 60px;
    }
    
    .contact-main-title {
        font-size: 2.5rem;
    }
    
    .contact-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .contact-main-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 40px 20px;
    }
    
    .card-header h2,
    .locations-title {
        font-size: 1.5rem;
    }
    
    .contact-info-card,
    .locations-container {
        padding: 25px 20px;
    }
    
    .contact-detail-item {
        padding: 20px;
    }
    
    .detail-icon {
        width: 50px;
        height: 50px;
    }
    
    .detail-icon i {
        font-size: 1.2rem;
    }
}

/* Sección de Revista */
.revista-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #18223b 0%, #1a2a4a 50%, #18223b 100%);
    position: relative;
    overflow: hidden;
}

.revista-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.02)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.02)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.01)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.01)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.01)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.revista-section .container {
    position: relative;
    z-index: 2;
}

.revista-header {
    text-align: center;
    margin-bottom: 40px;
}

.revista-header h2 {
    font-size: 2.5rem;
    color: #FFD700;
    margin-bottom: 10px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.revista-header p {
    font-size: 1.2rem;
    color: #FFFFFF;
    opacity: 0.9;
}

.revista-iframe-container {
    position: relative;
    background: #f5f5f5;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin-bottom: 30px;
    height: 600px;
}

.revista-iframe-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.revista-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.revista-action-btn {
    background: #FFD700;
    color: #18223b;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.revista-action-btn:hover {
    background: #FFED4E;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.revista-action-btn i {
    font-size: 18px;
}

/* Sección de Contacto - Nuevo Diseño */
.contact-section {
    background: linear-gradient(135deg, #0f141f 0%, #18223b 50%, #0f141f 100%);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.15)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.4;
}

/* Hero de Contacto */
.contact-hero {
    background: rgba(24, 34, 59, 0.95);
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    backdrop-filter: blur(10px);
}

.contact-hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-main-title {
    font-size: 4rem;
    font-weight: bold;
    color: #ffd700;
    margin-bottom: 20px;
    font-family: Arial, sans-serif;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    animation: slideInFromTop 1s ease-out;
}

.contact-hero-subtitle {
    font-size: 1.3rem;
    color: #ffffff;
    font-family: Arial, sans-serif;
    opacity: 0.9;
    animation: slideInFromTop 1s ease-out 0.2s both;
}

/* Contenido Principal de Contacto */
.contact-main-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 20px;
    position: relative;
}

/* Panel Izquierdo - Información de Contacto */
.contact-left-panel {
    animation: slideInFromLeft 1s ease-out 0.4s both;
}

.contact-info-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 215, 0, 0.6);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
}

.card-header i {
    font-size: 2.5rem;
    color: #ffd700;
    background: linear-gradient(135deg, #18223b, #0f141f);
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.card-header h2 {
    color: #ffffff;
    font-size: 2rem;
    font-weight: bold;
    font-family: Arial, sans-serif;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.contact-detail-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 215, 0, 0.4);
    transform: translateX(10px);
}

.detail-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.detail-icon i {
    font-size: 1.5rem;
    color: #18223b;
}

.detail-content h3 {
    color: #ffd700;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 10px;
    font-family: Arial, sans-serif;
}

.detail-content p {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 5px;
    font-family: Arial, sans-serif;
}

.phone-number {
    font-weight: bold;
    color: #ffed4e !important;
    font-size: 1.1rem !important;
}

/* Panel Derecho - Ubicaciones */
.contact-right-panel {
    animation: slideInFromRight 1s ease-out 0.6s both;
}

.locations-container {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.locations-container:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 215, 0, 0.6);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.locations-title {
    color: #ffffff;
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 40px;
    font-family: Arial, sans-serif;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
}

.location-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.location-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 215, 0, 0.4);
    transform: translateX(10px);
}

.location-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.location-header i {
    font-size: 1.5rem;
    color: #ffd700;
    background: linear-gradient(135deg, #18223b, #0f141f);
    padding: 12px;
    border-radius: 12px;
}

.location-header h3 {
    color: #ffd700;
    font-size: 1.3rem;
    font-weight: bold;
    font-family: Arial, sans-serif;
}

.location-address {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 10px;
    font-family: Arial, sans-serif;
    padding-left: 45px;
}

.location-type {
    color: #ffed4e;
    font-size: 0.9rem;
    font-weight: bold;
    font-family: Arial, sans-serif;
    padding-left: 45px;
    opacity: 0.8;
}

/* Botón Volver */
.contact-actions {
    text-align: center;
    padding: 60px 20px;
    position: relative;
}

.btn-back {
    display: inline-block;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #18223b;
    padding: 18px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-family: Arial, sans-serif;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-back::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.5s;
}

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

.btn-back:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.4);
    background: linear-gradient(135deg, #ffed4e, #ffd700);
}

/* Hero Section para Servicios */
.services-hero {
    background: linear-gradient(135deg, #18223b 0%, #1a2a4a 50%, #18223b 100%);
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    overflow: hidden;
}

.services-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 60%),
        radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 40% 40%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(1deg); }
}


.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content .hero-title {
    color: #FFD700;
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 
        2px 2px 4px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(255, 215, 0, 0.3),
        0 0 40px rgba(255, 215, 0, 0.2);
    opacity: 0;
    transform: translateY(30px);
    animation: titleSlideIn 1.2s ease-out 0.3s forwards;
    position: relative;
}

.hero-content .hero-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #FFD700, transparent);
    border-radius: 2px;
    animation: titleUnderline 2s ease-out 1.5s forwards;
    opacity: 0;
}

@keyframes titleUnderline {
    0% {
        opacity: 0;
        width: 0;
    }
    100% {
        opacity: 1;
        width: 100px;
    }
}

@keyframes titleSlideIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content .hero-subtitle {
    color: #ffffff;
    font-size: 1.3rem;
    opacity: 0;
    line-height: 1.6;
    transform: translateY(20px);
    animation: subtitleSlideIn 1s ease-out 0.8s forwards;
}

@keyframes subtitleSlideIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 0.9;
        transform: translateY(0);
    }
}



/* Sección de Servicios */
.services-section {
    background: linear-gradient(135deg, #18223b 0%, #1a2a4a 30%, #18223b 70%, #1a2a4a 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(255, 215, 0, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.04) 0%, transparent 40%);
    pointer-events: none;
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.services-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(255, 215, 0, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(255, 215, 0, 0.06) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

/* Elementos decorativos flotantes */
.services-section::after {
    content: '';
    position: absolute;
    top: 10%;
    right: 5%;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.services-section::before {
    content: '';
    position: absolute;
    bottom: 20%;
    left: 3%;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23ffffff" stroke-width="0.3" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    pointer-events: none;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.services-header .section-title {
    color: #FFD700;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.services-header .section-subtitle {
    color: #ffffff;
    font-size: 1.2rem;
    opacity: 0.9;
}

.services-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.services-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.3s ease;
    opacity: 0;
    animation: imageFadeIn 1s ease-out 0.5s forwards;
}

@keyframes imageFadeIn {
    0% {
        opacity: 0;
        transform: perspective(1000px) rotateY(-5deg) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: perspective(1000px) rotateY(-5deg) scale(1);
    }
}

.image-container:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.monitoring-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    max-height: 1000px;
    max-width: 500px;
    margin: 0 auto;
}

.panic-button-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    max-height: 700px;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.8), rgba(255, 237, 78, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.overlay-content {
    text-align: center;
    color: #18223b;
}

.overlay-content i {
    font-size: 3rem;
    margin-bottom: 10px;
    display: block;
}

.overlay-content span {
    font-size: 1.5rem;
    font-weight: bold;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 215, 0, 0.02));
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    animation: serviceItemSlideIn 0.8s ease-out forwards;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent, rgba(255, 215, 0, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-item:hover::before {
    opacity: 1;
}

.service-item:nth-child(1) { animation-delay: 0.2s; }
.service-item:nth-child(2) { animation-delay: 0.4s; }
.service-item:nth-child(3) { animation-delay: 0.6s; }
.service-item:nth-child(4) { animation-delay: 0.8s; }

@keyframes serviceItemSlideIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.service-item:hover::before {
    left: 100%;
}

.service-item:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.2);
}

.service-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FFD700, #FFED4E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #18223b;
    box-shadow: 
        0 5px 15px rgba(255, 215, 0, 0.3),
        0 0 20px rgba(255, 215, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    transition: transform 0.6s ease;
}

.service-item:hover .service-icon::before {
    transform: rotate(45deg) translate(50%, 50%);
}

.service-content h3 {
    color: #FFD700;
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: bold;
}

.service-content p {
    color: #ffffff;
    line-height: 1.6;
    opacity: 0.9;
}

.services-cta {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 237, 78, 0.08));
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    border: 2px solid rgba(255, 215, 0, 0.3);
    position: relative;
    z-index: 2;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.2),
        0 0 30px rgba(255, 215, 0, 0.1);
}

.services-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 215, 0, 0.05), transparent);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.services-cta:hover::before {
    opacity: 1;
}

.cta-content h3 {
    color: #FFD700;
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: bold;
}

.cta-content p {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #FFD700, #FFED4E);
    color: #18223b;
    box-shadow: 
        0 5px 15px rgba(255, 215, 0, 0.3),
        0 0 20px rgba(255, 215, 0, 0.2);
    position: relative;
    overflow: hidden;
}

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

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

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4);
}

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

.btn-secondary:hover {
    background: #FFD700;
    color: #18223b;
    transform: translateY(-3px);
}

/* Responsive para servicios */
@media (max-width: 1024px) {
    .services-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .services-header .section-title {
        font-size: 2rem;
    }
    
    .hero-content .hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .services-hero {
        height: 50vh;
        background-attachment: scroll;
    }
    
    .hero-content .hero-title {
        font-size: 2rem;
    }
    
    .hero-content .hero-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 60px 0;
    }
    
    .services-header .section-title {
        font-size: 1.8rem;
    }
    
    .service-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .contact-main-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 60px 20px;
    }
    
    .contact-main-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 80px 0 60px;
    }
    
    .contact-main-title {
        font-size: 2.5rem;
    }
    
    .contact-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .card-header h2,
    .locations-title {
        font-size: 1.5rem;
    }
    
    .contact-info-card,
    .locations-container {
        padding: 30px 20px;
    }
}

/* Sección de Patrullaje Disuasivo */
.patrol-section {
    background: linear-gradient(135deg, #18223b 0%, #1a2a4a 25%, #18223b 50%, #1a2a4a 75%, #18223b 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.patrol-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255, 215, 0, 0.1) 0%, transparent 60%),
        radial-gradient(circle at 70% 70%, rgba(255, 215, 0, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.06) 0%, transparent 50%);
    pointer-events: none;
    animation: drift 10s ease-in-out infinite;
}

@keyframes drift {
    0%, 100% { transform: translateX(0px) translateY(0px); }
    25% { transform: translateX(5px) translateY(-3px); }
    50% { transform: translateX(-3px) translateY(5px); }
    75% { transform: translateX(3px) translateY(-2px); }
}


.patrol-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.patrol-image {
    position: relative;
}

.patrol-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.patrol-services {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.patrol-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 215, 0, 0.02));
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.patrol-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent, rgba(255, 215, 0, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.patrol-item:hover::before {
    opacity: 1;
}

.patrol-item:hover {
    transform: translateX(10px);
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.2);
}

/* Sección de Monitoreo de Video */
.video-monitoring-section {
    background: linear-gradient(135deg, #18223b 0%, #1a2a4a 20%, #18223b 40%, #1a2a4a 60%, #18223b 80%, #1a2a4a 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.video-monitoring-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 15% 15%, rgba(255, 215, 0, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 85% 85%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 20%, rgba(255, 215, 0, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 20% 70%, rgba(255, 215, 0, 0.06) 0%, transparent 40%);
    pointer-events: none;
    animation: shimmer 12s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    25% { opacity: 1; transform: scale(1.02); }
    50% { opacity: 0.8; transform: scale(0.98); }
    75% { opacity: 0.9; transform: scale(1.01); }
}


.video-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 2;
}

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

.video-item {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 215, 0, 0.02));
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.video-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent, rgba(255, 215, 0, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-item:hover::before {
    opacity: 1;
}

.video-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.2);
}

.video-item .service-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FFD700, #FFED4E);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #1a2332;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
    flex-shrink: 0;
}

.video-item .service-content h3 {
    color: #FFD700;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.3;
}

.video-item .service-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    font-size: 0.9rem;
}

.video-image {
    position: sticky;
    top: 100px;
}

.video-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Sección de Otros Servicios */
.other-services-section {
    background: linear-gradient(135deg, #18223b 0%, #1a2a4a 15%, #18223b 35%, #1a2a4a 55%, #18223b 75%, #1a2a4a 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.other-services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(255, 215, 0, 0.1) 0%, transparent 55%),
        radial-gradient(circle at 75% 75%, rgba(255, 215, 0, 0.08) 0%, transparent 55%),
        radial-gradient(circle at 40% 60%, rgba(255, 215, 0, 0.06) 0%, transparent 45%),
        radial-gradient(circle at 60% 40%, rgba(255, 215, 0, 0.05) 0%, transparent 45%);
    pointer-events: none;
    animation: breathe 14s ease-in-out infinite;
}

@keyframes breathe {
    0%, 100% { opacity: 0.6; transform: scale(1) rotate(0deg); }
    33% { opacity: 0.9; transform: scale(1.01) rotate(0.5deg); }
    66% { opacity: 0.7; transform: scale(0.99) rotate(-0.3deg); }
}


.other-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
}

.other-service-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 215, 0, 0.02));
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

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

.other-service-card:hover::before {
    left: 100%;
}

.other-service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(255, 215, 0, 0.2);
}

.other-service-card .service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FFD700, #FFED4E);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #1a2332;
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
    margin: 0 auto 25px;
}

.other-service-card h3 {
    color: #FFD700;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.other-service-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Responsive para nuevas secciones */
@media (max-width: 1024px) {
    .patrol-content,
    .video-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .video-services {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .other-services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .patrol-img,
    .video-img {
        height: 300px;
    }
    
    .video-services {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .patrol-item,
    .video-item {
        padding: 20px;
    }
    
    .other-service-card {
        padding: 30px 20px;
    }
}

/* Sección del Catálogo */
.catalog-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #18223b 0%, #1a2a4a 50%, #18223b 100%);
    position: relative;
    overflow: hidden;
}

.catalog-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 60%),
        radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.08) 0%, transparent 60%);
    z-index: 1;
}

.catalog-section .container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.catalog-header {
    text-align: center;
    margin-bottom: 40px;
}

.catalog-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.catalog-header p {
    font-size: 1.2rem;
    color: #ffffff;
    opacity: 0.9;
    margin: 0;
}

.catalog-close {
    background: rgba(24, 34, 59, 0.9);
    color: #FFD700;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.catalog-close:hover {
    background: #FFD700;
    color: #18223b;
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

.catalog-iframe-container {
    position: relative;
    background: #f5f5f5;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin-bottom: 30px;
    height: 600px;
}

.catalog-iframe-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    background: white;
}

.catalog-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.catalog-action-btn {
    background: linear-gradient(135deg, #FFD700, #FFED4E);
    color: #18223b;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.catalog-action-btn:hover {
    background: linear-gradient(135deg, #FFED4E, #FFD700);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

.catalog-action-btn i {
    font-size: 18px;
}

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

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

/* Responsive para el modal */
@media (max-width: 1024px) {
    .catalog-modal-content {
        width: 98%;
        height: 98%;
    }
    
    .catalog-header {
        padding: 15px 20px;
    }
    
    .catalog-header h2 {
        font-size: 1.5rem;
    }
    
    .catalog-header p {
        font-size: 1rem;
    }
    
    .catalog-actions {
        padding: 15px 20px;
        flex-wrap: wrap;
    }
    
    .catalog-action-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .catalog-modal-content {
        width: 100%;
        height: 100%;
        border-radius: 0;
    }
    
    .catalog-header {
        padding: 15px;
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .catalog-header h2 {
        font-size: 1.3rem;
    }
    
    .catalog-close {
        position: absolute;
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .catalog-actions {
        padding: 15px;
        flex-direction: column;
    }
    
    .catalog-action-btn {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
    }
}

/* Estilos para la Sección de Contacto */
.contact-section {
    background: linear-gradient(135deg, #18223b 0%, #1a2a4a 50%, #18223b 100%) !important;
    padding: 60px 0 !important;
    min-height: 100vh !important;
    display: block !important;
}

/* Animaciones para la sección de contacto */
@keyframes glow {
    0% { text-shadow: 0 0 20px rgba(255, 193, 7, 0.5); }
    100% { text-shadow: 0 0 30px rgba(255, 193, 7, 0.8), 0 0 40px rgba(255, 193, 7, 0.3); }
}

@keyframes backgroundShift {
    0% { transform: translateX(0) translateY(0); }
    25% { transform: translateX(-10px) translateY(-5px); }
    50% { transform: translateX(10px) translateY(5px); }
    75% { transform: translateX(-5px) translateY(10px); }
    100% { transform: translateX(0) translateY(0); }
}

/* Efectos hover para las tarjetas de contacto - rectángulos delgados */
.contact-card:hover {
    transform: translateY(-5px) scale(1.01) !important;
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.3) !important;
    border-left-width: 6px !important;
    background: rgba(255, 255, 255, 0.12) !important;
}

.contact-card:hover > div:first-child {
    opacity: 1 !important;
}

.contact-card:hover .contact-btn {
    transform: translateY(-2px) scale(1.05) !important;
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.5) !important;
}

/* Efectos hover para las tarjetas de ubicación - rectángulos delgados */
.location-card:hover {
    transform: translateY(-5px) scale(1.01) !important;
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.3) !important;
    border-left-width: 6px !important;
    background: rgba(255, 255, 255, 0.12) !important;
}

.location-card:hover > div:first-child {
    opacity: 1 !important;
}

/* Efectos para los botones de contacto */
.contact-btn:hover {
    transform: translateY(-3px) scale(1.05) !important;
    box-shadow: 0 10px 25px rgba(255, 193, 7, 0.4) !important;
}

/* Efectos para los iconos */
.contact-card:hover .fas,
.contact-card:hover .fab {
    animation: iconPulse 0.6s ease-in-out;
}

@keyframes iconPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Responsive para el diseño de dos columnas */
@media (max-width: 768px) {
    .contact-section .container > div:first-of-type {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }
    
    .contact-section h3 {
        font-size: 1.8rem !important;
    }
    
    .contact-card, .location-card {
        padding: 25px !important;
    }
    
    .contact-card h4, .location-card h4 {
        font-size: 1.4rem !important;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 40px 0 !important;
    }
    
    .contact-section h2 {
        font-size: 2.2rem !important;
    }
    
    .contact-section h3 {
        font-size: 1.6rem !important;
        margin-bottom: 30px !important;
    }
    
    .contact-card, .location-card {
        padding: 20px !important;
        margin-bottom: 20px !important;
    }
    
    .contact-btn {
        padding: 10px 20px !important;
        font-size: 0.9rem !important;
    }
}

.contact-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-header .section-title {
    color: #ffffff !important;
    font-size: 2.5rem !important;
    margin-bottom: 15px !important;
    font-weight: bold !important;
}

.contact-header .section-subtitle {
    color: #b8c5d6 !important;
    font-size: 1.2rem !important;
    max-width: 600px !important;
    margin: 0 auto !important;
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.contact-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
}

.contact-card h3 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: bold;
}

.contact-card p {
    color: #b8c5d6;
    margin-bottom: 10px;
    line-height: 1.6;
}

.phone-numbers p {
    margin-bottom: 8px;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background: linear-gradient(135deg, #45a049, #4CAF50);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.4);
}

.contact-btn.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.contact-btn.whatsapp:hover {
    background: linear-gradient(135deg, #128C7E, #25D366);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

.schedule p {
    margin-bottom: 5px;
}

.locations-section {
    margin-bottom: 50px;
}

.locations-section h3 {
    color: #ffffff;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 30px;
    font-weight: bold;
}

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

.location-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.location-card:hover {
    transform: translateY(-5px);
}

.location-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FF6B6B, #FF5252);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-size: 1.5rem;
    color: white;
}

.location-card h4 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: bold;
}

.location-card p {
    color: #b8c5d6;
    margin-bottom: 8px;
    line-height: 1.5;
}

.social-media-section {
    margin-bottom: 50px;
}

.social-media-section h3 {
    color: #ffffff;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 30px;
    font-weight: bold;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 15px 25px;
    border-radius: 25px;
    text-decoration: none;
    color: white;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.social-link.facebook:hover {
    background: #1877F2;
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #E4405F, #F77737, #FCAF45);
}

.social-link.tiktok:hover {
    background: #000000;
}

.contact-form-section {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-form-section h3 {
    color: #ffffff;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 30px;
    font-weight: bold;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

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

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4CAF50;
    background: rgba(255, 255, 255, 0.15);
}

.form-group select option {
    background: #18223b;
    color: #ffffff;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    padding: 15px;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #45a049, #4CAF50);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.4);
}

/* Responsive para la sección de contacto */
@media (max-width: 768px) {
    .contact-header .section-title {
        font-size: 2rem;
    }
    
    .contact-header .section-subtitle {
        font-size: 1rem;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .locations-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .social-links {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-form-section {
        padding: 25px;
    }
    
    .contact-form-section h3 {
        font-size: 1.5rem;
    }
}
