/* public/css/contacto.css - Premium Contact Center Design */

:root {
    --contact-primary: #3b82f6;
    --contact-success: #10b981;
    --contact-warning: #f59e0b;
    --contact-bg-dark: #0f172a;
    --contact-bg-soft: #1e293b;
    --contact-bg-card: rgba(255, 255, 255, 0.03);
    --contact-border: rgba(255, 255, 255, 0.1);
    --contact-glow: rgba(59, 130, 246, 0.2);
}

body {
    font-family: 'Inter', sans-serif;
    color: #f8fafc;
    background-color: var(--contact-bg-dark);
    padding-top: 0;
}

/* Hero Section Contact */
.contact-hero {
    position: relative;
    padding: 160px 0 100px;
    background: radial-gradient(circle at top right, var(--contact-bg-soft) 0%, var(--contact-bg-dark) 100%);
    overflow: hidden;
}

.hero-visual-wrapper {
    position: relative;
}

.hero-visual-wrapper::after {
    content: '';
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, var(--contact-primary) 0%, transparent 70%);
    filter: blur(40px);
    opacity: 0.2;
    z-index: -1;
}

/* Contact Info Cards */
.glass-contact-card {
    background: var(--contact-bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--contact-border);
    border-radius: 24px;
    padding: 35px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-contact-card:hover {
    transform: translateY(-10px);
    border-color: var(--contact-primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.contact-icon-wrapper {
    width: 55px;
    height: 55px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 25px;
}

/* Contact Form Premium */
.glass-form-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    border: 1px solid var(--contact-border);
    border-radius: 30px;
    padding: 50px;
}

.form-control,
.form-select {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid var(--contact-border) !important;
    color: white !important;
    border-radius: 12px !important;
    padding: 12px 20px !important;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--contact-primary) !important;
    box-shadow: 0 0 15px var(--contact-glow) !important;
}

.form-label {
    color: #94a3b8;
    font-weight: 500;
    margin-bottom: 8px;
}

/* Team Section */
.glass-team-card {
    background: var(--contact-bg-card);
    border: 1px solid var(--contact-border);
    border-radius: 24px;
    padding: 30px;
    transition: all 0.3s ease;
    text-align: center;
}

.glass-team-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--contact-primary);
}

.team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    padding: 5px;
    border: 2px solid var(--contact-primary);
    margin: 0 auto 20px;
    object-fit: cover;
}

/* Map Section */
.map-wrapper {
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--contact-border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Animations */
.glow-blob {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--contact-primary) 0%, transparent 70%);
    filter: blur(100px);
    z-index: -1;
    opacity: 0.15;
}