.final-cta {
    padding: var(--section-padding);
    background-color: var(--bg-dark); /* Fondo de seguridad */
}

.cta-box {
    background: radial-gradient(circle at center, #e31622 0%, #a00f17 100%);
    padding: 80px 40px;
    border-radius: 8px;
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
}

.cta-content p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Botón negro especial para resaltar sobre el rojo */
.btn-dark {
    background-color: #0a0a0a;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    transition: 0.3s;
}

.btn-dark:hover {
    transform: translateY(-3px);
    background-color: #1a1a1a;
}

.btn-outline-white {
    border: 1px solid white;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    transition: 0.3s;
}

.btn-outline-white:hover {
    background: white;
    color: var(--ordi-red);
}

@media (max-width: 768px) {
    .cta-content h2 { font-size: 2rem; }
    .cta-buttons { flex-direction: column; }
}