/**
 * MUNDO MASAJES PERÚ - Estilos
 * mundomasajes.net
 */

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #fff;
    color: #333;
    line-height: 1.6;
}

a { color: #8B1FA9; text-decoration: none; }
a:hover { color: #6B1FA0; }

.container { max-width: 680px; margin: 0 auto; }

/* ================== HEADER ================== */
.header {
    background: #8B1FA9;
    padding: 1.25rem 1rem;
    text-align: center;
}

.header-container {
    max-width: 680px;
    margin: 0 auto;
}

.logo {
    font-size: 24px;
    font-weight: 600;
    margin: 0;
}

.logo a {
    color: #fff;
    text-decoration: none;
}

.logo a:hover {
    color: #f0e7f7;
}

.tagline {
    color: rgba(255,255,255,0.9);
    font-size: 14px;
    margin-top: 4px;
}

/* ================== BÚSQUEDA ================== */
.search-box {
    background: #f9f9f9;
    padding: 1rem;
    border-bottom: 1px solid #eee;
    position: relative;
}

.search-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    outline: none;
}

.search-input:focus { border-color: #8B1FA9; }

.search-results {
    display: none;
    position: absolute;
    top: 100%;
    left: 1rem;
    right: 1rem;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    max-height: 300px;
    overflow-y: auto;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    z-index: 1000;
}

.search-result-item {
    padding: 12px 16px;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
}

.search-result-item:hover {
    background: #f9f9f9;
}

/* ================== BREADCRUMB ================== */
.breadcrumb {
    padding: 0.75rem 1rem;
    font-size: 13px;
    color: #666;
    background: #fafafa;
    border-bottom: 1px solid #eee;
}

.breadcrumb-container {
    max-width: 680px;
    margin: 0 auto;
}

.breadcrumb a { color: #8B1FA9; }

/* ================== TÍTULOS ================== */
.main-title { padding: 1.5rem 1rem 0.5rem; }
.main-title h1 { font-size: 22px; font-weight: 500; color: #333; }

.section-title {
    padding: 1.5rem 1rem 1rem;
    font-size: 20px;
    font-weight: 500;
    color: #333;
}

.seo-intro {
    padding: 0 1rem 1rem;
    font-size: 14px;
    line-height: 1.7;
    color: #555;
}

.seo-intro strong { color: #333; font-weight: 500; }

/* ================== BANNERS VIP ================== */
.banner-vip {
    margin: 1rem;
    background: linear-gradient(135deg, #8B1FA9 0%, #A855F7 100%);
    border-radius: 12px;
    padding: 0.5rem;
    cursor: pointer;
    transition: transform 0.2s;
}

.banner-vip:hover { transform: translateY(-2px); }

.banner-vip-inner {
    background: #fff;
    border-radius: 8px;
    padding: 0.75rem;
}

.banner-vip-img {
    height: 120px;
    background: #f0f0f0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8B1FA9;
    font-size: 12px;
    margin-bottom: 6px;
}

.banner-vip-text { text-align: center; }
.banner-vip-text h3 { font-size: 16px; font-weight: 500; color: #8B1FA9; }
.banner-vip-text p { font-size: 12px; color: #666; margin-top: 2px; }

/* ================== GRID CIUDADES ================== */
.ciudades-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 12px;
    padding: 0 1rem 1.5rem;
}

.ciudad-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 1.25rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
}

.ciudad-card:hover {
    border-color: #8B1FA9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139,31,169,0.15);
}

.ciudad-nombre { font-size: 15px; font-weight: 500; color: #333; }

/* ================== BOTONES COLAPSABLES ================== */
.collapse-btns {
    padding: 0 1rem 1rem;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.collapse-btn {
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 13px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s;
}

.collapse-btn:hover {
    background: #8B1FA9;
    color: #fff;
    border-color: #8B1FA9;
}

.menu-collapse {
    display: none;
    padding: 1rem;
    background: #f9f9f9;
    margin: 0 1rem 1rem;
    border-radius: 6px;
}

.menu-collapse.active { display: block; }

.menu-collapse .menu-items {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.menu-collapse a {
    background: #fff;
    padding: 8px 14px;
    border-radius: 4px;
    font-size: 13px;
    color: #333;
    border: 1px solid #e0e0e0;
}

.menu-collapse a:hover {
    border-color: #8B1FA9;
    color: #8B1FA9;
}

/* ================== ANUNCIOS ================== */
.anuncio-destacado {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin: 0 1rem 1rem;
    padding: 12px;
    display: flex;
    gap: 12px;
    cursor: pointer;
    transition: all 0.2s;
}

.anuncio-destacado:hover {
    border-color: #8B1FA9;
    box-shadow: 0 4px 12px rgba(139,31,169,0.1);
}

.anuncio-destacado.vip {
    border: 2px solid #FFD700;
    background: linear-gradient(to right, #fff9e6 0%, #fff 30%);
}

.anuncio-img {
    width: 120px;
    height: 120px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
    background: #f0f0f0;
}

.anuncio-info { flex: 1; min-width: 0; }

.anuncio-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 6px;
}

.anuncio-nombre { font-size: 16px; font-weight: 500; color: #333; }
.anuncio-edad { font-size: 13px; color: #666; margin-left: 6px; }

.badge-vip {
    background: #FFD700;
    color: #856404;
    font-size: 10px;
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 500;
}

.anuncio-desc {
    font-size: 13px;
    color: #555;
    line-height: 1.5;
    margin-bottom: 8px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.anuncio-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.tag {
    background: #e7d4f7;
    color: #6B1FA0;
    font-size: 11px;
    padding: 3px 8px;
    border-radius: 4px;
}

.anuncio-gratuito {
    background: #fafafa;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin: 0 1rem 1rem;
    padding: 12px;
    cursor: pointer;
    transition: all 0.2s;
}

.anuncio-gratuito:hover {
    border-color: #8B1FA9;
    background: #fff;
}

/* ================== PAGINACIÓN ================== */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 2rem 1rem;
    flex-wrap: wrap;
}

.page-btn {
    padding: 8px 14px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    background: #fff;
    transition: all 0.2s;
}

.page-btn.active {
    background: #8B1FA9;
    color: #fff;
    border-color: #8B1FA9;
}

.page-btn:hover:not(.active) { border-color: #8B1FA9; }

/* ================== PERFIL ================== */


.profile-header {
    padding: 1.5rem 1rem;
    border-bottom: 1px solid #eee;
}

.profile-title {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 12px;
}

.profile-name { font-size: 24px; font-weight: 500; color: #333; }

.profile-meta {
    display: flex;
    gap: 16px;
    font-size: 14px;
    color: #666;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.profile-location { color: #8B1FA9; font-weight: 500; }

.services-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.service-tag {
    background: #e7d4f7;
    color: #6B1FA0;
    font-size: 12px;
    padding: 5px 12px;
    border-radius: 6px;
    font-weight: 500;
}

.description, .details, .location-section {
    padding: 1.5rem 1rem;
    border-bottom: 1px solid #eee;
}

.description h3, .details h3, .location-section h3 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 12px;
    color: #333;
}

.description p, .location-section p {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
}

.description a {
    color: #8B1FA9;
    border-bottom: 1px dotted #8B1FA9;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #f5f5f5;
    flex-wrap: wrap;
    gap: 8px;
}

.detail-row:last-child { border-bottom: none; }
.detail-label { font-size: 14px; color: #666; }
.detail-value { font-size: 14px; color: #333; font-weight: 500; }

.location-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.location-tag {
    background: #E1F5EE;
    color: #0F6E56;
    font-size: 12px;
    padding: 5px 12px;
    border-radius: 6px;
}

/* ================== BOTONES CONTACTO ================== */
.contact-buttons-desktop {
    padding: 1.5rem 1rem;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.contact-btn-desktop {
    flex: 1;
    min-width: 160px;
    padding: 14px 20px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #fff;
    transition: all 0.2s;
}

.contact-btn-desktop:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.btn-call-desktop { background: #8b1fa9; }
.btn-whatsapp-desktop { background: #25D366; }
.btn-telegram-desktop { background: #0088cc; }





/* ================== BOTONES MÓVILES ESTILO SKOKKA ================== */
.fixed-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid #e0e0e0;
    padding: 12px 16px;
    display: none;
    gap: 10px;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.08);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.contact-btn-mobile {
    flex: 1;
    height: 48px;
    border-radius: 50px;
    cursor: pointer;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 0 16px;
    transition: all 0.2s;
    text-decoration: none;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    max-width: 200px;
}

.contact-btn-mobile:active { 
    transform: scale(0.97); 
}

.contact-btn-mobile svg {
    flex-shrink: 0;
}

/* Botón Llamar - Rojo/Coral con número */
.btn-call-mobile { 
    background: #8b1fa9;
    color: #fff;
}

.btn-call-mobile:hover {
    background: #E04848;
}

/* Botón WhatsApp - Verde claro */
.btn-whatsapp-mobile { 
    background: #25D366;
}

.btn-whatsapp-mobile:hover {
    background: #20BA5A;
}

/* Botón Telegram - Azul */
.btn-telegram-mobile { 
    background: #0088cc;
}

.btn-telegram-mobile:hover {
    background: #006699;
}

/* En pantallas muy pequeñas, mostrar solo iconos */
@media (max-width: 380px) {
    .contact-btn-mobile {
        font-size: 0;
        padding: 0;
        width: 56px;
        flex: 0 0 56px;
        border-radius: 50%;
        height: 56px;
    }
    
    .contact-btn-mobile svg {
        width: 24px;
        height: 24px;
    }
}


/* ================== SECCIONES SEO ================== */
.seo-section, .seo-final {
    padding: 2rem 1rem;
    background: #fafafa;
    border-top: 1px solid #eee;
}

.seo-section h2, .seo-final h2 {
    font-size: 20px;
    font-weight: 500;
    color: #333;
    margin-bottom: 1rem;
}

.seo-section p, .seo-final p {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1rem;
}

.seo-section a, .seo-final a {
    color: #8B1FA9;
    font-weight: 500;
}

/* ================== FOOTER ================== */
.footer {
    background: #2a2a2a;
    color: #fff;
    padding: 2rem 1rem;
}

.footer-container {
    max-width: 680px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-column h4 {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 0.75rem;
    color: #A855F7;
}

.footer-column a {
    display: block;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 13px;
    margin-bottom: 0.5rem;
}

.footer-column a:hover { color: #A855F7; }

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
}

/* ================== FORMULARIOS ================== */
.form-container { max-width: 600px; margin: 2rem auto; padding: 0 1rem; }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; font-size: 14px; font-weight: 500; margin-bottom: 0.5rem; color: #333; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
}
.form-group textarea { min-height: 120px; resize: vertical; }
.checkbox-group { display: flex; flex-wrap: wrap; gap: 12px; }
.checkbox-item { display: flex; align-items: center; gap: 6px; }
.checkbox-item input[type="checkbox"] { width: auto; }
.btn-submit {
    background: #8B1FA9;
    color: #fff;
    padding: 14px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    width: 100%;
}
.btn-submit:hover { background: #6B1FA0; }
.alert { padding: 12px; border-radius: 6px; margin-bottom: 1rem; }
.alert-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.alert-error { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }
.required { color: #dc2626; }

/* ================== LEGAL ================== */
.legal-container { max-width: 800px; margin: 2rem auto; padding: 0 1rem; }
.legal-container h1 { font-size: 28px; margin-bottom: 1rem; }
.legal-container h2 { font-size: 20px; margin: 2rem 0 1rem; color: #8B1FA9; }
.legal-container p { color: #555; line-height: 1.8; margin-bottom: 1rem; }
.legal-container ul { margin: 1rem 0 1rem 2rem; color: #555; line-height: 1.8; }

/* ================== RESPONSIVE ================== */
@media (max-width: 768px) {
    .main-content { padding-bottom: 80px; }
    .contact-buttons-desktop { display: none; }
    .fixed-buttons { display: flex; }
}

@media (min-width: 769px) {
    .contact-buttons-desktop { display: flex; }
    .fixed-buttons { display: none; }
}

/* ================== UTILIDADES ================== */
.error-container { max-width: 600px; margin: 4rem auto; padding: 0 1rem; text-align: center; }
.error-code { font-size: 120px; font-weight: 700; color: #8B1FA9; line-height: 1; }
.error-message { font-size: 24px; color: #333; margin: 1rem 0; }

/* ================== TÍTULOS DE ANUNCIOS (H3) ================== */
.anuncio-titulo {
    font-size: 15px;
    font-weight: 500;
    margin: 0 0 8px 0;
    line-height: 1.4;
    color: #333;
}

.anuncio-titulo a {
    color: #333;
    text-decoration: none;
}

.anuncio-titulo a:hover {
    color: #8B1FA9;
}

.anuncio-destacado .anuncio-titulo {
    font-size: 16px;
    margin-bottom: 4px;
}

.anuncio-gratuito .anuncio-titulo {
    font-size: 15px;
}

.anuncio-gratuito .anuncio-titulo a {
    color: #8B1FA9;
}

/* ================================================
   ANUNCIOS ESTILO SKOKKA - DISEÑO UNIFICADO
   ================================================ */

.anuncio-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin: 0 1rem 0.75rem;
    overflow: hidden;
    transition: all 0.2s;
}

.anuncio-card:hover {
    border-color: #8B1FA9;
    box-shadow: 0 2px 8px rgba(139,31,169,0.15);
}

/* VIP destacado con borde dorado */
.anuncio-vip {
    border: 2px solid #FFD700;
    background: linear-gradient(to right, #fff9e6 0%, #fff 30%);
}

.anuncio-vip:hover {
    border-color: #FFA500;
    box-shadow: 0 2px 12px rgba(255,165,0,0.2);
}

/* Destacado con borde morado suave */
.anuncio-destacado {
    border-color: #c084fc;
}

/* Link clickeable de toda la tarjeta */
.anuncio-link {
    display: flex;
    gap: 12px;
    padding: 12px;
    text-decoration: none;
    color: inherit;
}

/* Contenedor de imagen */
.anuncio-img-container {
    position: relative;
    width: 120px;
    height: 150px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    background: #f0f0f0;
}

.anuncio-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Badge VIP sobre la imagen */
.badge-vip-img {
    position: absolute;
    top: 4px;
    left: 4px;
    background: #FFD700;
    color: #856404;
    font-size: 9px;
    padding: 2px 6px;
    border-radius: 3px;
    font-weight: 600;
    text-transform: uppercase;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

/* Placeholder con inicial (gratuitos) */
.anuncio-img-placeholder {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    background: linear-gradient(135deg, #8B1FA9 0%, #c084fc 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 42px;
    font-weight: 600;
    text-transform: uppercase;
}

/* Info del anuncio */
.anuncio-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2px 0;
}

.anuncio-card .anuncio-titulo {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.35;
    color: #333;
    margin: 0 0 6px 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.anuncio-card .anuncio-titulo a {
    color: #333;
    text-decoration: none;
}

.anuncio-card .anuncio-desc {
    font-size: 12px;
    color: #666;
    line-height: 1.4;
    margin: 0 0 6px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Meta info: edad + ubicación */
.anuncio-meta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    font-size: 11px;
    margin-top: auto;
    align-items: center;
}

.meta-edad {
    color: #8B1FA9;
    font-weight: 600;
    background: #f3e8ff;
    padding: 2px 8px;
    border-radius: 4px;
}

.meta-ubic {
    color: #666;
}

.meta-salida {
    color: #0F6E56;
    font-weight: 500;
    background: #E1F5EE;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 10px;
}






/* ================== BADGES VIP Y DESTACADO - OPCIÓN B ================== */
.anuncio-card {
    position: relative; /* Necesario para el badge */
}

.badge-tipo {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 10px;
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.25);
    z-index: 10;
    display: inline-flex;
    align-items: center;
    gap: 3px;
    white-space: nowrap;
    animation: badge-pulse 2s ease-in-out infinite;
}

/* Badge VIP - Dorado */
.badge-vip-tag {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #5C4400;
    border: 1px solid #DAA520;
}

/* Badge Destacado - Morado */
.badge-destacado-tag {
    background: linear-gradient(135deg, #8B1FA9 0%, #c084fc 100%);
    color: #fff;
    border: 1px solid #6B1FA0;
}

@keyframes badge-pulse {
    0%, 100% { 
        transform: scale(1); 
    }
    50% { 
        transform: scale(1.05); 
    }
}

/* Móvil */
@media (max-width: 480px) {
    .badge-tipo {
        font-size: 9px;
        padding: 3px 7px;
        top: 6px;
        right: 6px;
    }
}




/* ================== MÓVIL ================== */
@media (max-width: 480px) {
    .anuncio-card {
        margin: 0 0.75rem 0.75rem;
    }
    
    .anuncio-link {
        padding: 10px;
        gap: 10px;
    }
    
    .anuncio-img-container,
    .anuncio-img-placeholder {
        width: 120px;
        height: 150px;
    }
    
    .anuncio-img-placeholder {
        font-size: 32px;
    }
    
    .anuncio-card .anuncio-titulo {
        font-size: 13px;
        -webkit-line-clamp: 3;
    }
    
    .anuncio-card .anuncio-desc {
        font-size: 11px;
        -webkit-line-clamp: 2;
    }
    
    .anuncio-meta {
        font-size: 10px;
        gap: 6px;
    }
    
    .meta-edad,
    .meta-salida {
        font-size: 10px;
        padding: 1px 6px;
    }
}

/* ================== DESKTOP MEJORAS ================== */
@media (min-width: 769px) {
    .anuncio-img-container,
    .anuncio-img-placeholder {
        width: 130px;
        height: 150px;
    }
    
    .anuncio-card .anuncio-titulo {
        font-size: 15px;
    }
    
    .anuncio-card .anuncio-desc {
        font-size: 13px;
    }
}

/* ================================================
   GALERÍA GRID ESTILO SKOKKA - PERFIL
   ================================================ */

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4px;
    background: #f5f5f5;
    padding: 4px;
}

/* En móvil: 1 columna por defecto */
.gallery-grid .gallery-item {
    display: block;
    width: 100%;
    aspect-ratio: 4/5;
    overflow: hidden;
    background: #f0f0f0;
    border-radius: 4px;
}

.gallery-grid .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}

.gallery-grid .gallery-item:hover img {
    transform: scale(1.02);
}

/* Galería con UNA SOLA imagen - se ve grande */
.gallery-grid.gallery-single .gallery-item {
    aspect-ratio: 16/9;
    max-height: 500px;
}

/* Placeholder cuando no hay imágenes */
.gallery-placeholder-single {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #8B1FA9 0%, #c084fc 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-placeholder-single span {
    color: #fff;
    font-size: 100px;
    font-weight: 600;
    text-transform: uppercase;
}

/* DESKTOP - 2 columnas como Skokka */
@media (min-width: 769px) {
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 6px;
        padding: 6px;
    }
    
    .gallery-grid.gallery-single {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid.gallery-single .gallery-item {
        max-height: 600px;
    }
    
    .gallery-grid .gallery-item {
        aspect-ratio: 3/4;
    }
}

/* H1 del perfil con mejor SEO */
.profile-name {
    font-size: 22px;
    font-weight: 600;
    color: #333;
    line-height: 1.3;
    margin: 0;
}

@media (max-width: 480px) {
    .profile-name {
        font-size: 18px;
    }
    
    .gallery-placeholder-single {
        height: 200px;
    }
    
    .gallery-placeholder-single span {
        font-size: 80px;
    }
}






/* ================== SECCIÓN GALERÍA EN PERFIL ================== */
.gallery-section {
    padding: 1.5rem 1rem;
    border-bottom: 1px solid #eee;
}

.gallery-title {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    margin-bottom: 1rem;
}

.gallery-section .gallery-grid {
    background: transparent;
    padding: 0;
}


