/* ===================================
   SECCIÓN SERVICIOS
   =================================== */
.servicios {
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.servicios::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(46, 74, 125, 0.92) 0%, rgba(46, 74, 125, 0.88) 100%);
    z-index: 1;
}

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

.servicios-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 0;
}

.servicios-intro {
    color: var(--blanco);
    font-size: 18px;
    text-align: center;
    line-height: 1.7;
    margin-bottom: 50px;
    opacity: 0.92;
}

.servicios-cierre {
    color: var(--amarillo-estrategico);
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    line-height: 1.7;
    margin-top: 20px;
    font-style: italic;
}

.servicio-detalle {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 40px;
    border-left: 5px solid var(--amarillo-estrategico);
}

.servicio-subtitle {
    font-family: var(--font-titulos);
    font-size: 28px;
    font-weight: 700;
    color: var(--amarillo-estrategico);
    margin-bottom: 20px;
}

.servicio-texto {
    font-size: 18px;
    color: var(--blanco);
    margin-bottom: 25px;
    line-height: 1.7;
}

.servicio-lista {
    list-style: none;
    padding: 0;
}

.servicio-lista li {
    color: var(--blanco);
    font-size: 17px;
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    line-height: 1.6;
}

.servicio-lista li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--amarillo-estrategico);
    font-weight: 700;
    font-size: 20px;
}

.servicio-tagline {
    color: var(--amarillo-estrategico);
    font-size: 16px;
    font-weight: 600;
    font-style: italic;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid rgba(242, 195, 24, 0.3);
}

/* ===================================
   SECCIÓN NOSOTROS
   =================================== */
.nosotros {
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.nosotros::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(46, 74, 125, 0.90) 0%, rgba(46, 74, 125, 0.85) 100%);
    z-index: 1;
}

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

.nosotros-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 0;
}

.nosotros-content {
    display: grid;
    gap: 40px;
    margin-top: 60px;
}

.nosotros-block {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 12px;
    border-left: 5px solid var(--amarillo-estrategico);
}

.nosotros-subtitle {
    font-family: var(--font-titulos);
    font-size: 28px;
    font-weight: 700;
    color: var(--amarillo-estrategico);
    margin-bottom: 20px;
}

.nosotros-texto {
    font-size: 18px;
    color: var(--blanco);
    line-height: 1.8;
    margin-bottom: 16px;
}

.nosotros-lista {
    list-style: none;
    padding: 0;
    margin: 16px 0;
}

.nosotros-lista li {
    color: var(--blanco);
    font-size: 16px;
    padding: 8px 0 8px 28px;
    position: relative;
    line-height: 1.6;
    font-style: italic;
}

.nosotros-lista li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--amarillo-estrategico);
    font-weight: 700;
}

.nosotros-tagline {
    color: var(--amarillo-estrategico);
    font-size: 16px;
    font-weight: 600;
    font-style: italic;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(242, 195, 24, 0.3);
}

/* Valores */
.valores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-top: 20px;
}

.valor-item {
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 20px;
    border-top: 3px solid var(--amarillo-estrategico);
}

.valor-nombre {
    display: block;
    font-family: var(--font-titulos);
    font-size: 18px;
    font-weight: 700;
    color: var(--amarillo-estrategico);
    margin-bottom: 8px;
}

.valor-desc {
    font-size: 15px;
    color: var(--blanco);
    line-height: 1.6;
    opacity: 0.9;
}

/* ===================================
   SECCIÓN CONTACTO
   =================================== */
.contacto {
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.contacto::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(46, 74, 125, 0.90) 0%, rgba(46, 74, 125, 0.85) 100%);
    z-index: 1;
}

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

.contacto-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 0;
}

.contacto-intro {
    text-align: center;
    font-size: 20px;
    color: var(--blanco);
    margin-bottom: 60px;
    line-height: 1.7;
}

.contacto-content {
    display: grid;
    gap: 60px;
    align-items: center;
}

.contacto-info {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 12px;
}

.contacto-info h3 {
    font-family: var(--font-titulos);
    font-size: 24px;
    font-weight: 700;
    color: var(--amarillo-estrategico);
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.info-item svg {
    color: var(--amarillo-estrategico);
    flex-shrink: 0;
}

.info-item a {
    color: var(--blanco);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.info-item a:hover {
    color: var(--amarillo-estrategico);
}
