* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            font-weight: 400;
            background-color: #f8f8f8;
            color: #1a1a1a;
            line-height: 1.6;
        }
        
        /* Montserrat solo para títulos y elementos principales */
        h1, h2, h3, h4, h5, h6, .nombre-container, .badge-verificado, .boton-contacto {
            font-family: 'Montserrat', sans-serif;
        }
        
        .container {
            max-width: 1100px;
            margin: 20px auto;
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            position: relative;
        }
        
        /* Franja dorada superior */
        .container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 10px;
            background: linear-gradient(90deg, #D4AF37 0%, #FFD700 50%, #D4AF37 100%);
            box-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
        }
        
        /* LOGO EN HEADER - MEJOR POSICIONADO */
        .logo-header {
            position: absolute;
            top: 5px;
            left: 5px;
            z-index: 100;
        }
        
        .logo-header a {
            display: block;
            transition: opacity 0.3s ease;
        }
        
        .logo-header a:hover {
            opacity: 0.8;
        }
        
        .logo-header img {
            height: 100px;
            width: auto;
        }
        
        /* SECCIÓN SUPERIOR - FOTO + INFO */
        .perfil-header {
            display: flex;
            padding: 50px 30px 15px 30px;
            gap: 25px;
            align-items: flex-start;
            border-bottom: 1px solid #f0f0f0;
        }
        
        .foto-container {
            flex: 0 0 300px;
            position: relative;
        }
        
        .foto-perfil {
            width: 300px;
            height: 300px;
            object-fit: cover;
            border-radius: 50%;
            box-shadow: 0 10px 40px rgba(0,0,0,0.18);
            border: 4px solid #fff;
            transition: all 0.3s ease;
            z-index: 1;
        }
        
        .foto-perfil:hover {
            transform: scale(1.02);
            box-shadow: 0 12px 50px rgba(212, 175, 55, 0.3);
        }
        
        /* PUNTO DISPONIBLE - MEJOR POSICIONADO */
        .disponible-punto {
            position: absolute;
            bottom: 25px;
            right: 10px;
            width: 30px;
            height: 30px;
            background: #4CAF50;
            border-radius: 50%;
            border: 3px solid #fff;
            animation: pulse 2s infinite;
            z-index: 10;
        }
        
        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7);
            }
            70% {
                box-shadow: 0 0 0 10px rgba(76, 175, 80, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(76, 175, 80, 0);
            }
        }
        
        .info-principal {
            flex: 1;
        }
        
        .nombre-container {
            display: flex;
            align-items: center;
            justify-content: flex-start;  /* no space-between ni centrar toda la fila */
            gap: 12px;                    /* espacio fijo entre nombre y badge */
            flex-wrap: wrap;              /* si el nombre es muy largo, el badge baja a la siguiente línea */
            width: auto;                  /* que no se estire a todo el ancho a la fuerza */
        }
       
        h1 {
            font-size: 36px;
            font-weight: 700;
            color: #1a1a1a;
            letter-spacing: -0.5px;
            line-height: 1.1;
        }

        h1 small {
            display: block;
            font-size: 13px;
            font-weight: 500;
            font-style: italic;
            color: #555;
            margin-top: 2px;
            margin-bottom: 8px;
            line-height: 1.2;
            letter-spacing: 0;
        }

        .badge-verificado {
            background: linear-gradient(135deg, rgba(107, 63, 160, 0.95) 0%, rgba(147, 112, 219, 0.95) 100%);
            color: white;
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            box-shadow: 0 3px 10px rgba(107, 63, 160, 0.3);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .badge-verificado i {
            color: #D4AF37;
            font-size: 15px;
        }
        
        /* INFO RÁPIDA - COMPACTA */
        .info-rapida {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 8px;
        }
        
        .info-item {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 15px;
            color: #4a4a4a;
        }
        
        .info-item i {
            color: #6B3FA0;
            font-size: 16px;
        }
        
        .ubicacion {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 16px;
            color: #666;
            margin-bottom: 4px;
            margin-top: 8px;                     
            padding: 9px 0;                    
            border-top: 1px solid #f0f0f0; 
            line-height: 1.0;
            padding-top: 13px;
        }
        
        .ubicacion i {
            color: #D4AF37;
            font-size: 18px;
        }
        
        /* TARIFAS EN HEADER */
        .tarifas-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 12px;
            padding: 10px 0;
            border-top: 1px solid #f0f0f0;
            border-bottom: 1px solid #f0f0f0;
            min-height: 48px;
        }
        
        .tarifas-header i {
            color: #4CAF50;
            font-size: 20px;
        }
        
        .tarifas-valores {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            font-size: 15px;
            font-weight: 600;
            color: #6B3FA0;
            justify-content: flex-start;
            line-height: 1.2;
        }
        
        .tarifa-valor {
            color: #1a1a1a;
            font-weight: 400;
        }
        
        .tarifas-consultar {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            color: #D4AF37;
            font-weight: 600;
            font-size: 15px;
        }
        
        /* BOTONES DE CONTACTO CIRCULARES */
        .botones-accion {
            display: flex;
            gap: 30px;
            flex-wrap: wrap;
        }
        
        .boton-contacto {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .boton-contacto:hover {
            transform: translateY(-3px);
        }
        
        .boton-whatsapp {
            background: linear-gradient(135deg, #25D366 0%, #20BA5C 100%);
            animation: pulse-whatsapp 1.5s ease-in-out infinite;
        }
        
        @keyframes pulse-whatsapp {
            0%, 100% {
                box-shadow: 0 4px 15px rgba(37, 211, 102, 0.6);
            }
            50% {
                box-shadow: 0 8px 35px rgba(37, 211, 102, 1);
            }
        }
        
        .boton-telefono {
            background: linear-gradient(135deg, #25D366 0%, #20BA5C 100%);
            animation: pulse-whatsapp 1.5s ease-in-out infinite;
        }

        .boton-telegram {
            background: linear-gradient(135deg, #229ED9 0%, #1C8BC0 100%);
            animation: pulse-telegram 1.5s ease-in-out infinite;
        }

        @keyframes pulse-telegram {
            0%, 100% {
                box-shadow: 0 4px 15px rgba(34, 158, 217, 0.6);
            }
            50% {
                box-shadow: 0 8px 35px rgba(34, 158, 217, 1);
            }
        }
       
        .boton-contacto i {
            font-size: 34px;
            color: white;
        }
        
        .boton-telefono i {
            font-size: 30px;
        }
        
        /* SECCIÓN DE INFORMACIÓN DETALLADA */
        .info-detallada {
            padding: 20px;
        }
        
        .info-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 6px;
            margin-bottom: 15px;
        }
        
        .info-card {
            background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 50%, #fafafa 100%);
            border: 1px solid #f0f0f0;
            border-radius: 15px;
            padding: 10px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .info-card:hover {
            border-color: #D4AF37;
            border-width: 2px;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(212, 175, 55, 0.15);
            background: linear-gradient(135deg, #fffef9 0%, #ffffff 50%, #fffef5 100%);
        }
        
        .info-card h3 {
            font-size: 17px;
            margin-bottom: 12px;
            color: #1a1a1a;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .info-card h3 i {
            color: #6B3FA0;
            font-size: 20px;
        }
        
        .atributos-lista {
            display: grid;
            gap: 8px;
        }
        
        .atributo-item {
            display: flex;
            justify-content: space-between;
            font-size: 14px;
            padding: 1px 0;
            border-bottom: 1px solid #f5f5f5;
        }
        
        .atributo-label {
            color: #666;
        }
        
        .atributo-valor {
            color: #1a1a1a;
            font-weight: 500;
        }
        
        .servicios-lista {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
        
        .servicio-tag {
            background: linear-gradient(135deg, #FFE4E1 0%, #FFF5F5 100%);
            color: #1a1a1a;
            padding: 5px 12px;
            border-radius: 15px;
            font-size: 13px;
            font-weight: 500;
            border: 1px solid #FFE4E1;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
            transition: all 0.2s ease;
        }
        
        .servicio-tag:hover {
            box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12);
            transform: translateY(-1px);
        }
        
        .info-card-ancha {
            grid-column: span 2;
        }
        
        /* HORARIO - LAYOUT VERTICAL */
        .info-card-horario {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        
        .horario-texto {
            font-size: 15px;
            color: #1a1a1a;
            font-weight: 500;
        }
        
        /* FOOTER ELEGANTE */
        .perfil-footer {
            padding: 25px 40px;
            background: #fafafa;
            border-top: 1px solid #f0f0f0;
            text-align: center;
        }
        
        .boton-volver {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 24px;
            background: linear-gradient(135deg, #6B3FA0 0%, #9370DB 100%);
            color: white;
            text-decoration: none;
            font-weight: 600;
            font-size: 15px;
            transition: all 0.3s ease;
            border-radius: 25px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 4px 15px rgba(107, 63, 160, 0.4);
        }
        
        .boton-volver:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 25px rgba(107, 63, 160, 0.6);
        }
        
        .boton-volver i {
            color: #D4AF37;
            font-size: 16px;
        }
        
        .boton-volver i {
            font-size: 16px;
        }

        @media (max-width: 768px) {
            .logo-header {
                top: 10px;
                left: 10px;
            }
            
            .logo-header img {
                height: 70px;
            }
            
            .perfil-header {
                flex-direction: column;
                padding: 30px 20px 20px 20px;
                gap: 20px;
            }
            
            .ubicacion,
                .tarifas-header {
                align-self: flex-start;
            }

            .foto-container {
                flex: none;
                margin: 0 auto;
            }
            
            .foto-perfil {
                width: 200px;
                height: 200px;
            }
            
            .disponible-punto {
                bottom: 15px;
                right: 0px;
                width: 25px;
                height: 25px;
            }
            
            .nombre-container {
                flex-direction: column;
                gap: 10px;
            }
            
            h1 {
                font-size: 28px;
                margin-top: -20px;
                line-height: 1.1;
            }

            h1 small {
                display: block;
                font-size: 12px;
                font-weight: 600;
                color: #444;
                margin-top: 2px;
                margin-bottom: 8px;
                line-height: 1.2;
                letter-spacing: 0;
            }

            .badge-verificado {
                margin-top: -5px;
            }

            .info-grid {
                grid-template-columns: 1fr;
            }
            
            .info-card {
                padding: 15px;
            }
            
            .info-card-ancha {
                grid-column: span 1;
            }
            
            .info-rapida {
                margin-top: 15px;
            }

            /* Centrado solo en mobile */
            .info-rapida {
                justify-content: center;
            }
     
            .info-detallada {
                padding: 20px 15px;
            }
        }

/* ========================================
   GALERÍA DE FOTOS
   ======================================== */

.galeria-section {
    padding: 18px 12px;
    background: #fafafa;
    border-top: 1px solid #f0f0f0;
}

.galeria-titulo {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.galeria-titulo .badge-retoque {
    font-size: 0.85em;
    font-weight: 400;
    color: #666666;
    margin-left: 4px;
}

.galeria-titulo i {
    color: #D4AF37;
    font-size: 24px;
}

.galeria-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2px;
}

.galeria-item {
    position: relative;
    aspect-ratio: 3/4;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.galeria-item:hover {
    transform: scale(1.01);
    z-index: 2;
}

.galeria-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.2s ease;
}

.galeria-item:hover img {
    transform: scale(1.03);
}

.galeria-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.galeria-item:hover .galeria-overlay {
    opacity: 1;
}

.galeria-overlay i {
    color: white;
    font-size: 32px;
}

.galeria-mas {
    text-align: center;
    margin-top: 12px;
}

.btn-ver-mas {
    background: linear-gradient(135deg, #6B3FA0 0%, #9370DB 100%);
    color: white;
    padding: 12px 32px;
    border: none;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(107, 63, 160, 0.4);
}

.btn-ver-mas:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(107, 63, 160, 0.6);
}

/* LIGHTBOX */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 10001;
}

.lightbox-close {
    top: 20px;
    right: 20px;
}

.lightbox-prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.lightbox-close:hover {
    transform: scale(1.1);
}

.lightbox-prev:hover,
.lightbox-next:hover {
    transform: translateY(-50%) scale(1.1);
}

.lightbox-close i,
.lightbox-prev i,
.lightbox-next i {
    font-size: 20px;
}

.lightbox-counter {
    color: white;
    font-size: 16px;
    font-weight: 600;
    margin-top: 15px;
    text-align: center;
}

/* RESPONSIVE GALERÍA */
@media (max-width: 768px) {
    .galeria-section {
        padding: 12px 6px;
    }

    .galeria-titulo {
        font-size: 18px;
        flex-wrap: wrap;
        row-gap: 2px;
    }

    .galeria-titulo .badge-retoque {
        font-size: 0.8em;
    }

    .galeria-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2px;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-close {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
    }
}

/* ========================================
   VIDEOS
   ======================================== */

.videos-section {
    padding: 18px 12px;
    background: #ffffff;
    border-top: 1px solid #f0f0f0;
}

.videos-titulo {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding-left: 0;
}

.videos-titulo i {
    color: #D4AF37;
    font-size: 21px;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
}

.video-item {
    background: #f9f9f9;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 1 / 1;  /* mantener 1:1 */
}

.video-item video {
    width: 100%;
    height: 100%;
    display: block;
    background: #000;
    object-fit: cover;
}

@media (max-width: 768px) {

    .videos-section {
        padding: 12px 7px;
    }

    .videos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2px;
        max-width: none;
    }

}

/* ========================================
   RESEÑAS
   ======================================== */

.reviews-section {
    padding: 40px;
    background: #fafafa;
    border-top: 1px solid #f0f0f0;
}

.reviews-titulo {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding-left: 10px;
}

.reviews-titulo i {
    color: #6B3FA0;
    font-size: 21px;
}

.reviews-container {
    display: grid;
    gap: 20px;
}

.review-card {
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.review-card:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    transform: translateY(-2px);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.review-nombre {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
}

.review-calificacion {
    display: flex;
    gap: 3px;
}

.review-calificacion i {
    color: #FFD700;
    font-size: 16px;
}

.review-comentario {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 10px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
}

.review-fecha {
    font-size: 13px;
    color: #999;
    font-style: italic;
}

.review-respuesta {
    margin-top: 15px;
    padding: 15px;
    background: linear-gradient(135deg, #f5f0ff 0%, #faf5ff 100%);
    border-left: 3px solid #6B3FA0;
    border-radius: 10px;
}

.respuesta-header {
    font-size: 14px;
    font-weight: 600;
    color: #6B3FA0;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.respuesta-header i {
    font-size: 14px;
}

.respuesta-texto {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 8px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
}

.respuesta-fecha {
    font-size: 12px;
    color: #999;
    font-style: italic;
}

.review-form-wrapper {
    margin-top: 24px;
    padding: 16px 18px;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e5e5e5;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}

.review-form-titulo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    color: #6B3FA0; /* violeta principal */
    margin-bottom: 14px;
    letter-spacing: 0.02em;
}

.review-form-titulo::after {
    content: "";
    flex-grow: 1;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, #D4AF37 0%, rgba(212, 175, 55, 0));
}

.review-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.review-form-row {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.review-form-row label {
    font-size: 13px;
    font-weight: 500;
    color: #555;
}

.review-form-row input[type="text"],
.review-form-row select,
.review-form-row textarea {
    width: 100%;
    padding: 8px 10px;
    border-radius: 8px;
    border: 1px solid #dddddd;
    font-size: 14px;
    font-family: inherit;
    outline: none;
    background-color: #fafafa;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.review-form-row input[type="text"]:focus,
.review-form-row select:focus,
.review-form-row textarea:focus {
    border-color: #6B3FA0;
    background-color: #ffffff;
    box-shadow: 0 0 0 1px rgba(107, 63, 160, 0.15);
}

.review-form-row textarea {
    resize: vertical;
    min-height: 70px;
}

.boton-review-cta:hover {
    transform: translateY(-1px);
    box-shadow:
        0 0 10px rgba(212, 175, 55, 0.6);
}

.boton-review-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, #D4AF37 0%, #FFD700 100%);
    color: #4b2a80; /* violeta texto/icono */
    border: 1px solid #6b4bd9; /* violeta borde */
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    box-shadow:
        inset 0 0 8px rgba(255, 255, 255, 0.25),
        0 0 8px rgba(212, 175, 55, 0.5);
    transition: all 0.2s ease-in-out;
}

.boton-review-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.6);
}

.review-form-wrapper .boton-review-cta {
    margin-top: 10px;
    align-self: center;
}

/* RESPONSIVE VIDEOS Y REVIEWS */
@media (max-width: 768px) {
    .reviews-section {
        padding: 30px 20px;
    }
    
    .reviews-titulo {
        font-size: 18px;
    }
        
    .review-card {
        padding: 14px 16px;
    }
    
    .review-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .review-comentario {
        font-size: 14px;
        line-height: 1.4;
        margin-bottom: 6px;
    }

    .review-respuesta {
        margin-top: 10px;
        padding: 10px 12px;
    }

    .respuesta-texto {
        font-size: 13.5px;
        line-height: 1.4;
        margin-bottom: 4px;
    }

    .review-fecha {
        font-size: 12px;
    }

        .review-form-wrapper {
        margin-top: 18px;
        padding: 14px 14px;
        border-radius: 10px;
    }

    .review-form-titulo {
        font-size: 15px;
        line-height: 1.4;
    }

    .review-form-row label {
        font-size: 12.5px;
    }

    .review-form-row input[type="text"],
    .review-form-row select,
    .review-form-row textarea {
        font-size: 13.5px;
        padding: 7px 9px;
    }
}

/* ========================================
   STORIES - ARO ANIMADO DEGRADADO INSTAGRAM
   ======================================== */

/* Contenedor foto con padding para separación */
.foto-container {
    flex: 0 0 312px;
    position: relative;
    padding: 6px;
    border-radius: 50%;
    background: transparent;
}

.foto-container.has-stories {
    background: linear-gradient(135deg, #6B3FA0 0%, #D4AF37 100%);
}

.foto-container.stories-vistas {
    background: #cccccc;
}

/* Pseudo-elemento para aro animado */
.foto-container.has-stories::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, #6B3FA0 0%, #D4AF37 100%);
    z-index: -1;
    animation: gradient-pulse 3s ease-in-out infinite;
}

/* Aro stories VISTAS - Gris estático */
.foto-container.stories-vistas::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: #cccccc;
    z-index: -1;
    animation: none;
}

/* Foto dentro del contenedor */
.foto-perfil {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 10px 40px rgba(0,0,0,0.18);
    border: 4px solid #fff;
    transition: all 0.3s ease;
    display: block;
}

.foto-perfil:hover {
    transform: scale(1.02);
}

/* ========================================
   STORIES VIEWER (Modal)
   ======================================== */

.stories-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.stories-container {
    position: relative;
    width: 100%;
    max-width: 480px;
    height: 90vh;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
}

.story-item {
    display: none !important; /* ahora es solo dataset, no UI */
}

.story-viewer {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}

#storyVideo,
#storyImage {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000;
    display: none;
}

/* Barra de progreso */
.stories-progress {
    position: absolute;
    top: 15px;
    left: 10px;
    right: 10px;
    display: flex;
    gap: 4px;
    z-index: 10;
}

.progress-bar {
    flex: 1;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill {
    width: 0%;
    height: 100%;
    background: white;
    transition: none;
}

.progress-bar.completed .progress-fill {
    width: 100% !important;
    transition: none !important;
}

/* Header story */
.story-header {
    position: absolute;
    top: 20px;
    left: 10px;
    right: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 11;
    margin-top: 30px;
}

.story-user {
    display: flex;
    align-items: center;
    gap: 10px;
}

.story-user img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid white;
    object-fit: cover;
}

.story-username {
    color: white;
    font-size: 15px;
    font-weight: 600;
}

.story-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.story-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Botón mute/unmute */
.story-sound-toggle {
    position: absolute;
    bottom: 80px;
    right: 15px;
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    z-index: 12;
    transition: all 0.3s ease;
}

.story-sound-toggle:hover {
    background: rgba(0, 0, 0, 0.8);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.story-sound-toggle i {
    font-size: 20px;
}

/* Controles navegación */
.story-nav-left,
.story-nav-right {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50%;
    cursor: pointer;
    z-index: 9;
}

.story-nav-left {
    left: 0;
}

.story-nav-right {
    right: 0;
}

/* Responsive stories */
@media (max-width: 768px) {
    .stories-container {
        max-width: 100%;
        height: 100vh;
        border-radius: 0;
    }
    
    .stories-progress {
        top: 50px;
    }
    
    .story-header {
        margin-top: 40px;
    }
    
    .story-sound-toggle {
        bottom: 60px;
        right: 10px;
        width: 40px;
        height: 40px;
    }
    
    .story-sound-toggle i {
        font-size: 18px;
    }
    
    .foto-container {
        flex: none;
        margin: 0 auto;
        padding: 4px;
    }
    
    .foto-perfil {
        width: 200px;
        height: 200px;
    }

}

/* Ajuste header mobile: que todo lo principal quede centrado bajo la foto */
@media (max-width: 768px) {

  .perfil-header {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .info-principal {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    margin-top: 12px;
  }

  .nombre-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    width: 100%;
  }

  .info-rapida {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    margin-top: 8px;
  }

  .botones-accion {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 10px;
  }

  /* Estos dos se mantienen a la izquierda, pero dentro del bloque centrado */
  .ubicacion,
  .tarifas-header {
    width: 100%;
    text-align: left;
    margin-top: 8px;
    align-self: stretch;
  }

  .ubicacion {
    line-height: 1.45;      /* interlineado más cómodo para 2 líneas */
    margin-bottom: 0;
    padding-top: 10px;
    padding-bottom: 1px;
  }

  .tarifas-header {
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: flex-start;
  }
}

.review-form-wrapper .review-messages {
    margin-bottom: 10px;
}

.img-fade {
    opacity: 0;
    transition: opacity .35s ease-in-out;
}

.img-fade.loaded {
    opacity: 1;
}

/* =========================================================
   RESEÑAS – MENSAJES (SUCCESS / ERROR)
   Icono + Fade-in
   ========================================================= */

.review-messages {
    margin: 14px 0 18px 0;
}

.review-message {
    padding: 12px 14px;
    font-size: 14px;
    line-height: 1.4;
    border-radius: 6px;
    opacity: 0;
    animation: reviewFadeIn 0.35s ease-out forwards;
}

/* SUCCESS */
.review-message.success {
    background-color: #eef7ee;
    border-left: 4px solid #2f6b2f;
    color: #2f6b2f;
    font-weight: 500;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.review-message.success::before {
    content: "✔";
    font-weight: 700;
    font-size: 15px;
    line-height: 1.2;
}

/* ERROR (coherencia visual) */
.review-message.error {
    background-color: #fdeeee;
    border-left: 4px solid #8a2d2d;
    color: #8a2d2d;
    font-weight: 500;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.review-message.error::before {
    content: "✖";
    font-weight: 700;
    font-size: 14px;
    line-height: 1.2;
}

/* Animación suave */
@keyframes reviewFadeIn {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* MENSAJE CUANDO PERFIL ESTÁ INACTIVO */
.perfil-descanso-aviso {
	margin-top: 24px;
	font-size: 1.4rem;
	color: #7a7a7a;
	line-height: 1.4;
	text-align: center;
}

.perfil-descanso-aviso i {
	margin-right: 6px;
	color: #d4af37;
}

/* ========================================
   H2 "Acerca de mí" — visual de H3
   Mantiene semántica H2
   ======================================== */

.info-card.info-card-ancha h2 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.3;
    letter-spacing: 0;
}

/* ========================================
   DIVISORES SEO
   ======================================== */

.seo-divider {
    width: 60%;
    height: 1px;
    margin: 18px auto;
    background: linear-gradient(90deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.15) 50%, rgba(0,0,0,0) 100%);
}

/* ========================================
   TEXTO SEO EDITORIAL (mantiene tamaño original)
   ======================================== */

.seo-editorial {
    margin: 0 auto 18px auto;
    max-width: 860px;
    padding: 0 10px;
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    line-height: 1.7;
}

.seo-editorial p {
    margin: 0;
}

.seo-editorial-italic {
    font-style: italic;
}

/* ========================================
   FAQ TAMAÑO RESPONSIVE DEFINITIVO
   ======================================== */

.seo-faqs h2 {
    font-size: 0.95rem;
}

.seo-faqs .faq-item h3 {
    font-size: 0.88rem;
}

.seo-faqs .faq-item p {
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .seo-faqs h2 {
        font-size: 0.88rem !important;
    }

    .seo-faqs .faq-item h3 {
        font-size: 0.80rem !important;
    }

    .seo-faqs .faq-item p {
        font-size: 0.78rem !important;
    }

    .seo-faqs .faq-item {
        padding: 9px 11px !important;
    }
}


