@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200;400;600&display=swap");
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: 'Oswald', sans-serif;
}

html, body {
  max-width: 100% !important;
  overflow-x: hidden !important;
  scroll-behavior: smooth;
}

.btn-wsp {
  position: fixed;
  z-index: 999;
  right: 40px;
  bottom: 40px;
  cursor: pointer;
  -webkit-animation: resaltar .7s linear infinite alternate;
          animation: resaltar .7s linear infinite alternate;
}

.btn-wsp img {
  width: 120%;
  height: 120%;
}

.btn-wsp:hover {
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}

@media (max-width: 700px) {
  .btn-wsp {
    right: 20px;
    bottom: 15px;
  }
  .btn-wsp img {
    width: 90%;
    height: 90%;
  }
}

@media (min-width: 1500px) {
  .btn-wsp {
    right: 100px;
    bottom: 100px;
  }
  .btn-wsp img {
    width: 250%;
    height: 250%;
  }
}

.btn-consultar {
  text-align: center;
  border-radius: 10px;
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 600;
  margin: auto auto;
  padding: 20px 30px;
  background-color: #FFC504;
  cursor: pointer;
  text-decoration: none;
  color: #070707;
  -webkit-transition: all .5s;
  transition: all .5s;
}

.btn-consultar:hover {
  background-color: rgba(27, 165, 50, 0.767);
  -webkit-transform: scale(1.07);
          transform: scale(1.07);
  -webkit-box-shadow: 1px 2px 15px #bcbcbc;
          box-shadow: 1px 2px 15px #bcbcbc;
  -webkit-transition: all .5s;
  transition: all .5s;
}

.fondo {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.3)), color-stop(75%, rgba(0, 0, 0, 0.7)), to(#000)), url("../assets/portada.jpg");
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.4) 75%, #000 100%), url("../assets/portada.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  width: 100vw;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  z-index: -1;
}



.fondo .pagina-principal {
  width: 100vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-block: 20px;
}

@media (min-width: 310px) and (min-height: 680px) {
  .fondo .pagina-principal {
    height: 100vh;
    padding-block: 40px;
  }
}

.fondo .pagina-principal .titulo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  width: 600px;
  min-height: 300px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 40px 30px;
  color: #fff;
  text-align: center;
}

.fondo .pagina-principal .titulo img {
  margin: auto auto;
}

@media (max-width: 330px) and (max-height: 680px) {
  .fondo .pagina-principal .titulo img {
    width: 80px;
    height: 80px;
  }
}

.fondo .pagina-principal .titulo h1 {
  font-size: 40px;
  text-transform: uppercase;
}

.fondo .pagina-principal .titulo h2 {
  margin: auto auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 15px 35px;
  background-color: rgba(0, 0, 0, 0.404);
  color: #cce200;
  font-weight: 500;
  border-radius: 12px;
}

.fondo .pagina-principal .titulo ul {
  text-align: left;
  margin: auto auto;
  font-size: 20px;
  padding: 25px 55px;
  background-color: rgba(250, 250, 250, 0.199);
  color: black;
  border-radius: 12px;
}

@media (max-width: 320px) {
  .fondo .pagina-principal .titulo ul {
    font-size: 15px;
    padding: 10px 30px;
  }
}

@media (min-width: 1600px) {
  .fondo .pagina-principal .titulo h1 {
    font-size: 35px;
  }
  .fondo .pagina-principal .titulo h2 {
    font-size: 2.4em;
  }
  .fondo .pagina-principal .titulo ul {
    font-size: 25px;
    padding-inline: 50px;
  }
  .fondo .pagina-principal .titulo a {
    font-size: 30px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}

.fondo .informacion {
  display: flex;
  flex-wrap: wrap; /* Permite que los elementos se ajusten en filas */
  width: 100vw;
  padding: 30px 50px;
  color: #fff;
  justify-content: space-around;
}

.fondo .informacion section {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1 1 30%; /* Permite que las secciones se expandan */
  margin: 10px; /* Agrega espacio entre secciones */
  max-width: 300px; /* Limita el ancho máximo */
}

.fondo .informacion section h2 {
  text-align: center;
  font-size: 25px;
}

.fondo .informacion section .contador {
  color: rgba(26, 175, 51, 0.767);
  margin-top: 20px;
  padding: 10px 30px;
  background: rgba(88, 88, 88, 0.233);
  text-align: center;
  border-radius: 15px;
  font-size: 35px;
  font-weight: 700;
}

.fondo .informacion section img {
  margin-bottom: 15px;
  width: 50px; /* Asegura que las imágenes sean responsivas */
  height: auto; /* Mantiene la proporción de la imagen */
}

@media (max-width: 700px) {
  .fondo .informacion {
      padding: 20px; /* Reduce el padding en pantallas pequeñas */
  }
  .fondo .informacion section {
      flex: 1 1 100%; /* Hace que cada sección ocupe toda la fila */
      max-width: none; /* Permite que cada sección tenga su ancho completo */
  }
  .fondo .informacion section h2 {
      font-size: 20px;
  }
  .fondo .informacion section .contador {
      font-size: 30px;
      font-weight: 600;
      padding: 10px 20px;
  }
}

.servicios {
  width: 100vw;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.3)), color-stop(75%, rgba(0, 0, 0, 0.7)), to(#000)), rgba(0, 0, 0, 0.966);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 75%, #000 100%), rgba(0, 0, 0, 0.966);
  padding: 30px 70px;
  color: #fff;
}

.servicios h2 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-size: 40px;
  text-align: center;
  border-bottom: 3px solid #551111;
  margin-bottom: 30px;
}

@media (max-width: 700px) {
  .servicios {
    padding: 20px 10px;
  }
}

.servicios .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.servicios .container section {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 750px) {
  .servicios .container section {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    padding: 20px;
  }
  .servicios .container section img {
    width: 60%;
  }
  .servicios .container section .texto a {
    margin-top: 20px;
  }
}

@media (max-width: 550px) {
  .servicios .container section {
    padding: 0px;
  }
  .servicios .container section img {
    width: 100%;
  }
}

.servicios .container section img {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.servicios .container section .texto {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100%;
  padding-inline: 20px;
}

.servicios .container section .texto h3 {
  font-size: 35px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 7px;
  border-bottom: 3px solid #551111;
}

.servicios .container section .texto p {
  font-size: 20px;
  font-weight: 350;
}

.servicios .container .imagenes {
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.servicios .container .imagenes img {
  width: 160px;
  height: 160px;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 550px) {
  .servicios .container .imagenes img {
    width: 120px;
    height: 120px;
  }
}

@media (max-width: 350px) {
  .servicios .container .imagenes img {
    width: 100px;
    height: 100px;
  }
}

.fondo2 {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.3)), color-stop(75%, rgba(0, 0, 0, 0.7)), to(#000)), url("../assets/amarres-de-amor-velas-fondo.jpg");
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 75%, #000 100%), url("../assets/amarres-de-amor-velas-fondo.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.fondo2 .testimonios {
  width: 100vw;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 30px;
  color: #fff;
}

@media (max-width: 650px) {
  .fondo2 .testimonios {
    padding: 10px;
  }
}

.fondo2 .testimonios h2 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-size: 40px;
  text-align: center;
  border-bottom: 3px solid #551111;
  margin-bottom: 30px;
}

.fondo2 .testimonios .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-column-gap: 20px;
          column-gap: 20px;
  row-gap: 20px;
}

.fondo2 .testimonios .container .testimonio-card {
  border: 1px solid #fff;
  border-radius: 12px;
  padding: 20px;
  min-width: 280px;
  max-width: 350px;
  height: auto;
}

.fondo2 .testimonios .container .testimonio-card .persona {
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  display: -ms-grid;
  display: grid;
  -webkit-column-gap: 20px;
          column-gap: 20px;
      grid-template-areas: "foto nombre nombre" "foto edad dead" "foto pais pais";
  margin-bottom: 15px;
}

.fondo2 .testimonios .container .testimonio-card .persona img {
  -ms-grid-row: 1;
  -ms-grid-row-span: 3;
  -ms-grid-column: 1;
  grid-area: foto;
  border-radius: 50%;
  width: 115px;
  height: 115px;
}

.fondo2 .testimonios .container .testimonio-card .persona .nombre {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
  -ms-grid-column-span: 2;
  grid-area: nombre;
  font-size: 22px;
  padding-bottom: 1px;
}

.fondo2 .testimonios .container .testimonio-card .persona .edad {
  -ms-grid-row: 2;
  -ms-grid-column: 2;
  grid-area: edad;
}

.fondo2 .testimonios .container .testimonio-card .persona .pais {
  -ms-grid-row: 3;
  -ms-grid-column: 2;
  -ms-grid-column-span: 2;
  grid-area: pais;
}

.fondo2 .testimonios .btn-consultar {
  margin-top: 30px;
}

.fondo2 .beneficios {
  margin-block: 20px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  text-align: center;
}

.fondo2 .beneficios .card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 12px;
  background-color: rgba(0, 0, 0, 0.466);
  padding: 20px;
  gap: 15px;
}

@media (max-width: 1500px) {
  .fondo2 .beneficios {
    gap: 120px;
  }
  .fondo2 .beneficios .card h2 {
    font-size: 30px;
  }
}

@media (max-width: 700px) {
  .fondo2 .beneficios .card h2 {
    font-size: 25px;
  }
}

@media (max-width: 500px) {
  .fondo2 .beneficios {
    gap: 20px;
  }
  .fondo2 .beneficios .card h2 {
    font-size: 20px;
  }
}

.fondo2 .formulario-contacto {
  width: 100vw;
  min-height: 500px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 30px 40px;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 480px) {
  .fondo2 .formulario-contacto {
    padding: 20px 20px;
  }
  .fondo2 .formulario-contacto .card {
    padding: 15px;
    border-radius: 12px;
  }
  .fondo2 .formulario-contacto .card h2:nth-child(1) {
    font-size: 30px;
  }
  .fondo2 .formulario-contacto .card h2:nth-child(2) {
    font-size: 20px;
  }
  .fondo2 .formulario-contacto .card p {
    font-size: 15px;
    letter-spacing: 0px;
    padding: 5px;
  }
  .fondo2 .formulario-contacto a {
    margin-top: 35px;
  }
}

.fondo2 .formulario-contacto .card {
  padding: 20px;
  border: 1px solid #fff;
  background-color: rgba(0, 0, 0, 0.76);
  border-radius: 12px;
}

.fondo2 .formulario-contacto .card h2:nth-child(1) {
  font-size: 40px;
  color: #cce200;
}

.fondo2 .formulario-contacto .card h2:nth-child(2) {
  color: #ffffffdc;
  font-size: 30px;
}

.fondo2 .formulario-contacto .card p {
  font-size: 25px;
  margin: auto auto;
  letter-spacing: 3px;
  font-weight: bolder;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border: 2px solid #1c7311;
  padding: 10px;
  border-radius: 10px;
}

.fondo2 .formulario-contacto .flecha {
  margin-top: 20px;
  -webkit-animation: sacudir .7s linear infinite alternate;
          animation: sacudir .7s linear infinite alternate;
}

.fondo2 .formulario-contacto a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  -webkit-animation: resaltar2 .7s linear infinite alternate;
          animation: resaltar2 .7s linear infinite alternate;
}

.politicas {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #030303;
  padding: 20px 15px;
}

.politicas .advertencia {
  margin: auto auto;
  background-color: rgba(255, 255, 255, 0.438);
  padding: 20px;
  max-width: 600px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 15px;
}

.politicas .advertencia h2 {
  text-align: center;
}

.politicas .advertencia ul li {
  color: #4a4b2c;
  margin-left: 20px;
  font-weight: 200;
}

.politicas p {
  color: #bcbcbc;
  text-align: center;
}

@-webkit-keyframes aparecer {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes aparecer {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.ocultar {
  opacity: 0;
}

.animar {
  -webkit-animation: aparecer .5s;
          animation: aparecer .5s;
}

@-webkit-keyframes resaltar {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1.3);
            transform: scale(1.3);
  }
}

@keyframes resaltar {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1.3);
            transform: scale(1.3);
  }
}

@-webkit-keyframes resaltar2 {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
    -webkit-box-shadow: 1px 2px 15px #bcbcbc85;
            box-shadow: 1px 2px 15px #bcbcbc85;
  }
  100% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
    -webkit-box-shadow: 1px 2px 15px #bcbcbc;
            box-shadow: 1px 2px 15px #bcbcbc;
  }
}

@keyframes resaltar2 {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
    -webkit-box-shadow: 1px 2px 15px #bcbcbc85;
            box-shadow: 1px 2px 15px #bcbcbc85;
  }
  100% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
    -webkit-box-shadow: 1px 2px 15px #bcbcbc;
            box-shadow: 1px 2px 15px #bcbcbc;
  }
}

@-webkit-keyframes sacudir {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(12px);
            transform: translateY(12px);
  }
  100% {
    -webkit-transform: translateY(25px);
            transform: translateY(25px);
  }
}

@keyframes sacudir {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(12px);
            transform: translateY(12px);
  }
  100% {
    -webkit-transform: translateY(25px);
            transform: translateY(25px);
  }
}
.chat-widget {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 400px;
  max-width: 90vw;
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  overflow: hidden;
  display: none;
  z-index: 99;
}
.chat-header {
  background-color: #008069;
  color: white;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.chat-header-left {
  display: flex;
  align-items: center;
  position: relative;
}
.chat-header img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 10px;
}
.online-indicator {
  position: absolute;
  top: 30px;
  left: 30px;
  width: 18px;
  height: 18px;
  background-color: #4CAF50;
  border-radius: 50%;
  border: 2px solid #008069;
}
.chat-header h3, .chat-header p {
  margin: 0;
}
.chat-header p {
  font-size: 0.8em;
  opacity: 0.8;
}
.close-btn {
  cursor: pointer;
  font-size: 40px;
  transition: color 0.3s ease;
}
.close-btn:hover {
  color: #e0e0e0;
}
.chat-body {
  padding: 15px;
  background-color: #f0f0f0;
  height: 250px;
  overflow-y: auto;
  background-image: url('../assets/fondo-chat.webp');
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.chat-message {
  background-color: white;
  padding: 10px;
  border-radius: 5px;
  margin-bottom: 10px;
  max-width: 80%;
  align-self: flex-start;
}
.chat-button {
  background-color: #FFA400;
  color: black;
  border: none;
  padding: 12px 20px;
  border-radius: 25px;
  font-size: 16px;
  cursor: pointer;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px auto 0;
  transition: background-color 0.3s ease;

}
.chat-button:hover {
  background-color: #128C7E;
}
.chat-button i {
  margin-right: 8px;
}
.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
  border: none;
  outline: none;
  text-decoration: none;
  font-size: 30px;
  transition: background-color 0.3s ease;
}
.whatsapp-btn:hover {
  background-color: #128C7E;
}

@media (max-width: 480px) {
  .chat-widget {
      width: 90vw;
      bottom: 70px;
      right: 5vw;
  }
  .whatsapp-btn {
      width: 50px;
      height: 50px;
      font-size: 24px;
  }
}



/*# sourceMappingURL=index.css.map */