

:root {

  /**
   * colors
   */

  --rich-black-fogra-29: hsl(222, 44%, 8%);
  --middle-blue-green_40: hsla(174, 64%, 71%, 0.4);
  --midnight-green: hsl(186, 100%, 19%);
  --midnight-green_a25: hsla(186, 100%, 19%, 0.25);
  --independece: hsl(236, 14%, 39%);
  --verdigris: #af9817;
  --ming: hsl(186, 72%, 24%);
  --space-cadet: hsla(226, 45%, 24%);
  --eerie-black: hsl(0, 0%, 13%);
  --alice-blue: hsl(187, 25%, 94%);
  --gray-web: hsl(0, 0%, 50%);
  --gainsboro: hsl(0, 0%, 87%);
  --white: hsl(0, 0%, 100%);
  --white_a20: hsla(0, 0%, 100%, 0.2);
  --white_a10: hsla(0, 0%, 100%, 0.1);
  --black: hsl(0, 0%, 0%);

  /**
   * typography
   */

  --ff-oswald: 'Questrial', sans-serif;
  --ff-rubik: 'Open-Sans', 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-rubik);
  scroll-behavior: smooth;
}

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

body.loaded { overflow-y: visible; }

body.nav-active { overflow: hidden; }


p{
  font-weight: 400;
}
h2 {
  font-weight: 200;
  text-align: center;
  line-height: 3.5rem;
  font-size: 3.5rem;
}


/*-----------------------------------*\
  #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 {
  border: 1px solid;
  color: var(--white);
  font-weight: var(--fw-700);
  padding: 12px 36px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 20px;
  overflow: hidden;
}
.btnz {
  border: 1px solid;
  color: var(--white);
  background-color: #af9817 ;
  font-weight: var(--fw-700);
  padding: 12px 36px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 20px;
  overflow: hidden;
}
.btn::before {
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: #af9817;
  border-radius: var(--radius-6);
  transition: var(--transition-2);
  z-index: -1;
}
.btnz::before {
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: transparent;
  border-radius: var(--radius-6);
  transition: var(--transition-2);
  z-index: -1;
}

.btnz:is(:hover, :focus-visible)::before { transform: translateX(100%); }
.btnz:is(:hover, :focus-visible) {
   background-color: transparent; /* Cambia el color del texto al hacer hover o focus */
}

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


.btns {
  border: 1px solid;
  color: #af9817;
  font-weight: var(--fw-700);
  padding: 12px 36px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 20px;
  overflow: hidden;
  position: relative; /* Importante para que ::before funcione */
}

.btns::before {
  content: '';
  position: absolute;
  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; /* Para que el fondo no tape el texto */
}

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

.btns:is(:hover, :focus-visible) {
  color: #fff; /* Cambia el color del texto al hacer hover o focus */
}

.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: url('../images/bg-ok.png');
  background-repeat: no-repeat;
  background-size: cover;
  display: grid;
  place-items: center;
  z-index: 6;
  transition: var(--transition-1);
}
.logoloader {
  position: fixed;
  z-index: 999;
  width: 100%;
 max-width: 600px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.preloader.loaded {
  visibility: hidden;
  opacity: 0;
}


.preloader .circle {
  position: fixed;
  bottom: 50px;
  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;
}
/*-----------------------------------*\
  #HEADERjj
\*-----------------------------------*/
.titu{
  line-height: 3rem; 
  margin-bottom: 0;
  font-size: 2rem;
  opacity: 0;
  transition:  2s ease;
}
.subtitu{
  font-size: 1.6rem;
  opacity: 0;
  font-weight: 200;
  transition:  2s ease;
}

.revc{
  opacity: 1;
}

.a1 {
  overflow: hidden; 
  position: relative; 
  width: 100vw; 
  height: 100vh;
  display: flex;
        justify-content: center;
        align-items: center;
}
  .a2 {
    position: absolute; 
    top: 0; 
    left: 0;
    width: 100%; 
    height: 100%; 
    z-index: -1; 
    display: flex; 
    justify-content: center; 
    align-items: center;
  }
  .a3 {
    position: absolute; 
    top: 50%; 
    left: 50%; 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    transform: translate(-50%, -50%); 
  
  }
  .a3v {
    position: absolute; 
    top: 50%; 
    left: 50%; 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    transform: translate(-50%, -50%); 
    display: none;
    
  }
  .a4 {
    grid-template-columns: 0.8fr 1fr;
    gap: 96px;
    display: flex;
    margin-top: -10%;
    flex-direction: column;
    align-items: center;
        
  }
  .a5 {
      margin-top: -35%;
    font-size: 3rem;
          text-align: center;
          color: #fff;
          display: flex;
          justify-content: center;
          flex-direction: column;
          align-items: center;
  }
  .a6 {
    width: 200px;
  }
  .a7 {
    display: none;
    max-width: 500px; 
    width: 100%; 
    background: hsla(0, 0%, 0%, 0.336); 
    color: #fff; 
    padding: 25px; 
    position: absolute; 
    z-index: 5; 
    bottom: 5px;
    left: 60%;
  }
  .a7-1 {
    position: absolute;
    bottom: 20%;
    right: -80px;
    z-index: 2;
    display: block;
    font-size: 1.5rem;
    background: hsla(0, 0%, 0%, 0.336);
    color: #fff;
    padding: 25px;
    transform: translateY(-50%) rotate(-90deg);
}
    .a8{
      text-align: center;
    }
    .a9 {
      background: hsla(0, 0%, 100%, 0.877);
      padding: 5px;
      padding-left: 15px;
      margin-bottom: 15px;
    }
    .a10 {
      display: flex; 
      justify-content: center; 
      margin-top: 15px;
    }
    .a11 {
      position: absolute; 
      z-index: 2; 
      width: 100%; 
      bottom: 10px; 
      display: flex; 
      justify-content: center;
    }
    .a12 {
      font-size: 5rem; 
      color: #fff;
    }
    .a13 {
      padding-block: 0;
    }
    .a133 {
      padding-bottom: 0;
    }
    .a14 {
      text-align: center;
    }
    .a15 {
      font-size: 2rem;
      line-height: 3rem;
      margin-bottom: 9px;
  }
    
    .a16 {
      width: 100%;
    }
    .a17 {
      height: 100%;
      width: 100vw;
      position: relative;
      overflow: hidden;
  }
    .a18 {
      width: auto; 
      filter: brightness(0.5); 
      position: absolute; 
      z-index: -1;
    }
    .a19 {
      height: 100%;
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    .a20 {
      width: 250px
    }
    .a21 {
      display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    .a22 {
      text-align: center; 
      width: 100%;
    }
    .a23 {
      margin-top: 25px;
    }
    .a24 {
      margin-top: 15px;
    }
    .a25 {
      margin-top: 40px;
      display: flex;
      flex-wrap: wrap;
      gap: 15px;
      text-align: center;
      justify-content: center;
    }
    .a26 {
      width: 80px; 
      position: absolute;
    }
    .a27 {
      margin-top: 70px;
      font-size: 1rem;
      line-height: 1.5rem;
    }
    
    .a28 {
      margin-top: -12px; 
      font-size: 2rem; 
      color: #af9817;
    }
    .a29 {
      width: 200px; 
      position: relative; 
      z-index: 2;
    }
    .a30 {
      background-color: #fff; 
      padding-bottom: 0;
    }
    .a31 {
      text-align: center;
      font-size: 2rem; 
      line-height: 2rem;
    }
    .a32 {
      display: flex; 
      gap: 30px;
      margin-top: 60px;
      flex-direction: column;
    }
    .a33 {
      font-size: 4rem;
      margin-top: 50px;
      line-height: 4rem;
      text-align: center;
      font-weight: 200;
      position: relative;
      top: 104px;
    }
    .a34 {
      display: flex;
      align-items: center;
      flex-direction: column;
    }
    .t1 {
    font-size: 2rem;
    line-height: 2rem;
    margin-top: 40px;
    }
    .a35 {
      width: 100%; 
      text-align: center;
    }
    .a36 {
      margin-top: 20px;
    }
    .a37 {
      width: auto; 
      filter: brightness(0.5); 
      position: absolute; 
      z-index: -1;
    }
    .a38 {
      display: flex; 
      align-items: center; 
      width: 100%; 
      justify-content: center;
    }
    .a39 {
      display: flex;
      flex-direction: column;
      align-items: center; 
      margin-top: 100px;
    }
    .a40 {
      display: flex;
      gap: 100px;
      margin-top: 100px;
      flex-direction: column;
  }
   
    
    .a41 {
      display: flex;
                flex-direction: column;
                align-items: center;
                width: 100%;
                padding: 35px;
                background: #fff;
                position: relative;
                height: 360px;
    }
    .a42 {
      display: flex; 
      justify-content: center; 
      margin-top: 35px;
    }
    .a43 {
      display: flex; 
      justify-content: center; 
      width: 100%; 
      margin-top: 100px;
    }
    .a44 {
      width: 250px
    }
    .a45 {
      width: 44px;
    }
    .a46 {
      margin-top: 40px;
    }
    .a47 {
      margin-top: 70px;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .a48 {
      display: flex;
      justify-content: center;
      gap: 30px;
      margin-top: 100px;
      flex-direction: column;
  }
    
    .a49 {
      width: 100%;
    }
    .a50 {
      display: flex; 
      align-items: center;
    }
    .a501 {
      display: flex;
      align-items: center;
      flex-direction: column;
      color: #fff;
  }
    .a51 {
      font-size: 3rem; 
      color: red;
    }
    .a52 {
      font-size: 3rem; 
      color: green;
    }
    .a53 {
      display: flex; 
      justify-content: center; 
      margin-top: 35px;
    }
    .a54 {
      text-align: center; 
      margin-top: 70px;
    }
    .a55 {
      display: flex; 
      justify-content: center; 
      margin-top: 35px;
    }
    .a56 {
      padding-top: 10px;
    }
    .a57 {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      margin-bottom: 70px;
    }
    .a58 {
      width: 20%;
      display: flex;
      justify-content: center;
    }
    .a59 {
      width: 50px
    }
    .a60 {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      margin-top: 20px;
  }
    .a61 {
      display: flex; 
      gap: 10px;
    }
    .a62 {
      width: 30px;
    }
    .a64 {
      display: flex; 
      justify-content: center; 
      margin-top: 35px;
    }
    .a65 {
      position: fixed; 
      z-index: 9; 
      top: 0; 
      width: 100%; 
      height: 100vh; 
      background-color: rgb(0 0 0 / 80%); 
      display: none;
    }
    .a66 {
      position: fixed;
  
      top: 50%;
      left: 50%;
      z-index: 10;
      transform: translate(-50%, -50%);
      height: auto; /* Permitir que el contenedor crezca según el contenido */
      overflow: visible; 
      visibility: hidden;
    }
    .a67 {
      height: 400px; 
      background: url('../images/bg-ok.png'); 
      background-size: cover; 
      background-repeat: no-repeat;
    }
    .a68 {
      padding-top: 20px;
    }
    .a69 {
      display: flex;
        gap: 100px;
        justify-content: center;
        flex-direction: column-reverse;
  }
    .a70 {
      display: none;
      max-width: 500px; 
      width: 100%; 
      background: hsla(0, 0%, 0%, 0.336); 
      color: #fff; 
      padding: 25px;
    }
    .a71 {
      text-align: center;
    }
    .a72{

    }
    .imf {
    position: absolute;
    width: 50%;
    right: -40%;
    bottom: 0;
    box-shadow: #0000008a -3px 14px 20px 0px;;
    opacity: 0;
    transition: 5s ease;
    }
    @media (min-width: 480px){
        .imf {
    width: 45%;
    right: -28%;
    bottom: 0;
    }
    }
     @media (min-width: 600px){
        .imf {
    width: 35%;
    right: -25%;
    bottom: 0;
    }
    }
    @media (min-width: 697px){
        .imf {
    width: 20%;
    right: -30%;
    bottom: 0;
    }
    }
    @media (min-width: 907px){
        .imf {
    width: 40%;
    right: -20%;
    bottom: 0;
    }
    }
    @media (min-width: 2000px){
        .imf {
   width: 20%;
    right: -27%;
    bottom: 0;
    }
    }
/*-----------------------------------*\
  #HEADERjjh
\*-----------------------------------*/
.header.active {
  position: fixed;
  background-color: var(--rich-black-fogra-29);
  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;
}

.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;
}





/*-----------------------------------*\
  #HERO
\*-----------------------------------*/

.hero-banner { display: none; }

.hero {
  height: 100vh;
  width: 100vw;
  --section-padding: 200px;

}

.hero-subtitle {
  color: var(--white);
  font-weight: var(--fw-500);
  padding-inline-start: 80px;
}

.hero-subtitle::before {
  top: 50%;
  left: 0;
  width: 60px;
  height: 1px;
  background-color: var(--white);
}

.hero-title { margin-block: 20px 30px; }

.hero-card {
  background-color: var(--white);
  border-radius: var(--radius-12);
  padding: 20px;
}

.hero-card .card-text {
  color: var(--eerie-black);
  border-block-end: 1px solid var(--midnight-green_a25);
  padding-block-end: 12px;
  margin-block-end: 14px;
}

.hero-card .input-wrapper { position: relative; }

.hero-card .input-field {
  color: var(--eerie-black);
  border-block-end: 1px solid var(--gainsboro);
  padding-inline-end: 18px;
}

.hero-card .input-wrapper ion-icon {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  color: var(--verdigris);
}

.hero-card .btn {
  width: 100%;
  justify-content: center;
  margin-block-start: 16px;
}




/*-----------------------------------*\
  #ubis
\*-----------------------------------*/
.ubs{
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  width: calc(33.33% - 15px); 
  margin-bottom: 30px;
}

.inv{
  width: 300px;
  display: flex;
  height: 300px;
  
  color: #fff;
  padding: 15px;
  border-radius: 5px;
  align-items: center;
  justify-content: center; 
  text-align: center;
}
.inv:is(:hover, :focus-visible) {
width: 390px;
height: 390px;
  color: transparent;
}
.arm1{
    position: absolute;
  font-size: 1.5rem;
  line-height: 1.7rem;
  color: transparent;
  opacity: 0;
  backdrop-filter: blur(10px);
  width: 100%;
  height: 100%;
  padding: 8px;
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
  transition: all 1.5s ease;
}
.arm1:hover,.arm1:focus{
    color: #fff;
    opacity: 1;
}
.uhm{
  width: 200px; 
  position: absolute; 
  z-index: 3;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.uhmrev{
  opacity: 1;
}
/*-----------------------------------*\
  #SERVICE custom 
\*-----------------------------------*/
.b20 {
  display: flex; 
  justify-content: center; 
  width: 100%;
  position: relative;
  left: 0;
  transition: left 2.25s ease;;
}
.b20-1 {
  left: -35%
}
.c20 {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 33%;
  padding: 35px;
  background: #fff;
  position: relative;
  height: 360px;
}

.c24{
  display: flex; 
  flex-wrap: wrap; 
  justify-content: space-between; 
  gap: 40px; 
  list-style-type: none; 
  padding: 0;
}
.c25 {
  background-color: #af981733;
  border: 1px solid #af9817;
  padding: 15px;
  width: 100%;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.c26 {
  opacity: 0;
  background: hsl(0deg 0% 13% / 84%);
  color: #fff;
  position: absolute;
  display: flex;
  text-align: center;
  padding: 20px;
  width: 100%;
  height: 300px;
  align-items: center;
  justify-content: center;
  transition: opacity 1s ease; /* Asegura una transición suave */
}

/* Para escritorio: hover y focus */
.c26:is(:hover, :focus-visible) {
  opacity: 1;
}

/* Para dispositivos táctiles: activar al tocar */
.c26:active {
  opacity: 1;
}

/* Alternativa para dispositivos táctiles: mantener el estado cuando es tocado */
.touch-active .c26 {
  opacity: 1;
}

/*-----------------------------------*\
  #SERVICE
\*-----------------------------------*/

.service-list {
  padding-block: 60px 30px;
  padding-inline: 25px;
  display: grid;
  gap: 30px;
  border-radius: var(--radius-12);
  margin-block-start: -60px;
  box-shadow: var(--shadow-1);
}

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

.service-card .card-icon,
.btn-circle {
  max-width: max-content;
  margin-inline: auto;
}

.service-card .card-icon { margin-block-end: 25px; }

.service-card .card-text { margin-block: 20px 15px; }

.service-card .btn-circle {
  color: var(--verdigris);
  font-size: 2rem;
  padding: 18px;
  border-radius: var(--radius-circle);
  box-shadow: var(--shadow-2);
  transition: var(--transition-1);
}

.service-card .btn-circle:is(:hover, :focus-visible) {
  background-color: var(--verdigris);
  color: var(--white);
}





/*-----------------------------------*\
  #ABOUT
\*-----------------------------------*/

.about { padding-block-end: 0; }

.about .container {
  display: grid;
  gap: 20px;
}

.about .section-text { margin-block: 20px 35px; }

.tab-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 15px;
}

.tab-btn {
  background-color: var(--alice-blue);
  color: var(--midnight-green);
  padding: 7px 30px;
  border-radius: var(--radius-6);
  font-weight: var(--fw-700);
}

.tab-btn.active {
  background-color: var(--verdigris);
  color: var(--white);
}

.tab-text {
  color: var(--midnight-green);
  margin-block: 35px;
}

.about-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-block-end: 10px;
}

.about-item ion-icon {
  color: var(--verdigris);
  font-size: 2rem;
  flex-shrink: 0;
}





/*-----------------------------------*\
  #LISTING
\*-----------------------------------*/
.conplus{
  display: flex; 
  justify-content: center; 
  width: 90%;

}
.plusvalia{
  position: relative; 
  z-index: 1;
  
}
.plusva{
  position: absolute; 
  z-index: 2;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.relevs{
  opacity: 1;
}
.listing { background-color: var(--alice-blue); }

.listing-card {
  padding: 25px 16px;
  display: flex;
  gap: 20px;
  border: 2px solid var(--middle-blue-green_40);
  border-radius: var(--radius-12);
  transition: var(--transition-1);
}

.listing-card:is(:hover, :focus-visible) { border-color: var(--verdigris); }

.listing-card .card-title {
  margin-block-end: 5px;
  font-family: var(--ff-oswald);
}

.listing-card .card-text { color: var(--midnight-green); }





/*-----------------------------------*\
  #BLOG
\*-----------------------------------*/

.blog {
 background-color: #fff;
  padding-block-start: 0;
}

.blog .section-title { margin-block-end: 60px; }

.blog-card {
  padding: 50px 36px;
  border-radius: var(--radius-12);
  border: 2px solid var(--alice-blue);
  background-image: url('../images/blog-card.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  overflow: hidden;
}

.blog-card::before,
.blog-card::after {
  inset: 0;
  z-index: -1;
  transition: var(--transition-3);
}

.blog-card::before {
  background-color: #282828e7;
  opacity: 0.9;
}

.blog-card::after { background-color: var(--white); }

.blog-card:is(:hover, :focus-within)::after { transform: translateY(100%); }

.blog-card .meta-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 20px;
  margin-block-end: 12px;
}

.blog-card .card-meta {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--midnight-green);
}

.blog-card .card-meta ion-icon { font-size: 1.8rem; }

.blog-card .card-meta:first-child .span { text-transform: uppercase; }

.blog-card .date {
  color: var(--space-cadet);
  font-weight: var(--fw-700);
  text-transform: uppercase;
  opacity: 0.5;
  margin-block: 16px;
}

.blog-card .btn-text {
  color: var(--verdigris);
  margin-block-start: 12px;
}

.blog-card :is(.card-meta, .card-title, .date, .card-text, .btn-text) {
  transition: var(--transition-2);
}

.blog-card:is(:hover, :focus-within) :is(.card-meta, .card-title, .date, .card-text, .btn-text) {
  color: var(--white);
}





/*-----------------------------------*\
  #FOOTER
\*-----------------------------------*/

.footer {
  background-color: var(--midnight-green);
  color: var(--white);
  background-size: contain;
  background-position: top right;
  background-repeat: no-repeat;
}

.footer-top {
  display: grid;
  gap: 40px;
  padding-block-end: 60px;
}

.footer-brand {
  background-color: var(--ming);
  padding: 32px;
  border-radius: var(--radius-6);
}

.footer .logo { margin-block-end: 20px; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-block-start: 12px;
}

.contact-item .item-icon { font-size: 4rem; }

.contact-link {
  display: inline;
  transition: var(--transition-1);
}

.contact-link:is(:hover, :focus-visible) { color: var(--verdigris); }

.footer-list-title {
  color: var(--white);
  font-weight: var(--fw-700);
  margin-block-end: 20px;
}

.footer .text { opacity: 0.7; }

.footer .address {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-block-start: 20px;
}

.footer .address ion-icon {
  font-size: 4rem;
  flex-shrink: 0;
}

.footer-link {
  margin-block-start: 8px;
  transition: var(--transition-1);
}

.footer-link:is(:hover, :focus-visible) { color: var(--verdigris); }

.footer-form .input-field {
  color: var(--white);
  border: 1px solid var(--white_a20);
  border-radius: var(--radius-4);
  padding: 8px 20px;
}

.footer-form .input-field::placeholder { color: inherit; }

.footer-form .btn {
  width: 100%;
  justify-content: center;
  margin-block: 12px 28px;
}

.footer-bottom {
  padding-block: 32px;
  border-block-start: 1px solid var(--white_a20);
}

.footer-bottom .social-list {
  justify-content: flex-start;
  gap: 8px;
  margin-block-start: 16px;
}

.footer-bottom .social-link {
  font-size: 1.4rem;
  padding: 12px;
  background-color: var(--white_a10);
  border-radius: var(--radius-circle);
  transition: var(--transition-1);
}

.footer-bottom .social-link:is(:hover, :focus-visible) { background-color: var(--verdigris); }





/*-----------------------------------*\
  #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;
}





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

/**
 * responsive for large than 768px screen
 */
 @media (min-width: 500px) {
  .a69 {
    margin-bottom: 0;

  }
  
 }

@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;
  }
  .titu{
    line-height: 5rem; 
    margin-bottom: 30px;
    font-size: 4rem;
    transition:  2s ease;
  }
  .subtitu{
    font-size: 2rem;
    font-weight: 200;
    transition:  2s ease;
  }
  .uhm{
    width: 400px; 
    position: absolute; 
    z-index: 3;
    transition: opacity 0.5s ease;
  }
  
  .a7 {
    display: block;
    max-width: 300px;
  }
  .a7-1 {
    display: none;
  }
  .a13 {
    padding-block: 50px;
  }
  .a15 {
    font-size: 3rem;
    line-height: 3rem;
    margin-bottom: 100px;
  }
  .a17 {
    height: auto;
    position: relative;
    overflow: hidden;
  }
  .a22 {
    width: 80%;
  }
  .a31 {
    text-align: center;
    font-size: 3.6rem;
    line-height: 3rem;
}
.a32 {
  display: flex; 
  gap: 30px;
  margin-top: 60px;
  flex-direction: unset;
}
.a33 {
  font-size: 4rem;
  margin-top: 50px;
  line-height: 4rem;
  text-align: center;
  font-weight: 200;
  position: relative;
  top: 104px;
}
.a34 {
  display: flex;
    align-items: center;
    flex-direction: unset;
}
.t1 {
  font-size: 3.5rem;
  line-height: 3.5rem;
  margin-top: 0;
  }
.a35 {
  width: 50%;
  text-align: center;
  padding: 15px;
}
  .inv {
    width: 200px;
  }
  
  .a39 {
    margin-top: 0;
  }
  .a48 {
    display: flex; 
    justify-content: center; 
    gap: 0;
    margin-top: 100px;
    flex-direction: unset;
  }
.a49 {
  width: 50%;
  padding: 15px;
}
.a59 {
  width: 100px
}
.a60 {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
}

.a70 {
  display: block;
  max-width: 300px; 
  width: 100%; 
  background: hsla(0, 0%, 0%, 0.336); 
  color: #fff; 
  padding: 25px;
}
  /**
   * HEADER
   */

  .header .btn { display: block; }

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

  .header .container { gap: 40px; }



  /**
   * HERO
   */

  .hero-title { line-height: 1.125; }

  .hero .wrapper {
    display: flex;
    gap: 16px;
  }

  .hero-card .input-wrapper { flex-grow: 1; }

  .hero-card .input-field { height: 100%; }

  .hero-card .btn {
    width: max-content;
    margin-block-start: 0;
  }



  /**
   * SERVICE
   */

  .service-list { grid-template-columns: 1fr 1fr; }



  /**
   * ABOUT
   */

  .about-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .about-banner {
    max-width: max-content;
    margin-inline: auto;
  }



  /**
   * LISTING
   */

  .listing .grid-list { grid-template-columns: 1fr 1fr; }

  .listing .grid-list > li:first-child { grid-column: 1 / 3; }



  /**
   * FOOTER
   */

  .footer-top { grid-template-columns: 1fr 1fr; }

  .footer-brand { grid-column: 1 / 3; }

  .contact-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 24px;
  }

  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .footer-bottom .social-list { margin-block-start: 0; }

}





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

@media (min-width: 992px) {

  /**
   * REUSED STYLE
   */

  .container { max-width: 940px; }

  .a7 {
    max-width: 400px;
  }
  .a17 {
    height: 100vh;
    width: 100vw;
}
  .inv {
    width: 300px;
}
.a27 {
  margin-top: 70px;
  font-size: 1.5rem;
}

.c25 {
  background-color: #af981733;
  border: 1px solid #af9817;
  padding: 15px;
  width: 400px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.a28 {
  margin-top: -12px; 
  font-size: 3rem; 
  color: #af9817;
}
.a70 {
  display: block;
  max-width: 500px; 
  width: 100%; 
  background: hsla(0, 0%, 0%, 0.336); 
  color: #fff; 
  padding: 25px;
}
  /**
   * HERO
   */

  .hero-banner {
    display: block;
    max-width: max-content;
  }

  .hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }





  /**
   * ABOUT
   */

  .about .container {
    grid-template-columns: 1fr 0.8fr;
    align-items: flex-end;
  }

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




  /**
   * BLOG
   */

  .blog .grid-list { grid-template-columns: 1fr 1fr; }

}





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

@media (min-width: 1200px) {

  /**
   * REUSED STYLE
   */

  .container { max-width: 1200px; }



  /**
   * HEADER
   */

  


  /**
   * HERO
   */

  .hero .container {
    grid-template-columns: 0.8fr 1fr;
    gap: 96px;
  }
.a1 {
  overflow: hidden; 
  position: relative; 
  width: 100vw; 
  height: 100vh;
  
}
  .a2 {
    position: absolute; 
    top: 0; 
    left: 0;
    width: 100%; 
    height: 100%; 
    z-index: -1; 
    display: flex; 
    justify-content: center; 
    align-items: center;
  }
  .a3 {
    position: absolute; 
    top: 50%; 
    left: 50%; 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    transform: translate(-50%, -50%); 
    filter: brightness(0.5);
  }
  .a4 {
    grid-template-columns: 0.8fr 1fr;
    gap: 96px;
    display: flex;
    margin-top: -10%;
    flex-direction: column;
    align-items: center;
        
  }
  .a5 {
    font-size: 3rem;
          text-align: center;
          color: #fff;
          display: flex;
          justify-content: center;
          flex-direction: column;
          align-items: center;
  }
  .a6 {
    width: 200px;
  }
  .a7 {
    max-width: 500px; 
    width: 100%; 
    background: hsla(0, 0%, 0%, 0.336); 
    color: #fff; 
    padding: 25px; 
    position: absolute; 
    z-index: 5; 
    bottom: 5px;
    left: 60%;
  }
    .a8{
      text-align: center;
    }
    .a9 {
      background: hsla(0, 0%, 100%, 0.877);
      padding: 5px;
      padding-left: 15px;
      margin-bottom: 15px;
    }
    .a10 {
      display: flex; 
      justify-content: center; 
      margin-top: 15px;
    }
    .a11 {
      position: absolute; 
      z-index: 2; 
      width: 100%; 
      bottom: 10px; 
      display: flex; 
      justify-content: center;
    }
    .a12 {
      font-size: 5rem; 
      color: #fff;
    }
    .a13 {
      padding-block: 0;
    }
    .a133 {
      padding-bottom: 0;
    }
    .a14 {
      text-align: center;
    }
    .a15 {
      line-height: 3rem;
      margin-bottom: 100px;
    }
    .a16 {
      width: 554px;
    }
    .a17 {
      height: 100vh;
      width: 100vw;
    }
    .a18 {
      width: 100%; 
      filter: brightness(0.5); 
      position: absolute; 
      z-index: -1;
    }
    .a19 {
      height: 100%;
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    .a20 {
      width: 250px
    }
    .a21 {
      display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    .a22 {
      text-align: center; 
      width: 60%;
    }
    .a23 {
      margin-top: 25px;
    }
    .a24 {
      margin-top: 15px;
    }
    .a25 {
      margin-top: 40px; 
      display: flex; 
      flex-wrap: wrap; 
      gap: 15px; 
      justify-content: center;
    }
    .a26 {
      width: 80px; 
      position: absolute;
    }
    
    
    .a29 {
      width: 400px; 
      position: relative; 
      z-index: 2;
    }
    .a30 {
      background-color: #fff; 
      padding-bottom: 0;
    }
    .a31 {
      text-align: center; 
      line-height: 3rem;
    }
    .a32 {
      display: flex; 
      gap: 30px;
      margin-top: 60px;
    }
    .a33 {
      font-size: 4rem;
      margin-top: 50px;
      line-height: 4rem;
      text-align: center;
      font-weight: 200;
      position: relative;
      top: 104px;
    }
    .a34 {
      display: flex;
        align-items: center;
        flex-direction: unset;
    }
    .a35 {
      width: 50%; 
      text-align: center;
    }
    .a36 {
      margin-top: 20px;
    }
    .a37 {
      width: 100%; 
      filter: brightness(0.5); 
      position: absolute; 
      z-index: -1;
    }
    .a38 {
      display: flex; 
      align-items: center; 
      width: 100%; 
      justify-content: center;
    }
    .a39 {
      display: flex;
      flex-direction: column;
      align-items: center; 
      margin-top: 100px;
    }
    .a40 {
      display: flex; 
      gap: 30px; 
      margin-top: 100px;
      flex-direction: unset;
    }
    .a41 {
      display: flex;
                flex-direction: column;
                align-items: center;
                width: 33%;
                padding: 35px;
                background: #fff;
                position: relative;
                height: 360px;
    }
    .a42 {
      display: flex; 
      justify-content: center; 
      margin-top: 35px;
    }
    .a43 {
      display: flex; 
      justify-content: center; 
      width: 100%; 
      margin-top: 100px;
    }
    .a44 {
      width: 250px
    }
    .a45 {
      width: 44px;
    }
    .a46 {
      margin-top: 40px;
    }
    .a47 {
      margin-top: 70px;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .a48 {
      display: flex; 
      justify-content: center; 
      margin-top: 100px;
    }
    .a49 {
      width: 50%;
    }
    .a50 {
      display: flex; 
      align-items: center;
    }
    .a51 {
      font-size: 3rem; 
      color: red;
    }
    .a52 {
      font-size: 3rem; 
      color: green;
    }
    .a53 {
      display: flex; 
      justify-content: center; 
      margin-top: 35px;
    }
    .a54 {
      text-align: center; 
      margin-top: 70px;
    }
    .a55 {
      display: flex; 
      justify-content: center; 
      margin-top: 35px;
    }
    .a56 {
      padding-top: 10px;
    }
    .a57 {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      margin-bottom: 70px;
    }
    .a58 {
      width: 20%;
      display: flex;
      justify-content: center;
    }
    .a59 {
      width: 100px
    }
    .a60 {
      display: flex;
      flex-direction: column;
      align-items: center;
      margin-top: 20px;
    }
    .a61 {
      display: flex; 
      gap: 10px;
    }
    .a62 {
      width: 30px;
    }
    .a64 {
      display: flex; 
      justify-content: center; 
      margin-top: 35px;
    }
    .a65 {
      position: fixed; 
      z-index: 9; 
      top: 0; 
      width: 100%; 
      height: 100vh; 
      background-color: rgb(0 0 0 / 80%); 
      display: none;
    }
    .a66 {
      position: fixed;
      width: 100%;
      top: 50%;
      left: 50%;
      z-index: 10;
      transform: translate(-50%, -50%);
      height: auto; /* Permitir que el contenedor crezca según el contenido */
      overflow: visible; 
      
    }
    .a67 {
      height: 400px; 
      background: url('../images/bg-ok.png'); 
      background-size: cover; 
      background-repeat: no-repeat;
    }
    .a68 {
      padding-top: 20px;
    }
   
    .a70 {
      max-width: 500px; 
      width: 100%; 
      background: hsla(0, 0%, 0%, 0.336); 
      color: #fff; 
      padding: 25px;
    }
    .a71 {
      text-align: center;
    }
  /**

   * LISTING
   */

  .listing .grid-list { grid-template-columns: repeat(4, 1fr); }



  /**
   * BLOG
   */

  .blog .grid-list { grid-template-columns: repeat(3, 1fr); }




}