/* ============================================================
   ESTATUTO COOPAC — Estilos de página
   Archivo: assets/css/estatuto-coopac.css
   ============================================================ */

/* ===== HERO SECTION ===== */
.estatuto-hero {
    background: linear-gradient(135deg, #046bb0 0%, #023f6e 60%, #01294a 100%);
    padding: 70px 0 80px;
    position: relative;
    overflow: hidden;
}

.estatuto-hero::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.estatuto-hero::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -40px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
}

.estatuto-hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.5px;
}

.estatuto-hero p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.08rem;
    max-width: 820px;
    margin: 0 auto;
    line-height: 1.75;
}

.estatuto-hero .hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.hero-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, #4db8ff, #a0d8ff);
    border-radius: 4px;
    margin: 20px auto 28px;
}

/* ===== CARDS SECTION ===== */
.estatuto-section {
    background: #f4f7fb;
    padding: 70px 0 90px;
}

.section-eyebrow {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #046bb0;
    margin-bottom: 8px;
}

.estatuto-section-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
    line-height: 1.2;
    background: linear-gradient(135deg, #046bb0 0%, #023f6e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1rem;
    color: #6b7280;
    max-width: 560px;
    margin: 0 auto 50px;
}

/* ===== CARD ===== */
.estatuto-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(4, 107, 176, 0.10);
    transition: transform 0.32s ease, box-shadow 0.32s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1.5px solid rgba(4, 107, 176, 0.08);
}

.estatuto-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 48px rgba(4, 107, 176, 0.18);
}

.card-img-wrap {
    position: relative;
    overflow: hidden;
    height: 260px;
}

.card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.estatuto-card:hover .card-img-wrap img {
    transform: scale(1.05);
}

.card-version-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: linear-gradient(135deg, #046bb0, #023f6e);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(4, 107, 176, 0.4);
}

.card-overlay-btn {
    position: absolute;
    inset: 0;
    background: rgba(4, 107, 176, 0.0);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.32s ease;
    text-decoration: none;
}

.estatuto-card:hover .card-overlay-btn {
    background: rgba(2, 63, 110, 0.55);
    opacity: 1;
}

.overlay-inner {
    background: #fff;
    color: #046bb0;
    border-radius: 50px;
    padding: 10px 24px;
    font-size: 0.88rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    transform: translateY(12px);
    transition: transform 0.32s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.estatuto-card:hover .overlay-inner {
    transform: translateY(0);
}

/* ===== CARD BODY ===== */
.estatuto-card-body {
    padding: 22px 24px 26px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.card-version-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #046bb0;
    margin-bottom: 4px;
}

.card-doc-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 8px;
    line-height: 1.3;
}

.card-date {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    color: #6b7280;
    margin-bottom: 18px;
}

.card-date i {
    color: #046bb0;
}

.card-download-btn {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #046bb0, #023f6e);
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 12px 20px;
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.28s ease;
    box-shadow: 0 4px 14px rgba(4, 107, 176, 0.25);
}

.card-download-btn:hover {
    color: #fff;
    background: linear-gradient(135deg, #0580d0, #046bb0);
    box-shadow: 0 6px 22px rgba(4, 107, 176, 0.4);
    transform: translateY(-2px);
}

.card-download-btn i {
    font-size: 1rem;
}

/* ===== INFO STRIP ===== */
.info-strip {
    background: linear-gradient(135deg, #046bb0 0%, #023f6e 100%);
    padding: 36px 0;
    margin-top: 60px;
    border-radius: 20px;
}

.info-strip .strip-item {
    text-align: center;
    color: #fff;
    padding: 10px 20px;
}

.info-strip .strip-icon {
    font-size: 2rem;
    margin-bottom: 8px;
    color: #a0d8ff;
}

.info-strip .strip-label {
    font-size: 0.78rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.75;
    margin-bottom: 2px;
}

.info-strip .strip-value {
    font-size: 1.2rem;
    font-weight: 800;
}

.info-strip-divider {
    width: 1px;
    background: rgba(255, 255, 255, 0.2);
    align-self: stretch;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 767px) {
    .estatuto-hero h1 {
        font-size: 1.9rem;
    }

    .card-img-wrap {
        height: 200px;
    }

    .info-strip-divider {
        display: none;
    }
}