
body {
  font-family: Arial, Helvetica, sans-serif;
  background:#dbadb4;
     padding: 0;
   margin: 0;
}


#encabezado {
  position: sticky;
  top: 0;
  z-index: 1000;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 25px;
  height: 150px;
  border-bottom: 2px solid black;
  background: rgb(219, 173, 180);
}


.logo {
  display: flex;
  align-items: center;
  gap: 20px;
}

.logo h2 {
  font-size: 50px;
  text-shadow: 4px 4px 5px black;
  color: #e0dcd0;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.logo img {
  height: 120px;
  width: 120px;
  object-fit: contain;
}

/* --- MENÚ --- */
header nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  align-items: center;
  margin: 0;
  padding: 0;
  margin-top: 20px;
}

header nav ul li a,
header nav ul li button {
  text-decoration: none;
  color:black;
  font-weight: bold;
  font-size: 30px;
  background: none;
  border: none;
  cursor: pointer;
}

header nav ul li a:hover,
header nav ul li button:hover {
  color: #c125e0;
}

/* --- SUBMENÚ --- */
.submenu {
  position: relative;
  display: inline-block;
}

.submenu-btn {
  font-size: 30px;
  cursor: pointer;
  padding: 10px 15px;
  padding-bottom: 10px;
}

.submenu-list {
  display: none;
  position: absolute;
  top: 25px;
  left: 0;
  background: #e9d6eb;
  border: 2px solid black;
  border-radius: 8px;
  min-width: 180px;
  padding: 0;
  color: black;
  z-index: 50;
}

.submenu-list li {
  list-style: none;
  padding: 14px 0;
  text-align: center;
}

.submenu-list li a:hover {
  background: #cbb5ce;
  color: #2a068d;
}

.submenu:hover .submenu-list, .submenu-list:hover{
  display: block;
}

.article {
  padding: 30px 60px;
  text-align: justify;
}

.article h2 {
  text-align: center;
  font-size: 40px; 
}

.article p {
  font-size: 25px; 
}

.article i {
  display: block;
  text-align: center; 
  font-size: 28px;
  margin-bottom: 20px;
}



.imagen-local {
  text-align: center;
}

.imagen-local img {
  width: 900px;  
  height: auto;
  object-fit: contain;
}


.lista {
  display: flex;
  justify-content: space-between; 
  align-items: center;
  padding: 40px;
  gap: 10px;
}



.lista img {
  width: 320px;  
  height: 320px;
  object-fit: cover;
}

.lista ul {
  font-size: 20px; 
  line-height: 1.5;
  list-style: none;
}

.lista h3 {
  font-size: 30px;
  margin-bottom: 10px;
}
#productos {
    width: 95%;
    margin: 30px auto;
    text-align: center;
    padding: 40px 20px;
}

#productos h2 {
    font-size: 35px;
    margin-bottom: 35px;
    color: #b10000;
    font-weight: bold;
}


#productos table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 25px;
}

#productos td {
    background: white;
    border: 3px solid #d600006c;
    border-radius: 14px;
    padding: 25px;
    width: 35%;
    transition: transform .5s ease, box-shadow .5s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    height: 300px;
}


#productos td:hover {
    transform: translateY(-10px) scale(1.0);
    box-shadow: 0 12px 25px #66010159;
    border-color: #8b0000;
}

#productos td::before {
     content: "";
    position: absolute;
    width: 200%;
    height: 65px;
    background: #d6000075;
    top: -40px;
    left: -50%;
    transform: rotate(-20deg);
    opacity: 0.1;
    transition: opacity .3s;
}

#productos td:hover::before {
    opacity: 0.35;
}

#productos img {
    width: 260px;
    height: 260px;
    border-radius: 10px;
    background: white;
    margin-bottom: 10px;
}

#productos button {
    padding: 12px 22px;
    background: #b10000;
    border: none;
    color: white;
    font-size: 18px;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 10px;
}

#productos button:hover {
    background: #7a0000;
    transform: scale(1.1);
    box-shadow: 0px 6px 12px rgba(128, 0, 0, 0.4);
}

.mapa {
    margin-top: 25%;
    margin-bottom: 69%;
    text-align: center;
}

.contacto-lista {
  list-style: none;
  display: flex;
  flex-direction: column;      
  align-items: flex-start;      
  gap: 25px;                  
  padding: 0;
  margin-top: 30px;
}

.contacto-item {
  display: flex;              
  align-items: center;         
  gap: 15px;                
  text-decoration: none;     
  color: #242121;                
  font-size: 22px;
  font-weight: bold;
  transition: color 0.3s ease;
}


.icono-contacto {
   width: 28px;
  height: 28px;
  border-radius: 50%;
  transition: transform 0.5s ease, box-shadow 0.3s ease;
}


 .icono-contacto :hover {
  transform: scale(1.1);
  box-shadow: 0 0 10px #240088;
}

.contacto-item:hover span {
  color: #26067d;
}

.contacto-item span {
  text-decoration: none;
  color: inherit;              
  vertical-align: middle;
}
.maps {
  margin-top: 20px;
  text-align: center;
}

.servicios-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    background: white;
}

.servicio-card {
    display: flex;
    align-items: center;
    background:  rgb(219, 173, 180);
    padding: 25px;
    gap: 30px;
    height: 100%;
}


.servicio-card img {
    width: 1020px;        
    height: 500px;       
    object-fit: cover;  
}


.servicio-info {
    display: flex;
    flex-direction: column;  
}


.servicio-info h3 {
    font-size: 28px;
    margin-bottom: 10px;
    color: #2e0359;
}


.servicio-info p {
    margin: 0;
    font-size: 25px;
}


.izquierda {
    flex-direction: row;
     animation: aparicion_izquierda .5s;
}


.derecha {
    flex-direction: row-reverse;
    animation: aparicion_derecha .5s;
}

._izquierda 
{
   flex-direction: row;
     animation: aparicion_izquierda 2s;
}

._derecha
{
  flex-direction: row-reverse;
    animation: aparicion_derecha 2s;
}

@keyframes aparicion_derecha {
    from {
        transform: translateX(300px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
     }
}

@keyframes aparicion_izquierda {
    from {
        transform: translateX(-300px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
     }
}


.Ventana {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #101010a6;
  justify-content: center;
  align-items: center;
}


.ventana-contenido {
  background: white;
  padding: 25px;
  width: 100%;
  max-width: 450px;
  border-radius: 15px;
  text-align: center;
  border: 4px solid #b10000;
  animation: aparecer .5s ease;
}


.ventana-contenido img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 15px;
}


.cerrar {
  float: right;
  font-size: 28px;
  cursor: pointer;
  font-weight: bold;
  color: #670202;
}

.cerrar:hover {
  color: #e00909;
}

/* Animación */
@keyframes aparecer {
  from { transform: scale(0.6); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.galeria {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #202020d9;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    animation: desvanecer .5s ease;
}

.galeria img {
    width: 65%;
    height: 65%;
    border-radius: 10px;
    border: 3px solid #fff;
    margin-bottom: 15px;
}

.cerrar-galeria {
    position: absolute;
    top: 20px;
    right: 35px;
    font-size: 40px;
    cursor: pointer;
    color: white;
}

.flecha {
    cursor: pointer;
    position: absolute;
    top: 50%;
    font-size: 60px;
    color: white;
    user-select: none;
}

.izquierda {
    left: 20px;
}

.derecha {
    right: 20px;
}

#galeria-texto {
    color: white;
    font-size: 20px;
    margin-top: 10px;
}

@keyframes desvanecer {
    from { opacity: 0; }
    to {opacity:1;}
}

#promociones {
    width: 90%;
    margin: 40px auto;
}

#promociones h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 10px;
}

#promociones p {
    text-align: center;
    font-size: 30px;
    margin: 10px auto;
    max-width: 800px;

}

.contenedor-promos {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    padding: 20px 0;
}

.promo {
    width: 70%;
    border-radius: 12px;
    overflow: hidden;
    position: relative;

}

.promo img {
    width: 100%;
    height: 350px;
    transition: opacity .3s ;
    cursor: pointer;
}

.promo:hover img {
    opacity: 0.75;
    
}

footer {
    width: 100%;
    background: #000;
    color: #fff;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    font-size: 20px;
    flex-wrap: wrap;
}


.footer-col {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.footer-center-content  img {
  text-align: center;
  height: 200px;
  width: 200px;
}


footer h3 {
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 10px;
}


footer .direccion {
    font-size: 15px;
    margin-bottom: 20px;
    line-height: 1.5;
}


footer ul {
    list-style: none;
    padding: 0;
    margin: 10px 0 20px 0;
}

footer ul li a {
    color:white;
    text-decoration: none;
    font-size: 14px;
}

footer ul li a:hover {
    color: #beb7b7;
}



.redes a {
    text-decoration: none;
    color: white;
    margin: 0 8px;
    font-size: 14px;
}

.redes a:hover {
    color: #beb7b7;
}

.redes img {
     width: 40px;
    height: 40px;
    object-fit: cover;
}


.division {
    width: 60%;
    margin: 20px auto;
    border: 0;
    border-top: 2px solid gray;
}

.copy {
    margin-top: 10px;
    font-size: 25px;
    text-align: center;
    
}

.telefonos {
  list-style: none;
  padding: 0;
  margin: 0;
}

.telefonos li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  justify-content: center;
}

.telefonos img {
     width: 40px;
    height: 40px;
    object-fit: cover;
}

.redes {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.red-item {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}

.redes-contacto {
  width: 30px;
  height: 30px;
}



.cita {
    text-align: center;
    margin: 40px auto;
    padding: 20px;
}

.cita h2 {
    font-size: 40px;
    margin-bottom: 10px;
}

.cita p {
  font-size: 20px;
  color: black;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #22d664;
    color: white;
    font-size: 20px;
    font-weight: bold;
    text-decoration: none;
    padding: 15px 25px;
    border-radius: 10px;
    transition: 0.5s;
    border: 4px solid #12887a;
}

.btn-whatsapp:hover {
    background-color: #12887a;
}

.icono-wsp {
    width: 50px;
    height: 50px;
    object-fit: cover;
}


.opinion {
    text-align: center;
    margin: 40px auto;
    padding: 20px;
}

.opinion h2 {
    font-size: 40px;
    margin-bottom: 10px;
}

.opinion p {
  font-size: 25px;
  color: black;
}


.boton-opinion {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: white;
    color: black;
    font-size: 22px;
    font-weight: bold;
    text-decoration: none;
    padding: 15px 25px;
    border-radius: 12px;
    border: 3px solid #a8a5a5;
}

.boton-opinion:hover {
    background: #a8a5a5;
}

.icono-opinion {
    width: 40px;
    height: 40px;
}


#diseños {
    width: 95%;
    margin: 30px auto;
    text-align: center;
    padding: 40px 20px;
}

#diseños  h2 {
    font-size: 35px;
    margin-bottom: 35px;
    color: #381010;
    font-weight: bold;
}


#diseños  table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 25px;
}

#diseños  td {
    background: white;
    border: 3px solid palevioletred;
    border-radius: 15px;
    padding: 0;
    width:  30%;
    transition: transform .5s ease, box-shadow .5s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    height: 250px;
}


#diseños td:hover {
    transform: translateY(-20px) scale(1);
    box-shadow: 2 12px 25px  black;
    border-color: #9511af;
}

#diseños  img {
    width: 100%;
    height: 260px;
    border-radius: 10px;
    background: white;
    display: block;

}

#imagenes_pende {
    width:  90%;
    margin: 40px auto;
    text-align: center;
    text-align: center;
}

#imagenes_pende .lista_ima {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

#imagenes_pende .lista_ima  img {
    width: 350px;
    height: 450px;
    object-fit: cover;
    transition: transform .5s ease, box-shadow .5s ease;
}

/* Animación suave al pasar el mouse */
#imagenes_pende .lista_ima  img:hover {
    transform: scale(1.05);
    box-shadow: 4px 8px 20px black;
}

/* CONTENEDOR GENERAL */
#galleria_trabajos {
    width: 90%;
    margin: 40px auto;
    text-align: center;
}

#galleria_trabajos h2 {
    font-size: 35px;
    color: #b10000;
    margin-bottom: 10px;
}

/* CONTENEDOR DEL SLIDER */
.slideshow-container {
  max-width: 910px;
  position: relative;
  margin:  auto;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 25px rgba(0,0,0,0.20);
  background:#dbadb4;
}

.mySlides img {
  width: 100%;
  height: 500px;
  object-fit: fill;
  background: #000
}



.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  padding: 18px;
  font-size: 28px;
  color: white;
  font-weight: bold;
  user-select: none;
  transition: 0.5s;
  background: black;
  border-radius: 50%;
}

.prev:hover, .next:hover {
  background: black;
}

.prev {
  left: 15px;
}

.next {
  right: 15px;
}

/* PUNTOS INFERIORES */
.dots-container {
  margin-top: 15px;
}

.dot {
  cursor: pointer;
  height: 14px;
  width: 14px;
  margin: 6px;
  background-color: #c5c5c5;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.5s ease;
}

.active {
  background-color: #b10000;
}

/* ANIMACIÓN */
.fade {
  animation-name: fadeEffect;
  animation-duration: 1.5s;
}

@keyframes fadeEffect {
  from {opacity: 0.5} 
  to {opacity: 1.5}
}


.local_imagen {
  position: relative;
  width: 100%;
  min-height: 75vh;        
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url("imagenes/local.jpeg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.local_imagen-overlay {
  position: absolute;
  inset: 0;
  background: #1b1b1b8c; 
  z-index: 1;
}

.local_imagen-texto {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
}

.local_imagen-texto h1 {
  font-size: clamp(40px, 4vw, 90px);
  letter-spacing: 0.12em;
  margin: 0;
  text-transform: uppercase;
  font-weight: 700;
  text-shadow: 0 4px 10px black;
}

.local_imagen-text p {
  margin-top: 10px;
  font-size: clamp(20px, 2vw, 30px);
  letter-spacing: 0.18em;
  font-weight: 600;
}
