

:root {
  --blue: #0cc0df;
  --white: #f1f1f1;
  --black: #1c1c1c;

  /**
   * typography
   */

  --ff-Montserrat: 'Montserrat', sans-serif;

  
  --headline-lg: 5rem;
  --headline-md: 3rem;
  --headline-sm: 2rem;
  --title-lg: 1.8rem;
  --title-md: 1.5rem;
  --title-sm: 1.4rem;
  
  --fw-500: 500;
  --fw-700: 700;

  /**
   * spacing
   */

  --section-padding: 120px;

  /**
   * box shadow
   */

  --shadow-1: 0px 2px 20px hsla(209, 36%, 72%, 0.2);
  --shadow-2: 0 4px 16px hsla(0, 0%, 0%, 0.06);

  /**
   * border radius
   */

  --radius-circle: 50%;
  --radius-12: 12px;
  --radius-6: 6px;
  --radius-4: 4px;

  /**
   * transition
   */

  --transition-1: 0.25s ease;
  --transition-2: 0.5s ease;
  --transition-3: 1s ease;
  --cubic-in: cubic-bezier(0.51, 0.03, 0.64, 0.28);
  --cubic-out: cubic-bezier(0.05, 0.83, 0.52, 0.97);

}





/*-----------------------------------*\
  #RESET
\*-----------------------------------*/

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

li { list-style: none; }

a,
img,
span,
time,
input,
button,
ion-icon { display: block; }

a {
  color: inherit;
  text-decoration: none;
}

img { height: auto; }

input,
button {
  background: none;
  border: none;
  font: inherit;
}

input {
  width: 100%;
  outline: none;
}

button { cursor: pointer; }

ion-icon { pointer-events: none; }

address { font-style: normal; }

html {
  font-size: 10px;
  font-family: var(--ff-Montserrat);
  scroll-behavior: smooth;
}

body {
  background-color: var(--white);
  font-size: 1.6rem;
  color: var(--independece);
  line-height: 1.4;
  overflow: hidden;
}

body.loaded { overflow-y: visible; }

body.nav-active { overflow: hidden; }





/*-----------------------------------*\
  #REUSED STYLE
\*-----------------------------------*/

.container { padding-inline: 16px; }

.headline-lg {
  font-size: var(--headline-lg);
  color: var(--white);
  font-weight: var(--fw-500);
  line-height: 1.2;
}

.headline-md {
  font-size: var(--headline-md);
  font-weight: var(--fw-700);
}

.headline-lg,
.headline-md { font-family: var(--ff-oswald); }

.headline-md,
.headline-sm { line-height: 1.3; }

.headline-md,
.headline-sm { color: var(--midnight-green); }

.headline-sm { font-size: var(--headline-sm); }

.title-lg { font-size: var(--title-lg); }

.title-md { font-size: var(--title-md); }

.title-sm { font-size: var(--title-sm); }

.social-list { display: flex; }

.section { padding-block: var(--section-padding); }

.has-before,
.has-after {
  position: relative;
  z-index: 1;
}

.has-before::before,
.has-after::after {
  content: "";
  position: absolute;
}

.btn {
  background-color: var(--blue);
  color: var(--white);
  font-weight: var(--fw-700);
  padding: 12px 36px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: var(--radius-6);
  overflow: hidden;
  transition: all 0.5s ease;
}
.btn:hover,.btn:focus{
background-color: var(--black);
}

.btn::before {
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--eerie-black);
  border-radius: var(--radius-6);
  transition: var(--transition-2);
  z-index: -1;
}

.btn:is(:hover, :focus-visible)::before { transform: translateX(100%); }

.w-100 { width: 100%; }

.grid-list {
  display: grid;
  gap: 40px 28px;
}

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

[data-reveal] {
  opacity: 0;
  transition: var(--transition-2);
}

[data-reveal].revealed { opacity: 1; }

[data-reveal="bottom"] { transform: translateY(50px); }

[data-reveal="bottom"].revealed { transform: translateY(0); }

[data-reveal="left"] { transform: translateX(-50px); }

[data-reveal="right"] { transform: translateX(50px); }

[data-reveal="left"].revealed,
[data-reveal="right"].revealed { transform: translateX(0); }





/*-----------------------------------*\
  #PRELOADER
\*-----------------------------------*/

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--black);
  display: grid;
  place-items: center;
  z-index: 6;
  transition: var(--transition-1);
}

.preloader.loaded {
  visibility: hidden;
  opacity: 0;
}

.preloader .circle {
  width: 50px;
  height: 50px;
  border: 4px solid var(--white);
  border-radius: var(--radius-circle);
  border-block-start-color: transparent;
  animation: rotate360 1s ease infinite;
}

@keyframes rotate360 {
  0% { transform: rotate(0); }
  100% { transform: rotate(1turn); }
}





/*-----------------------------------*\
  #HEADER
\*-----------------------------------*/

.header .btn { display: none; }

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding-block: 16px;
  z-index: 4;
}

.header.active {
  position: fixed;
  backdrop-filter: blur(5px);
  background-color: #00000038;
  box-shadow: 0 0 20px black;
  animation: headerActive 0.5s ease forwards;
}

@keyframes headerActive {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(0); }
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.contain-header{
    width: 100%;
    padding-inline: 0;
    display: flex;
    justify-content: space-between;
    padding: 0px 3% 0px 4%;
}
.nav-open-btn {
  color: var(--white);
  font-size: 4rem;
}

.navbar,
.overlay {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100vh;
}

.navbar {
  right: -300px;
  max-width: 300px;
  background-color: var(--rich-black-fogra-29);
  z-index: 3;
  transition: 0.25s var(--cubic-in);
  visibility: hidden;
}

.navbar.active {
  transform: translateX(-300px);
  visibility: visible;
  transition: 0.5s var(--cubic-out);
}

.navbar-top {
  position: relative;
  padding-inline: 25px;
  padding-block: 55px 100px;
}

.nav-close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  color: var(--white);
  font-size: 2.8rem;
}

.navbar-list {
  margin-block-end: 30px;
  border-block-end: 1px solid var(--white_a10);
}

.navbar-item { border-block-start: 1px solid var(--white_a10); }

.navbar-link {
  color: var(--white);
  text-transform: uppercase;
  padding: 10px 24px;
}

.social-list {
  justify-content: center;
  gap: 20px;
  color: var(--white);
  font-size: 1.8rem;
}

.overlay {
  right: -100%;
  background-color: var(--black);
  opacity: 0.3;
  visibility: hidden;
  transition: var(--transition-2);
  z-index: 2;
}

.overlay.active {
  transform: translateX(-100%);
  visibility: visible;
}

.navar {
  background-color: #f1f1f1; 
  position: fixed; 
  width: 70%; 
  max-width: 350px; 
  height: 100%; 
  z-index: 1000; 
  right: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: 0.25s cubic-bezier(0.51, 0.03, 0.64, 0.28);
}
.navar.active {
  visibility: visible;
  transform: translateX(0);
  transition: 0.4s cubic-bezier(0.33, 0.85, 0.4, 0.96);
}
.txt-nav {
  color: #1c1c1c; 
  font-size: 1.4rem;
  text-decoration: inherit; 
  transition: all 0.5s ease;
}
.txt-nav:hover,.txt-nav:focus{
  font-size: 1.6rem;
  margin-left: 10px;
}

.linav {
  border-bottom: 2px solid hsl(0, 0%, 78%); 
  padding: 11px; 
  list-style: none;
}

.menu-social-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  margin-top: 40px;
}
.menu-social-container .social-link {
  background: hsl(0, 0%, 90%);
  color: hsl(0, 0%, 13%);
  font-size: 20px;
  padding: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
}
.social-link {
  color: var(--black);
  font-size: 18px;
  transition: 0.25s ease;
}

.w2{
  color: var(--white);
  font-size: 3rem;
  transition: all 0.5s ease;
}
.w2:hover,.w2:focus{
  color: var(--blue);
  font-size: 3.1rem;
}
.z1{
  position: fixed;
  z-index: -1;
  width: 100%;
  height: 100%;
}
.z2{
  height: 100%;
  width: unset;
}
/*-----------------------------------*\
  #CUSTOM
\*-----------------------------------*/
.a1{
 display: flex;
 flex-direction: column;
 justify-content: center;
 align-items: center;
 height: 100vh;
}
.a2{
  color: var(--white);
  font-weight: 600;
  font-size: 2rem;
  line-height: 2.3rem;
}
.a3{
  width: 90%;
  max-width: 500px;
}
.a4{
  color: var(--white);
  font-size: 1.5rem;
  margin-top: 20px;
}
.a5{
  text-align: center;
  padding: 15px;
}
.a6{
background-color: var(--white);
width: 100%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
padding: 10px;
margin-top: 40px;
}

.a9{
  position: absolute;
  bottom: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.a10{
  color: var(--white);
  font-size: 3.5rem;
  opacity: 1;
  transition: all 0.5s ease;
}
.a10:hover,.a10:focus{
  opacity: 0;
}
.a11{
  color: var(--white);
  text-align: center;
  font-size: 2rem;
  line-height: 2.2rem; 
}
.a12{
  color: var(--black);
  text-align: center;
}
.a12a{
  padding-left: 30px;
}
.a13a{
  border-bottom: 1px solid #8f8f8f52;
  border-right: 1px solid #8f8f8f52;
  font-size: 1.3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 90px;
}
.a13{
  border-bottom: 1px solid #8f8f8f52;
  font-size: 1.2rem;
  color: var(--black);
  text-align: center;
}
.a13b{
  border-bottom: 1px solid #8f8f8f52;
  height: 90px;
}
.al2{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.a14{
  background-color: var(--white);
  padding: 20px;
  border-radius: 15px;
  margin-top: 50px;
  width: 99%;
  max-width: 500px;
  padding-top: 20px;
  padding-bottom: 20px;
}
.a15{
  line-height: 2rem;
  text-align: center;
  color: var(--white);
  margin-top: 80px;
}
.a16{
  background-color: var(--white);
  color: var(--black);
}
.a17{
  text-align: center;
  line-height: 3rem;
}
.a18{
  margin-top: 30px;
}
.a19{
  color: var(--white);
  text-align: center;
}
.a20{
  color: var(--white);
  text-align: center;
}
.a21{
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}
.a22{
  width: 30%;
  max-width: 250px;
}
.as2{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.a23{
  display: flex;
  align-items: center;
  justify-content: center;
  margin-block: 40px;
}
.a24{
  margin-top: 10px;
}
.a25{
  background-color: var(--white);
}
.a26{
  text-align: center;
}
.a27 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  max-width: 600px;
  margin: auto;
  margin-top: 80px;
}

.a28 {
  display: grid;
  grid-template-rows: 1fr 1fr; /* Dos filas */
  gap: 10px;
  border-radius: 15px;
  overflow: hidden;
}

.a29 {
  width: 100%;
  height: 150px;
}

.a30 {
  width: auto;
  height: 100%;
  display: block;
  transition: all 0.5s ease;
}
.a30:hover,.a30:focus{
  height: 120%;
}

.a31 {
  display: flex;
  align-items: end;
  justify-content: center;
  border-radius: 15px;
  overflow: hidden;
}

.a32 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left;
  transition: all 0.5s ease;
}
.a32:hover,.a32:focus{
  height: 120%;
  width: 120%;
}
.a33{
  width: 100%;
  border-radius: 15px;
  overflow: hidden;
  margin-top: 10px;
}
.a34{
  width: 100%;
  transition: all 0.5s ease;
}
.a34:hover,.a34:focus{
 
  width: 120%;
}

.con1{

  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.con2{
  width: 350px;
  padding: 20px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 20px;

}
.con3{
  width: 300px;
}
.con4{
  color: var(--gris);
  margin-top: 20px;
  font-weight: 400;
}
.con5{
  border: 1px solid #2f2f2f;
  width: 100%;
  padding: 5px 15px 5px 15px;
  border-radius: 13px;
  margin-top: 10px;
}
.con7{
  border: 1px solid #2f2f2f;
  width: 100%;
  padding: 5px 15px 5px 15px;
  border-radius: 10px;
  display: flex;
  margin-top: 13px;
}
.con8{
  border: 1px solid #2f2f2f;
  width: 100%;
  padding: 5px 15px 5px 15px;
  border-radius: 10px;
  display: flex;
  margin-top: 13px;
}
.con9{
  border: none;
  width: 100%;
  height: 70px;
}
.con10{
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-top: 20px;
}
.con13{
  display: flex;
  align-items: center;

}
.con11{
  width: 20px;
}
.con12{
  font-size: 1rem;
}
.con12b{
  font-size: 1.2rem;
}

/*-----------------------------------*\
  #CARD
\*-----------------------------------*/
/* From Uiverse.io by MuhammadHasann */ 
.card {
  --paragraph: hsl(0, 0%, 83%);
  --line: hsl(240, 9%, 17%);
  --primary: hsl(192, 81%, 49%);

  position: relative;

  display: flex;
  flex-direction: column;
  gap: 1rem;

  padding: 1rem;
  width: 350px;
  background-color: hsla(240, 15%, 9%, 1);
  background-image: radial-gradient(
      at 88% 40%,
      hsla(240, 15%, 9%, 1) 0px,
      transparent 85%
    ),
    radial-gradient(at 49% 30%, rgb(20, 26, 25) 0px, transparent 85%),
    radial-gradient(at 14% 26%, rgb(20, 26, 26) 0px, transparent 85%),
    radial-gradient(at 0% 64%, rgb(38, 247, 230) 0px, transparent 85%),
    radial-gradient(at 41% 94%, rgb(185, 240, 255) 0px, transparent 85%),
    radial-gradient(at 100% 99%, rgb(36, 208, 255) 0px, transparent 85%);

  border-radius: 30px;
  box-shadow: 0px -16px 24px 0px rgba(255, 255, 255, 0.25) inset;
}

.card .card__border {
  overflow: hidden;
  pointer-events: none;

  position: absolute;
  z-index: -10;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  width: calc(100% + 2px);
  height: calc(100% + 2px);
  background-image: linear-gradient(
    0deg,
    hsl(0, 0%, 100%) -50%,
    hsl(0, 0%, 40%) 100%
  );

  border-radius: 40px;
}

.card .card__border::before {
  content: "";
  pointer-events: none;

  position: fixed;
  z-index: 200;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%), rotate(0deg);
  transform-origin: left;

  width: 200%;
  height: 10rem;
  background-image: linear-gradient(
    0deg,
    hsla(0, 0%, 100%, 0) 0%,
    hsl(194, 100%, 29%) 40%,
    hsl(199, 95%, 60%) 60%,
    hsla(0, 0%, 40%, 0) 100%
  );

  animation: rotate 8s linear infinite;
}

@keyframes rotate {
  to {
    transform: rotate(360deg);
  }
}

.card .card_title__container .card_title {
  font-size: 2.3rem;
  color: var(--white);
}

.card .card_title__container .card_paragraph {
  margin-top: 0.25rem;
  width: 100%;

  font-size: 1rem;
  color: var(--paragraph);
}

.card .line {
  width: 100%;
  height: 0.1rem;
  background-color: var(--line);

  border: none;
}

.card .card__list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.card .card__list .card__list_item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.card .card__list .card__list_item .check {
  display: flex;
  justify-content: center;
  align-items: center;

  width: 1rem;
  height: 1rem;
  background-color: var(--primary);

  border-radius: 50%;
}

.card .card__list .card__list_item .check .check_svg {
  width: 0.75rem;
  height: 0.75rem;

  fill: var(--black);
}

.card .card__list .card__list_item .list_text {
  font-size: 1.4rem;
  color: var(--white);
}

.card .button {
  cursor: pointer;
  margin-top: 40px;
  margin-bottom: 40px;
  padding: 1rem;
  width: 100%;
  background-image: linear-gradient(
    0deg,
    rgb(50, 183, 213) 0%,
    rgb(1, 161, 186) 100%
  );

  font-size: 1.5rem;
  color: var(--white);

  border: 0;
  border-radius: 9999px;
  box-shadow: inset 0 -2px 25px -4px var(--white);
}

.pric{
  margin-top: 30px;
 
}
.a7{
  font-size: 3rem;
  color: var(--white);
  font-weight: 600;
  line-height: 3.3rem;
}
.a8{
  font-size: 2rem;
  color: var(--blue);
  line-height: 2rem;
}
.ex{
  color: var(--white);
}


.ils{
  background-color: var(--white);
  text-align: center;
}
.mz2{
  display: flex;
  justify-content: center;
  align-items: center;
}
/*-----------------------------------*\
  #BACK TO TOP
\*-----------------------------------*/

.back-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: var(--verdigris);
  color: var(--white);
  padding: 16px;
  font-size: 2rem;
  border-radius: var(--radius-circle);
  transition: var(--transition-1);
  opacity: 0;
  z-index: 3;
}

.back-top-btn:is(:hover, :focus-visible) { background-color: var(--eerie-black); }

.back-top-btn.active {
  transform: translateY(-10px);
  opacity: 1;
}
.footer{
  position: relative;
  background-color: var(--black);
  width: 100%;
  padding-block: 24px;
  color: var(--white);
}
.copyright {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}
.legal {
  display: flex;
  gap: 1.5rem;
  width: 100%;
  justify-content: center;
  color: #f1f1f1;
}
.link {
  text-decoration: inherit;
  color: #f1f1f1;
  font-size: 1.5rem;
}
.footr {

  bottom: 30px;
  left: 0;
  width: 100%;
}


/*-----------------------------------*\
  #MEDIA QUERIES
\*-----------------------------------*/

/**
 * responsive for large than 768px screen
 */

@media (min-width: 768px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --headline-lg: 8rem;
    --headline-md: 4.8rem;

  }



  /**
   * REUSED STYLE
   */

  .container {
    max-width: 750px;
    width: 100%;
    margin-inline: auto;
  }



  /**
   * HEADER
   */

  .header .btn { display: block; }

  .nav-open-btn { margin-inline-start: auto; }

  .header .container { gap: 40px; }



}





/**
 * responsive for large than 992px screen
 */

@media (min-width: 992px) {

  /**
   * REUSED STYLE
   */

  .container { max-width: 940px; }

  .z2{
    height: unset;
    width: 100%;
  }
  .a14{
    width: 99%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .a13a{
    font-size: 1.6rem;
    height: 90px;
  }
  .a13{
    font-size: 1.5rem;
   
    text-align: center;
  }
  .a15{
    line-height: 2.5rem;
    
  }
  
  .a27 {
    max-width: unset;
  }
  .a29 {
    height: 230px;
  }
  
}





/**
 * responsive for large than 1200px screen
 */

@media (min-width: 1200px) {

  /**
   * REUSED STYLE
   */

  .container { max-width: 1200px; }



  /**
   * HEADER
   */

  .header { padding-block: 24px; }

  .nav-open-btn,
  .navbar-top,
  .navbar .social-list { display: none; }

  .navbar,
  .navbar.active,
  .navbar-list {
    all: unset;
    display: block;
  }

  .navbar { margin-inline-start: auto; }

  .navbar-list {
    display: flex;
    gap: 8px;
  }

  .navbar-item { border-block-start: none; }

  .navbar-link {
    --title-md: 1.8rem;
    font-weight: var(--fw-500);
    padding-inline: 16px;
    text-transform: capitalize;
  }

  .a29 {
    height: 300px;
  }

}