/* =============================================
   CORRECCIONES CSS RESPONSIVE PARA PRODUCCIÓN
   Hero Buttons + Hero Form
   ============================================= */

/* HERO BUTTONS - RESPONSIVE */
.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
    margin-bottom: 2.5rem;
}

@media(min-width: 768px) {
    .hero-buttons {
        margin-bottom: 3rem;
    }
}

@media(min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
        width: auto;
    }
}

.btn-blue {
    background: var(--bitel-blue);
    color: white;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s;
    width: 100%;
}

.btn-blue:hover {
    background: var(--bitel-blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 84, 154, 0.3);
}

@media(min-width: 640px) {
    .btn-blue {
        width: auto;
        padding: 12px 24px;
    }
}

.btn-white {
    background: white;
    color: var(--bitel-blue);
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: bold;
    border: 2px solid var(--bitel-blue);
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s;
    width: 100%;
}

.btn-white:hover {
    background: var(--bitel-blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 84, 154, 0.25);
}

@media(min-width: 640px) {
    .btn-white {
        width: auto;
        padding: 12px 24px;
    }
}

/* HERO MINI FORM - RESPONSIVE */
.hero-mini-form {
    background: rgba(255, 255, 255, 0.98);
    padding: 1.25rem;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    max-width: 100%;
    width: 100%;
    margin-top: 1.5rem;
}

@media(min-width: 768px) {
    .hero-mini-form {
        padding: 1.75rem;
        max-width: 550px;
    }
}

.hero-mini-form h3 {
    color: var(--bitel-blue);
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 0.25rem;
}

@media(min-width: 640px) {
    .hero-mini-form h3 {
        font-size: 1.3rem;
    }
}

.hero-mini-form p {
    font-size: 0.85rem;
    color: #555;
    margin-bottom: 1rem;
    font-weight: normal;
}

@media(min-width: 640px) {
    .hero-mini-form p {
        font-size: 0.95rem;
    }
}

.inline-form {
    display: flex;
    gap: 10px;
    flex-direction: column;
}

@media(min-width: 640px) {
    .inline-form {
        flex-direction: row;
    }
}

.input-group {
    position: relative;
    flex: 1;
}

.input-group i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    font-size: 1.1rem;
}

.input-group input {
    width: 100%;
    padding: 12px 12px 12px 40px;
    border: 2px solid #d1d5db;
    border-radius: 0.5rem;
    outline: none;
    height: 48px;
    font-size: 15px;
    transition: border-color 0.2s;
}

.input-group input:focus {
    border-color: var(--bitel-blue);
    box-shadow: 0 0 0 3px rgba(0, 84, 154, 0.1);
}

.btn-green-inline {
    background: var(--bitel-green);
    color: white;
    font-weight: bold;
    padding: 0 24px;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    height: 48px;
    white-space: nowrap;
    transition: all 0.3s;
    width: 100%;
    font-size: 0.95rem;
}

.btn-green-inline:hover {
    background: var(--bitel-green-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 165, 79, 0.3);
}

@media(min-width: 640px) {
    .btn-green-inline {
        width: auto;
        font-size: 1rem;
    }
}

.legal-text-inline {
    font-size: 0.7rem !important;
    margin-top: 0.75rem !important;
    margin-bottom: 0 !important;
    color: #888 !important;
    text-align: center;
}

@media(min-width: 640px) {
    .legal-text-inline {
        text-align: left;
    }
}