/* ==========================================
    ESTILOS ZEQUI SERVICIO DIGITAL (PREMIUM)
   ========================================== */

body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center; 
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: white;
}

.fondo-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.8); 
    z-index: -1;
}

/* LOGO CIRCULAR */
.perfil-container {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 40px;
}

.logo-container {
    width: 170px; 
    height: 170px;
    border-radius: 50%;
    border: 4px solid #ff6600;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 20px rgba(255, 102, 0, 0.4);
    background: #000;
}

.logo-perfil {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* TEXTOS HEADER */
.subtitulo-fullstack {
    color: #ff6600;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 10px 0 0;
    font-size: 1.3rem;
    font-weight: 800;
}

.separador-naranja {
    width: 60px;
    height: 3px;
    background-color: #ff6600;
    margin: 10px auto;
}

.tagline {
    text-align: center;
    font-weight: bold;
    font-size: 1rem;
    margin-bottom: 20px;
}

/* MENÚ DE BOTONES */
.menu-container {
    width: 85%; 
    max-width: 320px; 
    display: flex;
    flex-direction: column;
    gap: 15px; 
    align-items: center;
}

/* BOTONES BLANCOS (Servicios, Instagram, Ubicación) */
.btn {
    background-color: #ffffff;
    color: #000000 !important;
    text-decoration: none;
    padding: 18px;
    border-radius: 12px;
    font-size: 1.1rem; 
    font-weight: bold;
    width: 100%; 
    display: flex;
    justify-content: center; 
    align-items: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    border: none;
    box-sizing: border-box;
}

.btn i {
    font-size: 1.4rem;
    margin-right: 12px;
    color: #ff6600; /* Iconos naranjas */
}

/* BOTÓN NARANJA (Turnos) */
.btn-destacado {
    background-color: #ff6600 !important;
    color: #ffffff !important;
}

.btn-destacado i {
    color: #ffffff !important;
}

/* BOTÓN ADMIN PEQUEÑO */
.btn-admin {
    background: rgba(255, 255, 255, 0.1);
    color: #888 !important;
    border: 1px solid #444;
    margin-top: 30px; 
    padding: 8px 20px;
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* ANIMACIÓN PULSE */
.pulse {
    animation: pulse-orange 2s infinite;
}

@keyframes pulse-orange {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 102, 0, 0.7); }
    70% { transform: scale(1.02); box-shadow: 0 0 0 10px rgba(255, 102, 0, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 102, 0, 0); }
}

/* FOOTER */
footer {
    margin-top: auto;
    padding: 30px;
    font-size: 0.85rem;
    color: #bbb;
}

footer a {
    color: #ff6600;
    text-decoration: none;
    font-weight: bold;
}