/* ====================================
   CONTACT PAGE - ESTILO ESPECÍFICO
   ==================================== */

.page-hero {
    padding: 10rem 1rem 2rem;
    margin-top: 0;
    position: relative;
}

.page-hero h1 {
    color: #f5f5f7;
}

.page-hero .subtitle {
    color: #86868b;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.contact-card {
    background-color: #fff;
    border: 1px solid #E5E7EB;
    border-radius: 0.75rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: #FBBF24;
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.15);
    transform: translateY(-5px);
}

.contact-icon {
    font-size: 2.5rem;
    width: 64px;
    height: 64px;
    background-color: #FBBF24;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.contact-title {
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #000;
    font-size: 1.1rem;
}

.contact-info {
    color: #4B5563;
    font-size: 0.95rem;
}

.contact-info a {
    color: #FBBF24;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #000;
}

.form-section {
    background-color: #111111;
    padding: 3rem;
    border-radius: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    font-weight: 600;
    color: #f5f5f7;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

input, textarea, select {
    width: 100%;
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #f5f5f7;
    border-radius: 0.75rem;
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: #d4d4d8;
    background-color: rgba(255, 255, 255, 0.05);
}

textarea {
    resize: vertical;
    min-height: 150px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
    cursor: pointer;
}

.submit-btn {
    background: linear-gradient(90deg, #d4d4d8 0%, #ffffff 50%, #d4d4d8 100%);
    color: #000;
    padding: 1rem 2rem;
    border: none;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 1rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255,255,255,0.1);
}

.form-message {
    padding: 1rem;
    border-radius: 0.5rem;
    margin-top: 1rem;
    display: none;
}

.form-message.success {
    background-color: #D1FAE5;
    color: #065F46;
    border: 1px solid #6EE7B7;
}

.form-message.error {
    background-color: #FEE2E2;
    color: #7F1D1D;
    border: 1px solid #FCA5A5;
}

.map-section {
    margin-top: 3rem;
    border-radius: 0.75rem;
    overflow: hidden;
    height: 400px;
    background-color: #E5E7EB;
    display: flex;
    align-items: center;
    justify-content: center;
}

.office-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.office-card {
    background-color: #fff;
    border: 1px solid #E5E7EB;
    border-radius: 0.75rem;
    padding: 2rem;
}

.office-city {
    font-weight: 700;
    color: #000;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.office-detail {
    color: #4B5563;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .page-hero {
        padding: 6rem 1rem 1rem;
    }

    .form-section {
        padding: 2rem;
    }

    .map-section {
        height: 300px;
    }
}
