/* ============================
   Nosotros Page Styles
   ============================ */

/* Quiénes Somos (también usado en inicio) */
.section-quienes-somos {
    background-color: #3F649C;
}

.quienes-content {
    padding: 60px;
    color: #111010;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.quienes-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.3;
}

.quienes-text {
    font-size: 16px;
    line-height: 1.8;
    opacity: 0.9;
}

.quienes-text p {
    margin-bottom: 16px;
}

.quienes-text ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 16px;
}

.quienes-text li {
    margin-bottom: 12px;
    padding-left: 32px;
    position: relative;
    display: flex;
    align-items: flex-start;
}

.quienes-text li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cg clip-path='url(%23clip0_5669_903)'%3E%3Cpath d='M7.50032 9.99996L9.16699 11.6666L12.5003 8.33329M18.3337 9.99996C18.3337 14.6023 14.6027 18.3333 10.0003 18.3333C5.39795 18.3333 1.66699 14.6023 1.66699 9.99996C1.66699 5.39759 5.39795 1.66663 10.0003 1.66663C14.6027 1.66663 18.3337 5.39759 18.3337 9.99996Z' stroke='%23EDE665' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_5669_903'%3E%3Crect width='20' height='20' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
}


/* Por qué elegirnos */
.section-porque-elegirnos {
    background-color: white;
}

.valor-card {
    text-align: center;
    padding: 40px 30px;
    border: 1px solid var(--color-linea);
    border-radius: 0px;
    height: 100%;
    transition: all 0.3s ease;
}

.valor-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.valor-icon {
    width: 80px;
    height: 80px;
    /* background-color: var(--color-amarillo);
    border-radius: 50%; */
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.valor-icon img {
    max-width: 60px;
    max-height: 60px;
}

.valor-icon i {
    width: 36px;
    height: 36px;
    color: var(--color-azul);
}

.valor-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #3F649C;
    margin-bottom: 16px;
}

.valor-card p {
    font-size: 14px;
    color: var(--color-text);
    line-height: 1.7;
    margin: 0;
}

/* Sección Video */
.section-video {
    position: relative;
    overflow: hidden;
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-height: 500px;
    overflow: hidden;
}

.video-wrapper video {
    width: 100%;
    display: block;
}

.video-wrapper .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-play {
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-play:hover {
    background-color: white;
    transform: scale(1.1);
}

.btn-play .play-icon {
    width: 32px;
    height: 32px;
    color: var(--color-azul);
    margin-left: 4px;
}

/* Content Text (usado en páginas de contenido) */
.content-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-text);
}

.content-text p {
    margin-bottom: 16px;
}

.content-text ul {
    padding-left: 20px;
    margin-bottom: 16px;
}

.content-text li {
    margin-bottom: 8px;
}

/* Form Contact */
.contact-form .form-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-negro);
    margin-bottom: 8px;
}

.contact-form .form-control {
    border: 1px solid var(--color-linea);
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
}

.contact-form .form-control:focus {
    border-color: var(--color-azul);
    box-shadow: 0 0 0 3px rgba(15, 58, 117, 0.1);
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* Responsive */
@media (max-width: 991px) {
    .quienes-content {
        padding: 40px;
    }

    .quienes-content h2 {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .quienes-content {
        padding: 30px;
    }

    .quienes-content h2 {
        font-size: 24px;
    }

    .valor-card {
        padding: 30px 20px;
    }

    .valor-icon {
        width: 60px;
        height: 60px;
    }

    .valor-icon img {
        max-width: 30px;
        max-height: 30px;
    }
}