/*
 * ============================================
 * GRUPO DEGA - Página de Contacto
 * ============================================
 */

/* ============================================
   HERO SECTION - GRANDE COMO GALERÍA
   ============================================ */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding-top: 0;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-overlay);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
    max-width: 800px;
}

.hero-badge {
    display: inline-block;
    padding: 10px 25px;
    background: rgba(233, 160, 51, 0.2);
    border: 1px solid var(--secondary-color);
    border-radius: var(--border-radius-xl);
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.hero h1 {
    color: var(--text-light);
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 15px;
}

.hero-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   SCROLL INDICATOR
   ============================================ */

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    text-align: center;
}

.scroll-indicator a {
    color: var(--text-light);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: var(--transition-normal);
}

.scroll-indicator span {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-indicator i {
    font-size: 1.2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

.scroll-indicator:hover a {
    color: var(--secondary-color);
}

/* ============================================
   CONTACT INFO GRID
   ============================================ */

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.contact-info-card {
    background: var(--text-light);
    padding: 40px 30px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.contact-info-card .icon-box {
    margin: 0 auto 20px;
}

.contact-info-card h4 {
    margin-bottom: 10px;
}

.contact-info-card p {
    font-family: 'Poppins', sans-serif;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.contact-info-card a {
    font-family: 'Poppins', sans-serif;
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1.1rem;
}

.contact-info-card a:hover {
    text-decoration: underline;
}

/* ============================================
   SOCIAL LINKS GRID
   ============================================ */

.social-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.social-link-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--text-light);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.social-link-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.social-link-card i {
    font-size: 2rem;
    transition: var(--transition-normal);
}

.social-link-card.whatsapp i {
    color: #25D366;
}

.social-link-card.instagram i {
    color: #E4405F;
}

.social-link-card.facebook i {
    color: #1877F2;
}

.social-link-card.tiktok i {
    color: #000000;
}

.social-link-card.email i {
    color: var(--secondary-color);
}

.social-link-card span {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--text-dark);
}

/* ============================================
   SCHEDULE CARD
   ============================================ */

.schedule-card {
    background: var(--gradient-primary);
    color: var(--text-light);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    margin-top: 50px;
}

.schedule-card h3 {
    color: var(--text-light);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.schedule-card h3 i {
    color: var(--secondary-color);
}

.schedule-item {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 400px;
    margin: 0 auto;
}

.schedule-item:last-child {
    border-bottom: none;
}

.schedule-item .day {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.schedule-item .time {
    font-family: 'Poppins', sans-serif;
    color: var(--secondary-color);
    font-weight: 500;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    background: var(--gradient-secondary);
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    color: var(--text-light);
    margin-bottom: 20px;
}

.cta-section p {
    font-family: 'Poppins', sans-serif;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 30px;
}

.cta-section .btn-outline {
    border-color: var(--text-light);
}

.cta-section .btn-outline:hover {
    background: var(--text-light);
    color: var(--secondary-color);
}

/* ============================================
   RESPONSIVE - CONTACTO
   ============================================ */

@media (max-width: 768px) {
    .hero {
        background-attachment: scroll;
    }

    .hero-content {
        margin-top: 20px;
    }

    .scroll-indicator {
        bottom: 20px;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .social-links-grid {
        grid-template-columns: 1fr;
    }

    .schedule-card {
        padding: 30px 20px;
    }

    .schedule-item {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }
}