/* =========================================
   STYLO URBANO - DARK THEME
   ========================================= */

:root {
    --bg-dark: #121212;
    --bg-card: #1e1e1e;
    --accent: #d4af37;
    /* Dorado */
    --text-main: #ffffff;
    --text-muted: #a0a0a0;
}

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

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    padding-bottom: 80px;
    /* Espacio para el botón flotante */
}

a {
    text-decoration: none;
}

/* --- HEADER PERFIL --- */
.profile-header {
    background-color: var(--bg-card);
    text-align: center;
    padding-bottom: 30px;
    border-bottom: 1px solid #333;
}

.cover-photo {
    height: 120px;
    background-image: url('https://images.unsplash.com/photo-1585747860715-2ba37e788b70?auto=format&fit=crop&w=1000&q=80');
    background-size: cover;
    background-position: center;
}

.profile-content {
    margin-top: -50px;
    padding: 0 20px;
}

.avatar {
    width: 100px;
    height: 100px;
    margin: 0 auto 15px auto;
    border-radius: 50%;
    border: 4px solid var(--bg-card);
    overflow: hidden;
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.job-title {
    color: var(--accent);
    font-weight: bold;
    letter-spacing: 1px;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.bio {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 15px auto;
    max-width: 500px;
    line-height: 1.5;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
}

.social-links a {
    color: var(--text-main);
    font-size: 1.5rem;
    transition: 0.3s;
}

.social-links a:hover {
    color: var(--accent);
}

/* --- SECCIONES --- */
.section-container {
    max-width: 600px;
    /* Ancho tipo móvil */
    margin: 0 auto;
    padding: 40px 20px 0 20px;
}

.section-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    border-left: 4px solid var(--accent);
    padding-left: 15px;
    margin-bottom: 25px;
    color: var(--text-main);
}

/* --- LISTA DE SERVICIOS --- */
.services-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.service-item {
    background-color: var(--bg-card);
    padding: 15px;
    border-radius: 8px;
    display: grid;
    grid-template-columns: 1fr auto auto;
    /* Info | Precio | Botón */
    align-items: center;
    gap: 15px;
    border: 1px solid #333;
}

.svc-info h3 {
    font-size: 1rem;
    margin-bottom: 3px;
}

.svc-info small {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.svc-price {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    color: var(--accent);
    font-weight: bold;
}

.btn-book {
    background-color: transparent;
    border: 1px solid var(--text-muted);
    color: var(--text-main);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: bold;
    transition: 0.2s;
}

.btn-book:hover {
    background-color: var(--accent);
    border-color: var(--accent);
    color: var(--bg-dark);
}

/* --- GALERÍA --- */
.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.gallery-grid img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    transition: 0.3s;
}

.gallery-grid img:hover {
    opacity: 0.8;
}

/* --- UBICACIÓN --- */
.location-box {
    text-align: center;
    margin-top: 40px;
    padding-bottom: 40px;
    border-top: 1px solid #333;
    padding-top: 40px;
}

.location-box i {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 10px;
}

.btn-waze {
    display: inline-block;
    margin-top: 15px;
    color: var(--text-main);
    border-bottom: 1px solid var(--accent);
    padding-bottom: 2px;
}

/* --- FOOTER --- */
.footer {
    text-align: center;
    padding: 20px;
    font-size: 0.8rem;
    color: #555;
}

.footer a {
    color: #777;
}

/* --- BOTÓN FLOTANTE (STICKY CTA) --- */
.sticky-cta {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 400px;
    background-color: var(--accent);
    color: var(--bg-dark);
    text-align: center;
    padding: 15px;
    border-radius: 50px;
    font-weight: 900;
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    animation: float 3s infinite ease-in-out;
}

@keyframes float {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

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

/* Responsive */
@media (max-width: 400px) {
    .service-item {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .svc-price {
        margin: 5px 0;
    }

    .btn-book {
        width: 100%;
    }
}