/*influye en toda la pagin la barra de navegacion y sus hijos con lo que es 
los colores de fondo*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
}

p{
    color: white;
}
html, body {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-image: linear-gradient(to bottom, #4b0038, #2c001e);
    background-repeat: no-repeat;
    /* background-size: cover; */
    background-attachment: fixed;
    color: white;
	background: linear-gradient(-45deg, #af068b, #fc0000, #97126b, #9e1c1c);
    animation: gradient 7s ease infinite;
    background-size: 400% 400%;

}

@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

/* Encabezado */
header {
    padding: 1rem;
    text-align: center;
}

/* Contenido principal */
main {
    flex: 1;
    padding: 2rem;
}

/* Pie de página */
footer {
    color: white;
    padding: 1rem;
    text-align: center;
}   
 #BarraNav{
    height: 50px;
}
.ListaNav{
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    list-style: none;
}

.ListaNav>li>a{
    color: black;
    text-decoration: none;
    font-size: 25px;
}

/*cambiando como quedara el landing al ingresas
 a la pagina como botones de soy mayor 
menor y terminos de condicion y el texto de bienvenida a la pagin*/
/* === Estilos para el Landing === */
body#Landing {
    background: linear-gradient(to bottom, #2c001e, #4b0038);
    text-align: center;
}
#Main_Menor{
    display: flex;
    align-items: center;
    text-align: center;
}
.Terminos{
    display: flex;
    text-align: center;
    font-size: larger;
}
.Contenedor-Texto-Landing {
    display: flex;
    flex-direction: column;
    align-items: center;  /* Centrado horizontal */
    justify-content: center;  /* Centrado vertical (opcional) */
    text-align: center;  /* Asegura que el texto interno también esté centrado */
    margin: 0 auto;  /* Centra el contenedor en la página */
    max-width: 800px;  /* Ancho máximo para mejor legibilidad */
    padding: 20px;
}

.Contenedor-Texto-Landing p {
    margin: 10px 0;  /* Espaciado entre párrafos */
    width: 100%;  /* Asegura que los párrafos usen todo el ancho del contenedor */
    
}
/* Botones */
.BotonesDeAcceso {
    list-style: none;
    padding: 0;
    gap: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.BotonesDeAcceso a {
    display: inline-block;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s;
    width: 300px;
    text-align: center;
}

.btn-mayor {
    background: #ff6b6b;
    color: white;
}

.btn-menor {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-tyc {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

/* Efectos hover */
.btn-mayor:hover {
    background: #ff5252;
    transform: translateY(-3px);
}

.btn-menor:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-tyc:hover {
    background: rgba(255, 255, 255, 0.2);
}
/*aca acomodamos a los modelos en todos los sectores de todos,mujeres,trans,hombres*/
main.Modelos {
    flex: 1;
    padding: 2rem;
}

/* === Grid de Modelos === */
#Grid_Modelos {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

/* === Card === */
.card {
    background: rgba(0, 0, 0, 0.2);
    color: white;
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between; /* que el texto quede distribuido */
    width: 230px;   /* ancho fijo */
    height: 350px;  /* alto fijo */
    box-sizing: border-box;
    overflow: hidden;
}

.card:hover {
    transition: all ease 125ms;
    transform: scale3d(1.05, 1.05, 1);
    filter: drop-shadow(2px 4px 6px black);
}

/* Imagen de la modelo */
.card .foto img {
    width: 100%;    /* ocupa todo el ancho disponible */
    height: 200px;  /* alto fijo */
    object-fit: cover; /* mantiene proporción sin deformar */
    border-radius: 10px;
}

/*estamos ajustando lo general  en la pagina de cada modelo asi siempre va a ser lo mismo y cada nuevo html creado 
vamos a tener el mismo diseño en todas las pagina de cada modelo*/
/* Estilos EXCLUSIVOS para la página de Kim (no afectan otros HTML) */
#Pagina-De-Cada-Modelo #BarraNav {
    width: 100vh;
    padding: 15px 0;
    text-align: center;
}

#Pagina-De-Cada-Modelo .ListaNav {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 20px;
    padding: 0 20px;
}

#Pagina-De-Cada-Modelo .ListaNav a {
    color: black;
    text-decoration: none;
    font-weight: bold;
}

/* --- Carrusel (aislado) --- */
#Pagina-De-Cada-Modelo #carouselExampleIndicators {
    width: 80% !important;
    max-width: 600px !important;
    margin: 20px auto !important;
}

#Pagina-De-Cada-Modelo .carousel-item img {
    width: auto !important;    
    max-width: 100% !important; 
    max-height: 300px !important; 
    margin: 0 auto;             
    object-fit: cover; 
    border-radius: 10px;
}
/* tamaño fijo SOLO para imágenes del carrusel */
.img-carrusel-fija {
  height: 800px;          /* 🔒 tamaño fijo */
  width: 100%;
  object-fit: cover;      /* se adapta sin deformar */
  display: block;
}


/* --- Info del Modelo (aislada) --- */
#Pagina-De-Cada-Modelo #Info_Modelo {
    width: 90%;
    max-width: 800px;
    margin: 0 auto 30px;
    padding: 20px;
    background: rgba(30, 30, 30, 0.8);
    border-radius: 10px;
    white-space: pre-line;
    text-align: center;
    line-height: 1.8;
}

/* --- Footer (solo para esta página) --- */
#Pagina-De-Cada-Modelo footer {
    width: 100%;
    text-align: center;
    padding: 15px;
    background-color: #2a2a2a;
    margin-top: auto; /* Pega al fondo */
}

#Info_Modelo{
    font-size: larger;
    text-align: center;
}
/* para fonos y tabletes*/

/*pruebas de color y ejustando los tamaños para los telefonos tablets */
body, p, h1, h2, h3, h4, h5, h6 {
    color: #b388ff !important; /* Violeta neón principal */
    text-shadow: 0 0 5px rgba(179, 136, 255, 0.7);
}

/* Navbar y menú desplegable */
.navbar,
#navbarToggleExternalContent .bg-dark,
#navbarToggleExternalContent .ListaNav a,
#navbarToggleExternalContent .h4 {
    color: #b388ff !important;
    text-shadow: 0 0 5px rgba(179, 136, 255, 0.7);
}

/* Efecto hover para enlaces */
#navbarToggleExternalContent .ListaNav a:hover,
.card a:hover {
    color: #7c4dff !important; /* Violeta más intenso */
    text-shadow: 0 0 10px rgba(124, 77, 255, 0.9);
}

/* Botón hamburguesa */
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='%23b388ff' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* Cartas de modelos */
.card {
    border: 1px solid rgba(179, 136, 255, 0.3);
    box-shadow: 0 0 15px rgba(179, 136, 255, 0.2);
}

/* Footer */
footer {
    border-top: 1px solid rgba(179, 136, 255, 0.2);
    text-shadow: 0 0 5px rgba(179, 136, 255, 0.5);
}

/* Efectos especiales para hover en cards */
.card:hover {
    box-shadow: 0 0 25px rgba(179, 136, 255, 0.4);
    transform: scale(1.03);
}

/* Ajuste para mejor contraste en móviles */
@media (max-width: 768px) {
    body {
        text-shadow: 0 0 3px rgba(179, 136, 255, 0.9);
    }
}

@media (max-width: 991.98px) {
    
.ListaNav {
    flex-direction: column; /* Apila los elementos verticalmente */
    gap: 0.5rem; /* Espacio entre elementos */
    padding: 1rem 0; /* Espacio arriba y abajo */
  }
  
.ListaNav li {
    width: 100%; /* Ocupa todo el ancho */
  }
  
.ListaNav li a {
    display: block; /* Hace que el enlace ocupe toda la línea */
    padding: 0.5rem 1rem; /* Espaciado interno */
    font-size: 1.2rem; /* Tamaño de fuente */
    color: white !important; /* Color blanco para mejor contraste */
  }
.navbar.bg-dark {
    background-color: transparent !important;
}
/* Ajuste para mejor contraste en móviles */
@media (max-width: 768px) {
    body {
        text-shadow: 0 0 3px rgba(179, 136, 255, 0.9);
    }
    .img-carrusel-fija {
  height: 300px;          /* 🔒 tamaño fijo */
  width: 100%;
  object-fit: cover;      /* se adapta sin deformar */
  display: block;
}
}

}
@media (max-width:580px){
            .img-carrusel-fija {
            height: 300px;          /* 🔒 tamaño fijo */
            width: 125%;
            object-fit: cover;      /* se adapta sin deformar */
            display: block;
}
}
/*centrar las tarjetaas en telefonos*/
@media (max-width:580px){
.card{
    width: 100%;
    height: 100%;
}
body {
    text-shadow: 0 0 3px rgba(179, 136, 255, 0.9);
}

}
/*Titulos de cada pagina asi el usuario sabe en que Href esta */
.Titulo{
    text-align: center;
    font-size: 50px ;
}

/* --- Centrado general en la página de Kim --- */
#Pagina-De-Cada-Modelo main {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

#Pagina-De-Cada-Modelo main section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

#Pagina-De-Cada-Modelo main section ul {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
    justify-content: center;
}

#Pagina-De-Cada-Modelo #Profile {
    display: block;
    margin: 0.5rem auto 0.25rem;
}

/* Centrar el botón hamburguesa dentro del navbar */
#Pagina-De-Cada-Modelo .navbar .container-fluid {
    justify-content: center;
}
    ul{
    list-style: none;
}
button.Contacto{
    background: none;
    border: none;
    height: 150px;
}
.Logo-Phone{
    background: none;
    border: none;
    height: 50px;
    width: 50px;
}
#Profile{
    width: 140px;
    height: 140px;
}

.Datos_De_Cada_Modelo{
    display:grid ;
    grid-template-rows: 100%;
    grid-template-columns: 25% 25% 25% 25% ;
}
/* .Datos_De_Cada_Modelo ul{

} */
.Datos_De_Cada_Modelo h2 {
    grid-column-start: 0;
    
}
/* --- Layout básico del bloque superior --- */
.Datos_De_Cada_Modelo{
  display:flex;
  justify-content:center;
  align-items:center;
  width:100%;
  margin: 0 auto 0.5rem;
  text-align:center;
}

.perfil{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:.5rem;
}

/* Foto + nombre */
#Profile{
  width:160px; height:160px;
  border-radius:50%;
  object-fit:cover;
}
.Datos_De_Cada_Modelo h2{ margin: .25rem 0 0; }

/* Características (chips) */
ul.caracteristicas{
  display:flex;
  flex-wrap:wrap;
  gap:.6rem;
  padding:0; margin:.5rem 0 0;
  list-style:none;
  justify-content:center;
}
ul.caracteristicas li{
  background: rgba(255,255,255,.1);
  border:1px solid rgba(179,136,255,.25);
  border-radius:999px;
  padding:.35rem .75rem;
  font-size:.95rem;
}

/* --- NUEVA FILA DE CONTACTO, CENTRADA --- */
.contact-row{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:1rem;
  margin: .75rem auto 1.25rem;
}

.contact-row .Contacto img,
.contact-row .Logo-Phone{
  width:56px; height:56px;
  object-fit:contain;
  display:block;
  transition: transform .2s ease;
}
.contact-row .Contacto img:hover,
.contact-row .Logo-Phone:hover{
  transform: scale(1.08);
}

/* Overrides por si quedaron reglas viejas apuntando a .contacto */
.Datos_De_Cada_Modelo .contacto{ display:none !important; } /* ya no se usa */

/* Responsive */
@media (max-width: 600px){
  #Profile{ width:140px; height:140px; }
  ul.caracteristicas li{ font-size:.9rem; }
  .contact-row .Contacto img, .contact-row .Logo-Phone{ width:50px; height:50px; }
}
#carouselExampleIndicators{
    width:50% ;
    height: 50%;
    margin: auto;

}
.carousel-item img {
  object-fit: contain; /* Ensures the whole image is visible */
  display: block; /* Helps with alignment issues */
  margin: auto; /* Centers the image if there is empty space */
}
@media (max-width: 500px){
#carouselExampleIndicators{
    width: 75% ;
    height: 50%;
    /* margin-left: 15%; */
    margin: auto;
}

}
