/* ===========================================
   ESTILOS EXCLUSIVOS PARA PÁGINA DE CONTACTO
   NEO GRAFIK BOGOTÁ
   =========================================== */

/* Variables específicas para contacto */
:root {
    --contact-hero-bg: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    --whatsapp-color: #25D366;
    --whatsapp-dark: #128C7E;
    --phone-color: #34B7F1;
    --email-color: #EA4335;
    --instagram-color: #E1306C;
    --facebook-color: #1877F2;
    --contact-card-bg: rgba(255, 255, 255, 0.05);
    --contact-border: rgba(255, 255, 255, 0.1);
}

/* ===========================================
   1. HERO SECTION DE CONTACTO
   =========================================== */
.contact-hero {
    background: var(--contact-hero-bg);
    padding: 8rem 0 6rem;
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.cmyk-animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.cmyk-wave {
    position: absolute;
    width: 300%;
    height: 150px;
    opacity: 0.1;
    animation: waveContact 20s linear infinite;
}

.cyan-wave {
    background: linear-gradient(90deg, transparent, var(--cyan), transparent);
    top: 20%;
    animation-delay: 0s;
}

.magenta-wave {
    background: linear-gradient(90deg, transparent, var(--magenta), transparent);
    top: 50%;
    animation-delay: 5s;
}

.yellow-wave {
    background: linear-gradient(90deg, transparent, var(--yellow), transparent);
    bottom: 20%;
    animation-delay: 10s;
}

.black-wave {
    background: linear-gradient(90deg, transparent, var(--black), transparent);
    bottom: 40%;
    animation-delay: 15s;
}

@keyframes waveContact {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.contact-hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
    width: 100%;
}

.contact-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(0, 188, 212, 0.15);
    border: 2px solid var(--cyan);
    border-radius: 2rem;
    color: var(--cyan);
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    animation: pulse 2s infinite;
}

.contact-hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: white;
}

.contact-hero-title .title-line {
    display: block;
}

.title-highlight {
    display: inline-block;
    position: relative;
}

.cyan-gradient {
    background: linear-gradient(90deg, var(--cyan), var(--cyan-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 188, 212, 0.3);
}

.contact-hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto 3rem;
}

.contact-hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.contact-stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    min-width: 180px;
    transition: transform 0.3s ease;
}

.contact-stat:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    font-family: 'Courier New', monospace;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
}

.contact-hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.hero-cta-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 2rem;
    border-radius: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow: hidden;
    min-width: 250px;
    border: 2px solid transparent;
}

.hero-cta-btn:hover {
    transform: translateY(-3px);
}

.visit-btn {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: rgba(255, 255, 255, 0.2);
}

.visit-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

.whatsapp-btn {
    background: var(--whatsapp-color);
    color: white;
    border-color: var(--whatsapp-dark);
}

.whatsapp-btn:hover {
    background: var(--whatsapp-dark);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.btn-icon {
    font-size: 1.5rem;
}

.btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.btn-main {
    font-size: 1.1rem;
    line-height: 1;
}

.btn-sub {
    font-size: 0.85rem;
    opacity: 0.9;
    font-weight: 500;
    margin-top: 0.25rem;
}

.btn-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: inherit;
    filter: blur(20px);
    opacity: 0.5;
    z-index: -1;
}

.btn-pulse {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid var(--whatsapp-color);
    border-radius: 1.2rem;
    animation: pulseRing 2s ease-out infinite;
}

.floating-contact-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    animation: floatElement 6s ease-in-out infinite;
}

.phone-element {
    top: 20%;
    left: 10%;
    color: var(--phone-color);
    animation-delay: 0s;
}

.map-element {
    top: 60%;
    right: 15%;
    color: var(--cyan);
    animation-delay: 2s;
}

.chat-element {
    bottom: 30%;
    left: 20%;
    color: var(--whatsapp-color);
    animation-delay: 4s;
}

@keyframes floatElement {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

/* ===========================================
   2. SECCIÓN DE UBICACIÓN INTERACTIVA
   =========================================== */
.location-section {
    padding: 6rem 0;
    background: white;
    position: relative;
}

.location-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.location-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    color: white;
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--black);
}

.section-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.location-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

@media (max-width: 1024px) {
    .location-grid {
        grid-template-columns: 1fr;
    }
}

/* Mapa interactivo */
.map-column {
    position: relative;
}

.map-card {
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.map-toolbar {
    display: flex;
    background: #f8f9fa;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 1rem;
}

.map-toolbar-item {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: none;
    border: none;
    cursor: pointer;
    font-weight: 600;
    color: #666;
    transition: all 0.3s ease;
    border-radius: 0.5rem;
}

.map-toolbar-item.active {
    background: white;
    color: var(--cyan);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.map-toolbar-item:hover:not(.active) {
    background: rgba(0, 0, 0, 0.05);
}

.map-wrapper {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.main-map, .street-view {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.3s ease;
}

.map-badge {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    color: white;
    backdrop-filter: blur(10px);
    background: rgba(0, 188, 212, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: pulse 2s infinite;
}

.map-badge i {
    font-size: 1.25rem;
}

.badge-text {
    display: flex;
    flex-direction: column;
}

.badge-text strong {
    font-size: 0.875rem;
    line-height: 1;
}

.badge-text span {
    font-size: 0.75rem;
    opacity: 0.9;
}

.map-actions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .map-actions {
        grid-template-columns: 1fr;
    }
}

.map-action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.direction-btn {
    background: white;
    color: var(--cyan);
    border-color: rgba(0, 188, 212, 0.3);
}

.direction-btn:hover {
    background: rgba(0, 188, 212, 0.1);
    transform: translateY(-2px);
}

.transit-btn {
    background: white;
    color: var(--magenta);
    border-color: rgba(233, 30, 99, 0.3);
}

.transit-btn:hover {
    background: rgba(233, 30, 99, 0.1);
    transform: translateY(-2px);
}

.whatsapp-btn {
    background: white;
    color: var(--whatsapp-color);
    border-color: rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
    background: rgba(37, 211, 102, 0.1);
    transform: translateY(-2px);
}

/* Información detallada */
.info-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
}

.card-header {
    padding: 1.5rem;
    color: white;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.card-header h3 {
    margin: 0;
    font-size: 1.25rem;
}

.live-status {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #2ecc71;
    animation: pulse 2s infinite;
}

.card-body {
    padding: 1.5rem;
}

.detailed-address {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.address-line {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.address-line i {
    font-size: 1.25rem;
    margin-top: 0.25rem;
}

.address-line div {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.address-line strong {
    font-size: 1.125rem;
    color: var(--black);
}

.address-detail {
    font-size: 0.875rem;
    color: #666;
}

.address-features {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #f8f9fa;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    color: #666;
}

.schedule-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.schedule-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 0.75rem;
    border-left: 4px solid transparent;
}

.schedule-item.highlight {
    background: rgba(255, 235, 59, 0.1);
    border-left-color: var(--yellow);
}

.day {
    font-weight: 600;
    color: var(--black);
}

.hours {
    font-weight: 700;
    font-size: 1.125rem;
}

.note {
    font-size: 0.75rem;
    color: #666;
    text-align: right;
}

.schedule-note {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(0, 188, 212, 0.05);
    border-radius: 0.75rem;
    border-left: 4px solid var(--cyan);
    display: flex;
    gap: 1rem;
}

.schedule-note i {
    font-size: 1.25rem;
    margin-top: 0.25rem;
}

.schedule-note p {
    margin: 0;
    font-size: 0.875rem;
    color: #666;
    line-height: 1.5;
}

.qr-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .qr-content {
        flex-direction: column;
        text-align: center;
    }
}

.qr-code-container {
    position: relative;
    width: 150px;
    height: 150px;
    flex-shrink: 0;
}

#whatsappQR {
    width: 100%;
    height: 100%;
    border-radius: 0.75rem;
    background: white;
    padding: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.qr-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(37, 211, 102, 0.1);
    border-radius: 0.75rem;
    pointer-events: none;
}

.qr-overlay i {
    font-size: 3rem;
    color: var(--whatsapp-color);
    opacity: 0.3;
}

.qr-instructions {
    flex: 1;
}

.qr-instructions h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--black);
}

.qr-instructions p {
    font-size: 0.875rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.qr-fallback-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--whatsapp-color);
    color: white;
    border-radius: 0.75rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.qr-fallback-link:hover {
    background: var(--whatsapp-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

/* Call to Action para visita */
.visit-cta {
    background: linear-gradient(135deg, var(--cyan), var(--cyan-dark));
    border-radius: 1.5rem;
    padding: 3rem;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.visit-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    animation: shine 3s infinite linear;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

.cta-text {
    margin-bottom: 2rem;
}

.cta-text h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.cta-text p {
    font-size: 1.125rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

.cta-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 2rem;
    border-radius: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    min-width: 250px;
    justify-content: center;
    border: 2px solid transparent;
}

.primary-cta {
    background: var(--whatsapp-color);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.primary-cta:hover {
    background: var(--whatsapp-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.secondary-cta {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: rgba(255, 255, 255, 0.2);
}

.secondary-cta:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

/* ===========================================
   3. SECCIÓN DE CANALES DE CONTACTO
   =========================================== */
.channels-section {
    padding: 6rem 0;
    background: #f8fafc;
    position: relative;
}

.channels-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.channels-header {
    text-align: center;
    margin-bottom: 4rem;
}

.channels-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

@media (max-width: 1024px) {
    .channels-grid {
        grid-template-columns: 1fr;
    }
}

.channel-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow: hidden;
}

.channel-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 188, 212, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.channel-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 1.5rem;
    position: relative;
}

.pulse-ring {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid;
    border-radius: 50%;
    animation: pulseRing 2s ease-out infinite;
    opacity: 0.5;
}

.whatsapp-bg {
    background: var(--whatsapp-color);
}

.whatsapp-bg .pulse-ring {
    border-color: var(--whatsapp-color);
}

.phone-bg {
    background: var(--phone-color);
}

.phone-bg .pulse-ring {
    border-color: var(--phone-color);
}

.email-bg {
    background: var(--email-color);
}

.email-bg .pulse-ring {
    border-color: var(--email-color);
}

.social-bg {
    background: linear-gradient(135deg, var(--cyan), var(--magenta));
}

.social-bg .pulse-ring {
    border-color: var(--cyan);
}

.channel-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--black);
}

.channel-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: #666;
}

.channel-number, .channel-email {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 0.75rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--black);
}

.channel-ctas {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 480px) {
    .channel-ctas {
        flex-direction: column;
    }
}

.channel-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 0.75rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    font-size: 0.875rem;
    cursor: pointer;
}

.primary-channel {
    background: var(--cyan);
    color: white;
    border-color: var(--cyan-dark);
}

.primary-channel:hover {
    background: var(--cyan-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 188, 212, 0.3);
}

.secondary-channel {
    background: white;
    color: var(--black);
    border-color: rgba(0, 0, 0, 0.1);
}

.secondary-channel:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    border-color: rgba(0, 0, 0, 0.2);
}

.channel-stats, .social-stats {
    display: flex;
    justify-content: space-around;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.stat {
    text-align: center;
}

.stat .value {
    font-size: 1.5rem;
    font-weight: 800;
    display: block;
    margin-bottom: 0.25rem;
}

.stat .label {
    font-size: 0.75rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.channel-schedule {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.channel-schedule h4 {
    font-size: 0.875rem;
    color: #666;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.schedule {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.time {
    font-weight: 600;
    font-size: 0.875rem;
}

.channel-tip {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(0, 188, 212, 0.05);
    border-radius: 0.75rem;
    margin-top: 1.5rem;
    font-size: 0.875rem;
    color: #666;
}

.social-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .social-links-grid {
        grid-template-columns: 1fr;
    }
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    border-radius: 0.75rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.instagram-link {
    color: var(--instagram-color);
    border-color: rgba(225, 48, 108, 0.2);
    background: rgba(225, 48, 108, 0.05);
}

.instagram-link:hover {
    background: rgba(225, 48, 108, 0.1);
    transform: translateY(-2px);
}

.facebook-link {
    color: var(--facebook-color);
    border-color: rgba(24, 119, 242, 0.2);
    background: rgba(24, 119, 242, 0.05);
}

.facebook-link:hover {
    background: rgba(24, 119, 242, 0.1);
    transform: translateY(-2px);
}

.whatsapp-social {
    color: var(--whatsapp-color);
    border-color: rgba(37, 211, 102, 0.2);
    background: rgba(37, 211, 102, 0.05);
}

.whatsapp-social:hover {
    background: rgba(37, 211, 102, 0.1);
    transform: translateY(-2px);
}

.social-link i {
    font-size: 1.5rem;
}

.social-link span {
    font-weight: 600;
    font-size: 0.875rem;
}

.social-handle {
    font-size: 0.75rem;
    opacity: 0.7;
}

/* Preguntas frecuentes de contacto */
.contact-faq {
    background: white;
    border-radius: 1.5rem;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.faq-title {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: var(--black);
    text-align: center;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

.faq-item {
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 1rem;
    border-left: 4px solid var(--cyan);
    transition: transform 0.3s ease;
}

.faq-item:hover {
    transform: translateX(5px);
}

.faq-question {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.faq-question i {
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.faq-question h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--black);
    margin: 0;
    flex: 1;
}

.faq-answer p {
    margin: 0;
    font-size: 0.875rem;
    color: #666;
    line-height: 1.5;
}

/* ===========================================
   4. SECCIÓN DE TESTIMONIOS
   =========================================== */
.visit-testimonials {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    color: white;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 4rem;
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-slide {
    display: none;
    animation: fadeIn 0.5s ease;
}

.testimonial-slide.active {
    display: block;
}

.testimonial-content {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 1.5rem;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.quote-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    opacity: 0.3;
}

.testimonial-text {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.author-info {
    flex: 1;
}

.author-info h5 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
    color: white;
}

.author-info span {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    display: block;
    margin-bottom: 0.5rem;
}

.author-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.author-rating i {
    font-size: 1rem;
}

.author-rating span {
    font-size: 0.75rem;
    margin: 0;
}

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial-prev, .testimonial-next {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-prev:hover, .testimonial-next:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.testimonial-dots {
    display: flex;
    gap: 0.75rem;
}

.testimonial-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.testimonial-dots .dot.active {
    background: var(--cyan);
    transform: scale(1.2);
}

/* ===========================================
   5. FLOATING BUTTONS ESPECÍFICOS
   =========================================== */
.float-phone {
    background: linear-gradient(135deg, var(--phone-color), #0D47A1);
    border-color: rgba(52, 183, 241, 0.3);
}

.float-phone:hover {
    background: linear-gradient(135deg, #42A5F5, var(--phone-color));
    box-shadow: 0 12px 35px rgba(52, 183, 241, 0.3);
}

.float-location {
    background: linear-gradient(135deg, var(--cyan), var(--cyan-dark));
    border-color: rgba(0, 188, 212, 0.3);
}

.float-location:hover {
    background: linear-gradient(135deg, var(--cyan-light), var(--cyan));
    box-shadow: 0 12px 35px rgba(0, 188, 212, 0.3);
}

.float-email {
    background: linear-gradient(135deg, var(--email-color), #B71C1C);
    border-color: rgba(234, 67, 53, 0.3);
}

.float-email:hover {
    background: linear-gradient(135deg, #FF5252, var(--email-color));
    box-shadow: 0 12px 35px rgba(234, 67, 53, 0.3);
}

/* ===========================================
   6. ANIMACIONES ESPECÍFICAS PARA CONTACTO
   =========================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulseRing {
    0% {
        transform: scale(0.95);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.1);
        opacity: 0;
    }
}

@keyframes shine {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* ===========================================
   7. RESPONSIVE ADICIONAL
   =========================================== */
@media (max-width: 768px) {
    .contact-hero {
        padding: 6rem 0 4rem;
        min-height: auto;
    }
    
    .contact-hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .contact-hero-stats {
        gap: 1.5rem;
    }
    
    .contact-stat {
        min-width: 150px;
    }
    
    .stat-value {
        font-size: 2rem;
    }
    
    .hero-cta-btn {
        min-width: 100%;
    }
    
    .visit-cta {
        padding: 2rem;
    }
    
    .cta-text h3 {
        font-size: 1.5rem;
    }
    
    .cta-btn {
        min-width: 100%;
    }
    
    .contact-faq {
        padding: 2rem;
    }
    
    .testimonial-content {
        padding: 2rem;
    }
    
    .testimonial-text {
        font-size: 1.125rem;
    }
}

@media (max-width: 480px) {
    .contact-hero-title {
        font-size: 2rem;
    }
    
    .contact-hero-subtitle {
        font-size: 1.125rem;
    }
    
    .contact-stat {
        min-width: 100%;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .channel-card {
        padding: 1.5rem;
    }
    
    .floating-element {
        display: none;
    }
}

/* ===========================================
   8. ESTADOS DE INTERACCIÓN
   =========================================== */
.copy-phone:hover, .copy-email:hover {
    background: #f8f9fa;
    color: var(--cyan);
}

/* Indicador de copiado */
.copied-notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--cyan);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 30px rgba(0, 188, 212, 0.3);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 9999;
    animation: slideInRight 0.3s ease, fadeOut 0.3s ease 2s forwards;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeOut {
    to {
        opacity: 0;
        transform: translateX(100%);
    }
}

/* Estado de horario actual */
.live-status.open .status-text {
    color: #2ecc71;
}

.live-status.closed .status-text {
    color: #e74c3c;
}

.live-status.break .status-text {
    color: #f39c12;
}   