/* css externo */



#principal {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(5, 1fr);
    gap: 8px;
    width: 100px;
    height: auto;
    
}
header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr; 
    align-items: center; 
    background-color: #f5d7ef; 
    padding: 10px 20px;
}
.Logo {
    grid-column: 2;   
    justify-self: center;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropbtn {
  background-color: #f8bbd0;
  color: white;
  padding: 10px 20px;
  font-size: 16px;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
  min-width: 150px;
  z-index: 1;
  border-radius: 5px;
}

.dropdown-content a {
  display: block;
  padding: 10px;
  text-decoration: none;
  color: #333;
}

.dropdown-content a:hover {
  background-color: #ddd;
}

.dropdown:hover .dropdown-content {
  display: block;
}


header a {
    color: #0a0208; 
    text-decoration: none;
    margin-left: 15px;
     font-weight: bold;
}
#Pedido{
     display: flex; 
    justify-content: space-around;
    align-items: center;
    padding: 20px;
    background-color: #f3c2ea;
    text-align: center;
    gap: 20px;
}
.pedido {
  background: linear-gradient(135deg, #f8bbd0, #ce93d8);
  padding: 40px 20px;
  border-radius: 12px;
  color: white; 
}
.pedido {
  background-color: #fce4f9; 
  padding: 40px 20px;
  border-radius: 12px;
}

.haz{
    grid-row-start: 2;
}
.whatsapp{
        grid-row-start: 3;

}
.gmail{
    grid-column-start: 3;
    grid-row-start: 3
}
.instagram{
     grid-column-start: 5;
    grid-row-start: 3;
}
footer {
    display: flex;
    justify-content: space-between; 
    align-items: flex-start; 
    padding: 20px;
    background-color: #f5d7ef;
     margin-top: 20px;
     background: linear-gradient(135deg, #ce93d8, #f8bbd0);
}

.politicas {
    text-align: right; 
}

.politicas .links {
    display: flex;
    flex-direction: column; 
    margin-top: 10px;
}

.politicas .links a {
    text-decoration: none;
    color: #000;
    margin: 5px 0;
}
.btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #8a2c82; 
  color: white;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.btn:hover {
  background-color: #f3c2ea; 
  color: #000;
}


.card {
  background: #f7d5f3; 
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  text-align: center;
}


.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  padding: 20px;
}

.animar {
  opacity: 0;
  transform: translateY(20px);
  animation: aparecer 1s forwards;
}
@keyframes aparecer {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.resaltar {
  background-color: #f8bbd0;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.resaltar:hover {
  background-color: #b53fa0;
  transform: scale(1.05); 
  box-shadow: 0 0 25px rgba(181, 63, 160, 0.6);
}
.mostrar {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.8s ease-in-out;
}

.mostrar:hover {
  opacity: 1;
  transform: scale(1);
}


a , p {
     font-family: 'TT Fors Trial Regular';
}

body{
    background-color: rgb(196, 218, 250);
}
/* === Carrusel de imágenes (centrado y alargado) === */

.carrusel {
  width: 90%;                /* un poco más angosto, centrado */
  max-width: 1100px;         /* no se estira demasiado en pantallas grandes */
  margin: 50px auto;         /* centrado con separación arriba y abajo */
  overflow: hidden;
  border-radius: 18px;       /* bordes suaves */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.slider {
  width: 100%;
  position: relative;
}

.slides {
  display: flex;
  width: 500%; /* 5 imágenes */
  animation: slide 20s infinite ease-in-out;
}

.slides img {
  width: 20%;
  height: 450px;             /* más alto para que se luzcan */
  object-fit: cover;         /* recorta sin deformar */
  transition: transform 1s ease-in-out;
}

/* === Animación === */
@keyframes slide {
  0% { transform: translateX(0); }
  15% { transform: translateX(0); }

  25% { transform: translateX(-20%); }
  40% { transform: translateX(-20%); }

  50% { transform: translateX(-40%); }
  65% { transform: translateX(-40%); }

  75% { transform: translateX(-60%); }
  85% { transform: translateX(-60%); }

  100% { transform: translateX(-80%); }
}

/* === Responsive === */
@media (max-width: 768px) {
  .carrusel {
    width: 95%;
  }
  .slides img {
    height: 300px;
  }
}
@media (max-width: 480px) {
  .slides img {
   height: 220px;
  }
}