/* vars colors */
/* BASICOS PARA TODOS */

*{
    margin: 0;
    padding: 0;
    /*font-family: "IBM Plex Sans";*/
    font-family: "Nunito", sans-serif;
}

*, *::before, *::after {
  box-sizing: border-box;
}

:root{
    --color-1: #080150;
    --color-2: #f5f5f7;
    --color-3: #2a2a2a;
    --color-4: #1000b4;
    --color-5: #00d757;
    --color-6: #00bf63;
    --color-7: #000000;
    --color-8: #ffffff;
    --color-9: #ffffffe6;
    --third-color: #f7f5f5;
    --input-color: #e3e3e3;
    --color-shadow: #b4b4b4;
}

html{
    scroll-behavior: smooth;
}

span{
    color: var(--secondary-color);
    font-style: italic;
    font-weight: bold;
}

/* social-buttons */

#social-buttons-container{
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

/* fin */
 
/* nav mobile */

.sin-box-shadow-mobile{
        box-shadow: none;
    }

.con-box-shadow-mobile{
    box-shadow: -5px 1px 9px 0px #00000054;
}

.mobile-nav {
    background-color: var(--color-8);
    width: 100%;
    z-index: 1000;
    height: 60px;
    }
    
    .nav-mobile-header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        height: 60px; /* o lo que necesites */
        background-color: var(--color-8, #333);
        z-index: 1100;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 1rem;
        
      }

    .logo{
      width: 3em;
      height: 100%;
    }  
   
    .logo img{
      height: 100%;
    }

    .title-nav{
      flex: 1;
      margin-left: 0.4em;
      color: var(--color-primario);
    }  
    
    .menu-toggle {
        font-size: 1.5rem;
        background: none;
        color: var(--color-7);
        border: none;
        cursor: pointer;
        position: relative; /* o 'fixed' si lo querés flotante */
        z-index: 1100; /* mayor que .nav-menu (que tiene 1000) */
      }
      
    
      .nav-menu {
        position: fixed;
        top: 60px; /* igual al alto de .nav-header */
        right: -100%;
        width: 250px;
        height: calc(100vh - 60px); /* para no tapar .nav-header */
        transition: right 0.3s ease;
        background-color: var(--third-color);
        z-index: 1000;
        flex-direction: column;
        overflow-y: auto;
        border-radius: 0px 0 0px 20px;
        box-shadow: -4px 4px 9px 0px #00000054;
      }
      .mobile-nav.open .nav-menu {
        right: 0;
      }
      
    ul {
        list-style: none;
    }
    
    .nav-menu a {
      display: block;
      padding: 1rem;
      text-decoration: none;
      color: var(--color-7);
      font-weight: 500;
    }
    
    .nav-menu a:hover {
      background-color: var(--color-1);
      color: var(--color-8);
    }
    
    .nav-menu .submenu {
    display: none;
    flex-direction: column;
    background-color: #444;
    }
    
    .nav-menu .dropdown:hover > .submenu {
    display: flex;
    }
    
    .mobile-nav.open .nav-menu {
        right: 0;
    }      
    
    @media (min-width: 980px) {
        .mobile-nav{
            display: none;
        }
    }
/* fin nav mobile */


/* inicio nav desktop */
.nav{
    height: 48px;
    display: none;
    position: fixed;
    top: 0;
    width: 100%;
    border-right: none;
    background-color: var(--color-8);
    z-index: 50;
}

ul {
    list-style: none;
}

.sin-box-shadow{
        box-shadow: none;
    }

.con-box-shadow{
    box-shadow: -3px -1px 7px 1px rgba(0, 0, 0, 0.30);
}


/* Responsive: mostrar todo horizontal en pantallas grandes*/ 
@media (min-width: 980px) {
    .nav{
        display: flex;
    }

    .nav-header{
        width: 30%;
        display: flex;
        align-items: center;
        justify-content: left;
        margin-left: 20px;
        background-color: var(--color-8);
        border: none;
        transition: transform 0.3s ease;
    }

    .nav-header:hover{
        transform: translateX(1rem);
    }

    .a-header{
        width: fit-content;
        display: flex;
        align-items: center;
        justify-content: left;
        margin-left: 20px;
        background-color: var(--color-8);
        border: none;
        text-decoration: none;
    }

    .nav-title-nav{
        color: var(--color-7);
        font-size: 1.3rem;
        position: relative;
        top: -2px;



        color: var(--color-7);
    }

    .nav-nav-menu{
        display: flex;
        align-items: center;
        justify-content: end;
        width: 100%;
    }

    .nav-nav-menu li {
        height: 100%;
        width: 20%;
    }

    .nav-nav-menu li button{
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        height: 100%;
        width: 100%;
        font-size: 1.2em;
        transition: transform 0.3s ease;
        background: none;
        border: none;


        color: var(--color-7)
    }

    .nav-nav-menu li button:hover{
        font-weight: bold;
        /*font-size: 1.3rem;*/
        transform: translateX(0rem) scale(1.2);
    }

    .nav-logo{
        width: 15%;
        margin-right: 10px;
    }

    #nav-contactanos{
        background-color: var(--color-8);
        color: var(--primary-color);
        border-radius: 30px 0 0 30px;
        padding-left: 10px;
        font-weight: bold;
        border-right: none;
    }

    #nav-contactanos:hover{
        background-color: var(--primary-color);
        color: var(--color-8);
    }

    
}
/* fin nav desktop */

/* ANIMACIONES */
.hidden {
    opacity: 0;
    transition: all 0.6s ease-out;
  }

  /* Animaciones al mostrarse */
  .fade-up.show {
    opacity: 1;
    transform: translateY(0);
  }

  .fade-bottom.show {
    opacity: 1;
    transform: translateY(0);
  }

  .fade-right.show {
    opacity: 1;
    transform: translateX(0);
  }

  .fade-left.show {
    opacity: 1;
    transform: translateX(0);
  }

  .zoom-in.show {
    opacity: 1;
    transform: scale(1);
  }

  /* Estados iniciales */
  .fade-up {
    transform: translateY(30px);
  }

  .fade-bottom {
    transform: translateY(-30px);
  }

  .fade-right {
    transform: translateX(-30px);
  }

  .fade-left {
    transform: translateX(30px);
  }

  .zoom-in {
    transform: scale(0.8);
  }
/* FIN ANIMACIONES */

/* BOTON WSP */
/* From Uiverse.io by Gaurang7717 */ 
#btnWsp {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 70px;
  height: 70px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.199);
  background-color: #00d757;
}

#btnWsp .sign {
  width: 100%;
  transition-duration: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

#btnWsp .sign svg {
  width: 40px;
}

#btnWsp .sign svg path {
  fill: white;
}

#btnWsp .text {
  position: absolute;
  right: 0%;
  width: 0%;
  opacity: 0;
  color: white;
  font-size: 1.4em;
  font-weight: bold;
  transition-duration: 0.3s;
}

#btnWsp:hover {
  width: 180px;
  border-radius: 40px;
  transition-duration: 0.3s;
  transform: none;
}

#btnWsp:hover .sign {
  width: 30%;
  transition-duration: 0.3s;
  padding-left: 1rem;
}

#btnWsp:hover .text {
  opacity: 1;
  width: 70%;
  transition-duration: 0.3s;
  padding-right: 1rem;
}
#btnWsp:active {
  transform: translate(2px, 2px);
}
/* FIN BOTON WSP */

/* FOOTER */
/* FOOTER */
footer{
    color: var(--color-8);
    background-color: var(--color-7);
    padding: 1rem;
    min-height: calc(100vh - 60px);
    position: relative;
    padding-bottom: 3rem;
}

footer ul{
    padding-top: 1em;
}

footer ul h3{
    padding-bottom: 0.7em;
}

footer ul li{
    list-style: none;
    padding-bottom: 0.5rem;
}

.title-footer{
    display: flex;
    /*display: none;*/
    align-items: center;
    width: fit-content;
    margin-left: 0.5rem;
}

.logo-footer{
    width: 5rem;
}

.title-logo-footer{
    color: var(--color-8);
    font-size: 1.8rem
}

.menu-footer{
    width: 100%;
}

.menu-footer a{
    text-decoration: none;
    color: var(--color-8);
}

footer .menu-footer button{
    text-decoration: none;
    background: none;
    border: none;
    color: var(--color-8);
    transform: none;
    font-size: 1rem;
}

.blocks-footer{
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 5%;
    
}

#copyright{
    position: absolute;
    bottom: 0;
    /*right: 0;*/
    left: 50%;
    transform: translateX(-50%);
    padding: 1rem;
}

@media (min-width: 768px){
    footer{
        min-height: auto;
        padding: 5%;
        padding-top: 2rem;
    }

    .contacto-directo-footer{
        grid-column: 2;
    }

    .menu-footer{
        width: 50%;
    }

    .blocks-footer{
        padding-bottom: 0;
    }
}

@media (min-width: 1024px){
    .menu-footer{
        width: 30%;
    }

    .blocks-footer{
        justify-content: center;
    }
}
/* FIN FOOTER */


/* montserrat-regular - latin */
@font-face {
  font-display: swap;
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  src: url('/fonts/montserrat-v31-latin-regular.woff2') format('woff2');
}
/* montserrat-700 - latin */
@font-face {
  font-display: swap;
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  src: url('/fonts/montserrat-v31-latin-700.woff2') format('woff2');
}
/* nunito-regular - latin */
@font-face {
  font-display: swap;
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 400;
  src: url('/fonts/nunito-v32-latin-regular.woff2') format('woff2');
}
/* nunito-700 - latin */
@font-face {
  font-display: swap;
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 700;
  src: url('/fonts/nunito-v32-latin-700.woff2') format('woff2');
}
/* fuente */
.montserrat-font {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;
}
.nunito-font {
  font-family: "Nunito", sans-serif;
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;
}

/* SECTION SERVICIOS */
#section-servicios{
    text-align: center;
    padding: 10%;
    padding-top: 15%;
    position: relative;
}

#section-servicios .title-section{
    font-size: 2.5rem;
}

#section-servicios .subtitle-section{
    font-size: 1.5rem;
}

.container-servicios{
    margin-top: 4rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
    gap: 3rem;
    align-items: stretch;
}

.servicio{
    background-color: var(--color-8);
    border: none;
    border-radius: 20px;
    color: var(--color-8);
    position: relative;
    height: auto;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.servicio:hover{
    box-shadow: 3px 6px 10px 0px #00000094;
}

.servicio:hover .box-content-servicio{
    background-color: var(--color-7);
}

.imagen-servicio{
    border-radius: 20px 20px 0 0;
    width: 100%;
}

.box-content-servicio{
    height: 100%;
    transition: 0.3s;
    padding: 1rem;
    /*position: absolute;*/
    bottom: 0;
    /*background-color: #00000073;*/
    background-color: var(--color-7);
    border-radius: 0 0 20px 20px;
    display: grid;

}

.check-image-servicio{
    width: 1rem;
}

.title-servicio{
    padding-bottom: 0.3rem;
    font-size: 1.69rem;
}

.subtitle-servicio{
    padding-bottom: 0.2rem;
}


.line-separator{
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
}


/* SECTION BENEFICIOS */
section{
    position: relative;
    padding: 8%;
    padding-bottom: 2rem;
    overflow: hidden;
    scroll-margin-top: 60px;
}
.title-section{
    margin-bottom: 2rem;
    font-size: 2rem;
    font-family: "Montserrat";
}
#section-beneficios .flecha-b{
    width: 1.5rem;
    margin-left: 0.5rem;
}
.content-beneficios{
    width: 100%;
    display: grid;
    grid-auto-rows: 1fr;
    gap: 1.2rem;
    justify-content: center;
}
.beneficio{
    border-radius: 10px;
    background-color: var(--color-8);
    box-shadow: -4px 5px 0px var(--color-shadow);
    margin-bottom: 10px;
    padding: 1rem;
    height: calc(100% - 5px);;
    display: grid;
    align-content: space-between;
    max-width: 380px;
}
.icon-beneficio{
    width: 30px;
}
.b-beneficio{
    display: flex;
    background: none;
    border: none;
    align-items: center;
    height: fit-content;
    width: 70%;
}
#beneficio-2 .title-beneficio {
    margin-top: 0.2rem;
}
/* SECTION ESTADISTICAS */
#section-estadisticas{
    padding: 4%;
}
.img-estadistica, .title-estadistica, .text-estadistica{
    margin-bottom: 1rem;
    margin-left: 1.5rem;
}
.title-estadistica li::marker {
  content: "• ";
}
.bubble-e{
    position: absolute;
    left: -30%;
    top: 24%;
    transform: translateY(-50%);
    width: 350px;
    z-index: -1;
}
.bubble-big-e{
    position: absolute;
    width: 150%;
    right: -66%;
    top: 57%;
    z-index: -2;
}
.estadisticas{
    display: grid;
    gap: 4rem;
    grid-auto-rows: 1fr;
    width: 100%;
    margin-top: 2rem;
}
.estadistica{
    padding: 1rem;
    padding-left: 0;
    background-color: var(--color-9);
    height: 100%;
    border-radius: 10px;
    display: grid;
    box-shadow: 1px 1px 10px #8080802d;
}
.img-estadistica{
    width: 63%;
}
.box-porcentaje{
    display: flex;
    color: var(--color-6);
    align-items: center;
    text-align: right;
    justify-content: right;
}
.icon-estadistica{
    width: 2rem;
    margin-left: 1rem;
}
#b-CTA-e{
    margin: 1rem;
    margin-left: 0;
    background-color: var(--color-4);
    border-radius: 15px;
    padding: 0.5rem 0rem 0.5rem 0.5rem;
    box-shadow: 1px 2px 3px var(--color-shadow);
    margin-top: 2rem;
    width: fit-content;
}
#b-CTA-e p{
    color: var(--color-8);
    font-weight: bold;
}
#b-CTA-e:hover{
    transform: translateX(2rem) scale(1.2);
    background-color: var(--color-8);
}
#b-CTA-e:hover p{
    color: var(--color-4);
}
/* SECTION NUESTRO PROCESO DE DESARROLLO */
.line {
    width: 8px;
    background: var(--color-shadow);
    position: absolute;
    height: 90%;
    left: 50%;
    top: 5%;
    z-index: -1;
}
.container-steps{
    display: grid;
    grid-auto-rows: 1fr;
    gap: 4rem;
    position: relative;
    justify-content: center;
}
.img-step{
    width: 100%;
    border-radius: 10px 10px 0 0;
}
.step{
    background-color: var(--color-8);
    text-align: center;
    border-radius: 10px;
    height: 100%;
    display: flex;
    flex-direction: column;
    max-width: 500px;
    box-shadow: 1px 2px 3px #8080801f;
}
.content-step{
    padding: 1rem;
    padding-top: 40px;
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.num-step{
    width: 70px;
    height: 70px;
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
}
/* SECTION GARANTÍAS Y SEGURIDAD */
.container-garantias{
    display: grid;
    gap: 1rem;
}
.garantia{
    height: 100%;
    background-color: var(--color-8);
    border-radius: 20px;
    padding: 1rem;
    display: grid;
    justify-content: start;
    align-items: center;
    box-shadow: 1px 2px 3px #8080801f;
}
.icon-check{
    width: 2rem;
    margin-right: 0.5rem;   
}
.title-garantia{
    flex: 1;
    grid-column: 2;
}
.text-garantia{
    grid-column: 2;
    grid-row: 2;
}
/* SECTION CHATEA CON ZIA */
#section-chatea-ia{
    display: none;
}
/* SECTION CONTACTO */
#section-contacto{
    padding: 2%;
    position: relative;
    padding-bottom: 2rem;
}
.container-company-contact{
    display: none;
}
.container-form-c{
    position: relative;
}
.container-form-c .overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(5px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 10;
}
.overlay-content {
  text-align: center;
}
.spinner {
  animation: spin 1s linear infinite;
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
}
.path {
  stroke: #00d757;
  stroke-linecap: round;
}
#overlay-icon img {
  animation: fadeIn 0.4s ease-in-out;
}
@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.5); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes spin {
  100% { transform: rotate(360deg); }
}
#section-contacto form{
    background-color: var(--color-8);
    display: grid;
    border-radius: 10px;
    padding: 2rem;
    /*box-shadow: 0px 0px 3px #8080801f;*/
}
#section-contacto form input, #section-contacto form textarea{
    background-color: var(--input-color);
    border: none;
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 1rem;
}
#section-contacto form label{
    font-weight: bold;
    margin-bottom: 0.5rem;
}
.error {
  color: red;
  font-size: 0.85rem;
  margin: 4px 0 10px;
  display: block;
}
#section-contacto form .label-recibir-emails{
    font-weight: initial;
    font-size: 0.8rem;
    text-align: start;
}
#section-contacto form button{
    background: none;
    border: none;
    color: var(--color-4);
    display: flex;
    font-size: 1.5rem;
    margin-top: 1rem;
    text-align: start;
    font-weight: bold;
    justify-content: center;
}
#section-contacto form button:hover{
    transform: translateX(0.5rem) scale(1.2);
}
#section-contacto form button img{
    width: 2rem;
    margin-left: 0.5rem;
}
.bubble-c-1, .bubble-c-2, .bubble-c-3, .bubble-c-4{
    position: absolute;
    z-index: -1;
}
.bubble-c-1{
    left: -300px;
    bottom: -300px;
}
.bubble-c-2, .bubble-c-3, .bubble-c-4{
    right: -300px;
    bottom: -250px;
}

@media (min-width: 768px){
    /* SECTION SERVICIOS */
    #section-servicios .title-section{
        font-size: 3rem;
    }
    #section-servicios .subtitle-section {
        font-size: 2rem;
    }

    .servicio{
        max-width: 380px;
        width: 45%;
    }

    .title-servicio{
        font-size: revert;
    }
    /* SECTION BENEFICIOS */
    .content-beneficios{
        grid-template-columns: repeat(auto-fit, minmax(48%, 1fr));
    }
    .b-beneficio:hover{
        transform: translateX(1.2rem) scale(1.2);
    }
    .icon-beneficio{
        width: 40px;
    }
    .text-b{
        font-size: 1rem;
    }
    /* SECTION ESTADISTICAS */
    .bubble-e{
        top: 20%;
        width: 40%;
        max-width: 600px;
    }
    .bubble-big-e{
        width: 110%;
        right: -66%;
        top: 60%;
        z-index: -2;
        max-width: 1200px;
    }
    .estadisticas{
        justify-content: center;
    }    
    .estadistica{
        padding: 2rem;
        padding-left: 1rem;
        max-width: 700px;
    }
    .img-estadistica{
        width: 400px;
    }
    .title-estadistica{
        font-size: 1.6rem;
    }
    .text-porcentaje{
        font-size: 1.8rem;
    }
    .icon-estadistica{
        height: 100%;
        width: 3rem;
    }
    /* SECTION NUESTRO PROCESO DE DESARROLLO */
    /* SECTION CONTACTO */
    #section-contacto{
        margin: auto;
        padding: 8%;
        max-width: 1000px;
    }
}

@media (min-width: 1024px){
    section{
        scroll-margin-top: 48px;
        padding: 2rem 10%;
    }
    .title-section{
        font-size: 3rem;
    }
    /* HEADER */
    .content-header{
        padding: 4rem 8%;
    }
    header .title-header{
        font-size: 4.5rem;
    }
    .bubble-h{
        bottom: -250px;
    }
    /* SECTION SERVICIOS */
    #section-servicios .title-section{
        font-size: 4rem;
    }
    #section-servicios .subtitle-section{
        font-size: 2.5rem;
    }
    
    /* SECTION BENEFICIOS */
    #section-beneficios .content-beneficios{
        max-width: 1400px;
    }
    .content-beneficios {
        grid-template-columns: repeat(auto-fit, minmax(31%, 1fr));
    }
    .beneficio{
        max-width: 400px;
    }
    .b-beneficio:hover{
        transform: translateX(1.5rem) scale(1.2);
    }
    /* SECTION ESTADISTICAS */
    #section-estadisticas{
        padding: 2rem 10%;
    }
    .bubble-e{
        top: 20%;
        width: 40%;
        max-width: 600px;
    }
    .bubble-big-e{
        width: 110%;
        right: -66%;
        top: 60%;
        z-index: -2;
        max-width: 1200px;
    }
    .estadisticas{
        gap: 2rem;
        grid-template-columns: repeat(auto-fit, minmax(32%, 1fr));
    }
    .estadistica{
        padding: 2rem;
        padding-left: 1rem;
        max-width: 750px;
    }
    .img-estadistica{
        width: 77%;
        max-width: 500px;
    }
    .title-estadistica{
        font-size: 1.6rem;
    }
    .text-porcentaje{
        font-size: 1.8rem;
    }
    .icon-estadistica{
        height: 100%;
        width: 3rem;
    }
    /* SECTION PROCESO DE DESARROLLO */
    .line {
        height: 8px;
        width: 70%;
        left: 12%;
        top: 50%;
    }
    .container-steps{
        grid-template-columns: repeat(auto-fit, minmax(28%, 1fr));
        gap: 2rem;
    }
    /* SECTION CONTACTO */
    #section-contacto{
        display: flex;
        justify-content: space-between;
        margin: 0;
        max-width: none;
        padding: 1.1rem 10%;
    }
    .container-company-contact{
        display: grid;
        width: 42%;
        padding: 2rem;
    }
    .container-company-contact .title-header{
        font-size: 2.5rem;
    }
    #section-contacto .container-form-c{
        width: 55%;
    }
    #section-contacto form input{
        margin-bottom: 0.5rem;
    }
    #section-contacto form button{
        justify-content: center;   
    }
    .bubble-c-2{
        right: -250px;
        bottom: -252px;
    }
    .bubble-c-3{
        right: -350px;
        bottom: -156px;
    }
    .bubble-c-4{
        right: -150px;
        bottom: -325px;
    }
}



/* prueba */
.card {
  position: relative;
  max-width: none;
  width: 500px;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  background-image: url("/svg/index/2.svg");
  background-size: cover;
  background-position: center;
  transition: all .4s ease;
}

/* Degradado vertical de abajo → arriba */
.card::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(to top, rgba(0, 2, 138, 0.65), rgba(0, 0, 0, 0));
  transition: all .4s ease;
}

.card-content {
    text-align: left;
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  color: white;
  z-index: 2;
  opacity: 0.9;
  transition: all .4s ease;
  transform: translateY(0);
}

/* Hover: desenfoque y mayor foco en el texto */
.card:hover {
  transform: translateY(-6px);
}

.card:hover::after {
    height: 100%;
  backdrop-filter: blur(3px);
  background: linear-gradient(to top, rgba(0, 2, 138, 0.65), rgba(0,0,0,0.2));
}

.card:hover .card-content {
  opacity: 1;
  transform: translateY(-5px);

}

/* Badges estilo similar */
.badge {
  background: rgba(255,255,255,0.9);
  padding: 4px 10px;
  border-radius: 10px;
  font-size: 12px;
  color: black;
  display: inline-block;
  margin-bottom: 8px;
}
