/* ===== SECCIÓN HERO SERVICIOS ===== */
.seccion-hero-servicios {
    background: #000000;
    padding: 120px 20px 80px 20px;
    margin-top: 80px;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Ajustes para móviles */
@media (max-width: 768px) {
    .seccion-hero-servicios {
        margin-top: 0;
        padding: 100px 15px 60px 15px;
    }
}

@media (max-width: 480px) {
    .seccion-hero-servicios {
        margin-top: 0;
        padding: 110px 15px 50px 15px;
    }
}

.seccion-hero-servicios::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.contenedor-principal {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.encabezado-seccion {
    text-align: center;
    margin-bottom: 60px;
}

.titulo-seccion {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
}

@media (max-width: 768px) {
    .titulo-seccion {
        font-size: 2.5em;
        letter-spacing: 2px;
    }
}

@media (max-width: 480px) {
    .titulo-seccion {
        font-size: 2em;
        letter-spacing: 1px;
    }
}

.titulo-seccion::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, #FFD700 50%, transparent 100%);
}

.subtitulo-seccion {
    font-size: 1.3em;
    color: #cccccc;
    margin-top: 30px;
    font-style: italic;
}

@media (max-width: 768px) {
    .subtitulo-seccion {
        font-size: 1.1em;
    }
}

.descripcion-empresa {
    font-size: 1.1em;
    color: #e0e0e0;
    margin-top: 25px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    font-weight: 300;
}

@media (max-width: 768px) {
    .descripcion-empresa {
        font-size: 1em;
        margin-top: 20px;
    }
}

/* ===== SECCIÓN SERVICIOS PRINCIPALES ===== */
.seccion-servicios-principales {
    background: #000000;
    padding: 100px 20px;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .seccion-servicios-principales {
        padding: 10px 15px;
    }
}

.seccion-servicios-principales::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.servicio-item {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 120px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

@media (max-width: 1024px) {
    .servicio-item {
        flex-direction: column;
        gap: 40px;
        text-align: left;
    }
    
    .servicio-item.servicio-inverso {
        flex-direction: column;
    }
    
    .servicio-contenido {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .servicio-item {
        padding: 30px 20px;
        margin-bottom: 80px;
        gap: 30px;
        text-align: center;
    }
    
    .servicio-contenido {
        text-align: center;
    }
}

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

.servicio-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.6s ease;
}

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

.servicio-inverso {
    flex-direction: row-reverse;
}

.servicio-imagen {
    flex: 1;
    position: relative;
    max-width: 500px;
}

.servicio-imagen img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .servicio-imagen img {
        height: 280px;
        aspect-ratio: 16/10;
        object-fit: cover;
    }
}

@media (max-width: 480px) {
    .servicio-imagen img {
        height: 250px;
        aspect-ratio: 16/10;
        object-fit: cover;
    }
}

.overlay-imagen {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    border-radius: 20px;
    z-index: 1;
    opacity: 0.3;
    transition: opacity 0.4s ease;
}

.servicio-imagen:hover .overlay-imagen {
    opacity: 0.6;
}

.servicio-imagen:hover img {
    transform: scale(1.02) translateY(-5px);
}

.servicio-contenido {
    flex: 1;
    position: relative;
    z-index: 2;
    text-align: left;
}

/* Contenedor para icono y título en línea */
.titulo-con-icono {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .titulo-con-icono {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        text-align: center;
    }
}

.servicio-icono {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
    transition: all 0.4s ease;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .servicio-icono {
        width: 70px;
        height: 70px;
    }
}

.servicio-icono:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.5);
}

.servicio-icono i {
    font-size: 1.5em;
    color: #000000;
}

@media (max-width: 768px) {
    .servicio-icono i {
        font-size: 1.8em;
    }
}

.servicio-contenido h2 {
    font-size: 2.2em;
    color: #FFD700;
    margin: 0;
    font-weight: 700;
    line-height: 1.2;
    flex: 1;
}

@media (max-width: 768px) {
    .servicio-contenido h2 {
        font-size: 1.6em;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .servicio-contenido h2 {
        font-size: 1.4em;
    }
}

.servicio-descripcion {
    font-size: 1.1em;
    color: #e0e0e0;
    line-height: 1.7;
    margin-bottom: 30px;
    text-align: left;
}

@media (max-width: 768px) {
    .servicio-descripcion {
        font-size: 1.05em;
        line-height: 1.6;
        text-align: center;
        margin-bottom: 25px;
    }
}

@media (max-width: 480px) {
    .servicio-descripcion {
        font-size: 1em;
        line-height: 1.5;
    }
}

.servicio-caracteristicas {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
    text-align: left;
}

@media (max-width: 768px) {
    .servicio-caracteristicas {
        text-align: left;
        margin-bottom: 30px;
    }
}

.servicio-caracteristicas li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #ffffff;
    font-size: 1.05em;
    transition: all 0.3s ease;
    text-align: left;
}

@media (max-width: 768px) {
    .servicio-caracteristicas li {
        font-size: 0.95em;
        margin-bottom: 12px;
        justify-content: flex-start;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .servicio-caracteristicas li {
        font-size: 0.9em;
        margin-bottom: 10px;
    }
}

.servicio-caracteristicas li:hover {
    color: #FFD700;
    transform: translateX(10px);
}

.servicio-caracteristicas li i {
    color: #FFD700;
    margin-right: 15px;
    font-size: 1.2em;
    transition: all 0.3s ease;
}

.servicio-caracteristicas li:hover i {
    transform: scale(1.2);
}

.btn-solicitar-servicio {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000000;
    border: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden;
}

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

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

.btn-solicitar-servicio:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.5);
    background: linear-gradient(135deg, #FFA500, #FFD700);
}

/* ===== SECCIÓN CTA SERVICIOS ===== */
.seccion-cta-servicios {
    background: #000000;
    padding: 100px 20px;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .seccion-cta-servicios {
        padding: 80px 15px;
    }
}

.seccion-cta-servicios::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-contenido {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-contenido h3 {
    font-size: 2.5em;
    color: #FFD700;
    margin-bottom: 20px;
    font-weight: 700;
}

@media (max-width: 768px) {
    .cta-contenido h3 {
        font-size: 2em;
    }
}

.cta-contenido p {
    font-size: 1.2em;
    color: #e0e0e0;
    margin-bottom: 40px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .cta-contenido p {
        font-size: 1.1em;
    }
}

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

@media (max-width: 768px) {
    .cta-botones {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
}

.btn-cta-principal,
.btn-cta-secundario {
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    position: relative;
    overflow: hidden;
    min-width: 200px;
}

@media (max-width: 768px) {
    .btn-cta-principal,
    .btn-cta-secundario {
        min-width: 250px;
        padding: 12px 30px;
    }
}

.btn-cta-principal {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000000;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.btn-cta-principal:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.5);
    background: linear-gradient(135deg, #FFA500, #FFD700);
}

.btn-cta-secundario {
    background: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.btn-cta-secundario:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
}

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

.btn-cta-principal:hover::before,
.btn-cta-secundario:hover::before {
    left: 100%;
}

/* ===== ANIMACIONES ===== */
.titulo-animado {
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1s ease forwards;
}

.animar-entrada {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards 0.3s;
}

.animar-entrada-izquierda {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.animar-entrada-derecha {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
}

.card-animacion {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
    transition: all 0.8s ease;
}

.efecto-onda {
    position: relative;
    overflow: hidden;
}

.efecto-onda::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.efecto-onda:hover::after {
    width: 300px;
    height: 300px;
}

/* Delays para animaciones */
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }
.delay-6 { animation-delay: 0.6s; }

/* Keyframes */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

@keyframes cardFadeIn {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Animaciones de scroll */
.fade-in-up {
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition: all 0.8s ease;
}

.fade-in-left {
    opacity: 1 !important;
    transform: translateX(0) !important;
    transition: all 0.8s ease;
}

.fade-in-right {
    opacity: 1 !important;
    transform: translateX(0) !important;
    transition: all 0.8s ease;
}