* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #0f172a 100%);
    color: #fff;
    min-height: 100vh;
}

/* Navegación */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* Espacio para Logo - Reemplaza tu-logo.png con la ruta de tu logo */
.logo-image {
    height: 45px;
    width: auto;
    object-fit: contain;
    border-radius: 8px;
}

/* Fallback: Si no hay logo, mostrar ícono temporal */
.logo-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #22d3ee, #3b82f6);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(45deg);
    font-size: 1.2rem;
}

.logo-icon::after {
    content: '💎';
    transform: rotate(-45deg);
}

.logo span {
    font-weight: 700;
    font-size: 1.25rem;
}
.nav-links {
    display: flex;
    gap: 0.5rem;
}

.nav-btn {
    padding: 0.75rem;
    border-radius: 10px;
    background: rgba(30, 41, 59, 0.5);
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-btn:hover {
    background: rgba(51, 65, 85, 0.5);
    color: #fff;
}

.nav-btn.active {
    background: linear-gradient(135deg, #06b6d4, #3b82f6);
    color: #fff;
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.3);
}

/* Contenido Principal */
.main-content {
    padding-top: 100px;
    padding-bottom: 3rem;
    min-height: 100vh;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.page-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
}

.gradient-text {
    background: linear-gradient(135deg, #22d3ee, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-subtitle {
    text-align: center;
    color: #cbd5e1;
    font-size: 1.125rem;
    margin-bottom: 3rem;
}

/* Tarjetas de Contacto */
.contacto-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.contacto-card {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.8));
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(148, 163, 184, 0.1);
    display: flex;
    gap: 1.5rem;
    transition: all 0.3s ease;
}

.contacto-card:hover {
    border-color: rgba(6, 182, 212, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(6, 182, 212, 0.2);
}

.contacto-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #06b6d4, #3b82f6);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contacto-icon svg {
    color: #fff;
}

.contacto-content {
    flex: 1;
}

.contacto-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.contacto-desc {
    color: #cbd5e1;
    margin-bottom: 0.75rem;
}

.contacto-link {
    color: #22d3ee;
    font-size: 1.25rem;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s ease;
    word-break: break-all;
}

.contacto-link:hover {
    color: #06b6d4;
}

.contacto-address {
    color: #22d3ee;
    font-size: 1.125rem;
    font-weight: 600;
}

.contacto-address p {
    margin-bottom: 0.25rem;
}

/* Sección de Mapa */
.mapa-section {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.8));
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(148, 163, 184, 0.1);
    margin-bottom: 3rem;
}

.mapa-title {
    font-size: 1.75rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #fff;
}

.mapa-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid rgba(6, 182, 212, 0.3);
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.2);
}

.mapa-container iframe {
    width: 100%;
    height: 450px;
    border: none;
    display: block;
}

.btn-ver-mapa {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1rem 1.5rem;
    margin-top: 1.5rem;
    background: linear-gradient(135deg, #06b6d4, #3b82f6);
    border: none;
    border-radius: 12px;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);
}

.btn-ver-mapa:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(6, 182, 212, 0.5);
}

/* Horario de Atención */
.horario-section {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.8));
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(148, 163, 184, 0.1);
}

.horario-title {
    font-size: 1.75rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #fff;
}

.horario-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.horario-card {
    background: rgba(30, 41, 59, 0.5);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(148, 163, 184, 0.1);
    transition: all 0.3s ease;
}

.horario-card:hover {
    border-color: rgba(6, 182, 212, 0.5);
    box-shadow: 0 5px 15px rgba(6, 182, 212, 0.15);
}

.horario-dias {
    color: #94a3b8;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.horario-horas {
    color: #22d3ee;
    font-size: 1.25rem;
    font-weight: 700;
}

/* Responsive */
@media (min-width: 640px) {
    .horario-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .contacto-grid {
        grid-template-columns: 1fr;
    }
    
    .mapa-container iframe {
        height: 500px;
    }
}

@media (min-width: 1024px) {
    .mapa-container iframe {
        height: 550px;
    }
}