/* Fondo general de la página */
body {
  margin: 0;
    padding: 0;
  background-color: #FFE6F0;
}

/* Estilo para el logo (imagen) */
.logo {
  width: 70px;
   border-radius: 50%;  
}

/* Estilo para la barra de navegación personalizada */
.mi-navbar {
  background-color: #FF66CC;
}

/* Sección portada con altura relativa a la ventana */
.portada {
  height: 90vh;
}

/* Estilo para la sección servicios: texto centrado, color y fuente */
.servicios {
  text-align: center;
  color: #CC3366;
  margin: 25px;
  font-family: monserrat;
  font-style: italic;
  font-weight: bold;
  
}

.col-md-auto {
   display: flex;
   align-items: stretch; 
}


.card-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between; 
  flex-grow: 1; 
}

.btn-primary {
  margin-top: auto; 
  align-self: center; 
  padding: 10px 20px; 
  font-size: 14px; 
  background-color: #FFE6EE; 
  color: black; 
  font-weight: bold; 
  font-family: Arial, sans-serif; 
  border: none; 
  border-radius: 5px; 
  text-align: center; 
  display: inline-block; 
 
}

.btn-primary:hover {
  background-color: #000000; /* Color más oscuro al pasar el mouse */
  color: #FFFFFF;
   transform: scale(1.1);
}





/* Clase para texto con color negro */
.color {
  color: black;
  
}

/* Estilo para tarjetas (cards) con margen, cursiva y borde rosa */
.card {
   
  margin: 33px;
  font-style: italic;
  border: 1px solid #ff66cc;
  align-items: stretch; 
  
}

/* Título de las tarjetas con texto en negrita */
.card-title {
  font-weight: bold;
  
}

/* Texto dentro de las tarjetas centrado y con espaciado de línea */
.card-text {
  text-align: center;
  line-height: 2;
}

/* Texto justificado, con padding y ancho definido */
.justificado {
  text-align: justify;
  padding: 15px;
  margin: 0 auto;
  width: 83%;
  line-height: 2;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.3rem;
}

/* Margen horizontal para el carrusel */
.carousel {
  margin: 0 1%;
}

/* Estilo para títulos grandes, color, fuente, sombra y espaciado */
.titulo {
  font-size: 2.5rem;
  color: #CC3366;
  text-align: center;
  letter-spacing: 2px;
  margin: 30px;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  font-weight: 700;
  
}

/* Descripción con color oscuro, centrado, tamaño y margen */
.descripcion {
  color: rgb(31, 31, 31);
  text-align: center;
  font-size: 1.5rem;
  margin-top: 5px;
  max-width: 1000px;
  width: 100%;
  display: block;
  margin-left: auto;
  margin-right: auto;
  padding: 0 15px;
  font-family: 'Montserrat', sans-serif;
  font-style: italic;
}

/* Estilo del menú desplegable dentro de la barra de navegación */
.navbar-nav .dropdown-menu {
  background-color: #ffcccc;
  border-radius: 10px;
  border: none;
  padding: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  
}

/* Estilo para los ítems dentro del menú desplegable */
.navbar-nav .dropdown-menu .dropdown-item {
  color: #000;
  background-color: transparent;
  padding: 10px 20px;
  transition: background-color 0.3s ease;
  border-radius: 8px;
  
}

/* Separador dentro del menú desplegable oculto */
.dropdown-divider {
  display: none;
}

/* Estilo para los links de navegación */
.nav-link {
   position: relative; 
  font-weight: 600;
  color: #000;
  font-weight: bold;
  transition: transform 0.3s ease-in-out, color 0.3s ease-in-out;
  display: inline-block;
  margin-right: 20px
}

/* Clase para link de navegación con estilo especial (color y borde rosa) */
.nav-link-success {
  border-color: #ff66cc;
  color: #ff66cc;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgb(66, 13, 192); 
  transform: scaleX(0); 
  transform-origin: bottom right;
  transition: transform .3s ease-in-out;
}

/* Al pasar el ratón por encima */
.nav-link:hover::after {
  transform: scaleX(1); 
  transform-origin: bottom left;
}

/* Estilo opcional para mejorar la experiencia del hover */
.nav-link:hover {
  color: rgb(66, 13, 192); 
 color: rgb(255, 254, 255) !important;
  transform: scale(1.2);

}


/* Estilo para links deshabilitados */
.nav-link.disabled {
  color: #c7a6a6;
  cursor: not-allowed;
  opacity: 0.6;
}

/* Estilo para botones con borde y texto rosa */
.btn.btn-outline-success {
  border-color: #000000;
  color: #000000;
}

/* Efecto hover para botones con fondo rosa y texto oscuro */
.btn.btn-outline-success:hover {
  background-color: #000000;
  color: rgb(255, 255, 255);
  border-color: #ff66cc;
}
/* Aplica a imágenes dentro de .card (tarjetas) */
.card img {
  transition: transform 0.3s ease;
  cursor: pointer; /* indica que es interactivo */
}

.card img:hover {
  transform: scale(1.1); 
  box-shadow: 0 4px 15px rgba(255, 102, 204, 0.7); 
  border-radius: 8px; 
}


.icons {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 300px;
    padding: 60px;
    height: 0px;  /* antes 300px */
    padding: 20px;  /* antes 60px */
}

.icons a {
    color: var(--color);
    font-size: 50px;
    margin: 0 15px;
    transition: all 0.3s ease;
    
}

.icons a:hover {
    transform: scale(1.2);
    text-shadow: 0 0 10px var(--color), 0 0 20px var(--color), 0 0 30px var(--color);
}

.float{
	position:fixed;
	width:60px;
	height:60px;
	bottom:40px;
	right:40px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
  font-size:30px;
	box-shadow: 2px 2px 3px #999;
  z-index:100;
}

.my-float{
	margin-top:16px;
}
.float:hover {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
    -webkit-transition: transform 0.5s;
    -moz-transition: transform 0.5s;
    -o-transition: transform 0.5s;
    transition: transform 0.5s;
}
.float-container{
    position:fixed;
    bottom:40px;
    right: 40px;
    display:flex;
    align-items:center;
    z-index:500;
    justify-content: flex-end;
}

.float{
	width:60px;
	height:60px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
    font-size:30px;
	box-shadow: 2px 2px 3px #999;
}

.online-status{
    margin-right:65px;
    background-color: #25d366;
    padding: 5px;
    color: #020202;
    border-radius: 5px;
}

.my-float{
	margin-top:16px;
}
/* If you don't wish to have an bouncing effect you can remove below code */
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.float {
	width:60px;
	height:60px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
    font-size:30px;
	box-shadow: 2px 2px 3px #999;
    animation: bounce 2s infinite;
}

.pato {
  width: 220px;
  height: 340px;
  border-radius: 12px;
  transform-style: preserve-3d;
}

.pato.blue {
  background: linear-gradient(135deg, #09AFFF, #125575);
}

.pato.purple {
  background: linear-gradient(135deg, #5911F2, #290987);
}
.pato.fuxia {
  background: linear-gradient(135deg, #ff66cc, #8d1a67);
}

.pato .product {
  height: 85%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  position: relative;
  transform-style: preserve-3d;
}

.pato .product .number {
  font-size: 80px;
  line-height: 80px;
  font-style: italic;
  opacity: 0.25;
}

.pato .product .sneakers {
  font-size: 35px;
  line-height: 35px;
  font-style: italic;
}

.pato:hover .product img {
  transform: translate3d(-50%, -40%, 80px);
}

.pato:hover .product .number {
  transform: translateZ(40px);
  opacity: 1;
}

.pato:hover .product .sneakers {
  transform: translateZ(40px);
  opacity: 0.85;
}

.pato:hover .product .price {
  transform: translateZ(20px);
}

.pato:hover .title h2 {
  transform: translateZ(20px);
}

.pato .title {
  height: 15%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 0 12px 12px;
  transform-style: preserve-3d;
}

.pato.blue .title {
  background: #039BE5;
}

.pato.purple .title {
  background: #5B1AE3;
}

.pato.fuxia .title {
  background: #a31f70;
}


.pato .product img {
  height: 200px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-35%, -45%, 0);
  pointer-events: none;
}

.pato .product .price {
  background: rgba(255, 255, 255, 0.15);
  margin-top: auto;
  margin-left: auto;
  margin-right: -20px;
  padding: 5px 20px;
  border-radius: 99px 0 0 99px;
}

.pato {
  margin-right: 150px; /* Ajusta este valor para la separación */
 
}

.pato:last-child {
  margin-right: 0;
}



/* Estilo inicial para el menú */
.mi-navbar {
    background-color: #ff66cc;  
    transition: all 0.3s ease-in-out; 
    padding: 10px 20px; 
}

/* Estilo cuando el menú se queda fijo (sticky) */
.mi-navbar.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000; 
    background-color: #d3157d; 
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); 
    padding: 5px 20px; 
}

/* Eliminar el padding superior en el body para que el menú esté pegado */
body {
    margin: 0;
    padding-top: 0;
}

/* Ajuste del espacio debajo del menú cuando se hace scroll */
main {
    padding-top: 80px; 
}

/* Contenedor del video centrado */
.video-container {
    display: flex;
    justify-content: center;  
    margin: 50px 0;            
    width: 100%;             
}

/* Estilo para el video */
video {
    max-width: 90%;  
    height: auto;     
}

/* Estilo para el contenedor de texto */
.contactanos-container {
    text-align: center;  /* Centra el texto */
    margin-bottom: 20px;  /* Espacio inferior para separar del siguiente contenedor */
padding-top: 80px;
  }

/* Estilo para el texto */
.contactanos-text {
    font-size: 18px;
    font-weight: bold;
    color: #333;  /* Puedes elegir el color que prefieras */
}

/* Contenedor de los íconos o imágenes */
.icon-container {
    display: flex;
    justify-content: center; /* Centra los íconos horizontalmente */
    gap: 20px; /* Añade un espacio entre cada imagen */
    margin-top: 20px; /* Agrega espacio arriba para separar del texto */
}
.cards-description p {
  font-size: 20px;
  font-weight: 600;
  color: #0f0f0f;
  line-height: 1.6;
  background-color: #ffe6f0;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* --- Estilos para móviles --- */
@media (max-width: 600px) {

  .portada {
    height: 250px; /* Altura más pequeña para móvil */
    object-fit: cover; /* Mantiene la imagen bien recortada */
  }

  #carouselExampleCaptions {
    margin-top: 20px; /* Espacio desde el header/título */
    margin-bottom: 20px; /* Espacio inferior por si hay texto abajo */
  }

  .carousel-caption {
    display: none; /* Oculta los textos en el carrusel si molestan en móvil */
  }

  .carousel-indicators {
    bottom: 10px;
  }
}
@media (max-width: 600px) {
  .pato {
    margin-left: 140px; /* Ajusta este valor para mover más o menos */
  }
}

/* Solo para móviles */
@media (max-width: 768px) {
  /* Cuando tenga clase active, se cambia el fondo */
  header.active {
    background-color: #d50a7e; /* color rosado */
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  }

  /* Menú oculto por defecto en móvil */
  .menu {
    display: none;
  }

  /* Mostrar menú cuando header tiene clase active */
  header.active .menu {
    display: block;
  }
}
/* @media (max-width: 480px) {
  .nav-link {
    color: rgb(7, 6, 6); 
    border-bottom: 3px solid transparent; 
    transition: border-color 0.3s ease;
  }

  .nav-link.active {
    border-bottom-color: #7f00ff; 
    font-weight: bold;
  }

  .nav-link:hover,
  .nav-link:focus {
    border-bottom-color: #7f00ff; 
    color: white;
  }
} */

@media (max-width: 480px) {
  .nav-link {
    color: black;
    border-bottom: 3px solid transparent;
    transition: color 0.3s ease, border-bottom-color 0.3s ease, transform 0.3s ease;
    display: inline-block; /* necesario para transform */
  }

  .nav-link:hover,
  .nav-link:focus,
  .nav-link.focus {
    color: rgb(253, 248, 248);
    border-bottom-color: rgb(14, 3, 163);
    transform: scale(1.1); /* aumenta tamaño un 10% */
  }
}
