
.rounded-circle {
    border: 3px solid white;
    size: 200px;
}

.hero-section {
    text-align: center;
    padding: 120px 0px 0px 0px;
}

.link {
    color: white !important;
}

.link:hover {
    color: #d1a3ff !important;
}

.footer {
    color: white;
    padding: 20px 0; /* Espaciado */
    bottom: 0;
    width: 100%;
    text-align: center !important;
}

.social-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.social-links li {
    display: inline;
    margin: 0 15px; /* Espaciado entre los íconos */
}

.social-icon {
    color: white;
    text-decoration: none;
    font-size: 40px;
}

.social-icon:hover {
    color: #d1a3ff; /* Color cuando se pasa el ratón */
}

.popup {
    visibility: hidden;
    min-width: 150px;
    margin-left: -125px;
    margin-top: -125px;
    background-color: #0e0116cc;
    color: #fff;
    text-align: center;
    border-radius: 2px;
    padding: 16px;
    position: fixed;
    z-index: 1;
    left: 50%;
    bottom: 30px;
    font-size: 15px;
    opacity: 0;
    transition: opacity 0.5s, visibility 0.5s;
    border-radius: 12px;
}

.popup.show {
    visibility: visible;
    opacity: 1;
}

/* Estilos para el botón de cerrar */
.close-btn {
    position: absolute;
    top: 5px;
    right: 10px;
    font-size: 22px;
    cursor: pointer;
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
    padding: 20px;
    max-width: 1600px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gallery-item img {
    width: 100%; /* Cambiar para que la imagen ocupe todo el ancho disponible */
    height: 100%; /* Cambiar para que la imagen ocupe toda la altura del contenedor */
    object-fit: cover; /* Esto asegura que la imagen llene el contenedor y se recorte si es necesario */
    object-position: center; /* Esto centra la imagen dentro del contenedor */
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}


.gallery-item:hover img {
    transform: scale(1.1);
}

/* Estilo del modal */
.modale {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9) !important;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.modale-content {
    max-width: 90%;
    max-height: 90%;
    display: block;
}

.modal img, .modal iframe {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover, .close:focus {
    color: #331132 !important;
    text-decoration: none;
}

.div {
    margin-left: 20px;
    margin-right: 100px;
    justify-content: center;
}



/* Estilo básico de los botones */
.navigation-buttons .botn {
    margin: 1px;
    padding: 10px 20px;
    font-size: 16px;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    color: white;
    transition: background-color 0.3s ease;
}
/* Colores específicos de cada botón */
.botn-primary {
    background-color: #00172285;
}

.botn-primary:hover {
    background-color: #001327;
}

.botn-secondary {
    background-color: #2c0041a2;
}

.botn-secondary:hover {
    background-color: #1b0027;
}

.botn-success {
    background-color: #2d0042c5;
}

.botn-success:hover {
    background-color: #220027;
}

.botn-danger {
    background-color: #410006a6;
}

.botn-danger:hover {
    background-color: #200003;
}

.h2 {
    margin-top: 120px;
    size: 300px;
}

/* Contenedor de la galería */
.video-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
    padding: 20px;
    max-width: 1600px;
    margin: 0 auto;
}

/* Contenedor de cada video */
.video-item {
    position: relative;
    background-color: black;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Ajuste de los videos */
.video-item iframe, 
.video-item video {
    width: 100%;
    height: 450px;
    max-height: 1000px; /* Evita que los videos sean demasiado altos */
    object-fit: contain;
}

.image-btn {
    background-image: url('https://via.placeholder.com/150');
    background-size: cover;
    background-position: center;
    border: none;
    cursor: pointer;
}

.image-btn:hover {
    opacity: 0.8;
    width: auto;
    height: 300px;
}

/* ====== ESTILO SKETCH / MINIMALISTA ====== */

/* CONTENEDOR PRINCIPAL */
.tabla-comisiones { 
    width: 100%; 
    margin: 0 auto; 
    padding: 20px; 
    border-radius: 25px; 
    color: white; 
    font-family: 'Special Elite', monospace; /* Asegura que la fuente se cargue */
    background: #17021d7c; /* O el color de fondo de tu web */
}

/* TABLA: QUITAMOS TODOS LOS BORDES POR DEFECTO */
.tabla-comisiones table { 
    width: 100%; 
    border-collapse: collapse; /* Sigue siendo necesario */
    margin-top: 15px;
    border: none; /* Sin borde exterior */
}

/* CELDAS: SIN BORDES LATERALES */
.tabla-comisiones th, 
.tabla-comisiones td { 
    padding: 12px 8px; /* Un poco más de padding vertical */
    text-align: center; 
    border: none; /* <-- QUITAMOS TODOS LOS BORDES */
}

/* FILAS: SOLO BORDE INFERIOR (LÍNEA SUTIL) */
.tabla-comisiones tr {
    border-bottom: 1px solid rgba(255,255,255,0.15); /* Línea muy sutil, como en la imagen */
}

/* PARA EVITAR DOBLE BORDE, LE QUITAMOS EL BORDE A LA ÚLTIMA FILA (OPCIONAL) */
.tabla-comisiones tr:last-child {
    border-bottom: none;
}

/* ENCABEZADOS: SIN FONDO, SOLO TEXTO DESTACADO */
.tabla-comisiones th { 
    background-color: transparent; /* Fondo transparente */
    font-weight: bold;
    letter-spacing: 1px; /* Espaciado para darle estilo */
    padding-bottom: 15px; /* Más espacio debajo del título */
    color: rgba(255,255,255,0.9);
    border-bottom: 2px solid rgba(255,255,255,0.3); /* Línea un poco más gruesa abajo del header para separar */
}

/* CELDAS DE DATOS: TEXTO LIGERAMENTE MÁS SUAVE */
.tabla-comisiones td {
    color: rgba(255,255,255,0.8);
}

/* OPCIONAL: EFECTO HOVER SUTIL EN FILAS */
.tabla-comisiones tbody tr:hover {
    background-color: rgba(255,255,255,0.05);
    transition: background-color 0.3s ease;
}

/* ====== ESTILO DE BOTONES (MANTENIENDO TU PALETA) ====== */
.comi button {
    background: #3d054e; /* Fondo transparente para que parezca un link/boton minimalista */
    color: white;
    border: 1px transparent; /* Borde sutil en lugar de fondo sólido */
    padding: 4px 12px;
    margin: 2px;
    border-radius: 20px; /* Bordes redondeados pero más suaves */
    cursor: pointer;
    font-family: 'Special Elite', monospace;
    font-size: 0.9em;
    transition: all 0.3s ease;
}

/* EFECTO HOVER DE LOS BOTONES */
.comi button:hover {
    background: #2a0136; /* Tu color original al hacer hover */
    border-color: #2a0136;
    color: white;
}

/* ====== AJUSTE PARA QUE SE VEA BIEN EN MÓVIL ====== */
@media screen and (max-width: 600px) {
    .tabla-comisiones th, 
    .tabla-comisiones td {
        padding: 10px 5px;
        font-size: 14px;
    }
    
    .tabla-comisiones button {
        padding: 3px 8px;
        font-size: 12px;
    }
}

/* ====== MOBILE ====== */
@media (max-width: 750px) {

    /* La tabla deja de comportarse como tabla */
    .tabla-comisiones table {
        display: block;
        width: 100%;
    }

    .tabla-comisiones tr:first-child {
        display: none; /* ocultamos encabezados */
    }

    /* Cada fila ahora es una card */
    .tabla-comisiones tr {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
        margin-bottom: 15px;
        padding: 12px;
        border-radius: 12px;
        border: 1px solid rgba(255,255,255,0.3);
        background: rgba(0,0,0,0.2);
    }

    /* El título ocupa todo el ancho */
    .tabla-comisiones tr td:first-child {
        grid-column: span 2;
        font-weight: bold;
        font-size: 16px;
        text-align: center;
        border-bottom: 1px solid rgba(255,255,255,0.2);
        padding-bottom: 6px;
        margin-bottom: 4px;
    }

    /* Precios en mini-grid */
    .tabla-comisiones td {
        border: none;
        font-size: 14px;
        padding: 4px;
        position: relative;
    }

    /* Etiquetas automáticas */
    .tabla-comisiones tr td:nth-child(2)::before {
        content: "Headshot";
        display: block;
        font-size: 11px;
        opacity: 0.7;
    }

    .tabla-comisiones tr td:nth-child(3)::before {
        content: "Half Body";
        display: block;
        font-size: 11px;
        opacity: 0.7;
    }

    .tabla-comisiones tr td:nth-child(4)::before {
        content: "Full Body";
        display: block;
        font-size: 11px;
        opacity: 0.7;
    }

    .tabla-comisiones tr td:nth-child(5)::before {
        content: "Extra";
        display: block;
        font-size: 11px;
        opacity: 0.7;
    }
}


/* popupidioma*/

.popup-idioma {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.popup-contenido {
    background: rgb(119, 0, 56);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.popup-contenido button {
    background: #2a0136;
    color: white;
    border: none;
    padding: 5px 10px;
    margin: 3px;
    border-radius: 5px;
    cursor: pointer;
}

