/*
  (c) 2025 Inmedia Global Group - Diseño por Grupo Interactivo
*/

.marca1 {
  border: 1px red dotted;
}

.marca2 {
  border: 2px green dashed;
}

.marca3 {
  border: 4px salmon dotted;
}

.marca4 {
  border: 2px orange dashed;
}

.marca5 {
  border: 2px rgb(255, 246, 231) dashed;
}

/* -------- COLOR PALETTE  -------- */
:root {
  --orange-color: #d9410f;
  --gray-color: #444444;
  --text-color: #1d1d1d;
}

/* -------- Fonts --------- */
/* 
  font-family: "Open Sans", sans-serif;
  font-family: "Figtree", sans-serif; 
  */

/* ------- Estilos por defecto -------- */
html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: auto;
  color: var(--text-color);
  background-color: white;
  text-align: left;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  -webkit-overflow-scrolling: touch;
}

h1,
h2,
h3,
h4 {
  font-family: "Open Sans", sans-serif;
  font-weight: 800;
  font-size: 1.4em;
  line-height: 1.2em;
  margin-top: 10px;
  margin-bottom: 1.5em;
  color: var(--text-color);
}

a {
  color: var(--text-color);
  text-decoration: none;
  cursor: pointer;
}

a:hover {
  color: var(--orange-color);
  text-decoration: none;
}

p {
  color: var(--text-color);
  font-family: "Open Sans", sans-serif;
  font-size: 1em;
  line-height: 1.5em;
}

p strong {
  font-family: "Open Sans", sans-serif;
  font-weight: 800;
  color: var(--text-color);
}

p a {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  color: var(--text-color);
  text-decoration: none;
}

p a:hover {
  color: var(--orange-color);
}

ul {
  list-style: none;
  padding: 0;
  padding-left: 0;
  line-height: 1.8em;
  text-align: left;
  font-family: "Open Sans", sans-serif;
  font-size: 1em;
}

ol {
  padding-left: 15px;
  line-height: 1.8em;
}

ul li,
ol li {
  font-size: 1em;
  line-height: 1.5em;
  color: var(--text-color);
}

/*  -------  Custom scrollbar ------- */
body::-webkit-scrollbar {
  width: 10px;
  position: relative;
}

body::-webkit-scrollbar-track {
  background-color: transparent;
}

body::-webkit-scrollbar-thumb {
  background-color: var(--gray-color);
  border-radius: 0;
}

body::-webkit-scrollbar-thumb:hover {
  background-color: #d9410f;
}

/* --------------  Selección de textos ---------------- */
::-moz-selection,
a::-moz-selection,
p::-moz-selection {
  color: white;
  background-color: var(--text-color);
  text-shadow: none;
}

::selection,
a::selection,
p::selection {
  color: white;
  background-color: var(--text-color);
  text-shadow: none;
}

h1::selection,
h2::selection,
h3::selection,
h4::selection,
h5::selection {
  color: white;
  background-color: var(--text-color);
  text-shadow: none;
}

/* -------------- Main ---------------- */
#main {
  position: relative;
}

.main-content {
  display: grid;
  grid-template-columns: 60% 40%;
  align-items: center;
  width: 100%;
  min-height: 100vh;
}

.main-text {
  align-items: center;
  justify-content: left;
  padding: 2em;
  padding-left: 5vw;
  text-align: left;
}

.main-img {
  width: 100%;
  height: 100%;
}

.main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main-text h1 {
  color: var(--text-color);
  text-align: left;
  font-size: 4.5vw;
  font-family: "Figtree", sans-serif;
  font-weight: 800;
  line-height: 1em;
  margin: 0 0 1em 0;
}

.first-title {
  font-size: 0.330em;
  letter-spacing: 0.2em;
  display: inline-block;
  margin-bottom: -3em;
  margin-left: 3px;
  text-transform: uppercase;
}

.first-title2 {
  font-size: 0.4em;
  letter-spacing: 0.2em;
  display: inline-block;
  margin-bottom: -3em;
  margin-left: 3px;
  text-transform: uppercase;
  color: #ff8800;
}

.adjectives {
  padding-left: 8px;
  width: 200px;
}

.adj {
  position: absolute;
  opacity: 0;
  font-family: "Figtree", sans-serif;
  font-weight: 300;
  color: var(--orange-color);
  margin-left: 7px;
}

.restaurantes {
  animation: swap-1 12s ease-in-out infinite;
}

.bancos {
  animation: swap-2 12s ease-in-out infinite;
}

.hoteles {
  animation: swap-3 12s ease-in-out infinite;
}

.tiendas {
  animation: swap-4 12s ease-in-out infinite;
}

.supermercados {
  animation: swap-5 12s ease-in-out infinite;
}

.comerciales {
  animation: swap-6 12s ease-in-out infinite;
}

.medicos {
  animation: swap-7 12s ease-in-out infinite;
}

.colegios {
  animation: swap-8 12s ease-in-out infinite;
}

.cines {
  animation: swap-9 12s ease-in-out infinite;
}

.aeropuertos {
  animation: swap-10 12s ease-in-out infinite;
}

@keyframes swap-1 {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }

  2% {
    transform: translateY(0);
    opacity: 1;
  }

  8% {
    transform: translateY(0);
    opacity: 1;
  }

  10% {
    transform: translateY(75%);
    opacity: 0;
  }
}

@keyframes swap-2 {
  10% {
    transform: translateY(-100%);
    opacity: 0;
  }

  12% {
    transform: translateY(0);
    opacity: 1;
  }

  18% {
    transform: translateY(0);
    opacity: 1;
  }

  20% {
    transform: translateY(75%);
    opacity: 0;
  }
}

@keyframes swap-3 {
  20% {
    transform: translateY(-100%);
    opacity: 0;
  }

  22% {
    transform: translateY(0);
    opacity: 1;
  }

  28% {
    transform: translateY(0);
    opacity: 1;
  }

  30% {
    transform: translateY(75%);
    opacity: 0;
  }
}

@keyframes swap-4 {
  30% {
    transform: translateY(-100%);
    opacity: 0;
  }

  32% {
    transform: translateY(0);
    opacity: 1;
  }

  38% {
    transform: translateY(0);
    opacity: 1;
  }

  40% {
    transform: translateY(75%);
    opacity: 0;
  }
}

@keyframes swap-5 {
  40% {
    transform: translateY(-100%);
    opacity: 0;
  }

  42% {
    transform: translateY(0);
    opacity: 1;
  }

  48% {
    transform: translateY(0);
    opacity: 1;
  }

  50% {
    transform: translateY(75%);
    opacity: 0;
  }
}

@keyframes swap-6 {
  50% {
    transform: translateY(-100%);
    opacity: 0;
  }

  52% {
    transform: translateY(0);
    opacity: 1;
  }

  58% {
    transform: translateY(0);
    opacity: 1;
  }

  60% {
    transform: translateY(75%);
    opacity: 0;
  }
}

@keyframes swap-7 {
  60% {
    transform: translateY(-100%);
    opacity: 0;
  }

  62% {
    transform: translateY(0);
    opacity: 1;
  }

  68% {
    transform: translateY(0);
    opacity: 1;
  }

  70% {
    transform: translateY(75%);
    opacity: 0;
  }
}

@keyframes swap-8 {
  70% {
    transform: translateY(-100%);
    opacity: 0;
  }

  72% {
    transform: translateY(0);
    opacity: 1;
  }

  78% {
    transform: translateY(0);
    opacity: 1;
  }

  80% {
    transform: translateY(75%);
    opacity: 0;
  }
}

@keyframes swap-9 {
  80% {
    transform: translateY(-100%);
    opacity: 0;
  }

  82% {
    transform: translateY(0);
    opacity: 1;
  }

  88% {
    transform: translateY(0);
    opacity: 1;
  }

  90% {
    transform: translateY(75%);
    opacity: 0;
  }
}

@keyframes swap-10 {
  90% {
    transform: translateY(-100%);
    opacity: 0;
  }

  92% {
    transform: translateY(0);
    opacity: 1;
  }

  98% {
    transform: translateY(0);
    opacity: 1;
  }

  100% {
    transform: translateY(75%);
    opacity: 0;
  }
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 50px;
  z-index: 9999;
  background: transparent;
  transition: all 0.4s ease;
}

/* Logo */
.header .logo img {
  width: 100%;
  height: 100%;
  max-height: 68px;
  transition: transform 0.3s ease;
}

/* Efecto al hacer scroll */
.header.scrolled {
  height: 65px;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header.scrolled .logo img {
  transform: scale(0.7);
}

.header.interior .idioma-btn a {
  color: #444444;
}

.header.interior .hamburger span {
  background: var(--orange-color);
}

/* Menú hamburguesa */
.menu {
  display: flex;
  gap: 2em;
}

.idioma-btn {
  position: relative;
  z-index: 2500;
}

.idioma-btn a {
  font-size: 1.1em;
  font-weight: 600;
  color: white;
  text-shadow: 0px 1px 6px rgba(0, 0, 0, 0.32);
}

.side-menu-description {
  position: absolute;
  bottom: 2%;
  padding: 1.5em 1.5em 1.5em 0;
  color: white;
}

.side-menu-description.inMobile {
  display: none;
}

.hamburger {
  width: 30px;
  height: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 2001;
  position: relative;
  margin-top: 3px;
}

.hamburger span {
  height: 2px;
  width: 100%;
  background: white;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.3);
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* Animación del ícono */
.hamburger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.hamburger.active.hamburger span {
  background: white;
}

/* Menú lateral */
.side-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 40%;
  height: 100vh;
  background-color: rgba(217, 65, 15, 0.95);
  color: var(--text-color);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  transition: right 0.4s ease;
  z-index: 2000;
  padding-left: 10%;
}

.side-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}

.side-menu ul li {
  margin: 2em 0;
}

.side-menu ul li a {
  text-decoration: none;
  color: white;
  font-family: 'Figtree', sans-serif;
  font-size: 2em;
  font-weight: 600;
  transition: color 0.3s;
}

.side-menu ul li a:hover {
  color: var(--text-color);
}

.side-menu.active {
  right: 0;
}

.hamburger.active span {
  background: white;
}

.menu-active .idioma-btn a {
  color: white;
}

.vertical-text {
  position: fixed;
  bottom: 15%;
  right: 20px;
  z-index: 99;
  font-size: 0.9em;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: #000000;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  letter-spacing: 2px;
  user-select: none;
  transition: color 0.3s ease;
  transform: rotate(180deg);
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 25px;
  border: 1px grey solid;
  padding: 1.3em 0.4em;
}

.vertical-text:hover {
  cursor: pointer;
}

.main-screen {
  position: absolute;
  bottom: 40%;
  right: 25%;
  transform: perspective(800px) rotateY(-30deg);
  display: none;
}

.main-screen video {
  width: 100%;
  max-width: 450px;
  max-height: 232.5px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  object-fit: cover;
  display: block;
  border-radius: 15px;
  border: 6px solid black;
  box-shadow: 1px 1px 4px black;
  transform: perspective(800px) rotateY(-30deg);
  transition: transform 0.5s ease;
}

/* ====== SECCIÓN INVERTIDA ====== */
.main-content.inverse {
  display: grid;
  grid-template-columns: 60% 40%;
  align-items: center;
  width: 100%;
  min-height: 100vh;
}

.main-bg {
  position: relative;
  width: 100%;
  height: 100%;
  background-image: url("../img/smartviu_img04.jpg");
  background-size: cover;
  background-position: center;
  color: white;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.main-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
}

.main-bg .main-text {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 2em;
  padding-left: 5vw;
  text-align: left;
  max-width: 90%;
}

.main-bg h2 {
  font-size: 3.4vw;
  font-family: "Figtree", sans-serif;
  font-weight: 800;
  line-height: 1.2em;
  margin: 0 0 1em 0;
  color: white;
}

.main-white {
  background-color: white;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2em 1.5em;
}

.main-white ul li {
  font-size: 1.2em;
  font-weight: 500;
  text-align: left;
}

/* ====== GALERIA DE IMAGENES ====== */
.gallery-section {
  width: 100%;
  overflow: hidden;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto;
  gap: 0;
  width: 100%;
  height: 100%;
  padding: 4px 4px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
}

.gallery-item .img {
  display: block;
  width: 100%;
  height: auto;
  transition: opacity 2s ease-in-out, transform 6s ease-in-out;
  object-fit: cover;
  border: 8px solid white;
}

.gallery-item .img-primary {
  opacity: 1;
  z-index: 1;
  animation: fadePrimary var(--dur, 10s) ease-in-out infinite;
  position: relative;
}

.gallery-item .img-secondary {
  opacity: 0;
  z-index: 2;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  animation: fadeSecondary var(--dur, 10s) ease-in-out infinite;
}

@keyframes fadePrimary {

  0%,
  40% {
    opacity: 1;
    transform: scale(1);
  }

  50%,
  90% {
    opacity: 0;
    transform: scale(1.05);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fadeSecondary {

  0%,
  40% {
    opacity: 0;
    transform: scale(1.05);
  }

  50%,
  90% {
    opacity: 1;
    transform: scale(1);
  }

  100% {
    opacity: 0;
    transform: scale(1.05);
  }
}

.gallery-item:nth-child(1) {
  --dur: 12s;
}

.gallery-item:nth-child(2) {
  --dur: 10s;
}

.gallery-item:nth-child(3) {
  --dur: 14s;
}

.gallery-item:nth-child(4) {
  --dur: 9s;
}

.gallery-item:nth-child(5) {
  --dur: 13s;
}

.gallery-item:nth-child(6) {
  --dur: 11s;
}

.gallery-item:nth-child(7) {
  --dur: 15s;
}

.gallery-item:nth-child(8) {
  --dur: 16s;
}

.gallery-item:nth-child(9) {
  --dur: 18s;
}

/* ====== SECCION 3 ====== */
.main-content.inverse2 h2 {
  max-width: 90%;
  font-size: 3.3vw;
  font-family: "Figtree", sans-serif;
  font-weight: 800;
  line-height: 1.2em;
  margin: 0 0 1em 0;
  color: var(--text-color);
  text-align: left;
}

.main-content.inverse2 .main-text {
  display: block;
}

.logos-lg {
  display: flex;
  gap: 2em;
  width: 100%;
  height: auto;
}

.logos-lg .logo-box {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: auto;
}

.logos-lg .logo-box p {
  text-align: left;
  max-width: 350px;
  font-size: 1.1em;
  line-height: 1.2em;
}

.logos-lg .logo-box img {
  width: 100%;
  max-width: 250px;
  height: auto;
  text-align: center;
}

/* ====== SECCION 4 CARDS CON LINKS ====== */
.cards-section {
  padding: 7em 0 6em 0;
  /* background-color: rgb(250, 250, 250); */
}

.smartviu-card {
  margin: 0 1.5em 3em 1.5em;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  cursor: pointer;
  height: auto;
  display: flex;
  flex-direction: column;
  position: relative;
}

.smartviu-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.card-image {
  width: 100%;
  height: auto;
  transition: transform 0.6s ease;
}

.smartviu-card:hover .card-image {
  transform: scale(1.05);
}

.card-content {
  padding: 1.5em;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-title {
  font-size: 1.3em;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 0.5em;
  transition: color 0.3s ease;
}

.card-link {
  color: var(--text-color);
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.2em;
  font-size: 1.1em;
  transition: all 0.3s ease;
  position: relative;
}

.card-link:hover {
  color: #ff6600;
}

.arrow svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.card-link:hover .arrow svg {
  transform: translate(6px, -6px) rotate(10deg);
}

/* ====== FOOTER ====== */
.footer-content {
  width: 100%;
  height: auto;
  padding: 0;
  overflow: hidden;
}

.footer-img {
  padding: 0;
}

.footer-img img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}

.footer-text {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgb(59, 59, 59);
  padding: 2em;
}

.footer-text p {
  font-size: 0.8em;
  margin: 0;
  color: white;
}

.footer-text a {
  color: white;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.titulo-centrado {
  text-align: center;
  padding: 1em 2em 5em 2em;
}

.titulo-centrado h1,
.titulo-centrado h2 {
  font-size: 3.3vw;
  font-family: "Figtree", sans-serif;
  font-weight: 800;
  line-height: 1.2em;
  margin: 0;
  color: var(--text-color);
}

/* -------- HEADER SECTION --------- */
.header-section {
  width: 100%;
  height: auto;
  margin-top: 100px;
  margin-bottom: 3em;
}

.header-section img {
  width: 100%;
  height: auto;
}

/* -------- SERVICES SECTION --------- */
.service-section {
  padding-bottom: 6em;
}

.service-card {
  margin-bottom: 2.5em;
}

.service-img {
  text-align: center;
}

.service-img img {
  width: 100%;
  max-width: 200px;
  height: auto;
  border-radius: 12px;
}

.service-text {
  padding-left: 3em;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-text h2 {
  font-size: 1.8em;
  color: var(--orange-color);
  margin: 0 0 0.3em 0;
}

/* ================= FORMULARIO ================= */
#block-contact-form {
  position: relative;
  padding: 0 0 8em 0;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-shadow: inset 0 -30px 0 var(--bg-color);
  /* background-color: black; */
}

#block-contact-form::before {
  display: block;
  position: absolute;
  content: '';
  width: 100%;
  height: 30px;
  background-color: var(--bg-color);
  top: 0;
  left: 0;
}

#block-contact-form.cotizar {
  margin-top: 3em;
}

.form-box {
  position: relative;
  width: 80%;
  max-width: 800px;
  overflow: hidden;
  padding: 50px 42px 24px 42px;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  /* background-color: var(--bg-color);
  border-radius: 20px;
  -moz-border-radius: 20px;
  -webkit-box-shadow: 1px 9px 22px 0 rgb(50 50 50 / 18%);
  -moz-box-shadow: 1px 9px 22px 0 rgba(50, 50, 50, 0.18);
  box-shadow: 1px 9px 22px 0 rgb(50 50 50 / 18%); */
  background-color: transparent;
}

.form-box h4 {
  font-size: 1.2em;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin-top: 0;
  margin-bottom: 2.6em;
  text-align: center;
  text-transform: uppercase;
}

.contact2-form input {
  outline: none;
  border: none;
  background-color: transparent;
  border-bottom: 2px #E7E7E7 solid;
  font-family: "Open Sans", sans-serif;
}

.contact2-form textarea {
  outline: none;
  border: none;
  background-color: transparent;
  border-bottom: 2px #E7E7E7 solid;
  font-family: "Open Sans", sans-serif;
}

.contact2-form textarea:focus,
.contact2-form input:focus {
  border-color: transparent !important;
}

.contact2-form .legal-txt {
  font-size: 0.938em;
  text-align: center;
  margin-top: 2em;
  padding: 0 24px;
  color: var(--text-color);
}

.contact2-form .legal-txt a {
  color: var(--text-color);
  text-decoration: underline;
}

.contact2-form .btn-gi {
  font-size: 1em;
  padding: 0.9em 1.9em 1em 1.9em;
}

.contact2-form .btn-gi:hover {
  color: #80b918;
  background-color: var(--text-color);
}

.bg-contact2 {
  width: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.contact2-form {
  width: 100%;
}

.wrap-input2 {
  width: 100%;
  position: relative;
  border-bottom: 1px solid #ffffff;
  margin-bottom: 37px;
  color: var(--text-color);
  font-family: "Open Sans", sans-serif;
}

.input2 {
  display: block;
  width: 100%;
  font-size: 1.1em;
  color: var(--text-color);
  line-height: 1.2;
}

.focus-input2 {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.focus-input2::before {
  content: "";
  display: block;
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  background: var(--orange-color);
  /* background: -webkit-linear-gradient(45deg, #2C77BC, #8BCAEF);
  background: -o-linear-gradient(45deg, #2C77BC, #8BCAEF);
  background: -moz-linear-gradient(45deg, #2C77BC, #8BCAEF);
  background: linear-gradient(45deg, #2C77BC, #8BCAEF); */
}

.focus-input2::after {
  content: attr(data-placeholder);
  display: block;
  width: 100%;
  position: absolute;
  top: 0px;
  left: 0;
  font-size: 0.938em;
  font-weight: 400;
  color: var(--text-color);
  line-height: 1.2;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

input.input2 {
  height: 65px;
}

input.input2+.focus-input2::after {
  top: 16px;
  left: 0;
}

textarea.input2 {
  min-height: 115px;
  padding-top: 13px;
  padding-bottom: 13px;
}

textarea.input2+.focus-input2::after {
  top: 16px;
  left: 0;
}

.input2:focus+.focus-input2::after {
  color: var(--orange-color);
  top: -13px;
}

.input2:focus+.focus-input2::before {
  width: 100%;
}

.input2.has-val+.focus-input2::after {
  color: var(--orange-color);
  top: -18px;
}

.wrap-input2 select {
  border: none;
  outline: none;
  height: 70px;
  width: 100%;
  font-size: 0.9em;
  color: #646464;
  border-bottom: 2px #E7E7E7 solid;
  background: transparent;
  padding-top: 25px;
  padding-bottom: 0;
  line-height: normal;
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg fill='%23646464' height='20' viewBox='0 0 24 24' width='20' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 10px bottom 10px;
  background-size: 16px;
}

.wrap-input2 select option[disabled] {
  color: #aaa;
  font-size: 0.95em;
  background: transparent;
  ;
}

.wrap-input2 select option {
  font-size: 1em;
  color: #333;
}

/* GI Material select box */
.gi-select-group {
  text-align: left;
}

.gi-select-group label {
  font-size: 0.938em;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0.01em;
  color: var(--color-green);
  margin-top: 8px;
  margin-bottom: 0;
}

.gi-select-group select {
  border-radius: 0;
  border: none;
  border-bottom: 2px #E7E7E7 solid;
}

.gi-select-group select:hover,
.gi-select-group select:focus {
  outline: none;
  box-shadow: none;
  border-bottom: 2px var(--orange-color) solid;
}

.gi-select-group select option:disabled {
  font-style: italic;
  color: #CDCDCD;
}

.m2top {
  margin-top: 40px;
}

.cv-up label {
  font-weight: 600;
  margin-right: 15px;
}

.addr p {
  font-size: 1.1em;
  text-align: center;
  line-height: normal;
  margin-bottom: 0.4em;
}

/*-----------------
[ Alert validate ]*/
.validate-input {
  position: relative;
}

.alert-validate::before {
  content: attr(data-validate);
  position: absolute;
  max-width: 70%;
  background-color: white;
  border: 1px solid red;
  border-radius: 8px;
  padding: 4px 35px 4px 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0px;
  pointer-events: none;
  color: red;
  font-size: 1.0em;
  font-style: italic;
  line-height: 1.4;
  text-align: left;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.4s;
  -o-transition: opacity 0.4s;
  -moz-transition: opacity 0.4s;
  transition: opacity 0.4s;
}

.alert-validate::after {
  content: "\f06a";
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  display: block;
  position: absolute;
  color: #fff;
  font-size: 1.4em;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 8px;
}

.alert-validate:hover:before {
  visibility: visible;
  opacity: 1;
}

.main-btn {
  display: inline-block;
  position: relative;
  font-family: 'Source Sans Pro', Arial, sans-serif;
  font-weight: 600;
  font-size: 0.875em;
  line-height: 1.4em;
  letter-spacing: 0.0625em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  text-indent: 0;
  text-shadow: none;
  vertical-align: middle;
  color: #ffffff;
  background-color: var(--orange-color);
  border: none;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  padding: 0.75em 2.1em;
  cursor: pointer;
  overflow: hidden;
  z-index: 1;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition: color 0.3s;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.main-btn:hover {
  transform: scale(1.04);
  color: white;
}

/* ================= PRODUCTOS DESTACADOS ================= */
.productos-destacados-container {
  background-color: rgb(250, 250, 250);
  padding: 7em 0 6em 0;
}

.producto-destacado-card {
  padding-bottom: 4em;
}

.producto-destacado-img {
  text-align: right;
}

.producto-destacado-img img {
  width: 100%;
  max-width: 450px;
  height: auto;
}

.producto-destacado-text {
  padding: 0 1.5em;
}

.producto-destacado-text h2 {
  font-size: 1.8em;
  margin-bottom: 0.4em;
}

.producto-destacado-text h3 {
  font-size: 1.2em;
  font-weight: 600;
}

.producto-destacado-text ul {
  margin-left: 1.3em;
}

.producto-destacado-text ul li {
  list-style: disc;
}

.card-btn {
  display: block;
  margin-top: 2em;
}
.mainCTA.card-btn {
  display: block;
  width: 100%;
  margin-top: 2em;
}