@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
}

body {
  font-family: 'Poppins', sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.header {
    background-image: linear-gradient(
        rgba(0,0,0,0.7),
        rgba(0,0,0,0.7)),
        url(imagenes/arriba.png);
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
    min-height: 100vh; /* para que haya espacio suficiente */
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* importante */
}


.menu {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px;
  width: 100%;
  max-width: 1200px; /* para mantenerlo centrado */
  margin: 0 auto;
  z-index: 10;
}

.logo img {
    width: 120px; /* ajusta según lo que se vea mejor */
    height: auto;
}

.menu .navbar ul li {
    position: relative;
    float: left;
}

.menu .navbar ul li a {
    font-size: 18px;
    padding: 20px;
    color: #FFFDFC;
    display: block;
    font-weight: 600;
}

.menu .navbar ul li a:hover{
    color: #CE967B;
}

#menu {
    display: none;
}

.menu-icono{
    width: 25px;
}

.menu label {
    cursor: pointer;
    display: none;
}

.header-content{
    text-align: center;
}

.header-content h1{
    font-size: 75px;
    line-height: 80px;
    color: #F9FAFC;
    text-transform: uppercase;
    margin-bottom: 35px;
}

.header-content p{
    font-size: 16px;
    color: #C5C5C5;
    padding: 0 250px;
    margin-bottom: 25px;
}

.btn-1{
    display: line-block;
    padding: 11px 35px;
    background-color: #CE967B;
    color: #F9FAFC;
    text-transform: uppercase;
}

.btn-1:hover{
    background-color: #ebad8d;
}

.carne{
    padding: 100px 0;
    background-color: #E1E2E6;
    position: relative;
}

.carne-content{
    text-align: center;
}

.carne-content h2{
    font-size: 55px;
    line-height: 70px;
    color: #323337;
    text-transform: uppercase;
    padding: 0 250px;
    margin-bottom: 15px;
}

.txt-p{
    font-size: 16px;
    color: #414247;
    padding: 0 250px;
    margin-bottom: 35px;

}

.carne-group {
  display: flex;
  justify-content: space-between;
  align-items: stretch; /* Asegura que todos los .carne-1 tengan misma altura */
  gap: 20px; /* Espacio entre tarjetas */
}

.carne-1 {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  padding: 15px;
  border-radius: 10px;
}

.carne-1 img {
  width: 180px;
  margin: 0 auto 10px;
}


.carne-img{
    position: absolute;
    top: 0;
    right: 0;
}

.carne-1 h3{
    color: #323337;
    font-size: 20px;
    margin-bottom: 15px;
}

.services{
    background-image: linear-gradient(
        rgba(0,0,0,0.7),
        rgba(0,0,0,0.7)),
        url(imagenes/carnes.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding: 100px 0;
}

.services-content{
    text-align: center;
}

.services-content h2{
    font-size: 55px;
    line-height: 70px;
    color: #F9FAFC;
    text-transform: uppercase;
    margin-bottom: 50px;
}

.services-content p{
    font-size: 16px;
    color: #C5C5C5;
    margin-bottom: 50px;
    padding: 0 100px;
}

.services-group{
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}

.services-1{
    padding: 0 100px;
}

.services-1 img {
  width: 80px; /* Prueba con 80, ajusta según el diseño */
  margin-bottom: 15px;
}

.services-1 h3{
    color: #EACCB3;
    font-size: 18px;
}




.services_1 {
  padding: 4rem 2rem;
  font-family: 'Segoe UI', sans-serif;
  background-image: linear-gradient(
        rgba(0,0,0,0.7),
        rgba(0,0,0,0.7)),
        url(imagenes/servfond.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
  background-color: #fffdfa;
  color: #000000;
}


.services-content_container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.services-content_container h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.services-group1 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.services-2 {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 1.5rem;
  transition: transform 0.3s ease;
}

.services-2:hover {
  transform: translateY(-5px);
}

.services-2 img {
  width: 80%;
  max-width: 250px;
  height: auto;
  border-radius: 8px;
  margin: 0 auto 1rem;
  display: block;
}

.services-2 h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.services-2 p {
  font-size: 1rem;
  color: #5a4a3b;
}

/* Texto final centrado */
.services-content_container > p {
  font-size: 1.1rem;
  margin-top: 2rem;
  color: #4b3b2a;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* Botón debajo del texto */
.btn-1 {
  display: inline-block;
  margin-top: 1.5rem;
}


.texto1 {
  text-align: center;
  padding: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.texto1 p {
  font-size: 1.1rem;
  color: #4b3b2a;
  margin-bottom: 1.5rem;
}

.texto1 .btn-1 {
  display: inline-block;
}




.bloque {
  width: 100%;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1rem;
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
}



.bloque h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.bloque p {
  font-size: 1.2rem;
  line-height: 1.6;
}



.ubicacion {
  background-image: url('imagenes/fondo-mapa.jpg');
}

.mapa iframe {
  margin-top: 1rem;
  border-radius: 8px;
}


.horario {
  text-align: center;
  padding: 2rem;
  background-color: #f8f4f0;
  border-radius: 10px;
  max-width: 600px;
  margin: 2rem auto;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.horario h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #4b3b2a;
}

.tabla-horario {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.1rem;
}

.tabla-horario th,
.tabla-horario td {
  padding: 0.8rem;
  border-bottom: 1px solid #ccc;
}

.tabla-horario th {
  background-color: #e0d6d0;
  color: #4b3b2a;
}

.tabla-horario td {
  color: #333;
}



.contacto {
    display: flex;
    background-color: #E1E2E6; /* puedes cambiar por imagen si quieres */
}

.general-4{
    width: 50%;
    padding: 100px 250px 100px 100px;
    background-color: #E1E2E6;
}

.general-5{
    background-image: url(imagenes/contac.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 50%;
}



.productos {
    display: flex;
    background-color: #E1E2E6; /* puedes cambiar por imagen si quieres */
}

.general-6{
    width: 50%;
    padding: 100px 250px 100px 100px;
    background-color: #E1E2E6;
}

.general-7{
    background-image: url(imagenes/productos.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 50%;
}









/* Ocultar el cuadro flotante */
.goog-te-banner-frame.skiptranslate {
  display: none !important;
}
body {
  top: 0px !important;
}

/* Ajustar contenedor */
#google_translate_element {
  display: inline-block;
  background: #fff;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 14px;
}

/* Quitar borde y fondo extra */
.goog-te-gadget {
  font-family: inherit !important;
  font-size: inherit !important;
  color: inherit !important;
}
.goog-te-gadget img {
  display: none; /* Oculta el icono de Google */
}








.general{
    display: flex;
}

.general-1{
    width: 50%;
    padding: 100px 250px 100px 100px;
    background-color: #E1E2E6;
}

.general-2{
    background-image: url(imagenes/corte.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 50%;
}

.general-3{
    background-image: url(imagenes/cernes1.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 50%;
}

h2{
    font-size: 55px;
    line-height: 70px;
    color: #323337;
    text-transform: uppercase;
    margin-bottom: 20px;
}

p{
    font-size: 16px;
    color: #414247;
    margin: 25px 0 45px 0;
}

.blog{
    padding: 100px 0;
    text-align: center;
}

.blog-content{
    display: flex;
    justify-content: space-between;
}

.blog-1{
    padding: 15 px 55px;
}

.blog-1 img{
    width: 250px;
    border-radius: 15px;
    margin-bottom: 15px;
}

.blog-1 h3{
    font-size: 25px;
    color: 323337;
}



.product-section {
    display: none;
    padding: 40px 20px;
    background-color: #E1E2E6;
    font-family: sans-serif;
}

.product-section.active {
 display: block;
}

.navbar ul {
      list-style: none;
      padding: 0;
      margin: 0;
      background-color: #333;
}

.navbar ul li {
      display: inline-block;
      position: relative;
}

.navbar ul li a {
      display: block;
      padding: 10px 15px;
      color: white;
      text-decoration: none;
}

nav ul li ul li {
    display: block;
    width: 100%;
}







.submenu {
      display: none;
      position: absolute;
      background-color: #444;
      top: 100%;
      left: 0;
}

.dropdown:hover .submenu {
      display: block;
}

.submenu li a:hover {
      background-color: #666;
}


/* === ESTILO PARA LAS PÁGINAS DE PRODUCTOS === */
.product-section {
    padding: 60px 20px;
    background-color: #E1E2E6;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-card img {
    width: 100%;
    height: 180px; /* tamaño fijo */
    object-fit: cover; /* recorta manteniendo proporción */
    border-radius: 10px;
    margin-bottom: 10px;
}

.product-card h3 {
    font-size: 18px;
    color: #323337;
    margin-top: 10px;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}









.dropdown {
  position: relative;
}

.submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #CE967B;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  z-index: 999;
  border-radius: 5px;
}

.submenu li a {
  padding: 12px 15px;
  display: block;
  color: #fff;
  font-weight: 500;
  transition: background 0.3s;
}

.submenu li a:hover {
  background-color: #d89c78;
}

.dropdown:hover .submenu {
  display: block;
}

.footer{
    padding: 100px 0;
    background-color: #000000;
}


.footer-note {
  text-align: center;
  margin-top: 40px;
}

.footer-note p {
  font-size: 14px;
  color: #C5C5C5;
}

.footer-message {
  text-align: center;
  color: #CE967B;
  font-size: 16px;
  margin-top: 10px;
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  left: 20px; /* Cambiado de right a left */
  background-color: #25d366;
  border-radius: 50%;
  padding: 18px;
  z-index: 1000;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-icon {
  width: 40px;
  height: 40px;
}









@media (max-width: 600px) {
  .whatsapp-float {
    width: 60px;
    height: 60px;
    padding: 15px;
    bottom: 15px;
    left: 15px;
  }

  .whatsapp-icon {
    width: 32px;
    height: 32px;
  }
}

@media(max-width:991px){
    .menu{
        padding: 30px;
    }

    .menu label{
        display: initial;
    }

    .menu .navbar{
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #323337;
        display: none;
    }

    .menu .navbar ul li{
        width: 100%;
    }

    #menu:checked ~ .navbar {
        display: initial;
    }

    .header{
        min-height: 0vh;
    }

    .header-content{
        padding: 100px 30px;
    }

    .header-content h1 {
        font-size: 45px;
         line-height: 50px;
    }

    .header-content p{
        padding: 0; 
    }

    .carne{
        padding: 30px;
    }

    .carne-content h2{
        padding: 0;
    }

    .txt-p{
        padding:0;
    }

    .carne-group{
        flex-direction: column;
        margin-bottom: 0;
    }

    .carne-img{
        display:none;
    }

    .services{
        padding: 30px;
    }

    .services-content p{
        padding: 0;
    }

    .services-group{
        flex-direction: column;
        margin-bottom: 0;
    }

    .services-1{
        margin-bottom: 25px;
    }

    .general{
        flex-direction: column;
    }

    .general-1{
        width: 100%;
        padding: 30px;
        text-align: center;
    }

    .general-2,.general-3{
        display: none;
    }

    .general-4{
        width: 100%;
        padding: 30px;
        text-align: center;
    }

    .general-5{
        display: none;
    }

    .general-6{
        width: 100%;
        padding: 30px;
        text-align: center;
    }

    .general-7{
        display: none;
    }





    .blog{
        padding: 30px;
    }

    .blog-content{
        flex-direction: column;
    }

    .blog-1{
        padding: 0;
    }

    .footer{
        padding: 30px;
    }

    .footer-content{
        flex-direction: column;
        text-align: center;
    }

}