/**
 * Bloque de botones
 */
.rescop-button-block {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding: 0 0 2rem 0;
    background: white;
}

.rescop-button-container {
    max-width: 1680px;
    margin: 0 auto;
    padding: 0 157px;
    display: flex;
    justify-content: flex-start;
    gap: 2rem;
}

.rescop-button {
    background: #BE252D;
    border-radius: 6px;
    padding: 8px 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.rescop-button:hover {
    background: #9E1E25;
    transform: translateY(-2px);
}

.rescop-button-text {
    color: white;
    font-size: 24px;
    font-family: var(--rescop-font-display, 'Anton', sans-serif);
    font-weight: 400;
    line-height: 36px;
    text-transform: capitalize;
}

/* Variantes de botón */
.rescop-button.centered {
    margin: 0 auto;
}

.rescop-button.secondary {
    background: #666;
}

.rescop-button.secondary:hover {
    background: #555;
}

/* Específico para el bloque CTA de campaña */
.rescop-campaign-cta-block {
    margin: 2rem 0;
}

.rescop-campaign-cta-block .rescop-button {
}

.rescop-campaign-cta-block .rescop-button:hover {
}

.rescop-button-container.center {
    justify-content: center;
}

.rescop-button-container.right {
    justify-content: flex-end;
}

@media (max-width: 1400px) {
    .rescop-button-container {
        padding: 0 2rem;
    }
}

@media (max-width: 768px) {
    .rescop-button-container {
        flex-direction: column;
        align-items: center;
    }
    
    .rescop-button {
        width: 100%;
        max-width: 300px;
    }
}