/* =====================================================
   1️⃣ CONFIGURACIÓN GENERAL
===================================================== */

html,
body {
    overflow-x: hidden;
    background-color: #ffffff;
}

.contenedor-principal {
    position: relative;
    overflow: hidden;
}


/* =====================================================
   2️⃣ SECCIÓN HERO / FIGURA DERECHA
===================================================== */

.cuadro-derecha {
    position: relative;
    width: 100%;
    height: 50em;
    background: #E8328B;
    border-top-left-radius: 90px;
    border-bottom-left-radius: 90px;
    overflow: hidden;
}

/* Imagen */
.img-figura {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Degradado sobre la imagen (MEJORADO) */
.cuadro-derecha::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(232, 50, 139, 0.2),
        rgba(232, 50, 139, 0.5)
    );
    pointer-events: none;
}


/* =====================================================
   3️⃣ DIVISORES
===================================================== */

.divisor-degradado {
    position: relative;
    z-index: 50;
    width: 100%;
    height: 50px;
    margin: 60px 0;
    padding-left: 20em;

    display: flex;
    align-items: center;

    background: linear-gradient(90deg, #E533C3, #E8328B);
}

.texto-divisor {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    color: white;
    font-size: 30px;
}

.divisor-card {
    height: 10px;
    margin: 0  -20px 1em -20px;
    width: calc(100% + 40px);

    background: linear-gradient(90deg, #C675BC, #999998);
}


/* =====================================================
   4️⃣ CARDS PDF
===================================================== */

.card-pdf {
    background: #e5e5e5;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.card-header-pdf {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.card-body-pdf {
    background: #f7f7f7;
    border-radius: 12px;
    padding: 15px;
}


/* =====================================================
   5️⃣ BOTONES
===================================================== */

.titulo-boton {
    padding: 12px 40px;
    font-weight: 600;
    font-size: 18px;
    color: white;

    background: linear-gradient(90deg, #9D4B93, #E8328B);
    border-radius: 12px;
}

.titulo-boton-2 {
    padding: 3px 35px;
    font-weight: 600;
    font-size: 18px;
    color: white;

    background: linear-gradient(90deg, #C58253, #C7A853);
    border-radius: 20px;
}

.titulo-boton-2.gradient-purple {
    background: linear-gradient(to right, #9d50bb, #6e48aa);
}

.titulo-boton-2.gradient-orange {
    background: linear-gradient(to right, #d38312, #a83279);
}

.titulo-boton-2.gradient-pink {
    background: linear-gradient(to right, #ec407a, #d81b60);
}

.titulo-boton-2.gradient-green {
    background: linear-gradient(to right, #9ccc65, #7cb342);
}

.titulo-boton-2.gradient-blue-dark {
    background: linear-gradient(to right, #42a5f5, #1e88e5);
}

.titulo-boton-2.gradient-blue-light {
    background: linear-gradient(to right, #4dd0e1, #00acc1);
}

.titulo-boton-3 {
    padding: 3px 35px;
    font-weight: 600;
    font-size: 18px;
    color: white;

    background: linear-gradient(10deg, #E533C3, #E8328B);
    border-radius: 20px;
}

.btn-pdf {
    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #ffffff;
    color: #E8328B;
    font-size: 20px;

    border-radius: 50%;
    text-decoration: none;

    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.btn-pdf:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
    color: #9D4B93;
}

.btn-imagen {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    padding: 14px 35px;
    background: #ffffff;
    color: #9D4B93;

    font-weight: 600;
    font-size: 16px;
    text-decoration: none;

    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);

    transition: all 0.3s ease;
}

.btn-imagen img {
    width: 24px;
    height: 24px;
}

.btn-imagen:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
    color: #E8328B;
}


/* =====================================================
   6️⃣ ELEMENTOS DECORATIVOS
===================================================== */

.grafico-decorativo {
    position: absolute;
    bottom: 1%;
    left: 0;
    width: 100%;
    opacity: 0.4;
    pointer-events: none;
}


/* =====================================================
   7️⃣ TIMELINE
===================================================== */

.menu-documentos {
    width: 500px;
}

.item-doc {
    margin-bottom: 12px;
}

.titulo-doc {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;

    background: linear-gradient(90deg, #c72ea3, #e8328b);
    color: white;
    padding: 10px 20px;
    border-radius: 40px;
}

.versiones {
    margin-top: 10px;
}

.btn-version {
    font-size: 12px;
    padding: 4px 10px;

    background: #7d7d7d;
    color: white;

    border: none;
    border-radius: 15px;
    margin-right: 10px;

    cursor: pointer;
    transition: all 0.2s;
}

.btn-version:hover {
    background: #5f5f5f;
}


/* =====================================================
   8️⃣ HEADER
===================================================== */

.header-container {
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

.header-container img {
    max-height: 70px;
}

/* Navbar */
.navbar-custom {
    background: linear-gradient(to right, #E533C3, #E8328B);
    border-radius: 35px;
}

.navbar-custom .nav-link {
    color: #ffffff !important;
    font-weight: 500;
}

.navbar-custom .nav-link:hover {
    opacity: 0.8;
}

/* Círculo decorativo */
.header-container::before {
    content: "";
    position: absolute;
    top: -120px;
    left: -120px;

    width: 200px;
    height: 200px;

    background: #ffffff;
    border-radius: 50%;

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

