/* ============================
   FOOTER CANAL VTM
   ============================ */

.vtm-footer {
    background-color: #f8f9fa;
    border-top: 1px solid #eeeeee;
    padding: 2.5rem 0 2rem;
    font-size: 0.9rem;
    color: #222;
}

.vtm-footer .container {
    max-width: 1140px; /* igual que index/video */
}

/* Título */
.vtm-footer-title {
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Fila de Nombre / Email / Botón */
.vtm-footer-row {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
}

/* Cada caja roja */
.vtm-footer-field {
    flex: 1 1 200px;
}

.vtm-footer-label {
    display: block;
    border: 1px solid #c82333;   /* rojo */
    padding: 0.4rem 0.8rem;
    text-align: center;
    margin-bottom: 0.3rem;
    font-weight: 500;
    color: #c82333;
}

/* Input dentro de la caja (sin borde para que parezca una sola pieza si quieres) */
.vtm-footer-input {
    border: 1px solid #c82333;
    border-radius: 0;
    height: 2.1rem;
    font-size: 0.9rem;
}

/* Botón con borde rojo */
.vtm-footer-label--button {
    /* solo etiqueta visual, sin input debajo */
}

.vtm-footer-button {
    width: 100%;
    border: 1px solid #c82333;
    border-radius: 0;
    background: transparent;
    color: #c82333;
    font-weight: 500;
    padding: 0.4rem 0.8rem;
}

/* RGPD debajo a la izquierda, como en la imagen */
.vtm-footer-privacy {
    margin-top: 0.6rem;
}

.vtm-footer-privacy .form-check-label {
    color: #c82333;
}

/* Enlaces inferiores en rojo, centrados */
.vtm-footer-links {
    margin-top: 1.8rem;
    text-align: center;
}

.vtm-footer-links a {
    color: #c82333;
    text-decoration: none;
    margin: 0 0.2rem;
}

.vtm-footer-links a:hover {
    text-decoration: underline;
}

/* Responsive: en móvil los tres bloques se apilan */
@media (max-width: 768px) {
    .vtm-footer-row {
        flex-direction: column;
        align-items: stretch;
    }

    .vtm-footer-field {
        flex: 1 1 100%;
    }
}

