:root {
  --primario__e: #ff6417;
  --primario_claro__e: #dff4f5;
  --primario_oscuro__e: #a73d08;
  --secundario: #00183b;
  --light__e: #fff;
  --titulo: "Poppins", sans-serif;
}

body {
  font-family: "Poppins", sans-serif;
}

a,
a:active,
a:hover,
a:focus,
a:visited {
  text-decoration: none;
}

ul.list-unstyled {
  margin-bottom: 0;
}

/* Global */
.separa-5 {
  height: 5px;
}
.separa-10 {
  height: 10px;
}
.separa-20 {
  height: 20px;
}
.separa-40 {
  height: 40px;
}
.separa-30 {
  height: 30px;
}
.separa-50 {
  height: 50px;
}
.separa-100 {
  height: 100px;
}

.titulo {
  font-size: 45px;
  line-height: 45px;
  color: #404040;
  font-weight: 900;
  margin-top: 0;
  margin-bottom: 0;
}

.titulo-sm {
  font-size: 30px;
  line-height: 35px;
}

.titulo-md {
  font-size: 55px;
  line-height: 60px;
}

.titulo-lg {
  font-size: 75px;
  line-height: 85px;
}

.antetitulo {
  color: var(--secundario);
  font-size: 26px;
}

.parrafo {
  font-size: 16px;
  line-height: 26px;
  color: #5b5b5b;
  margin-bottom: 0;
}

.adorno-titulo {
  width: 155px;
  left: -80px;
  top: -30px;
}

.text-light {
  color: var(--light__e);
}
.text-primary {
  color: var(--primario__e);
}
.text-gray {
  color: #858585;
}
.text-secondary {
  color: var(--secundario);
}

.text-shadow {
  filter: drop-shadow(0.707px 0.707px 0px #000000);
}

.ellipsis {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.corte-bottom {
  width: 100%;
  left: 0;
  bottom: -2px;
  position: absolute;
}

.corte-top {
  width: 100%;
  left: 0;
  top: -1px;
  position: absolute;
}

.full {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.row-align-center {
  display: flex;
  align-items: center;
}

.row-align-center::before,
.row-align-center::after {
  content: unset;
}

.flex {
  display: flex;
}

.flex-col {
  flex-flow: column;
}

.block {
  display: block;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.items-center {
  align-items: center;
}

.bg-no-repeat {
  background-repeat: no-repeat;
}

.bg-cover {
  background-size: cover;
}

.bg-fixed {
  background-attachment: fixed;
}

.object-cover {
  object-fit: cover;
}

.object-contain {
  object-fit: contain;
}

.object-top {
  object-position: top;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.center-absolute {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.overflow-hidden {
  overflow: hidden;
}

.limitar {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  line-clamp: 1;
}

.limitar_2 {
  -webkit-line-clamp: 2;
  line-clamp: 2;
}
.limitar_3 {
  -webkit-line-clamp: 3;
  line-clamp: 3;
}
.limitar_4 {
  -webkit-line-clamp: 4;
  line-clamp: 4;
}

.animation {
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}

.hover-effect {
  transform: perspective(1px) translateZ(0);
  position: relative;
  transition: all ease-out 0.3s;
  overflow: hidden;
}

.hover-effect::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transform: scaleX(0);
  transform-origin: center;
  transition: all ease-out 0.3s;
  z-index: -1;
}

.hover-effect:hover:before,
.hover-effect:focus:before,
.hover-effect:active:before {
  transform: scaleX(1);
}

.custom-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 204px;
  height: 50px;
  border-radius: 25px;
  background-color: var(--primario__e);
  border: 1px solid transparent;
  color: var(--light__e);
  font-weight: 600;
  column-gap: 9px;
  z-index: 1;
  position: relative;
  overflow: hidden;
  transform: perspective(1px) translateZ(0);
  transition: all ease-out 0.3s;
}

.custom-button-sm {
  width: 170px;
}

.custom-button:hover,
.custom-button:active,
.custom-button:focus {
  color: var(--primario__e);
}

.custom-button.bg-white {
  background-color: var(--light__e);
  color: var(--primario__e);
}

.custom-button.bg-white:hover,
.custom-button.bg-white:active,
.custom-button.bg-white:focus {
  color: var(--light__e);
}

.custom-button span {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-radius: 100%;
  background-color: var(--light__e);
  transition:
    width 0.4s ease-in-out,
    height 0.4s ease-in-out;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.custom-button.bg-white span {
  background-color: var(--primario__e);
  color: #404040;
}

.custom-button:hover span {
  height: calc(65px * 3);
  width: 240%;
}

.custom-button img {
  width: 20px;
}

.custom-button:hover img,
.custom-button:active img,
.custom-button:focus img {
  filter: brightness(0) saturate(100%) invert(94%) sepia(32%) saturate(5825%) hue-rotate(121deg) brightness(83%)
    contrast(89%);
}

.custom-button-hidden-md {
  display: none;
}

.bg-primary {
  background-color: var(--primario__e);
}

/* Cabecera */
.navbar-fixed-top {
  z-index: 5;
  position: relative;
}

.navbar-fixed-top .gradient {
  background-color: var(--primario__e);
  height: 120px;
}

.navbar-header {
  width: 220px;
}

.navbar-brand {
  width: 100%;
  padding: 0;
  height: auto;
  top: 0;
  z-index: 2;
  height: 120px;
}

.navbar-brand > img {
  height: 75%;
}

.navbar-collapse {
  height: 120px;
}

.navbar-nav {
  margin-right: 0;
  left: calc(50%);
  transform: translateX(-50%);
  column-gap: 5px;
  height: 120px;
}

.navbar-nav::after,
.navbar-nav::before {
  content: unset;
}

.navbar-nav > li {
  height: 100%;
  display: flex;
  align-items: center;
}

.navbar-nav > li > a {
  height: 50px;
  font-size: 18px;
  font-weight: 500;
  color: var(--light__e);
  padding: 0 30px;
  display: inline-flex;
  white-space: nowrap;
}

nav .navbar-nav > li > a:hover,
nav .navbar-nav > li > a:active,
nav .navbar-nav > li > a:focus,
nav .navbar-nav > .active > a,
nav .navbar-nav > .active > a:focus,
nav .navbar-nav > .active > a:hover {
  background-color: transparent;
  color: var(--primario__e);
}

nav .navbar-nav > li.active .hover-effect:before,
nav .navbar-nav > li .hover-effect:hover:before,
nav .navbar-nav > li .hover-effect:focus:before,
nav .navbar-nav > li .hover-effect:active:before {
  transform: scaleX(1);
  border-radius: 33px;
  background-color: var(--light__e);
}

nav .navbar-nav > li.dropdown > a {
  gap: 7px;
}

nav .navbar-nav > li.dropdown .dropdown-toggle span img {
  width: 10px;
}

nav .navbar-nav > li.dropdown .dropdown-menu {
  border-radius: 0 0 5px 5px;
  overflow: hidden;
  top: 90px;
  padding: 0;
  background-color: var(--primario__e);
  left: 50%;
  right: auto;
  transform: translateX(-50%);
}

nav .navbar-nav > li.dropdown .dropdown-menu > li > a {
  padding: 12px 0;
  font-weight: 300;
  color: var(--light__e);
}

nav .navbar-nav > li.dropdown .dropdown-menu > li > a:focus,
nav .navbar-nav > li.dropdown .dropdown-menu > li > a:hover {
  transition: background-color linear 0.2s;
  background-color: var(--primario_oscuro__e);
}

nav .navbar-nav > li.dropdown .dropdown-menu > li + li::before {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.2;
  width: 95%;
  height: 1px;
  background-color: var(--light__e);
}

nav .navbar-nav > li.dropdown.open > a {
  background-color: var(--light__e);
}

nav .navbar-nav > li.dropdown.open > a,
nav .navbar-nav > li.dropdown.open > a:focus,
nav .navbar-nav > li.dropdown.open > a:hover {
  background-color: initial;
  border-color: transparent;
}

/* sidebar */
.sidebar-wrapper {
  position: fixed;
  top: 0;
  width: 33%;
  max-width: 250px;
  height: calc(100% - 52px);
  top: 52px;
  padding-top: 10px;
  overflow-y: auto;
  background-color: var(--primario__e);
  opacity: 0;
  z-index: 4;
}

.sidebar-wrapper.left {
  left: 0;
  transform: translateX(-100%);
}

.sidebar-wrapper.right {
  right: 0;
  transform: translateX(100%);
}

.toggled .sidebar-wrapper {
  opacity: 1;
  transform: translateX(0%);
}

.sidebar-wrapper::-webkit-scrollbar {
  width: 0px;
  height: 0;
}

.left-toggle {
  left: 0;
}

.right-toggle {
  right: 0;
}

.navbar-toggle {
  margin: 0;
  padding: 15px;
  border-radius: 0;
  border: unset;
  height: 52px;
  width: 52px;
}

.navbar-toggle,
.navbar-toggle:focus,
.navbar-toggle:hover {
  background-color: var(--primario__e);
}

.toggled .navbar-toggle,
.toggled .navbar-toggle:focus,
.toggled .navbar-toggle:hover {
  background-color: var(--primario_oscuro__e);
}

.navbar-toggle .icon-bar,
.toggled .navbar-toggle .icon-bar {
  background-color: var(--light__e);
}

.sidebar-nav {
  margin-bottom: 0;
}

.sidebar-wrapper .sidebar-nav li a {
  text-indent: 20px;
  color: var(--light__e);
  font-size: 14px;
  font-weight: 400;
  padding: 20px 10px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-align: left;
  transition: all 0.2s ease-in-out;
  position: relative;
}

.sidebar-wrapper .sidebar-nav li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 90%;
  height: 1px;
  left: 50%;
  transform: translateX(-50%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.sidebar-wrapper .sidebar-nav li.active a,
.sidebar-wrapper .sidebar-nav li a:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.sidebar-wrapper .sidebar-nav > li {
  display: contents;
}

.sidebar-wrapper .sidebar-nav li img {
  height: 26px;
  margin-left: 0;
}

.sidebar-wrapper .dropdown-menu {
  position: static;
  width: 100%;
  padding: 0;
  border: unset;
  border-radius: unset;
  margin: 0;
  background-color: var(--primario_oscuro__e);
  box-shadow: none;
}

.sidebar-wrapper .dropdown-menu li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-wrapper .dropdown-menu li a {
  background-color: transparent;
}

.sidebar-wrapper .dropdown-menu li a:hover {
  background-color: rgba(255, 255, 255, 0.4);
}

.sidebar-wrapper .dropdown-toggle span {
  margin-left: 7px;
}

.sidebar-wrapper .dropdown-toggle span img {
  width: 12px;
}

#manto-movil {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  z-index: -1;
  background: rgba(0, 0, 0, 0.5);
}

#manto-movil.toogled {
  z-index: 2;
  opacity: 1;
}

/* banner */
.banner {
  height: 900px;
  padding-top: 120px;
  z-index: 1;
}

.banner .fondo {
  clip-path: polygon(0 0, 100% 0, 100% 90%, calc(50% + 100px) 90%, 50% 100%, calc(50% - 100px) 90%, 0 90%);
  background-color: var(--primario__e);
}

.banner .opacidad {
  opacity: 0.298;
  height: 50%;
  top: auto;
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.33999999999999997) 100%);
}

.banner .custom-container {
  top: -120px;
}

.banner .figura-container {
  width: calc(30vw + 230px);
  height: auto;
  min-height: -webkit-fill-available;
  right: -80px;
}

.banner .figura-descargas {
  width: 350px;
  left: -50px;
  bottom: 200px;
  row-gap: 20px;
}

.banner .figura-descargas a img {
  width: 100%;
}

/* info */
.info {
  background: linear-gradient(180deg, var(--light__e) 0%, #f2f7fc 50%);
}

.info-caja {
  padding: 0 40px;
}

.info-caja:first-child {
  padding-left: 0;
}
.info-caja:last-child {
  padding-right: 0;
}

.info-caja ~ .info-caja::before {
  content: "";
  position: absolute;
  width: 2px;
  height: 300px;
  background-color: #c9cdd0;
  left: 0;
  bottom: -30px;
}

.info-caja img {
  width: 200px;
  aspect-ratio: 1;
  margin-bottom: 10px;
}

.info-amount {
  font-size: 45px;
  font-weight: 900;
  margin-bottom: 10px;
}

.info-text {
  font-size: 35px;
  line-height: 37px;
}

/* medios */
.medios .custom-container {
  background-color: #f2f7fc;
  border-radius: 100px;
  filter: drop-shadow(0 25px 40px rgb(0 0 0 / 0.12));
}

.medios-titulo {
  color: #5c5a5e;
  font-size: 35px;
}

.medios-titulo span {
  font-weight: 900;
}

.medios-img {
  max-width: 450px;
  width: 100%;
}

/* video */
.video .img-container {
  aspect-ratio: 4 / 3;
  border-radius: 50px;
}

.video .img-container .bloque-primary {
  height: 100%;
  background-color: var(--primario__e);
  width: 100%;
  left: -50%;
}

.video .img-container .borde-light {
  outline: 15px solid var(--light__e);
  outline-offset: -15px;
  border-radius: 50px;
}

.video .img-container img {
  width: 100%;
  border-radius: 50px;
}

/* productos */
.productos {
  background-color: #fbfbfb;
}

.productos .titulo-container {
  justify-content: space-between;
  gap: 40px;
}

.caja_producto {
  background-color: var(--primario__e);
  border-radius: 100px;
  aspect-ratio: 13 / 22;
  /* height: 550px; */
  margin-bottom: 74px;
}

.caja_producto .img-container {
  height: 75%;
  background-color: var(--light__e);
}

.caja_producto .img-container img {
  object-fit: cover;
}

.caja_producto .brillo {
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  left: -100%;
  transition: all 0.65s ease-in-out;
}

.caja_producto:hover .brillo {
  left: 100%;
}

.caja_producto-titulo {
  line-height: 32px;
  font-size: 24px;
  font-weight: 500;
}

.caja_producto .text-container {
  padding: 12px 20px;
}

.caja_producto .precio {
  font-size: 22px;
  font-weight: 700;
  color: var(--primario__e);
}

/* bloqueInformacion */
.bloqueInformacion {
  background-color: #f2f7fa;
}

.bloqueInformacionR .img-container {
  border-radius: 999px;
  aspect-ratio: 1;
  max-width: 570px;
  width: 100%;
  margin-left: auto;
}

.bloqueInformacion .figura {
  width: 600px;
  aspect-ratio: 1;
  top: calc(50% - 300px);
}

.bloqueInformacionR .figura {
  left: calc(50% + 50px);
}

.bloqueInformacionL .figura {
  right: calc(50% + 50px);
}

.bloqueInformacion .bloque-figura {
  background-color: var(--primario__e);
  width: 50%;
  height: 430px;
  top: 50%;
  transform: translateY(-50%);
}

.bloqueInformacionR .bloque-figura {
  border-radius: 80px 0 0 80px;
  right: 0;
}

.bloqueInformacionL .bloque-figura {
  border-radius: 0 80px 80px 0;
  left: 0;
}

.bloqueInformacion ul li {
  text-indent: 40px;
}

.bloqueInformacion ul li::before {
  content: "";
  position: absolute;
  background-color: var(--primario__e);
  border-radius: 100%;
  width: 12px;
  aspect-ratio: 1;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}

/* map-container */
.mapamundi #marcas img {
  width: 100%;
}

.mapamundi .marca {
  height: 220px;
  width: 100%;
}

#marcas.splide {
  margin: 0 auto;
}

.titulo-mapamundi {
  font-size: 45px;
  color: #545454;
  margin-top: 0;
}

.titulo-mapamundi span {
  font-weight: 900;
}

.mapamundi-row {
  background-color: var(--primario__e);
  border-radius: 999px;
  padding: 0 40px 3px;
  column-gap: 30px;
}

.mapamundi-row-caja {
  font-size: 20px;
}

.mapamundi-row-caja img {
  width: 60px;
  margin-right: 15px;
  margin-top: -3px;
}

/* faq */
.faq {
  background-color: #f2f7fa;
}

.faq .panel-group .panel + .panel {
  margin-top: 30px;
}

.faq .panel-group .panel {
  background-color: transparent;
  border: unset;
  border-radius: 0;
  -webkit-box-shadow: unset;
  box-shadow: unset;
  position: relative;
}

.faq .panel-default > .panel-heading {
  background-color: var(--light__e);
  border-radius: 999px;
  padding: 0;
}

.faq .panel-title {
  font-size: 24px;
  line-height: 26px;
  font-weight: 400;
}

.faq .panel-title a {
  padding: 0 30px;
  height: 100px;
  column-gap: 40px;
}

.faq .drop {
  width: 40px;
  height: 40px;
  padding: 5px;
  border-radius: 100%;
  filter: drop-shadow(0 0 7.5px rgba(0, 0, 0, 0.15));
  background-color: var(--primario__e);
  flex-shrink: 0;
}

.faq .drop img {
  width: 100%;
  padding: 5px;
  transition: transform ease 0.3s;
}

.faq .panel-title a[aria-expanded="true"] .drop img {
  transform: rotate(270deg);
}

.faq .panel-default > .panel-heading + .panel-collapse > .panel-body {
  border: unset;
}

.pricing-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: #1a1a1a;
}
.pricing-subtitle {
  text-align: center;
  color: #6b6b6b;
  font-size: 1.1rem;
  margin-bottom: 28px;
}
.pricing-toggle {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
}
.pricing-section .toggle-btn {
  background: var(--primario__e) !important;
  border: none;
  border-radius: 20px;
  padding: 12px 22px;
  font-size: 16px;
  font-weight: 600;
  color: #fff !important;
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s;
}
.pricing-section .toggle-btn.active,
.pricing-section .toggle-btn:hover {
  background: #f2f7fa !important;
  color: var(--primario__e) !important;
}
.toggle-offer {
  font-weight: 700;
  font-size: 0.95em;
}
.pricing-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 24px;
}
.pricing-card {
  background: #fff;
  box-shadow: 0 2px 16px 0 rgba(0, 0, 0, 0.07);
  width: 255px;
  display: flex;
  border-radius: 20px;
  flex-direction: column;
  align-items: center;
  position: relative;
  transition:
    transform 0.18s,
    box-shadow 0.18s;
}
.pricing-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 32px 0 rgba(225, 29, 72, 0.13);
}
.pricing-card-container {
  border-radius: 20px;
  padding: 10px 24px 28px 24px;
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  background-color: #f2f7fa;
}
.pricing-card .plan-name {
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  background-color: #001e3d;
  width: 100%;
  text-align: center;
  border-radius: 20px 20px 0 0;
  padding: 12px 0;
}
.pricing-card .plan-price {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: #1a1a1a;
  text-align: center;
  line-height: 30px;
}
.pricing-card .plan-price::after {
  content: ".00";
  font-size: 12px;
  vertical-align: super;
}

.pricing-card .currency {
  font-size: 1.1rem;
  vertical-align: super;
}
.pricing-card .per {
  font-size: 0.95rem;
  color: #6b6b6b;
  font-weight: 500;
  margin-left: 2px;
}
.pricing-card .plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
  color: #333;
  font-size: 1rem;
}
.pricing-card .plan-features li {
  margin-bottom: 15px;
  text-align: center;
  position: relative;
  color: #808487;
}

.pricing-card .plan-features li .label-number {
  background-color: var(--primario__e);
  border-radius: 999px;
  width: 40px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light__e);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: calc(50% + 45px);
}

.pricing-card .plan-features .feature-title {
  margin-top: 10px;
  font-weight: 700;
  color: #001e3d;
  font-size: 0.98em;
  text-align: center;
}
.pricing-card .plan-btn {
  background: var(--primario__e) !important;
  color: #fff !important;
  border: none;
  border-radius: 40px;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  margin-top: auto;
  transition: background 0.2s;
}
.pricing-card .plan-btn:hover {
  background: #b91c3a;
}

.pricing-card.pro {
  border: 2px solid #e11d48;
  filter: drop-shadow(0 0 31px hsla(19, 88%, 54%, 0.3));
}

.pricing-card.pro .plan-name {
  background-color: var(--primario__e);
}
.pricing-card .best-value {
  position: absolute;
  top: -24px;
  right: -2px;
  background: #fff;
  color: var(--primario__e);
  font-size: 0.95em;
  font-weight: 700;
  padding: 7px 12px;
  border-radius: 50px;
  outline: 4px solid var(--primario__e);
}
.pricing-note {
  text-align: center;
  color: #6b6b6b;
  font-size: 0.98rem;
  margin-top: 18px;
}
@media (max-width: 1100px) {
  .pricing-cards {
    flex-wrap: wrap;
    gap: 16px;
  }
  .pricing-card {
    width: 45%;
    min-width: 260px;
    max-width: 360px;
  }
}
@media (max-width: 700px) {
  .pricing-section {
    padding: 24px 4px 16px 4px;
  }
  .pricing-cards {
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }
  .pricing-card {
    width: 98%;
    min-width: 0;
    max-width: 100%;
  }
}

/* Estilos del botón de WhatsApp */
.whatsapp-button {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: white;
  border-radius: 50px;
  padding: 15px;
  display: flex;
  align-items: center;
  cursor: pointer;
  filter: drop-shadow(0px 0px 20px #25d366);
  z-index: 9999;
  transition: all 0.3s ease;
}

.whatsapp-button:hover {
  background-color: #128c7e;
  transform: scale(1.05);
}

#whatsappMessageInput {
  border: 3px solid #39414d;
  border-radius: 10px;
  color: #28303d;
  line-height: 1.7;
  padding: calc(0.5 * 20px);
  margin: 0 2px;
  max-width: 100%;
}
.whatsapp-icon {
  width: 20px;
  margin-right: 10px;
}

.whatsapp-text {
  font-weight: bold;
  margin-right: 5px;
}

.whatsapp-chatbox {
  position: fixed;
  bottom: 120px;
  right: 30px;
  width: 300px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  z-index: 9998;
  display: none;
  overflow: hidden;
}

.chatbox-header {
  background-color: #075e54;
  color: white;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-info i {
  font-size: 24px;
  margin-right: 10px;
}

.header-info h3 {
  margin: 5px 0;
  font-size: 16px;
}

.header-info p {
  margin: 0;
  font-size: 12px;
  opacity: 0.8;
}

.close-chatbox {
  background: none;
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
  padding: 0 5px;
}

.chatbox-body {
  padding: 15px;
  height: 150px;
  overflow-y: auto;
}

.chatbox-footer {
  padding: 15px;
  text-align: center;
  border-top: 1px solid #eee;
}

.start-chat {
  display: inline-block;
  background-color: #25d366;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s;
}

.start-chat:hover {
  background-color: #128c7e;
}

/* Responsive */
@media (max-width: 768px) {
  .whatsapp-button {
    bottom: 20px;
    right: 20px;
    padding: 12px;
  }

  .whatsapp-chatbox {
    bottom: 100px;
    right: 20px;
    width: calc(100% - 40px);
    max-width: 300px;
  }
}
/* store */
.store {
  background-color: var(--secundario);
}

.store-title {
  font-size: 30px;
}

.store-row {
  gap: 40px;
  flex-wrap: wrap;
}

.store-row img {
  max-width: 370px;
  width: 100%;
}

/* Footer */
footer {
  background-color: var(--primario__e);
}

footer .vl {
  height: 250px;
  width: 3px;
  background-color: rgba(255, 255, 255, 0.7);
}

.footer-logo {
  opacity: 0.2;
  height: 110%;
  top: 15px;
}

.footer-info {
  gap: 25px 80px;
}

.footer-info > ul {
  flex: 1;
}

.footer-contactos li {
  column-gap: 25px;
}

.footer-titulo {
  filter: drop-shadow(1px 1px 0px rgba(0, 0, 0, 0.5));
  font-size: 35px;
  font-weight: 900;
}

.footer-contactos span {
  display: inline-flex;
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.2);
  width: 50px;
  height: 50px;
  padding: 11px;
}

.footer-contactos span img {
  width: 25px;
}

.footer-enlaces {
  display: grid;
  gap: 10px 50px;
  font-size: 22px;
}

.footer-enlaces li {
  font-weight: 700;
  font-size: 18px;
}

.footer-enlaces a {
  color: var(--light__e);
}

.footer-enlaces a:hover {
  text-shadow: 0 0 2px;
}

@media (min-width: 1200px) {
  .custom-container {
    width: 100%;
    max-width: 1410px;
  }
}

@media (min-width: 1690px) {
  .banner .figura-container {
    width: 925px;
    left: calc(50% + 100px);
    right: auto;
  }
}

@media (max-width: 1550px) {
  .info-row {
    flex-wrap: wrap;
    justify-content: center;
  }

  .info-caja {
    padding: 0 15px;
    margin-bottom: 60px;
  }

  .info-amount {
    font-size: 38px;
  }

  .info-text {
    font-size: 28px;
    line-height: 30px;
  }

  .footer-info {
    column-gap: 40px;
  }
}

@media (max-width: 1200px) {
  .custom-container {
    padding: 0 45px;
  }

  .titulo-lg {
    font-size: 45px;
    line-height: 50px;
  }

  .navbar-fixed-top {
    height: 52px;
    background-color: var(--light__e);
  }

  .navbar-header {
    float: left;
    background-color: transparent;
    border-radius: 0;
    outline: unset;
    width: auto;
    position: static;
    top: 0;
  }

  .navbar-brand {
    position: absolute;
    width: auto;
    height: 52px;
    left: 15px;
  }

  .navbar-brand > img {
    height: 80%;
  }

  .navbar-collapse.collapse {
    display: none !important;
  }

  .navbar-toggle {
    display: block;
  }

  .bloqueInformacion .figura {
    width: 450px;
    top: calc(50% - 225px);
  }

  footer .vl {
    height: 1px;
    width: 300px;
    margin: 0 auto;
  }

  .footer-info {
    flex-flow: column;
  }

  .footer-titulo {
    text-align: center;
  }

  .footer-contactos {
    margin: 0 auto;
    text-align: center;
  }

  .footer-enlaces {
    margin: 0 auto;
  }
}

@media (max-width: 992px) {
  .antetitulo,
  .titulo {
    text-align: center;
  }

  .custom-button-hidden-md {
    display: flex;
  }
  .custom-button-visible-md {
    display: none;
  }
  .button-centred-md {
    margin: 0 auto;
  }

  .adorno-titulo {
    left: 50%;
    transform: translateX(-50%);
  }

  .button-centred-md {
    margin: 0 auto;
  }

  .parrafo {
    text-align: justify;
    text-align-last: center;
  }

  .banner {
    height: auto;
    display: block;
    padding-top: 30px;
  }

  .banner .fondo {
    clip-path: polygon(0 0, 100% 0, 100% 90%, calc(50% + 70px) 90%, 50% 100%, calc(50% - 70px) 90%, 0 90%);
    background-color: var(--primario__e);
  }

  .banner .custom-container {
    top: 20px;
  }

  .banner .figura-container {
    position: relative;
    right: -120px;
    margin: 0 auto;
    width: 500px;
    aspect-ratio: 1;
  }

  .banner .figura-descargas {
    width: 260px;
  }

  .video .img-container {
    width: 100%;
  }

  .info-caja ~ .info-caja::before {
    content: none;
  }

  .info-caja {
    width: 100%;
    flex-grow: 1;
  }

  .caja_galeria {
    grid-column: span 2;
  }

  .caja_galeria-principal {
    grid-column: 1 / span 4;
  }

  .productos .titulo-container {
    flex-direction: column;
  }

  .mapamundi-row {
    flex-wrap: wrap;
    row-gap: 20px;
    justify-content: center;
  }

  .row-align-center {
    display: block;
  }

  .bloqueInformacionA .img-container {
    margin: 0 auto;
  }

  .bloqueInformacion .figura {
    position: relative;
    transform: none;
    top: auto;
    right: auto;
    left: auto;
    display: block;
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  .custom-container {
    padding: 0 25px;
  }

  .titulo {
    font-size: 35px;
    line-height: 40px;
  }

  .titulo-sm {
    font-size: 30px;
    line-height: 35px;
  }

  .titulo-lg {
    font-size: 40px;
    line-height: 45px;
  }

  .antetitulo {
    font-size: 16px;
    line-height: 20px;
  }

  .caja_galeria .caption {
    font-size: 16px;
  }

  .caja_galeria-icono {
    width: 126px;
    height: 126px;
  }

  .caja_producto {
    max-width: 300px;
    width: 100%;
    margin: 0 auto 30px;
  }

  .toggled .sidebar-wrapper {
    width: 80%;
  }
}

@media (max-width: 600px) {
  .titulo {
    font-size: 35px;
    line-height: 40px;
  }

  .titulo-sm {
    font-size: 25px;
    line-height: 30px;
  }

  .titulo-lg {
    font-size: 40px;
    line-height: 45px;
  }

  .parrafo {
    font-size: 14px;
    line-height: 20px;
  }

  .banner .figura-container {
    width: 370px;
    right: auto;
  }

  .banner .figura-descargas {
    width: 210px;
    left: 0px;
    bottom: 50px;
    row-gap: 12px;
  }

  .faq .panel-title {
    font-size: 20px;
  }

  .bloqueInformacion .figura {
    width: 420px;
  }

  .footer-logo {
    width: 100%;
    top: 0;
    height: 100%;
  }
}
