:root {
  --main-color: #0088e0;
  --second-color: #14c3c8;
  --light-color: #0ba9f9;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font: inherit;
  position: relative;
  min-width: 0;
}
@font-face {
  font-family: "Roseau";
  src: url(../font/Roseau.otf);
}
@font-face {
  font-family: "Acumin";
  src: url(../font/Acumin.otf);
}
html {
  color-scheme: dark light;
  margin: 0;
  padding: 0;
  min-height: 100dvh;
}
body {
  min-height: 100dvh;
}

h1,
h2,
h3,
h4 {
  text-wrap: balance;
}
p {
  text-align: balance;
}
img,
picture,
svg,
video {
  display: block;
  max-width: 100%;
}

.container-fluid {
  margin: 0;
  padding: 0;
}
.bannermain {
  background-image: url("../img/banner2.png");
  background-size: cover;
  background-position: top center;
  height: 20dvh;
}
@media (min-width: 720px) {
  .bannermain {
    height: 50dvh !important;
  }
}
/* Top */
.social-top {
  background-color: var(--main-color);
  height: 30px;
}
.lema {
  font-family: "Roseau", serif;
  letter-spacing: 2px;
  font-size: 14px;
}
.social-top a i {
  color: white;
  font-size: 20px;
  padding-inline: 10px;
}
/* Navbar */
.navbar {
  height: 70px;
  background-color: whitesmoke;
  font-family: "Acumin", serif;
  letter-spacing: 2px;
  position: sticky;
  top: 0;
  z-index: 100000;
}
.navbar img {
  height: 55px;
}
.nav-items {
  height: 100%;
}
.btn-cerrar,
.btn-cerrar:hover {
  color: var(--main-color);
  font-weight: bold;
  font-size: 25px;
  border-radius: 20px;
  border: 0;
}
#dropdown-nav,
.nav-item,
.nav-item a {
  border: none;
  color: var(--main-color);
  text-decoration-line: none;
  height: 60px;
  border-radius: 5px 5px 0px 0px;
}
.btn-group:hover .dropdown-menu {
  display: block;
  position: absolute;
  top: 100%;
  right: 0;
  left: auto;
}

.dropdown-toggle::after {
  display: none;
}
.dropdown-menu {
  border: none;
  border-left: 3px solid rgb(202, 202, 202);
}
.dropdown-item {
  background-color: white;
  color: var(--main-color);
}
.dropdown-item:hover {
  background-color: var(--main-color);
  color: white;
}
.titles-top-main {
  color: var(--main-color);
  font-weight: bold;
  font-family: "Acumin", serif;
}

.titles-top {
  color: white;
  font-family: "Acumin", serif;
  font-weight: bold;
}
.top-small {
  display: flex;
  background-color: var(--main-color);
  height: 30px;
}
.top-small a i {
  color: white;
  font-size: 20px;
  padding-inline: 10px;
}
/* Main */
main {
  font-family: "Acumin", serif;
  margin-block: 30px;
}
.products {
  background: rgb(0,136,224);
background: -moz-linear-gradient(180deg, rgba(0,136,224,1) 36%, rgba(255,255,255,1) 63%);
background: -webkit-linear-gradient(180deg, rgba(0,136,224,1) 36%, rgba(255,255,255,1) 63%);
background: linear-gradient(180deg, rgba(0,136,224,1) 36%, rgba(255,255,255,1) 63%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0088e0",endColorstr="#ffffff",GradientType=1);
}

.card {
  -webkit-box-shadow: 0px 0px 28px 0px rgba(38, 38, 38, 0.5);
  -moz-box-shadow: 0px 0px 28px 0px rgba(38, 38, 38, 0.5);
  box-shadow: 0px 0px 28px 0px rgba(38, 38, 38, 0.5);
  color: white;
  border: none;
}

.zoomable {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 100000;
}

.lightbox img {
  max-width: 100%; /* Antes era 90%, ahora más grande */
  max-height: 90%; /* Antes era 80%, ahora más alto */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  transition: transform 0.3s ease-in-out;
}

.lightbox .close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
  outline: none;
}

.full-screen-menu {
  position: fixed;
  top: 0;
  left: 100%; /* Comienza fuera de la pantalla a la derecha */
  width: 100%;
  height: 100%;
  background-color: whitesmoke;
  z-index: 1000000;
  display: block; /* Mantén el display como block */
  transform: translateX(0);
  transition: transform 0.3s ease-in-out; /* Duración y tipo de transición */
}

.full-screen-menu.active {
  transform: translateX(-100%); /* Mueve el modal a la pantalla */
}

#btn-nav-small {
  background-color: var(--main-color);
  color: white;
  font-family: "Acumin", serif;
  letter-spacing: 2px;
  font-weight: bold;
  margin-top: 4px;
}
#btn-nav-small2 {
  background-color: white;
  color: var(--main-color);
  font-family: "Acumin", serif;
  letter-spacing: 2px;
  font-weight: bold;
  margin-top: 4px;
}

footer {
  background-color: var(--main-color);
  font-family: "Acumin", serif;
}

.footer-logo img {
  width: 20%;
  margin-left: 30%;
}

.footer-widget-heading h4 {
  width: 20%;
  border-bottom: 2px solid white;
}

.footer-widget {
  color: white;
  font-family: "Acumin", serif;
  font-size: 15px;
}
.footer-social {
  font-size: 25px;
  letter-spacing: 5px;
}
.footer-social a i {
  color: white;
}
@media (max-width: 991px) {
  .footer-logo img {
    width: 20%;
    margin: auto;
  }
}
@media (max-width: 767px) {
  .footer-widget-heading {
    width: 40%;
    margin-left: 30%;
    margin-right: 30%;
  }
  .footer-widget-heading h4 {
    width: 100%;
    margin: auto;
  }
}

.copyright-area {
  background-color: white;
  align-items: center;
  color: var(--main-color);
}
.copyright-text {
  color: var(--light-color);
  letter-spacing: 0px;
}
.copyright-text a {
  color: var(--main-color);
  letter-spacing: 0px;
  text-decoration-line: none;
}
.subscribe-form input,
.subscribe-form input:active {
  width: 100%;
  background-color: white;
  color: rgb(54, 54, 54);
  padding-inline: 20px;
  border-radius: 5px;
  padding-block: 5px;
  border: 2px solid white;
}
.subscribe-form input ::placeholder {
  color: var(--main-color);
}

p {
  margin: 0;
}

/* Test */
#buttontop {
  display: inline-block;
  background-color: var(--light-color);
  width: 40px;
  height: 40px;
  text-align: center;
  border-radius: 10px;
  position: fixed;
  bottom: 95px;
  right: 35px;
  border: none;
  border-bottom: 1px solid white;
  border-right: 1px solid white;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}
#buttontop::after {
  content: "\f077";
  font-family: FontAwesome;
  font-style: normal;
  font-size: 1em;
  color: #fff;
}
#buttontop:hover {
  cursor: pointer;
  background-color: var(--main-color);
}
#buttontop:active {
  background-color: var(--main-color);
}
#buttontop.show {
  opacity: 1;
  visibility: visible;
}

.whatsapp {
  position: fixed;
  width: 55px;
  height: 55px;
  bottom: 30px;
  right: 25px;
  border-bottom: 1px solid white;
  border-right: 1px solid white;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 35px;
  z-index: 100;
}
.whatsapp:hover,
.whatsapp:active {
  width: 60px;
  height: 60px;
  font-size: 38px;
}
.video-container video {
  position: relative;
  width: 100%;
  object-fit: cover;
  z-index: 1;
}

.video-container {
  position: relative;
}
.video-container-top {
  background-color: var(--main-color);
}
.btn-form-bottom-main {
  background-color: var(--second-color);
  color: white;
  letter-spacing: 1px;
  border-radius: 5px;
  border: 2px solid var(--second-color);
}

.btn-active,
.btn-active:active,
.btn-active:hover {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
  margin: 0;
  background-color: var(--main-color) !important;
  color: white !important;
  font-size: 17px;
  font-weight: bold;
  font-family: "Acumin", serif;
  letter-spacing: 1px;
  border-bottom: 3px solid var(--main-color) !important;
  border-left: 3px solid var(--main-color) !important;
  border-top: 0;
  -webkit-box-shadow: 7px 7px 0px 0 rgba(0, 0, 0, 0.15);
  box-shadow: 7px 7px 0px 0 rgba(0, 0, 0, 0.15);
  width: 130px;
}
.btn-desactive,
.btn-desactive:active,
.btn-desactive:hover {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
  margin: 0;
  font-weight: bold;
  background-color: white !important;
  color: var(--main-color) !important;
  font-size: 17px;
  font-family: "Acumin", serif;
  letter-spacing: 1px;
  border-top: 0;
  border-bottom: 3px solid var(--main-color) !important;
  border-left: 3px solid var(--main-color) !important;
  border-right: 3px solid var(--main-color);
  -webkit-box-shadow: 7px 7px 0px 0 rgba(0, 0, 0, 0.15);
  box-shadow: 7px 7px 0px 0 rgba(0, 0, 0, 0.15);
  width: 130px;
}

.carrusel-5-items .carousel-control-prev,
.carrusel-5-items .carousel-control-next {
  top: 50%;
  transform: translateY(-50%);
}

.carrusel-5-items .carousel-control-prev {
  left: 0;
}

.carrusel-5-items .carousel-control-next {
  right: 0;
}

.carousel-item iframe,
.carousel-item img {
  aspect-ratio: 1 / 1;
  width: 100%;
}
@media (min-width: 992px) {
  .carousel-inner {
    aspect-ratio: 16 / 9;
  }
  .carousel-item iframe {
    aspect-ratio: 16 / 9;
    width: 100%;
  }
  .carousel-item img {
    width: 57%;
    margin: auto;
  }
}
.modal-content {
  border: none;
  text-align: start;
}
.modal-dialog {
  top: 30%;
}
.modal-header,
.modal-footer {
  background-color: var(--main-color);
  color: white;
  text-align: center;
}
.modal-body {
  color: var(--main-color);
}

#responseModal {
  z-index: 100000 !important;
}
