/* Dark mode styles */
body.dark-mode .card {
    background-color: #2A2A2A;
    color: #EEE;
}

body.dark-mode h4 i {
    color: var(--primary-color);
}
h4 i {
    color: var(--primary-hover); font-size: 1.2rem;
}
.content-top {
    margin-top: 50px;
}

/* Iconos de redes sociales */
body.dark-mode .color-icon-x {
    color: #fff;
}
body.dark-mode .color-icon-tiktok {
    color: #fff;
}
body.dark-mode .color-icon-snapchat {
    color: #FFFC00;
}
body.dark-mode .bg-icon:hover {
    color: #000;
}
.color-icon-whatsapp {
    color: #25D366;
    order:1;
}
.color-icon-phone {
    color: #f00;
    order:1;
}
.color-icon-telegram {
    color: #0088cc;
    order:2;
}
.color-icon-facebook {
    color: #1877F2;
    order:5;
}
.color-icon-instagram {
    color: #E1306C;
    order:4;
}
.color-icon-x {
    color:#000;
    order:3;
}
.color-icon-snapchat {
    color: rgba(143, 141, 9, 1);
    order:8;
}
.color-icon-onlyfans {
    color: #00AFF0;
    order:6;
}
.color-icon-patreon {
    color: #F96854;
    order:9;
}
.color-icon-manyvids {
    color: #FF4081;
    order:10;
}
.color-icon-tiktok {
    color: #000000;
    order:7;
}
.color-icon-linkedin {
    color: #0A66C2;
    order:11;
}
.color-icon-miweb {
    color: #FFA500;
    order:12;
}
.bg-icon:hover {
    color: #A9A9A9;
}


/* Contenedor principal */
.conainer-badge {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
    margin-left: 10px;
}
.badge-premium, /* Estilos generales para las etiquetas */
.badge-new,
.badge-verified {
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 10;
}
.badge-premium {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #000;
}
.badge-new {
    background-color: #FF3860;
    color: white;
}
.badge-verified {
    background-color: #48C774;
    color: white;
}

/* Ranking y votacion */
.rating {
    display: flex;
    align-items: center;
}
.star {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    background-color: #e0e0e0;
    mask: url('../icons/svg/star-fill.svg') no-repeat center / contain;
    -webkit-mask: url('../icons/svg/star-fill.svg') no-repeat center / contain;
    mask-size: cover;
    -webkit-mask-size: cover;
}
.star::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: var(--fill, 0%);
    height: 100%;
    background-color: gold;
    z-index: 1;
    transform-origin: left;
}

/* Estilo general para los recuadros (nacionalidad, color de pelo, ...) */
.container-personal-data {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}
.dato-recuadro {
    background-color: #FF6B35;
    color: white;
    padding: 10px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
    cursor: pointer;
    display: inline-block;
    margin: 0;
}
.dato-recuadro:hover {
    background-color: #E55627;
}

/* Contenedor principal (Metodos de pago, Servicios, Tipo de masajes */
.generic-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.tag-paymenth {
    background: #4A148C;
}
.tag-service {
    background-color: #0D2C54;
}
.tag-massagge {
    background: #1E4D2B
}
.generic-item {
    color: white;
    font-weight: bold;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
    margin: 0;
}
.generic-item:hover {
    transform: scale(1.05);
}
.generic-item i {
    margin-right: 8px;
}

/* Estilo para el contenedor de íconos */
#icon-container {
    gap: 5px;
}
#icon-container .btn { /* Estilo para los íconos */
    padding: 0;
    background-color: transparent !important;
    border:0;
}
#icon-container .btn i {
    font-size: 25px;
}
/* Boton Favorito */
body.dark-mode .heart-icon {
    stroke: white;
}
.btn-heart { /* Estilo base para el botón */
    background: transparent !important; 
    border: none;
    width: 30px;
    height: 30px;
    padding: 0;
    cursor: pointer;
    transition: transform 0.3s ease;
}
.heart-icon { /* Estilo del SVG */
    width: 100%;
    height: 100%;
    fill: none;
    stroke: black;
    stroke-width: 1;
    transition: all 0.3s ease;
}
.btn-heart.active .heart-fill { /* Relleno del corazón cuando está activo */
    fill: red; /* Color de relleno */
    stroke: red; /* borde */
}
.btn-heart:hover {
    transform: scale(1.1);
}

/* Boton Shared */
body.dark-mode .btn-share {
    color:#fff;
}
.btn-share { /* Estilo base para el botón */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px; 
    background-color: transparent !important;
    color: black;
    border: none;
    border-radius: 20px;
    padding: 8px 16px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}
.btn-share:hover {
    color: #E55627;
    transform: scale(1.05);
}
.btn-share i {
    font-size: 1.6rem;
}

/* Sobre Mi */
.fuente30Em {
    font-size: 3rem;
}

/* Contenedor principal de los días */
.contenedor5 {
    display: flex; 
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-start;
    margin-bottom: 10px;
}
.day-card { /* Estilo general del contenedor de días */
    border-radius: 10px;
    padding: 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
    width: 100%;
    min-width: 90px;
    max-width: 140px;
}
.day-card:hover {
    transform: translateY(-5px);
}
.day-title {
    font-size: 0.9rem;
    font-weight: bold;
    margin-bottom: 8px;
    background-color: #F00;
    color: white;
    text-align: center;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    padding: 5px 0;
}
.day-time {
    font-size: 1rem;
    margin: 0;
    text-align: center;
    padding: 5px 0;
}
.day-time:last-child {
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

/* Contenedor principal de la galería de imagenes*/
.gallery-container {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}
.gallery-item {
    flex: 0 0 auto; /* Evita que las imágenes se estiren */
}
.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.gallery-grid a {
    flex: 1 1 145px;
    min-width: 145px;
    max-width: 200px;
    overflow: hidden;
    border-radius: 10px;
}
.gallery-grid img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
    display: block;
}
.gallery-grid img:hover {
    transform: scale(1.1);
}


#loadMore { /* Ocultar el botón inicialmente */
    display: none; 
}

/* Contenedor principal de videos*/
.video-container {
    margin: 20px 0;
}
.video-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-start;
}
.video-item {
    width: auto;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}
.video-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}
.video-thumbnail {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}
.video-item:hover .video-thumbnail {
    transform: scale(1.05);
}
.video-play-icon { /* Ícono de play */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 40px;
    color: rgba(255, 255, 255, 0.8);
    z-index: 10;
    pointer-events: none; /* Evitar interferencia con clics */
}
@media (max-width: 430px) {
    .video-item  {
        width: calc(50% - 5px); /* Ancho completo en pantallas pequeñas */
        min-width: none !important; /* Ancho mínimo */
        max-width: none !important; /* Ancho máximo */
        
    }
}

/* Estilo para el botón flotante de WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 24px;
    line-height: 60px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    text-decoration: none;
    transition: transform 0.3s ease;
    animation: fadeIn 1s ease-in-out;
}
.whatsapp-float:hover {
    transform: scale(1.1);
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Google Maps */
.google-maps-container {
    position: relative;
    width: 100%;
    height: 400px;
    margin-top: 30px;
    margin-bottom: 30px;
    background-color: transparent;
}
.google-maps-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 5px;
}

/* Comentarios */
.comment-header {
    gap: 10px; /* Espacio entre los elementos */
}
.comment-color-text {
    color:#7A7A7A;
}
body.dark-mode .comment-color-text {
    color: #A9A9A9;
}
@media (max-width: 480px) {
    .comment-header {
        flex-direction: column; /* Apila los elementos verticalmente */
        align-items: flex-start; /* Alinea los elementos al inicio */
    }

    /* Ajustes para el botón "Dejar Comentario" */
    #votar {
        white-space: normal; /* Permite que el texto se divida en varias líneas */
        text-align: center; /* Centra el texto dentro del botón */
        width: 100%; /* Hace que el botón ocupe todo el ancho disponible */
    }
}