/* =============================== */
/*   CONTENEDOR PRINCIPAL          */
/* =============================== */
.Desarrollo {
    width: 100%;
    max-width: 1100px;
    height: 400px;
    margin: 40px auto;
    display: flex;
    background: #0d0d0d;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    animation: Entrada_FundadorVIP 1s ease forwards;
}


/* =============================== */
/*   BORDE DORADO ANIMADO          */
/* =============================== */
.Desarrollo::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 14px;
    border: 3px solid transparent;
    background: linear-gradient(90deg, #c8a45a, #e7d3a3, #c8a45a) border-box;

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);

    -webkit-mask-composite: xor;
    mask-composite: exclude;

    animation: BordeDoradoPulse 2.5s ease-in-out infinite;
    pointer-events: none;
}

@keyframes BordeDoradoPulse {
    0% {
        opacity: 0.35;
        box-shadow: 0 0 6px #c8a45a;
    }
    50% {
        opacity: 1;
        box-shadow: 0 0 18px #e7d3a3;
    }
    100% {
        opacity: 0.35;
        box-shadow: 0 0 6px #c8a45a;
    }
}


/* =============================== */
/*   LADO IZQUIERDO (IMAGEN)       */
/* =============================== */
.izquierda {
    width: 65%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.imagen {
    width: 100%;
    height: 100%;
}

.imagen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}


/* =============================== */
/*   LADO DERECHO (TEXTO)          */
/* =============================== */
.derecha {
    width: 35%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
    padding: 25px;
    font-family: "Cinzel", serif;
}

.derecha h1 {
    font-size: 28px;
    margin-bottom: 10px;
    background: linear-gradient(90deg, #c8a45a, #e7d3a3, #c8a45a);
    -webkit-background-clip: text;
    color: transparent;
}

.derecha p {
    font-size: 15px;
    line-height: 1.4;
}


/* =============================== */
/*   BOTÓN                         */
/* =============================== */
.derecha a {
    text-decoration: none;
    margin-top: 25px;
    width: 100%;
}

.boton_construccion {
    width: 100%;
    padding: 14px 0;
    font-size: 20px;
    font-family: "Cinzel", serif;
    background: #c8a45a;
    color: black;
    border: 2px solid black;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.25s ease-in-out;
    position: relative;
    overflow: hidden;
}

.boton_construccion::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: rgba(255, 255, 255, 0.35);
    transform: skewX(-20deg);
    transition: 0.5s;
}

.boton_construccion:hover::before {
    left: 120%;
}

.boton_construccion:hover {
    background: black;
    color: #c8a45a;
    transform: scale(1.05);
    box-shadow: 0 0 14px rgba(200, 164, 90, 0.75);
}


/* =============================== */
/*   ANIMACIÓN DE ENTRADA          */
/* =============================== */
@keyframes Entrada_FundadorVIP {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* =============================== */
/*   RESPONSIVE ≤ 1100px           */
/* =============================== */
@media (max-width: 1100px) {

    .Desarrollo {
        height: auto;
        padding: 20px;
    }

    .izquierda {
        width: 60%;
        padding: 15px;
    }

    .derecha {
        width: 40%;
        padding: 20px;
    }

    .derecha h1 {
        font-size: 24px;
    }

    .boton_construccion {
        font-size: 18px;
    }
}


/* =============================== */
/*   RESPONSIVE ≤ 700px            */
/* =============================== */
@media (max-width: 700px) {

    .Desarrollo {
        flex-direction: column;
        height: auto;
        text-align: center;
    }

    .izquierda {
        width: 100%;
        padding: 10px;
    }

    .derecha {
        width: 100%;
        padding: 15px;
    }

    .derecha h1 {
        font-size: 22px;
    }

    .boton_construccion {
        font-size: 18px;
    }
}