/* ===================================
   SECCIÓN NUESTRO ENFOQUE
   =================================== */
.enfoque {
    background-color: var(--blanco);
}

.enfoque-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 60px;
}

.enfoque-item {
    flex: 1 1 200px;
    max-width: 280px;
    min-width: 180px;
    text-align: center;
    padding: 30px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.enfoque-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(46, 74, 125, 0.1);
}

.enfoque-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--azul-corporativo);
    border-radius: 8px;
    overflow: hidden;
}

.enfoque-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.enfoque-title {
    font-family: var(--font-titulos);
    font-size: 20px;
    font-weight: 600;
    color: var(--azul-corporativo);
    line-height: 1.4;
    margin-bottom: 12px;
}

.enfoque-desc {
    font-size: 15px;
    color: var(--gris-oscuro);
    line-height: 1.6;
    max-width: 220px;
    margin: 0 auto;
}

/* ===================================
   SECCIÓN QUÉ HACEMOS
   =================================== */
.que-hacemos {
    background-color: var(--gris-claro);
}

.servicios-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.servicio-card {
    background-color: var(--blanco);
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    border-left: 4px solid var(--amarillo-estrategico);
    cursor: pointer;
}

.servicio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(46, 74, 125, 0.15);
    border-left-width: 6px;
}

.servicio-card h3 {
    font-family: var(--font-titulos);
    font-size: 20px;
    font-weight: 600;
    color: var(--azul-corporativo);
    line-height: 1.4;
}

/* ===================================
   SECCIÓN CÓMO ACOMPAÑAMOS
   =================================== */
.como-acompanamos {
    background-color: var(--blanco);
}

.proceso-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.proceso-step {
    text-align: center;
    padding: 30px 20px;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--amarillo-estrategico);
    color: var(--blanco);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 25px;
    font-family: var(--font-titulos);
}

.proceso-step h3 {
    font-family: var(--font-titulos);
    font-size: 20px;
    font-weight: 600;
    color: var(--azul-corporativo);
    line-height: 1.4;
}

/* ===================================
   CTA HOME
   =================================== */
.cta-home {
    background-color: var(--gris-claro);
    text-align: center;
}

.cta-title {
    font-family: var(--font-titulos);
    font-size: 38px;
    font-weight: 700;
    color: var(--azul-corporativo);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.3;
}

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

/* ===================================
   CARRUSEL — QUÉ HACEMOS
   =================================== */
.que-hacemos {
    background-color: var(--gris-claro);
    padding: 80px 0 60px;
}

.que-hacemos .section-intro {
    text-align: center;
    font-size: 17px;
    color: var(--gris-oscuro);
    max-width: 600px;
    margin: 0 auto 50px;
    line-height: 1.7;
}

.carrusel-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-bottom: 30px;
}

.carrusel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.carrusel-slide {
    min-width: 100%;
    height: 480px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
}

.carrusel-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(46, 74, 125, 0.92) 0%,
        rgba(46, 74, 125, 0.5) 50%,
        rgba(0, 0, 0, 0.1) 100%
    );
}

.carrusel-content {
    position: relative;
    z-index: 2;
    padding: 50px 60px;
    max-width: 700px;
}

.carrusel-numero {
    font-family: var(--font-titulos);
    font-size: 64px;
    font-weight: 700;
    color: var(--amarillo-estrategico);
    opacity: 0.3;
    line-height: 1;
    display: block;
    margin-bottom: -10px;
}

.carrusel-titulo {
    font-family: var(--font-titulos);
    font-size: 30px;
    font-weight: 700;
    color: var(--blanco);
    line-height: 1.3;
    margin-bottom: 16px;
}

.carrusel-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 500px;
}

.carrusel-link {
    display: inline-block;
    color: var(--amarillo-estrategico);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    border-bottom: 2px solid var(--amarillo-estrategico);
    padding-bottom: 2px;
    transition: opacity 0.2s;
}

.carrusel-link:hover { opacity: 0.8; }

/* Botones prev/next */
.carrusel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: var(--blanco);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}

.carrusel-btn:hover {
    background: var(--amarillo-estrategico);
    border-color: var(--amarillo-estrategico);
    color: var(--azul-corporativo);
}

.carrusel-prev { left: 20px; }
.carrusel-next { right: 20px; }

/* Dots */
.carrusel-dots {
    position: absolute;
    bottom: 20px;
    right: 60px;
    display: flex;
    gap: 8px;
    z-index: 10;
}

.carrusel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.6);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carrusel-dot.active {
    background: var(--amarillo-estrategico);
    border-color: var(--amarillo-estrategico);
    transform: scale(1.2);
}
