/* --- MONOLITO CTA (THE BLACK BLOCK) --- */

.monolith-section {
    background-color: #ffffff;
    /* O el color de fondo de tu web */
    padding: 40px 0 120px;
    display: flex;
    justify-content: center;
}

.monolith-container {
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
}

/* LA TARJETA MONOLITO */
.monolith-card {
    background-color: #000000;
    border: 1px solid #1a1a1a;
    border-radius: 20px;
    padding: 100px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;

    /* Sombra de elevación masiva */
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);

    /* Centrado Flex */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Efecto de luz sutil en el fondo (Opcional) */
.monolith-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.monolith-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.monolith-tag {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    color: #888;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 700;
    display: block;
    margin-bottom: 20px;
}

.monolith-title {
    font-family: 'Oswald', sans-serif;
    font-size: 5rem;
    color: #ffffff;
    line-height: 0.9;
    margin: 0 0 30px 0;
    text-transform: uppercase;
    letter-spacing: -2px;
}

.monolith-divider {
    width: 60px;
    height: 3px;
    background-color: #ffffff;
    margin: 0 auto 30px auto;
}

.monolith-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 50px;
    font-weight: 300;
}

/* BOTÓN DE ALTO CONTRASTE */
.monolith-btn {
    display: inline-block;
    background-color: #ffffff;
    color: #000000;
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 20px 50px;
    text-decoration: none;
    border-radius: 50px;
    /* Píldora */
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.monolith-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .monolith-section { padding: 20px 0 60px; }
    .monolith-card {
        padding: 60px 30px;
    }

    .monolith-title {
        font-size: 3.5rem;
    }

    .monolith-desc {
        font-size: 1rem;
    }

    .monolith-btn {
        width: 100%;
        /* Botón ancho en móvil */
        padding: 18px 0;
    }
}