/* ========================================
   PÁGINA DE CONTACTO - JORGETECH
   ======================================== */

/* ========================================
   HERO SECTION
   ======================================== */
.contacto-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 0 60px;
    color: white;
    position: relative;
    overflow: hidden;
}

.contacto-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255,255,255,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.contacto-hero .container {
    position: relative;
    z-index: 1;
}

.contacto-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.contacto-hero h1 {
    font-family: 'Sora', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.contacto-subtitle {
    font-size: 1.1rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ========================================
   TARJETAS DE CONTACTO
   ======================================== */
.contacto-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.contacto-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    transition: height 0.4s ease;
}

.contacto-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.contacto-card:hover::before {
    height: 100%;
    opacity: 0.05;
}

/* Colores específicos para cada tarjeta */
.contacto-card.whatsapp::before {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.contacto-card.whatsapp:hover {
    border-color: #25d366;
}

.contacto-card.telefono::before {
    background: linear-gradient(135deg, #0d6efd, #0a58ca);
}

.contacto-card.telefono:hover {
    border-color: #0d6efd;
}

.contacto-card.email::before {
    background: linear-gradient(135deg, #dc3545, #bb2d3b);
}

.contacto-card.email:hover {
    border-color: #dc3545;
}

.contacto-card.instagram::before {
    background: linear-gradient(135deg, #f09433, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888);
}

.contacto-card.instagram:hover {
    border-color: #e1306c;
}

/* Icono de la tarjeta */
.contacto-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    transition: all 0.3s ease;
}

.contacto-card.whatsapp .contacto-icon {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
}

.contacto-card.telefono .contacto-icon {
    background: linear-gradient(135deg, #0d6efd, #0a58ca);
    color: white;
}

.contacto-card.email .contacto-icon {
    background: linear-gradient(135deg, #dc3545, #bb2d3b);
    color: white;
}

.contacto-card.instagram .contacto-icon {
    background: linear-gradient(135deg, #f09433, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888);
    color: white;
}

.contacto-card:hover .contacto-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Título de la tarjeta */
.contacto-card h3 {
    font-family: 'Sora', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #2c3e50;
}

/* Información de contacto */
.contacto-info {
    font-size: 1rem;
    font-weight: 600;
    color: #495057;
    margin-bottom: 15px;
    word-break: break-word;
}

/* Descripción */
.contacto-description {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 25px;
    flex-grow: 1;
}

/* Botón de la tarjeta */
.btn-contacto-card {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid;
    font-size: 0.95rem;
}

.contacto-card.whatsapp .btn-contacto-card {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    border-color: transparent;
}

.contacto-card.whatsapp .btn-contacto-card:hover {
    background: #128c7e;
    transform: scale(1.05);
}

.contacto-card.telefono .btn-contacto-card {
    background: linear-gradient(135deg, #0d6efd, #0a58ca);
    color: white;
    border-color: transparent;
}

.contacto-card.telefono .btn-contacto-card:hover {
    background: #0a58ca;
    transform: scale(1.05);
}

.contacto-card.email .btn-contacto-card {
    background: linear-gradient(135deg, #dc3545, #bb2d3b);
    color: white;
    border-color: transparent;
}

.contacto-card.email .btn-contacto-card:hover {
    background: #bb2d3b;
    transform: scale(1.05);
}

.contacto-card.instagram .btn-contacto-card {
    background: linear-gradient(135deg, #f09433, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888);
    color: white;
    border-color: transparent;
}

.contacto-card.instagram .btn-contacto-card:hover {
    background: #bc1888;
    transform: scale(1.05);
}

/* ========================================
   HORARIOS DE ATENCIÓN
   ======================================== */
.horario-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.horario-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: white;
}

.horario-card h4 {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    color: #2c3e50;
}

.horario-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.horario-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #667eea;
}

.horario-dia {
    font-weight: 600;
    color: #2c3e50;
}

.horario-hora {
    color: #6c757d;
    font-weight: 500;
}

/* ========================================
   UBICACIÓN
   ======================================== */
.ubicacion-badge {
    display: inline-block;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
}

.mapa-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.mapa-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.mapa-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mapa-info i {
    font-size: 30px;
    color: #667eea;
}

.mapa-info strong {
    display: block;
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 5px;
}

.mapa-info p {
    color: #6c757d;
    font-size: 0.9rem;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.cta-section h2 {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 2rem;
}

.btn-cta {
    background: white;
    color: #667eea;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    color: #764ba2;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 768px) {
    .contacto-hero h1 {
        font-size: 2rem;
    }

    .contacto-subtitle {
        font-size: 1rem;
    }

    .contacto-card {
        padding: 30px 20px;
    }

    .horario-card {
        padding: 30px 20px;
    }

    .horario-item {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }

    .mapa-overlay {
        position: static;
        margin-top: 15px;
    }

    .cta-section h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .contacto-hero {
        padding: 60px 0 40px;
    }

    .contacto-hero h1 {
        font-size: 1.75rem;
    }

    .contacto-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }

    .contacto-card h3 {
        font-size: 1.25rem;
    }
}