/* CONTENEDORES PRINCIPALES - MODIFICAR ESTOS VALORES PARA AJUSTAR TAMAÑO */
.cyber-hero {
    width: 100% !important;
    padding-top: 120px !important;
}
.hero-container { margin: 0 auto !important; }
.testimonial-form {
    width: 100% !important;
    max-width: 1100px !important;
    margin: 0 auto !important;
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255, 107, 53, 0.3) !important;
    border-radius: 15px !important;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3) !important;
    overflow: visible !important;
    padding: 2.5rem !important;
}
/* CLASES PARA MODIFICAR FÁCILMENTE LOS TAMAÑOS - AHORA SÍ FUNCIONAN */
.ajuste-alto-container { min-height: 90vh; }
.ajuste-ancho-container { width: 96%; max-width: 1000px; }
.ajuste-alto-formulario { min-height: 500px; }
/* ESTILOS DE FORMULARIO */
.cyber-input {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 107, 53, 0.3) !important;
    border-radius: 8px !important;
    color: white !important;
    padding: 0.8rem 1rem !important;
    width: 100%;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    height: 45px;
}
.cyber-input:focus {
    border-color: var(--neon-orange) !important;
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.25) !important;
    background: rgba(255, 255, 255, 0.15) !important;
    outline: none;
    transform: translateY(-1px);
}
.cyber-input::placeholder { color: rgba(255, 255, 255, 0.5) !important; font-size: 0.85rem; }
.form-label {
    color: var(--neon-aqua);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
/* ALERTAS */
.alert {
    border: 1px solid;
    border-radius: 8px;
    margin-bottom: 1rem;
    padding: 0.8rem 1rem;
    font-size: 0.85rem;
}
.alert-success {
    background: rgba(40, 167, 69, 0.2);
    border-color: var(--neon-green);
    color: var(--neon-green);
}
.alert-error, .alert-danger {
    background: rgba(220, 53, 69, 0.2);
    border-color: #ff6b6b;
    color: #ff6b6b;
}
.alert-info {
    background: rgba(23, 162, 184, 0.2);
    border-color: var(--neon-blue);
    color: var(--neon-blue);
}
/* BOTÓN CORREGIDO - MEJOR ESPACIADO INTERNO */
.cyber-button.primary {
    padding: 0.7rem 2rem !important;
    font-size: 0.85rem !important;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
    min-height: 45px;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center;
    overflow: visible;
    text-overflow: clip;
    margin: 0 5px;
    width: calc(100% - 10px);
}
.cyber-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
}
/* TEXTO Y ENLACES */
.text-muted { color: rgba(255, 255, 255, 0.6) !important; font-size: 0.85rem; }
.cyber-link {
    color: var(--neon-aqua) !important;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.85rem;
}
.cyber-link:hover {
    color: var(--neon-orange) !important;
    text-shadow: 0 0 8px rgba(255, 107, 53, 0.4);
}
/* CONTENEDOR DEL TÍTULO MEJORADO */
.text-center.mb-4 { margin-bottom: 2rem !important; padding: 0 15px; }
h2 {
    margin: 0;
    padding: 10px 20px !important;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2 !important;
    display: inline-block;
    text-align: center;
    overflow: visible !important;
    text-overflow: clip !important;
    word-wrap: normal;
}
/* ANIMACIONES */
@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}
/* ESTRUCTURA DE CONTENEDORES */
.hero-container { overflow: visible; }
.row.justify-content-center { overflow: visible; }
/* RESPONSIVE */
@media (max-width: 1200px) {
    .testimonial-form { max-width: 95% !important; }
    .ajuste-alto-formulario { min-height: 550px; }
}
@media (max-width: 768px) {
    .ajuste-alto-container { min-height: 85vh; padding-top: 100px !important; }
    .ajuste-ancho-container { width: 100% !important; padding: 0 15px !important; }
    .ajuste-alto-formulario {
        min-height: 500px;
        padding: 2rem !important;
        max-width: 100% !important;
    }
    h2 { font-size: 1.8rem; padding: 8px 15px !important; }
    .cyber-button.primary {
        padding: 0.7rem 1.5rem !important;
        margin: 0 5px;
        width: calc(100% - 10px);
    }
    .text-center.mb-4 { padding: 0 10px; }
}
@media (max-width: 576px) {
    .ajuste-alto-container { min-height: 60vh; padding-top: 80px !important; }
    .ajuste-alto-formulario { min-height: 450px; padding: 1.5rem !important; }
    h2 {
        white-space: normal;
        line-height: 1.3 !important;
        font-size: 1.6rem;
        padding: 8px 12px !important;
    }
    .cyber-button.primary {
        font-size: 0.8rem !important;
        padding: 0.6rem 1.2rem !important;
        min-height: 40px;
    }
    .text-center.mb-4 { margin-bottom: 1.5rem !important; }
}
@media (max-width: 400px) {
    .ajuste-alto-container { min-height: 75vh; padding-top: 80px !important; }
    .ajuste-alto-formulario { min-height: 300px; padding: 1.2rem !important; }
    h2 { font-size: 1.4rem; padding: 6px 10px !important; }
    .cyber-input { font-size: 0.8rem; }
    .cyber-button.primary {
        font-size: 0.75rem !important;
        padding: 0.6rem 1rem !important;
    }
    .text-center.mb-4 { padding: 0 5px; }
}