.gif-bg-container {
    position: relative;
    width: 100%;
    height: 100vh; /* Ajusta según tu diseño (ej: 500px) */
    overflow: hidden;
}

.gif-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    object-fit: cover; /* Cubre todo el espacio sin deformarse */
    z-index: -1; /* Para que el overlay/content vaya encima */
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Ajusta color/opacidad */
}

/* Estilos generales */
.bg-dark {
    background-color: #1a1a1a !important;
}

.text-primary {
    color: #4e73df !important;
}

/* Tarjetas de servicio */
.service-card {
    background: #2d2d2d;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #3d3d3d;
}

.card-hover:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

/* Iconos */
.icon-box {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

/* Títulos */
.service-title {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-align: center;
}

.service-title a {
    color: inherit;
    text-decoration: none;
}

/* Lista de características */
.service-features {
    list-style: none;
    padding-left: 0;
    color: #ccc;
}

.service-features li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.service-features i {
    position: absolute;
    left: 0;
    top: 5px;
}

/* Separadores */
.separator {
    height: 3px;
    width: 80px;
    margin: 20px auto;
    background: currentColor;
}

.separator-primary {
    background: #4e73df;
}

.separator-light {
    background: #fff;
}

/* Botones */
.btn-outline-purple {
    color: #6f42c1;
    border-color: #6f42c1;
}

.btn-outline-purple:hover {
    color: #fff;
    background-color: #6f42c1;
}

/* Efecto hover para todos los botones outline */
[class^="btn-outline-"]:hover {
    color: #fff !important;
    
}
/* ----------------------------------------------------------------------------------- */


/* Estructura general */
.bg-light {
    background-color: #f8f9fa;
}

.section {
    padding: 80px 0;
}

/* Encabezado */
.section-header {
    margin-bottom: 60px;
}

.title {
    font-size: 2.5rem;
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 15px;
}

.subtitle {
    font-size: 1.2rem;
    color: #7f8c8d;
    max-width: 700px;
    margin: 0 auto;
}

.header-divider {
    width: 80px;
    height: 3px;
    background: #3498db;
    margin: 20px auto;
}

/* Tarjetas de servicio */
.service-card {
    background: white;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.service-icon {
    font-size: 2.5rem;
    color: #3498db;
    margin-bottom: 20px;
}

.service-title {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 600;
}

.service-features {
    list-style: none;
    padding-left: 0;
    margin-bottom: 25px;
}

.service-features li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
    color: #34495e;
    line-height: 1.6;
}

.service-features li:before {
    content: "•";
    color: #3498db;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.service-link {
    color: #3498db;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.service-link i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.service-link:hover {
    text-decoration: underline;
}

.service-link:hover i {
    transform: translateX(3px);
}

/* Subheader */
.section-subheader {
    margin: 50px 0;
}

.section-subheader h3 {
    color: #2c3e50;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.section-subheader h3:before,
.section-subheader h3:after {
    content: "";
    position: absolute;
    height: 2px;
    width: 40px;
    background: #bdc3c7;
    top: 50%;
}

.section-subheader h3:before {
    left: -50px;
}

.section-subheader h3:after {
    right: -50px;
}

/* Botón CTA */
.btn-cta {
    padding: 12px 30px;
    font-size: 1.1rem;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(52, 152, 219, 0.3);
}



/* ----------------------------------------------------------------------------------- */



/* Estructura general */
.bg-light {
    background-color: #f8f9fa !important;
}

.section {
    padding: 80px 0;
}

/* Encabezado */
.section-header {
    margin-bottom: 30px;
}

.title {
    font-size: 2.2rem;
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 15px;
}

.subtitle {
    font-size: 1.1rem;
    color: #7f8c8d;
    line-height: 1.6;
}

/* Lista de diferenciadores */
.differentiators-list {
    margin-top: 20px;
}

.differentiator-item {
    display: flex;
    margin-bottom: 25px;
    align-items: flex-start;
}

.differentiator-icon {
    width: 50px;
    height: 50px;
    background: #3498db;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.differentiator-content h4 {
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 5px;
    font-weight: 600;
}

.differentiator-content p {
    color: #7f8c8d;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Galería */
.differentiators-gallery {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.gallery-item {
    position: relative;
}

.img-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 15px;
    font-size: 0.9rem;
    text-align: center;
}

/* Responsive */
@media (max-width: 992px) {
    .differentiator-item {
        flex-direction: column;
    }
    
    .differentiator-icon {
        margin-bottom: 15px;
        margin-right: 0;
    }
}

/* ----------------------------------------------------------------------------------- */





















