/*========== GOOGLE FONTS ==========*/
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Oswald:wght@300;400;700&family=Roboto:wght@100..900&family=Raleway:wght@300;400;700&family=Play&display=swap');

/*========== VARIABLES ==========*/
:root {
  --header-font: 'Bebas Neue', sans-serif;
  --menu-font: 'Raleway', sans-serif;
  --body-font: 'Roboto', sans-serif;
  --highlight-font: 'Oswald', sans-serif;

  /* Tamaños y colores */
  --normal-font-size: 1rem;
  --text-color: black;
  --background-color: #f4f4f4;
  --header-bg-color: #2c3e50;
  --primary-color-1: #e74c3c;
  --primary-color: #e74c3c;
  --new-color: #1d3340;
}

h1 {
  font-size: 2.5rem;
  font-family: var(--header-font);
  color: var(--primary-color);
  letter-spacing: 0.1rem;
}

h2 {
  font-size: 2rem;
  font-family: var(--highlight-font);
  color: var(--text-color);
}

p {
  font-size: 1rem;
  font-family: var(--body-font);
  line-height: 1.6;
  color: var(--text-color);
}

/* GENERAL STYLES */
*,
::before,
::after {
  box-sizing: border-box;
}

body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--background-color);
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}


/*========== HEADER ==========*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--primary-color-1);
  padding: 0 1rem;
  z-index: 100;
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 3.5rem;
}

.header__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.header__img {
  margin-right: 100px;
  width: 180px;
  border-radius: 15px;
}

.header__toggle {
  font-size: 2rem;
  color: var(--background-color);
  cursor: pointer;
}

/* Estilo para el contenedor de búsqueda */


.header__search {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 1rem;
}

.header__search h1 {
  font-size: 2rem;
  margin: 0;
  font-weight: bold;
  font-family: 'Comic Sans MS', cursive;
  font-size: 24px;
  color: var(--background-color);
}

@media (max-width: 768px) {
  .header__search h1 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .header__search {
    padding: 0.5rem;
  }

  .header__search h1 {
    font-size: 1.2rem;
    line-height: 1.4;
  }
}

/*========== NAV ==========*/
.nav {
  position: fixed;
  top: 0;
  left: -100%;
  height: 100vh;
  padding: 2rem 2rem 0;
  background-color: var(--primary-color-1);
  box-shadow: 2px 0 0 rgba(22, 8, 43, 0.1);
  z-index: 100;
  transition: .4s;
}

.nav__container {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 3rem;
  overflow: auto;
  scrollbar-width: none;
}

.nav__container::-webkit-scrollbar {
  display: none;
}

.nav_link {
  text-decoration: none;
}

.nav_logo {
  display: flex;
  align-items: center;
}

.nav__logo-text {
  font-family: var(--header-font);
  font-size: 55px;
  font-weight: bold;
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav__list,
.nav__items {
  display: grid;
}

.nav__list {
  row-gap: 2.5rem;
}

.nav__items {
  row-gap: 1.5rem;
}

.nav__subtitle {
  font-size: var(--normal-font-size);
  text-transform: uppercase;
  letter-spacing: .1rem;
  color: var(--background-color);
}

.nav__icon {
  font-size: 1.2rem;
  margin-right: .5rem;
  color: var(--background-color);
}

.nav__name {
  font-size: var(--small-font-size);
  font-weight: var(--font-medium);
  white-space: nowrap;
  color: var(--background-color);
}

.nav__logout {
  margin-top: 20rem;
}

.nav__dropdown {
  overflow: hidden;
  max-height: 21px;
  transition: .4s ease-in-out;
}

.nav__dropdown-collapse {
  background-color: var(--background-color);
  border-radius: 1rem;
  margin-top: 1rem;
}

.nav__dropdown-content {
  display: grid;
  row-gap: .5rem;
  padding: .75rem 2.5rem .75rem 1.8rem;
}

.nav__dropdown-item {
  font-size: var(--smaller-font-size);
  font-weight: var(--font-medium);
  color: var(--text-color);
}

.nav_dropdown-icon {
  color: var(--header-bg-color);
}

.nav__dropdown-item:hover {
  color: var(--header-bg-color);
}

.nav__dropdown-icon {
  margin-left: auto;
  transition: .4s;
}

.nav__dropdown:hover {
  max-height: 100rem;
}

.nav__dropdown:hover .nav__dropdown-icon {
  transform: rotate(180deg);
}

.show-menu {
  left: 0;
}

.active {
  color: var(--header-bg-color);
}

/* ========== MEDIA QUERIES ==========*/
@media screen and (min-width: 768px) {
  body {
    padding: 0px 0px 0px 60px;
    margin: 0;
  }

  .header {
    padding: 0 3rem 0 6rem;
  }

  .header__toggle {
    display: none;
  }

  .header__logo {
    width: 200px;
    height: 100px;
  }

  .header__img {
    width: 100px;
    height: 50px;
  }

  .nav {
    left: 0;
    padding: 1.2rem 1.5rem 0;
    width: 68px;
  }

  .nav__items {
    row-gap: 1.7rem;
  }

  .nav__icon {
    font-size: 1.3rem;
  }

  .nav__logo-name,
  .nav__name,
  .nav__subtitle,
  .nav__dropdown-icon {
    opacity: 0;
    transition: .3s;
  }

  .nav:hover {
    width: 219px;
  }

  .nav:hover .nav__logo-name {
    opacity: 1;

  }

  .nav:hover .nav__subtitle {
    opacity: 1;
  }

  .nav:hover .nav__name {
    opacity: 1;
  }

  .nav:hover .nav__dropdown-icon {
    opacity: 1;
  }
}

@media screen and (max-width: 768px) {
  .nav__logo-img {
    max-width: 200px;
  }
}

@media screen and (max-width: 480px) {
  .nav__logo-img {
    max-width: 100px;
  }
}

/* Ajusta los estilos responsivos */
@media (max-width: 768px) {
  .header__container {
    height: auto;
    margin: 5px;

  }

  .header__container a span {
    font-size: 1.5rem;
  }

  .header__img {
    width: 150px;
  }
}


/* ========== Carrusel-slider==========*/
#container-slider {
  position: relative;
  display: block;
  width: 100%;
  margin-top: 0;
  margin-bottom: 40px; /* Ajusta según necesites */
}

.main-container {
  padding-top: 60px;
  min-height: 100vh;
}

#container-slider {
  width: 100%;
  height: calc(100vh - 60px);
  background: var(--background-color);
  position: relative;
}

.carousel-container {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.carousel {
  display: flex;
  transition: transform 0.5s ease-in-out;
  height: 100%;
  width: 100%;
}

.carousel-item {
  min-width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background:var(--header-bg-color);
}

.carousel-item img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

/* Media query para pantallas más anchas que altas */
@media (min-aspect-ratio: 16/9) {
  .carousel-item img {
    width: 100%;
    height: auto;
  }
}

/* Media query para pantallas más altas que anchas */
@media (max-aspect-ratio: 16/9) {
  .carousel-item img {
    height: 100%;
    width: auto;
  }
}

.carousel-item .loading-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--background-color);
}

.carousel-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: var(--background-color);
  padding: 1rem;
  border: none;
  cursor: pointer;
  z-index: 1;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.carousel-button:hover {
  background: rgba(0, 0, 0, 0.8);
}

.carousel-button:focus {
  outline: 2px solid white;
  outline-offset: 2px;
}

.carousel-button-prev {
  left: 20px;
}

.carousel-button-next {
  right: 20px;
}

.carousel-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 2;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  padding: 0;
}

.dot.active {
  background: var(--background-color);
  transform: scale(1.2);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

#additional-section {
  padding: 2rem;
  background: var(--background-color);
  min-height: 100vh;
}

@media (max-width: 768px) {
  .carousel-button {
    width: 40px;
    height: 40px;
    padding: 0.5rem;
  }

  .carousel-button-prev {
    left: 10px;
  }

  .carousel-button-next {
    right: 10px;
  }

  .dot {
    width: 10px;
    height: 10px;
  }
}
/* Animación de aparición desde abajo */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate(-50%, 20px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

/* Estilos de la caja del carrusel */
.carousel-caption {
  position: absolute;
  bottom: 10%; /* Bajando más la caja */
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: var(--background-color);
  width: 80%;
  max-width: 800px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 8px;
  z-index: 1;
  opacity: 0; /* Inicialmente oculta */
  animation: fadeInUp 1s ease-out 0.5s forwards; /* Aparece suavemente */
}
.carousel-caption p {
  font-size: 1.2rem;
  line-height: 1.5;
  margin-bottom: 0;
  color: var(--background-color); /* Texto en color blanco */
}

/* Ajustes responsivos */
@media (max-width: 768px) {
  .carousel-caption {
    bottom: 8%;
    width: 90%;
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .carousel-caption {
    bottom: 5%;
    padding: 10px;
  }
}

/*-----------------------------*/
/* Contenedor de las novedades */
/*-----------------------------*/
.novedades-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  padding: 20px;
}

/* Tarjetas de novedades */
.novedad {
  flex: 1;
  min-width: 300px;
  max-width: 32%;
  background-color: var(--header-bg-color);
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  padding: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.novedad:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.novedad-img,
.novedad-video {
  width: 100%;
  height: 250px;
  border-radius: 8px;
  margin-bottom: 15px;
  object-fit: cover;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Títulos y descripción */
.title {
  font-size: 20px;
  color: var(--background-color);
  margin: 10px 0;
  text-align: left;
  font-weight: bold;
}

.description {
  font-size: 15px;
  color: var(--background-color);
  text-align: justify;
  margin-bottom: 10px;
}

/* Autor y fecha */
.author {
  font-size: 14px;
  color: var(--background-color);
  margin-bottom: 15px;
  text-align: left;
}

.author a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.author a:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

/* Header de categorías y fechas */
.Fecha {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: bold;
  color: var(--primary-color);
}

/* Estilo para el botón "Ver más" */
.ver-mas-btn {
  display: inline-block;
  padding: 12px 25px;
  background-color: var(--primary-color);
  color: var(--background-color);
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
  text-align: center;
  transition: background-color 0.3s ease, transform 0.2s ease;
  cursor: pointer;
}

.ver-mas-btn:hover {
  background-color:var(--primary-color);
  transform: scale(1.05);
}

.novedad-video-container {
  max-width: 100%;
  margin-bottom: 15px;
}

/* Responsividad */
@media (max-width: 1024px) {
  .novedad {
    max-width: 48%;
  }
}

@media (max-width: 768px) {
  .novedades-container {
    flex-direction: column;
    gap: 15px;
  }

  .novedad {
    max-width: 100%;
  }
}

/*-------------------*/
/* Sección OFRECEMOS*/
/*-----------------*/
.content1,
.content2 {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  gap: 20px;
}

.content1 .imagen1,
.content2 .imagen2 {
  flex: 1;
  max-width: 50%;
}

.content1 .texto1,
.content2 .texto2 {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: justify;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

       /* ************************* */
        /*     Sección Clientes      */
        /* ************************* */

        /* Contenedor principal con scroll horizontal */
        .scroll-container {
          width: 100%;
          overflow-x: auto;
          white-space: nowrap;
          padding: 20px 0;
      }

      .container {
          display: flex;
          flex-wrap: nowrap;
          justify-content: flex-start;
          gap: 20px;
          padding: 0 20px;
      }

      /* Estilo para cada tarjeta de cliente */
      .client-card {
          display: flex;
          flex-direction: column;
          align-items: center;
          min-width: 200px;
          margin: 10px;
          box-sizing: border-box;
          cursor: pointer;
          position: relative;
          transition: transform 0.3s ease;
          background-color: #fff;
          border-radius: 8px;
          box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
          overflow: hidden;
      }

      .client-card:hover {
          transform: translateY(-5px);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      }

      .client-card img {
          width: 100%;
          height: auto;
          object-fit: cover;
          border-radius: 8px 8px 0 0;
      }

      /* Breve información */
      .brief-info {
          font-weight: bold;
          margin: 15px 0;
          text-align: center;
          width: 100%;
          padding: 0 10px;
          white-space: normal;
          color: #333;
      }

      /* Estilo para el cuadro de información flotante */
      .info-modal {
          display: none;
          position: fixed;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          background-color: rgba(0, 0, 0, 0.5);
          z-index: 1000;
          justify-content: center;
          align-items: center;
      }

      .info-content {
          background-color: #fff;
          padding: 30px;
          width: 90%;
          max-width: 600px;
          max-height: 80vh;
          overflow-y: auto;
          border-radius: 8px;
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
          position: relative;
          animation: modalFadeIn 0.3s ease;
      }

      @keyframes modalFadeIn {
          from {
              opacity: 0;
              transform: translateY(-20px);
          }
          to {
              opacity: 1;
              transform: translateY(0);
          }
      }

      .info-content img {
          width: 100%;
          height: auto;
          margin: 15px 0;
          border-radius: 6px;
      }

      .info-content p {
          margin: 15px 0;
          color: #444;
          line-height: 1.8;
          text-align: left;
          white-space: normal;
      }

      .modal-title {
          font-size: 1.4rem;
          color: #222;
          margin-bottom: 15px;
          padding-bottom: 10px;
          border-bottom: 1px solid #eee;
      }

      /* Botón para cerrar la información flotante */
      .close-btn {
          position: absolute;
          top: 15px;
          right: 15px;
          font-size: 18px;
          font-weight: bold;
          color: #fff;
          background-color: #ff6347;
          border-radius: 50%;
          width: 30px;
          height: 30px;
          display: flex;
          align-items: center;
          justify-content: center;
          cursor: pointer;
          box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
          transition: background-color 0.3s;
      }

      .close-btn:hover {
          background-color: #ff4500;
      }

      /* Scrollbar personalizada */
      .scroll-container::-webkit-scrollbar {
          height: 8px;
      }

      .scroll-container::-webkit-scrollbar-track {
          background: #f1f1f1;
      }

      .scroll-container::-webkit-scrollbar-thumb {
          background: #888;
          border-radius: 4px;
      }

      .scroll-container::-webkit-scrollbar-thumb:hover {
          background: #555;
      }

      /* Estilo responsivo */
      @media (max-width: 1200px) {
          .client-card {
              min-width: 180px;
          }
      }

      @media (max-width: 900px) {
          .client-card {
              min-width: 150px;
          }
      }

      @media (max-width: 600px) {
          .container {
              flex-direction: column;
              white-space: normal;
          }
          
          .client-card {
              min-width: 100%;
          }
          
          .info-content {
              width: 95%;
              padding: 20px;
          }
      }




/* respuestas */
.responder-btn,
.toggle-respuestas-btn {
  background-color: #008CBA;
  /* Azul */
  color: white;
  border: none;
  padding: 10px 15px;
  margin: 5px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.3s ease, transform 0.2s;
}

.responder-btn:hover,
.toggle-respuestas-btn:hover {
  background-color: #005f7f;
  /* Azul más oscuro */
  transform: scale(1.05);
}

.responder-btn:active,
.toggle-respuestas-btn:active {
  transform: scale(0.95);
}

.respuesta-form {
  display: none;
  margin-top: 10px;
  padding: 10px;
  background: #f1f1f1;
  border-radius: 5px;
}

.respuesta-form input,
.respuesta-form textarea {
  width: 100%;
  padding: 8px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 14px;
}

.respuesta-form button {
  background-color: #4CAF50;
  /* Verde */
  color: white;
  border: none;
  padding: 8px 12px;
  margin-top: 5px;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.respuesta-form button:hover {
  background-color: #367c39;
  /* Verde más oscuro */
}

.respuestas {
  margin-top: 10px;
  padding: 10px;
  background: #f9f9f9;
  border-left: 3px solid #008CBA;
  border-radius: 5px;
}

.respuesta {
  margin-top: 5px;
  padding: 5px;
  background: #ffffff;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.responder-btn {
  background: #3498db;
  color: white;
  padding: 5px 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 5px;
  font-size: 14px;
  transition: background 0.3s ease;
}

.responder-btn:hover {
  background: #2980b9;
}

.respuestas {
  margin-top: 10px;
  padding-left: 20px;
  border-left: 2px solid #ddd;
  display: none;
  /* Ocultas por defecto */
}

.respuesta {
  background: #dfe6e9;
  padding: 10px;
  margin-top: 5px;
  border-radius: 5px;
}

/* Estilos generales */
.container-come {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  background: #2c3e50;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  font-family: 'Poppins', sans-serif;
}

/* Contenedor de Feedback */
.feedback-container {
  flex: 1;
  padding: 30px;
  text-align: center;
  border-right: 3px solid #ddd;
  background: #34495e;
  border-radius: 10px 0 0 10px;
}

.feedback-container h1 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #e74c3c;
}

.feedback-container p {
  color: white;
}

.emoji-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 20px 0;
}

.emoji {
  font-size: 40px;
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease;
  border-radius: 50%;
  padding: 5px;
}

.emoji:hover {
  transform: scale(1.2);
  background: rgba(255, 255, 255, 0.2);
}

.emoji.active {
  transform: scale(1.3);
  border: 3px solid #007bff;
  padding: 5px;
}

.categories {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.category-btn {
  padding: 10px 15px;
  border: 2px solid #e74c3c;
  border-radius: 25px;
  background: white;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s ease;
}

.category-btn.active {
  background-color: #007bff;
  color: white;
}

.category-btn:hover {
  background: #e74c3c;
  color: white;
}

/* Estilos para el input */
.input-field {
  width: 90%;
  max-width: 400px;
  padding: 12px 15px;
  font-size: 16px;
  border: 2px solid #ddd;
  border-radius: 8px;
  outline: none;
  transition: all 0.3s ease;
  background: white;
  color: #333;
  box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.1);
}

.input-field::placeholder {
  color: #aaa;
  font-style: italic;
}

.input-field:focus {
  border-color: #e74c3c;
  box-shadow: 0px 0px 8px rgba(231, 76, 60, 0.5);
  background: #fdfdfd;
}

textarea {
  width: 90%;
  height: 80px;
  margin: 10px 0;
  padding: 10px;
  border: 2px solid #ddd;
  border-radius: 5px;
  resize: none;
  font-size: 14px;
}

.submit-btn {
  padding: 10px 20px;
  background: #4CAF50;
  color: white;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-size: 16px;
  transition: background 0.3s ease;
}

.submit-btn:hover {
  background: #45a049;
}

/* Sección de comentarios */
.comments-section {
  flex: 1;
  padding: 40px;
  max-height: 600px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 0 10px 10px 0;
  box-shadow: inset 0px 4px 8px rgba(0, 0, 0, 0.1);
  width: 100%;
}

.comments-section h1 {
  width: 100%;
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  padding: 25px 0;
  color: #ff6347;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* Diseño Responsive */
@media (max-width: 768px) {
  .container-come {
    flex-direction: column;
  }

  .feedback-container,
  .comments-section {
    border-radius: 10px;
    padding: 20px;
  }

  .comments-section {
    max-height: 400px;
    overflow-y: auto;
    width: 100%;
  }

  .comment {
    width: 100%;
  }
}

.center {
  text-align: center;
}

/* Contenedor de comentarios */
.comment {
  width: 90%;
  max-width: 600px;
  background: #ecf0f1;
  padding: 15px;
  margin: 10px 0;
  border-radius: 10px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

.comment p {
  margin: 5px 0;
  color: #333;
}

.comment strong {
  color: #e74c3c;
}

.comment span {
  font-size: 20px;
}

.comment em {
  color: #555;
  font-style: italic;
}

/* Botón de responder */
.reply-btn {
  background: #3498db;
  color: white;
  padding: 5px 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 5px;
  font-size: 14px;
  transition: background 0.3s ease;
}

.reply-btn:hover {
  background: #2980b9;
}

/* Contenedor de respuestas */
.replies {
  margin-top: 10px;
  padding-left: 20px;
  border-left: 2px solid #ddd;
  display: none;
  /* Ocultas por defecto */
}

.replies .comment {
  background: #dfe6e9;
}

/* Estilos para el campo de respuesta */
.reply-field {
  display: flex;
  flex-direction: column;
  margin-top: 10px;
}

.reply-input {
  width: 100%;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.reply-submit {
  background: #27ae60;
  color: white;
  border: none;
  padding: 5px 10px;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 5px;
  font-size: 14px;
  transition: background 0.3s ease;
}

.reply-submit:hover {
  background: #2ecc71;
}

.respuesta-form {
  display: none;
  background-color: #f9f9f9;
  padding: 10px;
  border-radius: 8px;
  margin-top: 10px;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}

.respuesta-form input,
.respuesta-form textarea {
  width: 100%;
  padding: 8px;
  margin-bottom: 8px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 14px;
}

.respuesta-form textarea {
  resize: vertical;
  min-height: 60px;
}

.respuesta-form button {
  background-color: #007bff;
  color: white;
  border: none;
  padding: 8px 12px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.3s;
}

.respuesta-form button:hover {
  background-color: #0056b3;
}

/* Ajustes para pantallas pequeñas */
@media (max-width: 600px) {

  .respuesta-form input,
  .respuesta-form textarea {
    font-size: 12px;
    padding: 6px;
  }

  .respuesta-form button {
    font-size: 12px;
    padding: 6px 10px;
  }
}




/* Separador-Titulos*/
.separador {
  text-align: center;
  padding: 40px 20px;
  border-radius: 10px;
  margin-bottom: 40px;

}

/* Estilos para el título dentro de la sección separadora */
.separador h2 {
  color: #2c3e50;
  padding: 15px 20px;
  display: inline-block;
  border-radius: 50px;
  font-size: 2.5rem;
  font-weight: bold;
  margin: 0;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.separador h2:hover {
  background-color: #dc3545;
  transform: translateY(-5px);
}

/* WhatsApp-Flotante*/
.container-boton {
  background-color: #1e5128;
  border: 1px solid #fff;
  position: fixed;
  z-index: 999;
  border-radius: 100%;
  bottom: 15px;
  right: 15px;
  padding: 15px;
  transition: ease 0.3s;
  animation: efecto 1.2s infinite;
}

.container-boton:hover {
  transform: scale(1.1);
  transition: 0.3s;
}

.boton {
  width: 60px;

  transition: ease 1s;
}

@keyframes efecto {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.85);
  }

  100% {
    box-shadow: 0 0 0 25px rgba(0, 0, 0, 0);
  }
}



/* FOOTER GENERAL */
.footer {
  background-color: #2c3e50;
  color: #ecf0f1;
  padding: 40px 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  border-top: 5px solid #e74c3c;
}

/* TÍTULOS */
.footer h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #e74c3c;
  font-family: "Yatra One", system-ui;
}

/* SECCIÓN CONTACT INFO */
.contact-info {
  width: 48%;
  margin-right: 20px;
  padding-right: 20px;
  border-right: 2px solid white;
}

.contact-info p {
  font-size: 1rem;
  line-height: 1.5;
}

.contact-info hr {
  border: 1px solid #fff;
  margin: 10px 0;
}

/* SECCIÓN REDES SOCIALES */
.social-media {
  width: 48%;
}

.social-media h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.social-media .separator {
  width: 60px;
  height: 2px;
  background-color: #e74c3c;
  margin-bottom: 15px;
}

.social-media p {
  font-size: 1rem;
  margin-bottom: 20px;
}

/* ITEMS DE REDES SOCIALES */
.social-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.social-item a {
  color: white;
  font-size: 1.8rem;
  margin-right: 15px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-item a:hover {
  color: #e74c3c;
  transform: scale(1.1);
}

.description {
  font-size: 1rem;
  color: black;
}

/* SECCIÓN SUGERENCIAS */
.sugerencias {
  margin-top: 20px;
}

.sugerencias h3 {
  font-size: 1.2rem;
  color: #e74c3c;
  margin-bottom: 10px;
}

.sugerencias form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.sugerencias input,
.sugerencias textarea {
  width: 100%;
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #e74c3c;
  border-radius: 5px;
  background-color: white;
  color: black;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}

.sugerencias input:focus,
.sugerencias textarea:focus {
  border-color: var(--header-bg-color);
  background-color: var(--background-color);
  outline: none;
}

.sugerencias textarea {
  resize: none;
  height: 100px;
}

.sugerencias button {
  padding: 10px 20px;
  font-size: 1rem;
  font-weight: bold;
  color: var(--background-color);
  background-color: var(--primary-color);
  border: none;
  border-radius: 15px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.sugerencias button:hover {
  background-color: var(--primary-color);
  transform: scale(1.05);
}

.sugerencias button:active {
  transform: scale(1);
}

/* MEDIA QUERY PARA RESPONSIVE */
@media (max-width: 768px) {
  .footer {
    flex-direction: column;
    align-items: center;
  }

  .contact-info,
  .social-media {
    width: 100%;
    margin-bottom: 30px;
    padding: 0;
    border: none;
  }

  .contact-info h3,
  .social-media h3 {
    text-align: center;
  }

  .social-item {
    justify-content: center;
  }
}

#mensajeFlotante {
  position: fixed;
  top: 20px;
  right: 20px;
  background: #4CAF50;
  color: white;
  padding: 15px;
  border-radius: 5px;
  display: none;
  z-index: 1000;
}