:root {
  /*Primary colors*/
  --color-yellow: #f1bb07;
  --color-light-yellow:#c6bba1;
  --color-green: #83af18;
  --color-green-hover: #15c015;
  --color-light-green: #5cb73c;
  --color-black: #000;
  --color-white: #fff;
  --color-light-gray: #f8f8f8;
  --color-gray: #9c9c9c;
  --color-dark-gray: #737373;
  --color-darker-gray: #494848;
  --color-blue:#1c66af;
  --color-blue-hover:#1444b8;
  --color-light-blue:#2098d1;
  --color-orange:#f56444;
  --color-red:#bd2723;
}

/*Border Radius 5\3px*/
/*Border Radius 10px*/
/*Border Radius Full*/
/*Box Shadow*/
/*transition*/
/*Text Shadow*/
:root {
  /*Font size*/
  --font-size-s: .8rem;
  --font-size-m: 1rem;
  --font-size-l: 1.4rem;
  --font-size-xl: 2rem;
  --font-size-xxl: 3rem;
  /*Spacing*/
  --spacing-xs: .3rem;
  --spacing-s: .5rem;
  --spacing-m: 1rem;
  --spacing-l: 2rem;
  --spacing-xl: 3rem;
  --spacing-xxl: 5rem;
  --max-width: 70rem;
}

body {
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  font-weight: 100;
  text-align: center;
  color: var(--color-black);
  line-height: 1.2rem;
  background: var(--color-white);
  box-sizing: border-box;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
}

div,
ul,
li,
h1,
h2,
h3,
h4,
p,
a,
span,
strong,
form,
input,
label,
textarea,
header,
nav,
section,
footer,
hgroup,
article,
figure,
hgroup,
content {
  position: relative;
  box-sizing: border-box;
}

body,
ul,
li,
h1,
h2,
h3,
h4,
p {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

a {
  outline: none;
  text-decoration: none;
  cursor: pointer;
}

*:focus {
  outline: none;
}

a img {
  border: none;
}

h2, h3 {
  font-size: clamp(1.4rem, 4vw, 2.5rem);
  margin: 0;
  font-weight: bold;
  line-height: 2rem;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 3rem);
  letter-spacing: -1px;
  line-height: 2rem;
  color: var(--color-light-yellow);
}

p {
  font-size: 1rem;
  line-height: 1.5rem;
}
p.italic {
  font-family: "D-DIN-Bold";
}

/*Estructura general*/
.wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

html {
  scroll-behavior: smooth;
}

/*Bold Font*/
h1,
h2,
h3,
h4 {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}

/*Regular Font*/
h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 100;
}

.background {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}
.background__img {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  grid-column: 1/8;
  grid-row: 1/8;
}
.background__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.2;
}

/*CTA*/
.defaultcta {
  padding: 0.5rem 1.5rem;
  cursor: pointer;
  border: none;
  font-size: clamp(0.6rem, 2vw, 0.8rem);
  background: var(--color-blue);
  color: var(--color-white);
  font-weight: bold;
  white-space: nowrap;
  text-transform: uppercase;
  font-weight: 400;
}
.defaultcta:hover, .defaultcta:active {
  text-decoration: none;
  background: var(--color-black);
}
.defaultcta--black {
  background: var(--color-black);
}
.defaultcta--black:hover, .defaultcta--black:active {
  background: var(--color-blue-hover);
}

.textlink {
  font-size: clamp(1rem, 1vw, 1.2rem);
  color: var(--color-white);
}
.textlink:active, .textlink:hover {
  text-decoration: underline;
}

.cta2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.cta2 .defaultcta {
  border: 1px solid var(--color-white);
}

.close-line {
  width: 10%;
  max-width: 4rem;
  height: 0.3rem;
  background-color: var(--color-blue);
}

.form {
  display: flex;
  flex-direction: column;
  text-align: left;
  width: 100%;
}
.form__item {
  display: flex;
  flex-direction: column-reverse;
  padding-top: 2rem;
}
.form__item::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 0.125rem;
  background: var(--color-blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.3s;
}
.form__item label {
  font-size: var(--font-size-m);
  color: var(--color-dark-gray);
  top: 3rem;
  left: 1rem;
  z-index: 2;
  transition: all 0.5s ease;
  position: absolute;
}
.form__item input {
  font-size: var(--font-size-m);
  line-height: 20px;
  border: solid var(--color-light-gray);
  border-width: 0 0 1px 0;
  padding: var(--spacing-m);
  background-color: var(--color-light-gray);
}
.form__item input:not(:-moz-placeholder) + label {
  top: 0.5rem;
}
.form__item input:not(:placeholder-shown) + label, .form__item input:focus + label {
  top: 0.5rem;
}
.form__item:focus-within::before {
  transform: scaleX(1);
}
.form__item:focus-within input {
  box-shadow: 0 0 10px #dedede;
  -moz-box-shadow: 0 0 10px #dedede;
  -webkit-box-shadow: 0 0 10px #dedede;
}
.form__item .defaultcta {
  align-self: flex-end;
}

.general-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 95%;
  padding-left: 1rem;
}
.general-list li {
  list-style: none;
  text-align: left;
  list-style: disc;
  line-height: 1.8rem;
  font-size: 1.2rem;
}
.general-list li::marker {
  font-size: 1.5rem;
}

.hamburger {
  display: flex;
  flex-direction: column;
}
.hamburger a {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hamburger a img {
  width: 2rem;
  height: 2rem;
}
.hamburger a img:hover, .hamburger a img:active {
  opacity: 0.8;
}
@media screen and (min-width: 767px) {
  .hamburger {
    display: none;
  }
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-self: flex-start;
}
.logo a {
  max-width: 8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 767px) {
  .logo a {
    max-width: 10rem;
  }
}
.logo a img {
  width: 100%;
  height: auto;
}

.category {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
}
.category__item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.social {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.social a {
  display: flex;
  flex-direction: column;
  opacity: 0.8;
}
.social a:active, .social a:hover {
  opacity: 1;
}
.social a img {
  width: 2.2rem;
  height: auto;
}

.animation img {
  transition: transform 5s ease;
}
.animation img:hover {
  transform: scale(1.2);
  transition: transform 5s ease;
}

.cookies {
  background-color: var(--color-white);
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  gap: var(--spacing-m);
  box-shadow: 0.2rem 0.2rem var(--color-black);
  -moz-box-shadow: 0.2rem 0.2rem var(--color-black);
  -webkit-box-shadow: 0.2rem 0.2rem var(--color-black);
}

.hide {
  animation: hide 1s;
  -webkit-animation: hide 1s;
  bottom: -10rem;
}

/* Form animation*/
@keyframes hide {
  from {
    bottom: 0px;
    opacity: 1;
  }
  to {
    bottom: -10rem;
    opacity: 0;
  }
}
/* Chrome, Safari, Opera */
.contacto__form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.contacto__form .contact__form {
  width: 100%;
  max-width: 35rem;
}
.contacto__form form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-start;
  font-size: 1rem;
}
.contacto__form form .preview-form {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.contacto__form form .field-holder {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-start;
}
.contacto__form form .field-holder input[type=text],
.contacto__form form .field-holder input[type=email] {
  background-color: rgba(255, 255, 255, 0.9);
}
.contacto__form form .field-holder input, .contacto__form form .field-holder select {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
}
.contacto__form form .field-holder select {
  padding: 0;
}
.contacto__form form .field-holder select option {
  padding: 0.5rem;
}
.contacto__form form .field-holder .defaultcta {
  width: 10rem;
}

.centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  color: var(--color-white);
  grid-column: 2/7;
  grid-row: 3/6;
  padding: 8rem 0;
  max-width: 35rem;
  justify-self: center;
  width: 100%;
}
.centered h2 {
  font-size: clamp(1re, 6vw, 2rem);
}
.centered p {
  font-size: clamp(0.8rem, 4vw, 1rem);
  text-align: justify;
  line-height: 1.8rem;
}
.centered__logo {
  max-width: 35rem;
  width: 80%;
}
.centered__logo--smaller {
  max-width: 340px;
  width: 80%;
}
.centered--left {
  align-items: flex-start;
}
.centered--left h2 {
  font-size: clamp(1.4rem, 4vw, 1.8rem);
}
.centered__pregunta {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-bottom: 2rem;
}
.centered__pregunta h2 {
  font-size: clamp(1.6rem, 4vw, 2rem);
}

.galeria {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  width: 100%;
}
.galeria__item {
  display: flex;
  flex-direction: column;
}
.galeria__item a {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.galeria__item a:hover, .galeria__item a:active {
  opacity: 0.8;
}
.galeria__item a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.grid3 {
  display: grid;
  width: 90%;
  grid-template-columns: repeat(auto-fit, minmax(max(280px, (100% - 2rem) / 3), 1fr));
  gap: 3rem 1rem;
}
.grid3__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}
.grid3__item .defaultcta {
  font-size: 0.8rem;
}
.grid3__img {
  display: flex;
  flex-direction: column;
  height: 250px;
  width: 100%;
  overflow: hidden;
}
.grid3__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.modal {
  display: none;
  position: fixed;
  z-index: 2;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.8);
}
.modal .closebtn {
  position: absolute;
  right: var(--spacing-m);
  top: var(--spacing-m);
  z-index: 2;
  width: 2.5rem;
  height: 2.5rem;
  padding: var(--spacing-xs);
  background: var(--color-white);
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  box-shadow: 0 0 10px #dedede;
  -moz-box-shadow: 0 0 10px #dedede;
  -webkit-box-shadow: 0 0 10px #dedede;
  transition: all 0.5s ease;
}
.modal .closebtn:active, .modal .closebtn:hover {
  transform: scale(1.1);
  transition: all 0.5s ease;
}
.modal .closebtn:focus {
  background: var(--color-green);
}
.modal__msg {
  width: 80%;
  height: 80%;
  max-width: 40rem;
  background-color: var(--color-white);
  padding: var(--spacing-s);
  display: flex;
  flex-direction: column;
  border-radius: 0.4rem;
  -moz-border-radius: 0.4rem;
  -webkit-border-radius: 0.4rem;
  /* Add animation */
  animation: show 0.5s;
  /* Chrome, Safari, Opera */
  -webkit-animation: show 0.5s;
}
.modal:target {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Form animation*/
@keyframes show {
  from {
    top: -50rem;
    opacity: 0;
  }
  to {
    top: 0px;
    opacity: 1;
  }
}
.slider {
  height: 100%;
}

.iframe {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  display: none;
  grid-column: 1/6;
  grid-row: 1/6;
}
.iframe iframe {
  width: 100%;
  height: 100%;
}

.overlay {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  position: absolute;
}
.overlay img {
  max-width: 570px;
  width: 90%;
}

.testimoniales {
  background: var(--color-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 5rem 0;
}
.testimoniales__slider {
  width: 100%;
  max-width: 1000px;
  overflow: hidden;
}

/* ==================================================
NEW AUTOMATION LOGIC
Total duration: 15s (5 seconds per slide x 3 slides)
================================================== */
.track {
  display: flex;
  width: 300%;
  /* Runs the 15-second loop infinitely */
  animation: autoSlide 20s infinite ease-in-out;
}
.track__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-l);
  scroll-snap-align: center;
  width: 33.333%;
  padding: 3rem;
}
@media screen and (min-width: 767px) {
  .track__item {
    display: grid;
    grid-template-columns: 1fr 2fr;
  }
}
.track__img {
  width: 80vw;
  height: 80vw;
  border-radius: 50%;
  overflow: hidden;
}
@media screen and (min-width: 767px) {
  .track__img {
    width: 20vw;
    height: 20vw;
  }
}
.track__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.track__desc {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Pause the slider when a user hovers over a testimonial card */
.testimonialesr:hover .track,
.testimonialesr:hover .nav-dot {
  animation-play-state: paused;
}

/* Base Navigation Dots Layout */
.slider-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 25px;
}
.slider-nav__dot {
  width: 0.5rem;
  height: 0.5rem;
  background-color: #d1d5db;
  border-radius: 50%;
  transition: transform 0.3s ease;
  animation-duration: 15s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}

/* Apply sync animations to corresponding dots */
.dot1 {
  animation-name: activeDot1;
}

.dot2 {
  animation-name: activeDot2;
}

.dot3 {
  animation-name: activeDot3;
}

/* 
Animation Timeline Calculations:
0% to 30%    (0s - 4.5s)  -> Slide 1 Active
33% to 63%   (5s - 9.5s)  -> Slide 2 Active
66% to 96%   (10s - 14.5s)-> Slide 3 Active
100%         (15s)        -> Returns back to Slide 1
*/
@keyframes autoSlide {
  0%, 30% {
    transform: translateX(0%);
  }
  33%, 63% {
    transform: translateX(-33.333%);
  }
  66%, 96% {
    transform: translateX(-66.666%);
  }
  100% {
    transform: translateX(0%);
  }
}
@keyframes activeDot1 {
  0%, 30%, 100% {
    background-color: #4f46e5;
    transform: scale(1.1);
  }
  33%, 96% {
    background-color: #d1d5db;
    transform: scale(1);
  }
}
@keyframes activeDot2 {
  0%, 30%, 66%, 100% {
    background-color: #d1d5db;
    transform: scale(1);
  }
  33%, 63% {
    background-color: #4f46e5;
    transform: scale(1.1);
  }
}
@keyframes activeDot3 {
  0%, 63%, 100% {
    background-color: #d1d5db;
    transform: scale(1);
  }
  66%, 96% {
    background-color: #4f46e5;
    transform: scale(1.1);
  }
}
.menu {
  display: none;
  flex-direction: column;
  justify-content: flex-start;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 999;
  height: 100%;
  min-width: 16rem;
}
.menu:target {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  animation: show-menu 0.5s;
  background-color: var(--color-black);
}
@media screen and (min-width: 1200px) {
  .menu {
    display: grid;
    grid-template-columns: repeat(5, auto);
    gap: 1rem;
    align-items: center;
    justify-content: flex-end;
    height: auto;
    position: relative;
  }
}
.menu__link {
  color: var(--color-text-tertiary);
  padding: 0.6rem;
  text-align: left;
  font-size: clamp(0.8rem, 2vw, 1rem);
  text-align: left;
  width: auto;
  border-bottom: 2px solid var(--color-text-primary);
}
@media screen and (max-width: 1200px) {
  .menu__link {
    text-align: left;
    padding: 0.6rem;
    width: 100%;
    font-size: 1.2rem;
  }
}
.menu__link:hover, .menu__link:active, .menu__link--selected {
  border-color: 2px solid var(--color-white);
}
.menu__link--outline {
  border: 2px solid var(--color-white);
  border-radius: 0.4rem;
  -moz-border-radius: 0.4rem;
  -webkit-border-radius: 0.4rem;
}
.menu__hide {
  color: var(--color-white);
  font-size: 3rem;
  text-align: right;
  padding: 1rem;
}
.menu__hide:active, .menu__hide:hover {
  border-color: var(--color-black);
}
.menu__hide:target {
  animation: hide-menu 1s;
}
@media screen and (min-width: 1200px) {
  .menu__hide {
    display: none;
  }
}

/* mobile menu animation*/
@keyframes show-menu {
  from {
    right: -16rem;
    opacity: 0;
  }
  to {
    right: 0;
    opacity: 1;
  }
}
@keyframes hide-menu {
  from {
    right: 0px;
    opacity: 1;
  }
  to {
    right: -16rem;
    opacity: 0;
  }
}
.inmediata {
  background: var(--color-white);
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 3rem 0;
}
.inmediata__title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 90%;
  gap: 1.5rem;
}
.inmediata__title h2 {
  font-size: clamp(1.4rem, 4vw, 2rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 90%;
  text-align: left;
}
.inmediata__title h2 span {
  font-size: clamp(0.8rem, 2vw, 1.2rem);
  font-weight: 400;
}

.header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: sticky;
  top: 0;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.9);
  width: 100%;
}
.header__nav {
  padding: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (min-width: 800px) {
  .header__nav {
    padding: 0.5rem 4rem;
  }
}
.header__nav .nav {
  position: fixed;
  right: 0;
  display: flex;
  transform: translate(50rem);
  transition: all 0.5s ease;
  flex-direction: column;
  z-index: 9999;
  top: 0;
  background: var(--color-black);
  text-align: left;
  width: 90%;
  height: 100%;
  gap: var(--spacing-m);
}
@media screen and (min-width: 800px) {
  .header__nav .nav {
    flex-direction: row;
    height: auto;
    position: relative;
    width: auto;
    right: 0;
    padding: 1rem 0;
    transform: inherit;
    background-color: transparent;
    gap: inherit;
    gap: 2rem;
  }
}
.header__nav .nav a {
  font-size: var(--font-size-l);
  color: var(--color-white);
  padding: var(--spacing-m);
}
@media screen and (min-width: 800px) {
  .header__nav .nav a {
    font-size: var(--font-size-s);
    padding: var(--spacing-s);
  }
}
.header__nav .nav a.current-menu-item {
  box-shadow: 0 4px 0 var(--color-light-blue);
}
.header__nav .nav a:hover, .header__nav .nav a:active {
  box-shadow: 0 4px 0 var(--color-light-blue);
}
.header__nav .nav a.closebtn {
  display: flex;
  justify-content: flex-end;
}
.header__nav .nav a.closebtn:hover, .header__nav .nav a.closebtn:active {
  box-shadow: none;
}
.header__nav .nav a.closebtn img {
  width: 2rem;
  height: 2rem;
}
@media screen and (min-width: 800px) {
  .header__nav .nav a.closebtn {
    display: none;
  }
}
.header__nav .nav a.defaultcta {
  min-width: inherit;
  padding: 0.5rem 1rem;
  display: none;
}
.header__nav .nav a.defaultcta:hover, .header__nav .nav a.defaultcta:active {
  box-shadow: none;
}
@media screen and (min-width: 800px) {
  .header__nav .nav a.defaultcta {
    display: flex;
  }
}
.header__nav .show {
  transform: translate(0);
  transition: all 0.5s ease;
}

content {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  background: var(--color-black);
}
content article {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.catalogo {
  background: var(--color-white);
  padding: 4rem 0;
}

footer {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4rem 0;
}
.footer {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer__logos {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  justify-content: space-evenly;
  width: 90%;
  padding-bottom: 3rem;
}
.footer__logos div img {
  width: 110px;
  height: auto;
}
.footer__info {
  background: var(--color-black);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  padding: 4rem;
  color: var(--color-white);
}
.footer__info p a {
  color: var(--color-white);
}
.footer__info p a:hover, .footer__info p a:active {
  text-decoration: underline;
}
.footer__info > img {
  max-width: 200px;
  height: auto;
  width: 80%;
}
.footer__info .defaultcta {
  font-size: 0.6rem;
}
.footer__info .defaultcta:hover, .footer__info .defaultcta:active {
  background: var(--color-blue-hover);
}
.footer__disclaimer {
  padding-top: 4rem;
}/*# sourceMappingURL=main.css.map */