/*indice

*/

html {
    box-sizing: border-box;
    font-family: "Lexend Exa", sans-serif;
    font-size: 16px;
    scroll-behavior: smooth;  
    overflow-x: hidden;  
}
    
*,
*::after,
*::before {
   box-sizing: inherit;
   margin: 0;
   padding: 0;
}
    
body {
   margin: 0;
   padding: 0;
   overflow-x: hidden;
   background-color: #000;
}

a{
    text-decoration: none;
}

ul {
    list-style-type: none;
    padding: 0;
}

p{
    margin: 0;
}

.hero_container_general{
    width: 100%;
    height: 70vh;
    display: flex;
}

  /*navbar*/

.navbar{
    width: 100%;
    height: 90px;
    position: sticky;
    top: 0;
    background: rgb(0,175,242);
    background: linear-gradient(90deg, rgb(3, 55, 118) 0%, rgb(3, 20, 87) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 15px 5px #080d5083;
    border-radius: 0 0 15% 15%;
    z-index: 1500;
}

.navbar_logo{
    display: block;
    height: 100%;
    padding: 5px 0;    
}

.navbar_img{
    height: 100%;
}

.navbar_links{
    height: 100%;
    display: flex;
    align-items: center;
    color: #fff
}

.navbar_link{
    display: flex;
    align-items: center;
    padding: 0 10px;
    height: 100%;
    transition: 0.4s ;
}

.navbar_link:hover{
    background-color: #3c27d6;
    border-radius: 5px;
}

.navbar_linked{
    display: flex;
    align-items: center;
    height: 100%;
    color: #fff;
    font-weight: 600;
}

#ham{
    display: none;
    width: 30px;
    height: 30px;
    background-color: transparent;
    border-radius: 3px;
    border: none;
    position: absolute;
    right: 5%;
    padding: 0;
    cursor: pointer;
}

.navbar_ham-line{
    width: 100%;
    background-color: #fff;
    height: 5px;
    position: absolute;
    left: 0;
    border-radius: 2px;
}

.navbar_ham-line1{
    top: 0;
}

.navbar_ham-line2{
    top: 42%;
}

.navbar_ham-line3{
    bottom: 0;
}

@media screen and (max-width: 890px) {
  
  .navbar{
    position: sticky;
    top: 0;
}
    #ham{
        display: block;
    }

    .navbar_links{
        width: 70vw;
        position: absolute;
        height: 80vh;
        display: grid;
        right: 0;
        top: 100%;
        justify-content: space-evenly;
        background: rgb(0,175,242);
        background: linear-gradient(90deg, rgba(0,175,242,1) 0%, rgba(8,29,115,1) 100%);
        border-radius: 20px 0 0 25%;
        transform: translateX(100%);
        opacity: 0;
        visibility: hidden;
        transition: 0.3s;
    }

    .navbar_mostrar{
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }
}

/*sidebar*/

.sidebar{
    max-width: 320px;
    position: sticky;
    top: 30px;

}

/*footer*/

.footer {
    background: #ffffff;
    padding: 20px 10px;
    border-top: 1px solid #e0e0e0;
    margin-top: 70px;
}

.footer_container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.footer_left, .footer_center, .footer_right {
    flex: 1;
    text-align: center;
    margin: 10px 0;
}

.footer_left {
    text-align: left;
}

.footer_right {
    text-align: right;
}

.footer_link {
    display: block;
    margin: 5px 0;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    transition: color 0.3s;
}

.footer_link:hover {
    color: #0069d9;
}

.footer_socials {
    margin-top: 10px;
}

.footer_icon {
    margin: 0 5px;
}

.footer_icon img {
    width: 24px;
    height: 24px;
}

.footer_logo {
    max-width: 150px;
    height: auto;
}

/* Responsividad */
@media (max-width: 768px) {
    .footer_container {
        flex-direction: column;
        text-align: center;
    }

    .footer_left, .footer_center, .footer_right {
        text-align: center;
    }
}


/*hero_section*/

.hero-section{
    position: relative;
    width: 100%;
}

.hero_container{
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    height: 100vh;
    position: relative;
    top: -20px;
    border-radius: 0 0 30px 30px;
    overflow: hidden;
}

.hero_container_nosotros{
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    height: 75vh;
    position: relative;
    top: -20px;
    border-radius: 0 0 30px 30px;
    overflow: hidden;
}

.graphic_header{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    z-index: 900;
}



.hero_capa{
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 930;
    background-color: #00000098;
}

.hero_info{
    position: absolute;
    z-index: 950;
    width: 100%;
    padding: 30px;
}

.hero_h1{
    margin: 0;
    color: #fff;
    width: 80%;
    font-weight: 900;
    font-size: calc(1.5rem + 1vw);
}

.hero_h1 span{
    color: #edac07;
    font-size: calc(2rem + 1vw);
}

.hero_subtitle{
    color: #e5e5e5;
    font-size: 1.2rem;
    width: 90%;
    text-align: center;
    margin: 10px auto;
}

.hero_recomendaciones{
    display: flex;
    justify-content: space-evenly;
    width: 100%;
}

.hero_marcas{
    position: relative;
    width: 45%;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero_marcas_h3{
    color: #edac07;
    font-size: 1.3rem;
}

.hero_marcas_contein{
    position: relative;
    height: 190px;
    width: 90%;
    z-index: 980;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero_marcas-img{
    height: 180px;
    position: absolute;
    z-index: 985;
    opacity: 0;
}

.marcas_animation{
    animation: marcas 5s linear infinite;
}

@keyframes marcas {
    0%{
        opacity: 0;
    }
    30%{
        opacity: 1;
    }
    70%{
        opacity: 1;
    }
    100%{
        opacity: 0;
    }
}

.hero_testimonios{
    width: 45%;
    display: flex;
    flex-direction: column;
}

.hero_testimonio-item{
    width: 90%;
    min-width: 300px;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    background-color: #ffffffa0;
    border-radius: 15px;
    padding: 15px;    
}

.hero_testimonio_header{
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.hero_header-content{
    display: flex;
    flex-direction: column;

}

.hero_header-nombre{
    color: #1d8bf1;
    font-size: 0.9rem;
}

.hero_header-puntuacion .fa-star{
    color: #ebde20;
}

.hero_testimonio-img{
    width: 25px;
    height: 25px;
}

.hero_testimonio_text{
    color: #212121;
    font-weight: 300;
    font-style: italic;
    font-size: 0.9rem;
    margin: 0;
}

.hero_ghancho-text{
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    animation: gancho 3s linear infinite;
    transition: 0.5s;
}

@keyframes gancho {
    0%{
        transform: scale(1);
    }
    25%{
        transform: scale(1.1);
    }
    50%{
        transform: scale(1);
    }
    75%{
        transform: scale(1.1);
    }
    100%{
        transform: scale(1);
    }
}

.hero_gancho-links{
    display: flex;
    justify-content: space-evenly;
}

@media screen and (max-width:880px) {

    .hero_info {
        position: absolute;
        z-index: 950;
        width: 100%;
        padding: 10px;
    }

    .hero_container{
        height: 120vh;
    }

    .hero_h1{
        margin-top: 30px;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
        font-size: 1.3rem;
    }
    .hero_h1 span {
        color: #edac07;
        font-size: 1.5rem;
    }

    .hero_subtitle{
        font-size: 1.1rem;
        width: 100%;
        color: #edac07;
    }

    .hero_recomendaciones{
        flex-direction: column-reverse;
        align-items: center;
        justify-content: center;
    }

    .hero_testimonios{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero_testimonio-item{
        width: 100%;
        margin-top: 10px;
        padding: 10px;    
    }

    .hero_marcas_h3 {
        color: #edac07;
        font-size: 1.1rem;
        margin: 10px auto;
    }

    .hero_marcas {
        position: relative;
        width: 100%;
        min-width: 300px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero_ghancho-text {
        font-size: 1rem;
    }

    .hero_marcas-img{
        height: 140px;
    }

    .hero_marcas_contein {
        height: 150px;
        width: 98%;
    }

    .hero_gancho-links {
        margin-top: 20px;
    }
}

@media screen and (max-height: 800px) and (max-width:880px){
    .hero_container{
        height: 170vh;
    }
}

/* From Uiverse.io by cssbuttons-io */ 
a{
    position: relative;
    display: inline-block;
    cursor: pointer;
    outline: none;
    border: 0;
    vertical-align: middle;
    text-decoration: none;
    background: transparent;
    padding: 0;
    font-size: inherit;
    font-family: inherit;
    z-index: 990;
   }
   
   a.learn-more {
    width: 12rem;
    height: auto;
   }
   
   a.learn-more .circle {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: relative;
    display: block;
    margin: 0;
    width: 3rem;
    height: 3rem;
    background: #282936;
    border-radius: 1.625rem;
   }
   
   a.learn-more .circle .icon {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    background: #fff;
   }
   
   a.learn-more .circle .icon.arrow {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    left: 0.625rem;
    width: 1.125rem;
    height: 0.125rem;
    background: none;
   }
   
   a.learn-more .circle .icon.arrow::before {
    position: absolute;
    content: "";
    top: -0.29rem;
    right: 0.0625rem;
    width: 0.625rem;
    height: 0.625rem;
    border-top: 0.125rem solid #fff;
    border-right: 0.125rem solid #fff;
    transform: rotate(45deg);
   }
   
   a.learn-more .button-text {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0.75rem 0;
    margin: 0 0 0 1.85rem;
    color: #282936;
    font-weight: 700;
    line-height: 1.6;
    text-align: center;
    text-transform: uppercase;
   }
   
   a:hover .circle {
    width: 100%;
   }
   
   a:hover .circle .icon.arrow {
    background: #fff;
    transform: translate(1rem, 0);
   }
   
   a.learn-more .btn_blue{
    color: #00bfff;
   }

   a:hover .button-text {
    color: #fff;
   }



/*bento_general*/

.general_grid{
    position: relative;
    width: 80%;
    min-width: 320px;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: minmax(150px, auto);
    gap: 25px;
    margin-top: 100px;
    margin-left: auto;
    margin-right: auto;
}

.general_item{
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(145deg, #c3c3c3, #e8e8e8);
    box-shadow:  1px 1px 6px #cacaca7e,
             -1px -1px 6px #e8e8e87e; 
    transition: 0.5s;
}

.general_uno{
    grid-column: 1/5;
    grid-row: 1/3;
}

.general_dos{
    grid-column: 5/7;
    grid-row: 1/4;
}

.general_tres{
    grid-column: 1/2;
    grid-row: 3/4;
}

.general_cuatro{
    grid-column: 1/2;
    grid-row: 4/5;
}

.general_cinco{
    grid-column: 2/5;
    grid-row: 3/5;
}

.general_seis{
    grid-column: 5/7;
    grid-row: 4/5;
}

.general_h2, .general_h3{
    position: relative;
    z-index: 790;
    color: #fff;
    text-shadow: 2px 2px 5px #000000ea;
    transition: 0.5s;
}

.general_img{
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 700;
    transition: 0.5s;
    
}

.general_item:hover .general_img{
    transform: scale(1.3);
}

.products_in-item:hover .general_img{
    transform: scale(1.3);
}

.directorio_nos-item:hover .general_img{
    transform: scale(1.3);
}

.general_item:hover .general_h2, .general_item:hover .general_h3{
    transform: translateY(-150%);
}

/*products_index*/

.products_in_grid{
    position: relative;
    width: 80%;
    min-width: 320px;
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    grid-auto-rows: minmax(50px, 80px);
    gap: 25px;
    margin-top: 100px;
    margin-left: auto;
    margin-right: auto;
}

.products_in-item{
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgb(6,21,93);
    background: linear-gradient(135deg, rgb(4, 13, 58) 0%, rgb(2, 5, 30) 50%, rgba(4, 13, 58) 100%);
    transition: 0.5s;
    color: #fff;
}

.products_in-uno{
    grid-column: 2/9;
    grid-row: 1/2;
}

.products_in-dos{
    grid-column: 1/4;
    grid-row: 2/7;
}

.products_in-tres{
    grid-column: 7/11;
    grid-row: 2/6;
}

.products_in-cinco{
    grid-column: 7/11;
    grid-row: 6/9;
}

.products_in-seis{
    grid-column: 1/4;
    grid-row: 7/9;
}

.products_in-siete{
    grid-column: 4/7;
    grid-row: 2/9;
}

.products_in-ocho{
    grid-column: 1/11;
    grid-row: 9/11;
}

/* From Uiverse.io by iconicchandu */ 
.card {
    --white: hsl(0, 0%, 100%);
    --black: hsl(240, 15%, 9%);
    --paragraph: hsl(0, 0%, 83%);
    --line: hsl(240, 9%, 17%);
    --primary: hsl(189, 92%, 58%);
  
    position: relative;
  
    display: flex;
    flex-direction: column;
    gap: 1rem;
  
    padding: 1rem;
    width: 100%;
    height: 100%;
    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%, hsla(240, 15%, 9%, 1) 0px, transparent 85%),
      radial-gradient(at 14% 26%, hsla(240, 15%, 9%, 1) 0px, transparent 85%),
      radial-gradient(at 0% 64%, hsl(189, 99%, 26%) 0px, transparent 85%),
      radial-gradient(at 41% 94%, hsl(189, 97%, 36%) 0px, transparent 85%),
      radial-gradient(at 100% 99%, hsl(188, 94%, 13%) 0px, transparent 85%);
  
    border-radius: 1rem;
    box-shadow: 0px -16px 24px 0px rgba(255, 255, 255, 0.25) inset;
  }
  
  .card .card__list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .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: 1rem;
    height: 1rem;
  
    fill: var(--black);
  }
  
  .card .card__list .card__list_item .list_text {
    font-size: 1.1rem;
    color: var(--white);
  }
  
  .products_in-img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /*form_index*/


.form_in-container{
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 100px;
}

@media screen and (max-width: 800px) {
    .general_grid {
        width: 98%;
        gap: 15px;
    }

    .products_in_grid{
        width: 98%;
        gap: 15px;
    }
}

@media screen and (max-width: 640px) {
    .general_grid {
        width: 98%;
        gap: 15px;
    }

    .general_uno{
        grid-column: 1/7;
        grid-row: 1/3;
    }
    
    .general_dos{
        grid-column: 1/7;
        grid-row: 3/4;
    }
    
    .general_tres{
        grid-column: 1/4;
        grid-row: 4/5;
    }
    
    .general_cuatro{
        grid-column: 4/7;
        grid-row: 4/5;
    }
    
    .general_cinco{
        grid-column: 2/6;
        grid-row: 5/7;
    }
    
    .general_seis{
        display: none;
    }

    /*grid_in*/

    .products_in-uno{
        grid-column: 1/11;
        grid-row: 1/2;
    }
    
    .products_in-dos{
        grid-column: 1/11;
        grid-row: 2/7;
    }
    
    .products_in-tres{
        grid-column: 1/11;
        grid-row: 13/16;
    }
    
    .products_in-cinco{
        grid-column: 1/11;
        grid-row: 7/9;
    }
    
    .products_in-seis{
        grid-column: 1/11;
        grid-row: 9/12;
    }
    
    .products_in-siete{
        grid-column: 1/6;
        grid-row: 12/13;
    }
    
    .products_in-ocho{
        grid-column: 6/11;
        grid-row: 12/13;
    }


}

.form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 70%;
    min-width: 320px;
    padding: 20px;
    border-radius: 20px;
    position: relative;
    background-color: #1a1a1a;
    color: #fff;
    border: 1px solid #333;
  }
  
  .title {
    font-size: 28px;
    font-weight: 600;
    letter-spacing: -1px;
    position: relative;
    display: flex;
    align-items: center;
    padding-left: 30px;
    color: #00bfff;
  }
  
  .title::before {
    width: 18px;
    height: 18px;
  }
  
  .title::after {
    width: 18px;
    height: 18px;
    animation: pulse 1s linear infinite;
  }
  
  .title::before,
  .title::after {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    border-radius: 50%;
    left: 0px;
    background-color: #00bfff;
  }
  
  .message, 
  .signin {
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.7);
  }
  
  .signin {
    text-align: center;
  }
  
  .signin a:hover {
    text-decoration: underline royalblue;
  }
  
  .signin a {
    color: #00bfff;
  }
  
  .flex {
    display: flex;
    width: 100%;
    gap: 6px;
  }
  
  .form label {
    position: relative;
  }
  
  .form label .input {
    background-color: #333;
    color: #fff;
    width: 100%;
    padding: 20px 05px 05px 10px;
    outline: 0;
    border: 1px solid rgba(105, 105, 105, 0.397);
    border-radius: 10px;
  }
  
  .form label .input + span {
    color: rgba(255, 255, 255, 0.5);
    position: absolute;
    left: 10px;
    top: 0px;
    font-size: 0.9em;
    cursor: text;
    transition: 0.3s ease;
  }
  
  .form label .input:placeholder-shown + span {
    top: 12.5px;
    font-size: 0.9em;
  }
  
  .form label .input:focus + span,
  .form label .input:valid + span {
    color: #00bfff;
    top: 0px;
    font-size: 0.7em;
    font-weight: 600;
  }
  
  .input {
    font-size: medium;
  }
  
  .submit {
    border: none;
    outline: none;
    padding: 10px;
    border-radius: 10px;
    color: #fff;
    font-size: 16px;
    transform: .3s ease;
    background-color: #00bfff;
  }
  
  .submit:hover {
    background-color: #00bfff96;
  }
  
  @keyframes pulse {
    from {
      transform: scale(0.9);
      opacity: 1;
    }
  
    to {
      transform: scale(1.8);
      opacity: 0;
    }
  }

  /*directorio_nosotros*/

  .directorio_nos-container{
    position: relative;
    width: 90%;
    min-width: 320px;
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-auto-rows: 80px;
    gap: 15px;
    margin-top: 100px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 20px;
    overflow: hidden;
}

.directorio_nos-item{
    
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(145deg, #c3c3c3, #e8e8e8);
    border-radius: 20px;
    transition: 0.5s;
}

.nos_item-uno{
    grid-column: 1/5;
    grid-row: 1/5;

}

.nos_item-dos{
    grid-column: 5/7;
    grid-row: 1/5;
}

.nos_item-tres{
    grid-column: 7/9;
    grid-row: 1/7;

}

.nos_item-cuatro{
    grid-column: 1/4;
    grid-row: 5/7;

}

.nos_item-cinco{
    grid-column: 4/7;
    grid-row: 5/9;

}

.nos_item-seis{
    grid-column: 7/9;
    grid-row: 7/11;

}

.nos_item-siete{
    grid-column: 1/4;
    grid-row: 7/11;

}

.nos_item-ocho{
    grid-column: 4/7;
    grid-row: 9/11;
}

.nos_item-nueve{
    grid-column: 1/3;
    grid-row: 1/3;
}

.nos_item-diez{
    grid-column: 3/6;
    grid-row: 1/5;
}

.nos_item-once{
    grid-column: 6/9;
    grid-row: 1/6;
}

.nos_item-doce{
    grid-column: 1/3;
    grid-row: 3/5;
}

.nos_item-trece{
    grid-column: 1/4;
    grid-row: 5/10;
}

.nos_item-catorce{
    grid-column: 4/6;
    grid-row: 5/8;
}

.nos_item-quince{
    grid-column: 6/9;
    grid-row: 6/10;
}

.nos_item-dieciseis{
    grid-column: 4/6;
    grid-row: 8/10;
}

.nos_item-diecisiete{
    grid-column: 2/4;
    grid-row: 1/3;
}

.nos_item-dieciocho{
    grid-column: 1/2;
    grid-row: 1/3;
}

.nos_item-diecinueve{
    grid-column: 2/5;
    grid-row: 3/6;
}

.nos_item-veinte{
    grid-column: 5/6;
    grid-row: 3/5;
}

.nos_item-veintiuno{
    grid-column: 1/3;
    grid-row: 6/8;
}

.nos_item-veintidos{
    grid-column: 4/6;
    grid-row: 1/3;
}

.nos_item-veintitres{
    grid-column: 1/2;
    grid-row: 3/6;
}

.nos_item-veinticuatro{
    grid-column: 5/6;
    grid-row: 5/8;
}

.nos_item-veinticinco{
    grid-column: 3/5;
    grid-row: 6/8;
}


.card-container {
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    overflow: hidden;
  }
  
  .card {
    width: 100%;
    height: 100%;
    border-radius: inherit;
  }
  
  .card .front-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    color: #edac07;
    justify-content: center;
    font-weight: 700;
    text-align: center;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1)
  }

  
  .card .content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(-45deg, #f89b29 0%, #ff0f7b 100% );
    color: #e8e8e8;
    padding: 20px;
    border-radius: 5px;
    pointer-events: none;
    transform: translatex(96%);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
  }
  
  .card .content .heading {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
  }
  
  .card .content p{
    font-size: 1rem;
  }

  .card:hover .content {
    transform: translateY(0);
  }
  
  .card:hover .front-content {
    transform: translateX(20%);
  }
  
  .card:hover .front-content p {
    opacity: 0;
  }
  
  
.nosotros_historia{
    margin-top: 80px;
    width: 100%;
    padding: 0 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
}

.historia_h2, .front-title{
    text-align: center;
    color: #edac07;
}

.historia_text{
    text-align: justify;
    line-height: 1.5;
}

.historia_frase{
    font-style: italic;
}

.directorio_produstos{
    width: 100%;
    position: relative;
}

.productos_dir_grid{
    position: relative;
    width: 80%;
    min-width: 320px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-auto-rows: 100px;
    gap: 15px;
    margin-top: 100px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 20px;
    overflow: hidden;
}

.proyectos_dir_grid{
    position: relative;
    width: 80%;
    min-width: 320px;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 100px;
    gap: 15px;
    margin-top: 100px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 20px;
    overflow: hidden;
}

@media screen and (max-width: 880px) {
    
    .nos_item-uno{
        grid-column: 1/9;
        grid-row: 1/5;
    
    }
    
    .nos_item-dos{
        grid-column: 1/5;
        grid-row: 5/8;
    }
    
    .nos_item-tres{
        grid-column: 5/9;
        grid-row: 5/8;
    
    }
    
    .nos_item-cuatro{
        grid-column: 1/9;
        grid-row: 8/9;
    
    }
    
    .nos_item-cinco{
        grid-column: 1/9;
        grid-row: 9/14;
    
    }
    
    .nos_item-seis{
        grid-column: 1/9;
        grid-row: 14/17;
    
    }
    
    .nos_item-siete{
        grid-column: 1/9;
        grid-row: 17/21;
    
    }
    
    .nos_item-ocho{
        grid-column: 1/9;
        grid-row: 21/24;
    }
    
    .nos_item-nueve{
        grid-column: 1/9;
        grid-row: 1/3;
    }
    
    .nos_item-diez{
        grid-column: 1/9;
        grid-row: 3/5;
    }
    
    .nos_item-once{
        grid-column: 1/9;
        grid-row: 5/9;
    }
    
    .nos_item-doce{
        grid-column: 1/5;
        grid-row: 9/12;
    }
    
    .nos_item-trece{
        grid-column: 1/9;
        grid-row: 12/16;
    }
    
    .nos_item-catorce{
        grid-column: 5/9;
        grid-row: 9/12;
    }
    
    .nos_item-quince{
        grid-column: 1/9;
        grid-row: 20/24;
    }
    
    .nos_item-dieciseis{        
        grid-column: 1/9;
        grid-row: 16/20;
    }
    
    .nos_item-diecisiete{
        grid-column: 1/4;
        grid-row: 7/9;
    }
    
    .nos_item-dieciocho{
        grid-column: 4/6;
        grid-row: 7/9;
    }
    
    .nos_item-diecinueve{
        grid-column: 1/6;
        grid-row: 1/7;
    }
    
    .nos_item-veinte{
        grid-column: 1/6;
        grid-row: 9/11;
    }
    
    .nos_item-veintiuno{
        grid-column: 1/6;
        grid-row: 11/14;
    }
    
    .nos_item-veintidos{
        grid-column: 3/6;
        grid-row: 14/16;
    }
    
    .nos_item-veintitres{
        grid-column: 1/3;
        grid-row: 14/16;
    }
    
    .nos_item-veinticuatro{
        grid-column: 1/6;
        grid-row: 16/17;
    }
    
    .nos_item-veinticinco{
        grid-column: 1/6;
        grid-row: 17/19;
    }

}

.proy_item-uno{
    grid-column: 2/6;
    grid-row: 1/2;
}

.proy_item-dos{
    grid-column: 1/4;
    grid-row: 2/5;    
}

.proy_item-tres{
    grid-column: 4/7;
    grid-row: 2/5;    
}

.proy_item-cuatro{
    grid-column: 1/3;
    grid-row: 5/7;    
}

.proy_item-cinco{
    grid-column: 3/5;
    grid-row: 5/7;    
}

.proy_item-seis{
    grid-column: 5/7;
    grid-row: 5/7;    
}

.proy_item-siete{
    grid-column: 1/5;
    grid-row: 7/9;    
}

.proy_item-ocho{
    grid-column: 5/7;
    grid-row: 7/9;    
}

.proy_card_text{
    color: #fff;
    line-height: 1.5;
    margin: 0;
}

@media screen and (max-width: 950px) {
        
    .proy_item-uno{
        grid-column: 1/7;
        grid-row: 1/3;
    }

    .proy_item-dos{
        grid-column: 1/7;
        grid-row: 3/7;    
    }

    .proy_item-tres{
        grid-column: 1/7;
        grid-row: 7/11;    
    }

    .proy_item-cuatro{
        grid-column: 1/7;
        grid-row: 13/16;    
    }

    .proy_item-cinco{
        grid-column: 1/7;
        grid-row: 11/13;    
    }

    .proy_item-seis{
        grid-column: 1/4;
        grid-row: 19/21;    
    }

    .proy_item-siete{
        grid-column: 1/7;
        grid-row: 16/19;    
    }

    .proy_item-ocho{
        grid-column: 4/7;
        grid-row: 19/21;    
    }
}

/* Estilos generales */
.main_thankyou {
    padding: 40px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 200px); /* Resta el tamaño del header y footer */
    background-color: #f9f9f9;
}

/* Sección de éxito */
.thankyou_section, .error_section {
    text-align: center;
    background: #ffffff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    width: 100%;
}

.thankyou_message {
    font-size: 1.8em;
    color: #003a68;
    margin-bottom: 20px;
}

.thankyou_text, .error_text {
    font-size: 1em;
    color: #555;
    margin-bottom: 30px;
}

.thankyou_button, .error_button {
    display: inline-block;
    text-decoration: none;
    background-color: #0069d9;
    color: #ffffff;
    padding: 10px 20px;
    font-size: 1em;
    border-radius: 5px;
    transition: background 0.3s;
}

.thankyou_button:hover, .error_button:hover {
    background-color: #004ea6;
}

/* Sección de error */
.error_message {
    font-size: 1.8em;
    color: #d9534f;
    margin-bottom: 20px;
}

/* Responsividad */
@media (max-width: 768px) {
    .main_thankyou {
        padding: 20px;
    }

    .thankyou_section, .error_section {
        padding: 20px;
    }

    .thankyou_message, .error_message {
        font-size: 1.5em;
    }

    .thankyou_text, .error_text {
        font-size: 0.9em;
    }

    .thankyou_button, .error_button {
        font-size: 0.9em;
    }
}

/* Estilos generales */
.privacy_container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #fff;
}

.privacy_container h1 {
    font-size: 2em;
    color: #003a68;
    text-align: center;
    margin-bottom: 20px;
}

.privacy_container h2 {
    font-size: 1.5em;
    color: #0069d9;
    margin-top: 20px;
}

.privacy_container p {
    font-size: 1em;
    margin-bottom: 15px;
    color: #555;
}

.privacy_container a {
    color: #0069d9;
    text-decoration: none;
}

.privacy_container a:hover {
    text-decoration: underline;
}

/* Responsividad */
@media (max-width: 768px) {
    .privacy_container {
        padding: 10px;
    }

    .privacy_container h1 {
        font-size: 1.8em;
    }

    .privacy_container h2 {
        font-size: 1.3em;
    }

    .privacy_container p {
        font-size: 0.95em;
    }
}
