* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Open Sans", sans-serif;
}

.header {
  width: 100%;
  height: auto;
  background-color: #ffe262;
  display: flex;
  align-items: center;
  justify-content: left;
  padding: 10px 5%;
}

.redes {
  display: flex;
  flex-wrap: wrap;
}

.redes li {
  list-style: none;
  margin: 5px;
}

.redes li a img {
  width: 36px;
  height: 36px;
  filter: invert(100%);
}

/* MENU */

.menu {
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  width: 90%;
  padding: 20px 0;
  border-bottom: 3px solid #ffe262;
}

.izquierdo {
  flex: 1 1 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}

.izquierdo_imagen {
  max-height: 300px;
  width: auto;
}

.derecho {
  flex: 2 1 300px;
  padding: 10px;
}

.derecho_imagen img {
  width: 100%;
  height: auto;
  display: block;
}

.derecho_menu {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
}

.nav {
  width: 100%;
}

.menu2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 18px;
  gap: 15px;
  padding: 0;
}

.menu2 li {
  list-style: none;
  margin: 8px;
  font-weight: 500;
}

.menu2 li a {
  color: black;
  text-decoration: none;
}

.menu2 li:not(:last-child)::after {
  content: "|";
  margin-left: 20px;
  color: #ffe262;
}

.boton {
  border: none;
  color: white;
  font-size: 18px;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 50px;
  transition: transform 0.3s ease-in-out;
}

.boton:hover {
  background-color: #ffee00;
}

.boton:active {
  transform: scale(0.9);
}

.primary {
  background-image: linear-gradient(to right, #f7e869ea, #ffc933f5);
}

/* RESPONSIVE RULES */

@media (max-width: 768px) {
  .menu2 {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .menu2 li:not(:last-child)::after {
    content: "";
  }

  .boton {
    font-size: 16px;
    padding: 10px 16px;
  }

  .menu {
    flex-direction: column;
    align-items: center;
  }

  .header {
    justify-content: center;
    padding: 10px;
  }

  .derecho_menu {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .redes li a img {
    width: 30px;
    height: 30px;
  }

  .menu2 {
    font-size: 16px;
  }

  .boton {
    font-size: 14px;
    padding: 8px 14px;
  }
}
:root {
  --primary: #ffe262;
  --primary-dark: #e6cb58;
  --dark: #2a2a2a;
  --light: #ffffff;
  --gray: #6d6d6d;
  --light-gray: #f5f5f5;
}
body {
  font-family: "Montserrat", "Helvetica Neue", sans-serif;
  line-height: 1.7;
  color: var(--dark);
  background-color: var(--light);
  overflow-x: hidden;
}
/* Hero Section */
.hero {
  background: linear-gradient(
    135deg,
    rgba(255, 226, 98, 0.1) 0%,
    rgba(255, 255, 255, 1) 100%
  );
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 100%;
  height: 100px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" opacity=".25" fill="%23ffe262"/><path d="M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z" opacity=".5" fill="%23ffe262"/><path d="M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z" fill="%23ffe262"/></svg>');
  background-size: cover;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.logo {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--dark);
  display: inline-block;
}

.logo span {
  color: var(--primary);
  position: relative;
}

.logo span::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 12px;
  background-color: var(--primary);
  opacity: 0.3;
  z-index: -1;
}

.tagline {
  font-size: 1.3rem;
  color: var(--gray);
  margin-bottom: 30px;
  font-weight: 300;
}
/* About Section */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.about {
  padding: 80px 0;
  background-color: var(--light);
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.section-title h2 {
  display: inline-block;
  font-size: 2rem;
  font-weight: 600;
  color: var(--dark);
  padding-bottom: 10px;
}

.section-title h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--primary);
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.about-text {
  flex: 1;
  min-width: 300px;
}

.about-text p {
  margin-bottom: 20px;
  font-size: 1.1rem;
  color: var(--gray);
}

.highlight-box {
  background-color: var(--light-gray);
  border-left: 4px solid var(--primary);
  padding: 25px;
  margin: 30px 0;
}

.highlight-box p {
  font-style: italic;
  color: var(--dark);
  font-size: 1.2rem;
  margin: 0;
}
/* Features Section */
.features {
  padding: 80px 0;
  background-color: var(--light-gray);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.feature-card {
  background-color: var(--light);
  padding: 30px;

  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);

  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background-color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--dark);
  font-size: 1.5rem;
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--dark);
}

.feature-card p {
  color: var(--gray);
}

/*FOOTER */
.final {
  background-color: #eaeaea;
  width: 100%;
  height: 450px;
  margin-top: 30px;
}
.texfinal {
  background-color: #686867;
  width: 100%;
  height: 30px;
  margin-top: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}
.imgfinal1 {
  display: flex;

  width: 50%;
  height: 80%;
  justify-content: center;
  align-items: center;
  gap: 160px;
  margin-left: 460px;
}
.form2 {
  margin-bottom: 10px;
  width: 420px;
}
.intform2 {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 40px;
  font-size: 18px;
  box-sizing: border-box;
  border: none;
}
.formmjs {
  justify-content: center;
  align-items: center;
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  font-weight: 200;
  margin-left: 120px;
  margin-bottom: 5px;
  animation: desaparecer 5s forwards;
}
@keyframes desaparecer {
  0% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    display: none;
  }
}
.btnform2 {
  background-color: #f7e869ea;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 30px;
  cursor: pointer;
  font-size: 16px;
  width: 60%;
  font-weight: 700;

  transition: background-color 0.3s;
}
.btnform2:hover {
  background-color: #ffc933bd;
}
.text_form2 {
  margin-bottom: 10px;
  margin-top: 20px;
  text-transform: uppercase;
  font-weight: 400;
  color: #3c3b3b;
}
.container_follow {
  display: flex;
  margin-top: 15px;
}
.follow {
  margin-top: 20px;
  font-size: 20px;
  font-weight: 800;
  color: #3c3b3b;
}
.follow_img {
  margin: 22px 0 0 40px;
}
/* CTA Section */
.cta-section {
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(
    135deg,
    rgba(255, 226, 98, 0.1) 0%,
    rgba(255, 255, 255, 1) 100%
  );
}

.cta-title {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--dark);
}

.cta-subtitle {
  font-size: 1.2rem;
  color: var(--gray);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  display: inline-block;
  background-color: var(--primary);
  color: var(--dark);
  padding: 15px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 226, 98, 0.3);
}

.cta-button:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 226, 98, 0.4);
}




/* Puntos de navegación */
.slick-dots {
  bottom: -30px;
}

.slick-dots li button:before {
  font-size: 10px;
}

@media (max-width: 768px) {
  .product-item {
    padding: 15px;
  }

  .section-title {
    font-size: 20px;
  }
}

.final {
  background-color: #eaeaea;
  width: 100%;
  height: 450px;
  margin-top: 30px;
}

.texfinal {
  background-color: #686867;
  width: 100%;
  height: 30px;
  margin-top: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}

.imgfinal1 {
  display: flex;
  width: 50%;
  height: 80%;
  justify-content: center;
  align-items: center;
  gap: 160px;
  margin-left: 460px;
}

.modal::backdrop {
  background-color: #eaeaea7a;
}

.modal {
  width: 45%;
  height: 51%;
  border-radius: 10px;
  position: absolute;
  top: 50%;
  left: 25%;
  box-shadow: 0 2px 2px rgba(254, 251, 251, 0.896);
}

.stilomodal {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
  width: 100%;
}

h2 {
  color: #333;
  margin-bottom: 20px;
  text-align: center;
}

.form-group {
  margin-bottom: 20px;
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: #555;
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
  box-sizing: border-box;
}

textarea {
  resize: vertical;
  min-height: 100px;
}

.btn-submit {
  background-color: #f7e869ea;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  width: 100%;
  transition: background-color 0.3s;
}

.btn-submit:hover {
  background-color: #ffc933bd;
}

.request-label {
  font-weight: bold;
  margin-top: 20px;
  color: #333;
}

.form2 {
  margin-bottom: 10px;
  width: 420px;
}

.intform2 {
  width: 100%;
  padding: 12px;
  border-radius: 40px;
  font-size: 18px;
  border: none;
}
.formmjs {
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: 200;
  margin-left: 120px;
  margin-bottom: 10px;
  animation: desaparecer 5s forwards;
}
@keyframes desaparecer {
  0% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    display: none;
  }
}
.btnform2 {
  background-color: #f7e869ea;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 30px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  width: 60%;
  transition: background-color 0.3s;
}

.btnform2:hover {
  background-color: #ffc933bd;
}

.text_form2 {
  margin-bottom: 20px;
  margin-top: 20px;
  text-transform: uppercase;
  font-weight: 400;
  color: #3c3b3b;
}

.container_follow {
  display: flex;
  margin-top: 15px;
}

.follow {
  margin-top: 20px;
  font-size: 20px;
  font-weight: 800;
  color: #3c3b3b;
}

.follow_img {
  margin: 22px 0 0 40px;
}

/* === RESPONSIVE DESIGN === */

/* Tablets */
@media (max-width: 1024px) {
  .menu {
    flex-direction: column;
    height: auto;
    padding-bottom: 60px;
  }

  .derecho {
    width: 100%;
  }

  .derecho_menu {
    flex-direction: column;
    align-items: center;
    height: auto;
  }

  .menu2 {
    flex-direction: column;
    align-items: center;
  }

  .menu2 li:not(:last-child)::after {
    content: none;
  }

  .imagenes3 {
    flex-direction: column;
    height: auto;
    align-items: center;
  }

  .imagen1,
  .imagen2,
  .imagen3 {
    width: 90%;
    height: auto;
  }

  .muestra {
    flex-wrap: wrap;
    height: auto;
    justify-content: center;
  }

  .recuadro1,
  .recuadro2,
  .recuadro3,
  .recuadro4,
  .recuadro5 {
    width: 80%;
    margin: 20px auto;
    position: static;
  }

  .imgfinal1 {
    flex-direction: column;
    width: 100%;
    margin: 0;
    gap: 20px;
    align-items: center;
  }

  .form2 {
    width: 90%;
  }
}

/* Celulares */

@media (max-width: 768px) {
  .header {
    padding: 0 20px;
    justify-content: center;
    height: 65px; /* Asegura que tenga altura fija */
  }

  .menu {
    flex-direction: column;
    height: auto;
    padding-bottom: 60px;
    margin-top: 65px; /* Previene que se superponga con el header */
  }

  .slider_cont {
    height: 0px;
  }

  .texini {
    height: auto;
    flex-direction: column;
  }

  .final {
    height: auto;
    padding: 20px 0;
  }

  .texfinal {
    font-size: 14px;
    text-align: center;
  }

  .modal {
    width: 90%;
    left: 5%;
    top: 40%;
    height: auto;
  }

  .stilomodal {
    padding: 20px;
  }

  .btnform2 {
    width: 90%;
  }

  .container_follow {
    flex-direction: column;
    align-items: center;
  }

  .follow_img {
    margin: 10px 0 0 0;
    display: flex;
    gap: 15px;
  }

  .recuadro3 img,
  .recuadro4 img,
  .recuadro5 img {
    width: 100% !important;
    height: 150px;
  }
}
@media (max-width: 480px) {
  .izquierdo_imagen {
    max-height: 220px;
    width: auto;
  }
}
