/* =====================================================
   🌐 ESTILOS GENERALES
===================================================== */

body {
  background-image: url(Imagenesgrato/fondo5.jpg);
  font-family: 'Lucida Sans', Geneva, Verdana, sans-serif;
  margin: 0;
     background-repeat: no-repeat;
      background-size: cover;
      background-position: center;
      background-attachment: fixed;
      margin: 0;
      height: 100vh;

  
}


/* =====================================================
   📦 TITULOS / NAV
===================================================== */

.contenedor {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  background-color: white;
  position: relative;
}

.contenedor::before {
  content: "";
  position: absolute;
  top: 75%;
  left: 0;
  width: 100%;
  height: 90px;
  background-image: url(Imagenesgrato/fondo5.jpg);
   background-repeat: no-repeat;
      background-size: cover;
      background-position: center;
      background-attachment: fixed;
      margin: 0;
        z-index: 0;

  min-height: 95px;
}

.lado {
  display: flex;
  flex-direction: row;
  gap: 15px;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.lado a {
  color: #d4af37;
  text-decoration: none;
  font-weight: bold;
  font-size: 25px;
  background-color: white;
  padding: 6px 12px;
  border-radius: 6px;
  transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.lado a:hover {
  transform: scale(1.1); 
  background-color: #d4af37; 
  color: white; 
  }


/* ==========================================================================
   1. ESTILOS PARA PC (Con animación de resplandor cálido continuo)
   ========================================================================== */
.Fondo1 {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  position: relative;
  z-index: 2;
  box-sizing: border-box;
  
  /* Borde base sutil en tono crema cálido para pantallas grandes */
  border: 3px solid rgba(229, 169, 59, 0.15); 
  
  /* Transición fluida para el tamaño (scale) cuando el mouse entra y sale */
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);

  /* CAMBIO CLAVE: Activa la animación lineal constante también en PC de forma perpetua */
  animation: dibujarContornoCalidoPC 4s linear infinite;
}

/* Efecto interactivo al pasar el mouse (Sigue creciendo y girando un toque como te gustaba) */
.Fondo1:hover {
  transform: scale(1.08) rotate(5deg);
  cursor: pointer; 
}

/* --- NUEVA ANIMACIÓN EXCLUSIVA PARA PC (Adaptada al tamaño de 200px) --- */
@keyframes dibujarContornoCalidoPC {
  0% {
    /* Resplandor ámbar/dorado concentrado arriba (con más volumen para PC) */
    box-shadow: 0px -5px 15px 2px #d4af37, 
                0px 0px 6px rgba(229, 169, 59, 0.2);
  }
  25% {
    /* La luz fluye uniformemente hacia el lado derecho sin saltos */
    box-shadow: 5px 0px 15px 2px #e5a93b, 
                2px -2px 6px rgba(212, 175, 55, 0.3);
  }
  50% {
    /* Envuelve la parte inferior con un resplandor de cobre cálido */
    box-shadow: 0px 5px 15px 2px #d4af37, 
                -2px 2px 6px rgba(229, 169, 59, 0.2);
  }
  75% {
    /* Sube fluidamente por el lado izquierdo completando el recorrido */
    box-shadow: -5px 0px 15px 2px #e5a93b, 
                -2px -2px 6px rgba(212, 175, 55, 0.3);
  }
  100% {
    /* Conecta perfectamente con el inicio logrando un bucle sin fin invisible */
    box-shadow: 0px -5px 15px 2px #d4af37, 
                0px 0px 6px rgba(229, 169, 59, 0.2);
  }
}




/* =====================================================
   📝 HOME - TEXTO
===================================================== */

.Entrada {
  color: rgb(165, 42, 42);
  font-size: 20px;
  line-height: 0.5;
  text-align: center;
  margin-bottom: 80px;
  margin-top: 50px;
  font-weight: bold
}


/* =====================================================
   🏠 HOME - BIENVENIDA
===================================================== */

.Bienvenida {
  display: flex;
  align-items: center;
  color: brown;
  font-family: 'Lucida Sans', Geneva, Verdana, sans-serif;
  width: 100%;
  height: 400px;
  background-image: url(imagenesgrato/fondo5.2.jpg);
    background-repeat: no-repeat;
      background-size: cover;
      background-position: center;
      background-attachment: fixed;
      margin: 0;
      height: 75vh;
  padding: 80px 270px;
  box-sizing: border-box;
}

.texto {
  width: 35%;
  max-width: 500px;
  text-align: justify;
  line-height: 1.5;
}

.img-box {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.foto {
  width: 400px;
  height: 280px;
  object-fit: cover;
  border-radius: 10px;
  margin-left: auto;
  filter: brightness(100%) saturate(100%);
  transition: transform 0.4s ease, box-shadow 0.4s ease, filter 0.4s ease;
}

.foto:hover {
  transform: translateY(-8px); 
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
  filter: brightness(112%) saturate(115%);
  cursor: pointer; 
}


/* =====================================================
   🔤 H1 GENERALES
===================================================== */

h1 {
  font-family: 'Lucida Sans', Geneva, Verdana, sans-serif;
  text-align: center;
  color: brown;
}


/* =====================================================
   🎞️ CARRUSEL HOME
===================================================== */

.carrusel {
  width: 1000px; 
  overflow: hidden;
  margin: auto;
  border-radius: 10px;
}

.imagenes {
  display: flex;
  width: max-content;
  animation: deslizar 15s linear infinite;
}

.imagenes video {
  width: 250px;
  height: 450px;
  object-fit: cover; 
  flex-shrink: 0;
}


@keyframes deslizar {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-30%);
  }
}

/* =====================================================
   🍰 MENÚ - CHEESECAKES
===================================================== */

.TituloChes {
  margin-top: 50px;
  text-align: center;
  color: brown;
}

.TituloChes p {
  width: 350px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 100px;
}

.Menu {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 100px;
}

.Menu img {
  width: 300px;
  margin-left: 25%;
  border-radius: 20px;
    filter: brightness(100%) saturate(100%);
  transition: transform 0.4s ease, box-shadow 0.4s ease, filter 0.4s ease;
}

.Menu img:hover {
  transform: translateY(-8px); 
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
  filter: brightness(112%) saturate(115%);
  cursor: pointer; 
}


.texto {
  display: flex;
  flex-direction: column;
}

.titulo-menu {
  color: brown;
  text-align: center;
  margin-left: 19%; 
}

.Menu p {
  color: brown;
  font-size: 18px;
  font-family: 'Lucida Sans', Geneva, Verdana, sans-serif;
  width: 350px;
  text-align: center;
  margin-left: 27%;
}


/* =====================================================
   🍫 MENÚ - BOMBAS
===================================================== */

.TituloChes1 {
  margin-top: 50px;
  text-align: center;
  color: brown;
  font-family: 'Lucida Sans', Geneva, Verdana, sans-serif;
background-image: url(imagenesgrato/fondo5.2.jpg);
   background-repeat: no-repeat;
      background-size: cover;
      background-position: center;
      background-attachment: fixed;
      margin: 0;
}

.TituloChes1 p {
  width: 350px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 100px;
}

.carruselMenu {
  width: 300px;
  overflow: hidden;
  margin: auto;
  border-radius: 10px;
}

.imagenesMenu {
  display: flex;
  width: max-content;
  animation: deslizar 20s linear infinite;
}

.imagenesMenu img {
  width: 350px;
  height: 250px;
  object-fit: cover;
  flex-shrink: 0;
  
}


.ProductosMenu{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: nowrap; 
  margin-right: 5.5%;
  margin-bottom: 35px;
}
.ProductosMenu p{
  color: brown;
  font-size: 18px;
  font-family: 'Lucida Sans', Geneva, Verdana, sans-serif;
  width: 350px;
  text-align: center;
  margin-left: 27%;
  margin-bottom: 80px;


}
.ProductosMenu h2{
  color: brown;
  font-size: 25px;
  font-family: 'Lucida Sans', Geneva, Verdana, sans-serif;
  width: 350px;
  text-align: center;
  margin-left: 27%;

}
.fondo-blanco{
background-image: url(imagenesgrato/fondo5.2.jpg);
   background-repeat: no-repeat;
      background-size: cover;
      background-position: center;
      background-attachment: fixed;
      margin: 0;
      padding: 60px 0;
  border-radius: 10px;
}
.TituloChes2 {
  margin-top: 250px;
  text-align: center;
  color: brown;
  font-family: 'Lucida Sans', Geneva, Verdana, sans-serif;
  background-image: url(imagenesgrato/Fondo5.2jpg);
   background-repeat: no-repeat;
      background-size: cover;
      background-position: center;
      background-attachment: fixed;
      margin: 0;
}
.TituloChes2 p {
  width: 350px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 100px;
}
/* =====================================================
   🏠 QUIENES SOMOS - QUIENES SOMOS
===================================================== */
.QuienesSomos {
  display: flex;
  align-items: center;
  color: brown;
  font-family: 'Lucida Sans', Geneva, Verdana, sans-serif;
  width: 100%;
  height: 400px;
  padding: 80px 270px;
  box-sizing: border-box;
  margin-top: 100px;
}

.texto1 {
  width: 45%;
  max-width: 500px;
  text-align: justify;
  line-height: 1.5;
    margin-right: auto;

}
.foto1 {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 300px;
  margin-right: auto;
}
.btn-whatsapp {
  position: fixed;
  width: 70px;
  height: 70px;
  bottom: 40px;
  left: calc(100vw - 110px);
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 99999 !important;
  text-decoration: none;
}

/* =====================================================
   📦 boton de wp / CONTACTO
===================================================== */

.btn-whatsapp {
  animation: pulsoRadarPC 2s infinite ease-out;
  
  transition: transform 0.3s ease, background-color 0.3s ease; 
}

/* --- ESTILO DE LA IMAGEN INTERNA --- */
.btn-whatsapp img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

/* --- INTERACCIÓN EXCLUSIVA CON EL MOUSE (HOVER) --- */
.btn-whatsapp:hover {
  background-color: #d4af37;
  
  transform: scale(1.1); 
}

/* --- ANIMACIÓN CONTINUA DE PULSO DE RADAR --- */
@keyframes pulsoRadarPC {
  0% {
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(212, 175, 55, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
  }
}

.nombre-contacto {
  position: absolute;
  right: 80px;
  background-color: #333;
  color: #fff;
  padding: 8px 12px;
  border-radius: 8px;
  font-family: Arial, sans-serif;
  font-size: 14px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.btn-whatsapp:hover .nombre-contacto {
  opacity: 1;
  visibility: visible;
}

/* =====================================================
   🏠 MOMENTOS GRATO
===================================================== */
.MomentosGrato {
  margin-top: 100px;
  text-align: center;
  color: brown;
  font-family: 'Lucida Sans', Geneva, Verdana, sans-serif;
  font-size: 20px;
}
.MomentosGrato p {
  width: 350px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 100px;
}
.galeria-invitacion {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  margin-bottom: 100px;
}

.tarjeta-vacia {
  background-color: rgba(255, 255, 255, 0.85); 
  border: 2px dashed #d4af37; 
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  max-width: 450px;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.05);
}

.icono-camara {
  font-size: 40px;
  margin-bottom: 10px;
}

.tarjeta-vacia h3 {
  color: #8b263e; 
  font-size: 22px;
  margin-bottom: 10px;
}

.tarjeta-vacia p {
  color: #555;
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 20px;
}

.btn-enviar-foto {
  display: inline-block;
  background-color: #d4af37;
  color: white;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: bold;
  font-size: 14px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-enviar-foto:hover {
  background-color: #8b263e; 
  transform: translateY(-2px); 
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}
/* ==========================================================================
   📱 ESTILOS EXCLUSIVOS PARA CELULARES (MÁXIMO 768PX)
   ========================================================================== */
@media (max-width: 768px) {
  
  body {
    height: auto !important;
  }

    .contenedor {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 10px 8px !important; 
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important; 
  }

  .contenedor::before {
    display: none !important;
  }

  .lado {
    display: flex !important;
    flex-direction: row !important;
    gap: 8px !important; 
    align-items: center !important;
    width: auto !important;
  }

  .lado a {
    font-size: 11px !important; 
    padding: 2px 4px !important;
    text-decoration: none !important;
    letter-spacing: -0.3px !important; 
    
    white-space: normal !important;   
    max-width: 65px !important;      
    text-align: center !important;    
    line-height: 1.2 !important;      
  }

  .Fondo1 {
    width: 60px !important; 
    height: 60px !important;
    order: 0 !important;
    margin: 0 4px !important;
    flex-shrink: 0 !important; 
  }

  .Entrada {
    margin-bottom: 30px !important;
    margin-top: 80px !important;
    line-height: 1.3 !important;
    padding: 0 15px !important;
    font-size: 16px !important;
    font-weight: bold !important;
    
  }

  .Bienvenida {
    display: flex !important;
    flex-direction: column !important;
    height: auto !important;
    padding: 30px 15px !important;
    gap: 25px !important;
  }

  .texto {
    width: 100% !important;
    max-width: 100% !important;
    text-align: center !important;
    font-family: 'Lucida Sans', Geneva, Verdana, sans-serif !important;
    font-size: 16px !important;
  }

  .foto {
    width: 90% !important;
    max-width: 320px !important;
    height: auto !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .carrusel {
    width: 95% !important;
    max-width: 100% !important;
  }

  .imagenes video {
    width: 130px !important;
    height: 240px !important;
  }

  .Menu, .ProductosMenu, .QuienesSomos {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    padding: 20px 15px !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    height: auto !important;
  }

  .Menu img, .carruselMenu {
    margin-left: 0 !important;
    width: 85% !important;
    max-width: 280px !important;
    height: auto !important;
  }

  .titulo-menu, .Menu p, .ProductosMenu h2, .ProductosMenu p {
    margin-left: 0 !important;
    width: 100% !important;
  }

  .QuienesSomos {
    margin-top: 30px !important;
  }

  .texto1 {
    width: 100% !important;
    text-align: center !important;
    margin-right: 0 !important;
  }

  .foto1 {
    width: 200px !important;
    height: 200px !important;
    margin-right: 0 !important;
    margin-bottom: 20px !important;
    order: -1 !important;
  }

  .TituloChes2 {
    margin-top: 40px !important;
  }
  @media (max-width: 768px) {

  .carruselMenu {
    width: 280px !important;
    height: 200px !important; 
    margin: 0 auto 20px auto !important;
    overflow: hidden !important;
  }

  .imagenesMenu {
    width: max-content !important; 
  }

  .imagenesMenu img {
    width: 280px !important; 
    height: 200px !important; 
    object-fit: cover !important; 
  }
}

@media (max-width: 768px) {

  .btn-whatsapp {
    background-color: #d4af37 !important; 
    
    position: fixed !important; 
    bottom: 20px !important;   
    right: 20px !important;     /
    z-index: 9999 !important;   
    
    animation: pulsoRadar 2s infinite ease-out !important; 
  }

  .nombre-contacto {
    display: none !important;
  }

  @keyframes pulsoRadar {
    0% {
      box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
    }
    70% {
      box-shadow: 0 0 0 15px rgba(212, 175, 55, 0);
    }
    100% {
      box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
  }

}

@media (max-width: 768px) {

  /* --- BOTÓN FLOTANTE CON EFECTO DE ONDA RADAR --- */
  .btn-whatsapp {
    background-color: #d4af37 !important; 
    
    position: fixed !important; 
    bottom: 20px !important;    
    right: 20px !important;     
    z-index: 9999 !important;   
    
    animation: pulsoRadar 2s infinite ease-out !important; 
  }

  .nombre-contacto {
    display: none !important;
  }

  @keyframes pulsoRadar {
    0% {
      box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
    }
    70% {
      box-shadow: 0 0 0 15px rgba(212, 175, 55, 0);
    }
    100% {
      box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
  }

}

/* ==========================================================================
   ========================================================================= */
@media (max-width: 768px) {

  .Fondo1 {
    width: 60px !important;
    height: 60px !important;
    border-radius: 50% !important;
    order: 0 !important;
    margin: 0 4px !important;
    flex-shrink: 0 !important;
    display: block !important;
    box-sizing: border-box !important;
    
    /* Borde base sutil en tono crema cálido */
    border: 2px solid rgba(229, 169, 59, 0.15) !important; 
    transform: none !important;
    
    /* CAMBIO CLAVE: Movimiento 'linear' constante y tiempo calibrado para máxima fluidez */
    animation: dibujarContornoCalido 4s linear infinite !important;
  }

} 


/* ==========================================================================
   ========================================================================= */
@keyframes dibujarContornoCalido {
  0% {
    box-shadow: 0px -3px 8px 1px #d4af37, 
                0px 0px 4px rgba(229, 169, 59, 0.2);
  }
  25% {
    box-shadow: 3px 0px 8px 1px #e5a93b, 
                1px -1px 4px rgba(212, 175, 55, 0.3);
  }
  50% {
    box-shadow: 0px 3px 8px 1px #d4af37, 
                -1px 1px 4px rgba(229, 169, 59, 0.2);
  }
  75% {
    box-shadow: -3px 0px 8px 1px #e5a93b, 
                -1px -1px 4px rgba(212, 175, 55, 0.3);
  }
  100% {
    box-shadow: 0px -3px 8px 1px #d4af37, 
                0px 0px 4px rgba(229, 169, 59, 0.2);
  }
}


}



