@charset "utf-8";
@font-face{
    font-family: Gotham;
    src: url("../fuentes/GOTHAM-MEDIUM.TTF");
}
@font-face{
    font-family: Coco-Gothic;
    src: url("../fuentes/CocoGothic-Fat_trial.ttf");
}


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

html {
  
    scroll-behavior: smooth;
    scroll-padding-block-start: 5em;
}
  
@media (prefers-reduced-motion: reduce) {
    *, ::before, ::after {
      animation-delay: -1ms !important;
      animation-duration: 1ms !important;
      animation-iteration-count: 1 !important;
      background-attachment: initial !important;
      scroll-behavior: auto !important;
      transition-duration: 0s !important;
      transition-delay: 0s !important;
    }
}


body {
    font-family: Gotham, sans-serif;
    margin: 0;
    color: #5c6e7c;
    background-color: #FFFFFF;
}

ul,
ol {
  list-style: none; 
}

h1{
    font-family: Coco-Gothic, sans-serif;
    font-size: 2rem;
    text-align: left;
    color:  #114672;
    line-height: 1.1;
    
}


img {
   max-width: 100%;
   height: auto;
}

a {
    text-decoration: none;
    color: #114672;
    font-weight: bold;
}

.contenedora {
    max-width: 65rem;
    margin-inline: auto;
    padding: 1rem;
    
}
main > .contenedora{
    margin-block-end: 4em;
}
header{
    
    background-color: #E8E8E8;
    color: hsl(0 0% 95%);
    position: sticky;
    top: 0;
    z-index: 8000;
}

footer{ 
    text-align: right;
    font-size: 0.5em;
    background-color: #919191;
    color: white;
    display: flex;
    flex-wrap: nowrap;
    
}

#logo img {

    max-width: 15rem;
    
}

header nav ul {
    margin-block: 0;
    
}

/*BURGUER*/
.menu-btn {
    background-color:#e8e8e800;
    border: none;
    outline: none;
    width: 3rem;
    aspect-ratio: 1;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease-out;
    position: fixed;
    top: 1em;
    right: 1em;
    z-index: 9000;
    
}
    
    
.menu-btn .btn-linea {
    width: 1.7em;
    height: 5px;
    margin: 2px auto;
    border-radius: 20rem;
    background-color: #114672;
    transition: all 0.3s ease-out;
    position: relative;
    z-index: 9000;
}

.menuVisible .menu-btn .btn-linea {
    transform: rotate(180deg);
    background-color: #ffffff;
}

.menuVisible .menu-btn .btn-linea:nth-child(1) {
    transform: rotate(45deg) translate(4px, 6px);
}
.menuVisible .menu-btn .btn-linea:nth-child(2) {
    opacity: 0;
}
.menuVisible .menu-btn .btn-linea:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -6px);
}

.menu{
    background-color:#114672;
    display: grid;
    place-items: center;
    place-content: center;
  
  
    position: fixed;
    inset: 0;
    z-index: 8000;
    translate: 100%;
    
    transition: all .6s ease;
}

.menuVisible .menu {
    background-color: #114672;
    transition: all .4s ease; 
    
    translate: 0;
}

.menu a {
    
    color: white;
    display: block;
    font-size: 1.25rem;
    margin-block-end: .5rem;
    width: min(70vw, 20rem); 
    text-align: left;
    padding: .5rem;
    text-decoration: none;
}

.btn-inicio {
    margin-right: 2em;
}

.menu a:hover {
    color: #005a9e;
    transition: all 0.5s;
}
  
.submenu a {
    border-bottom: solid 1px #00366000;
    color: white;
    display: block;
    font-size: 1rem;
    font-weight:lighter ;
    margin-block-end: .5rem;
    width: min(70vw, 20rem); 
    text-align: left;
    padding: .5rem;
    text-decoration: none;
}

.submenu2 a {
    border-bottom: solid 1px #00366000;
    color: white;
    display: block;
    font-size: 1rem;
    font-weight:lighter ;
    margin-block-end: .5rem;
    width: min(70vw, 20rem); 
    text-align: left;
    padding: .5rem;
    text-decoration: none;
}

.submenu a:hover{
    border-bottom: solid 1px hsla(0, 0%, 100%, 0.719);
    transition: all 0.5s;
    
}

.submenu2 a:hover{
    border-bottom: solid 1px hsla(0, 0%, 100%, 0.719);
    transition: all 0.5s;
    
}

.carro-logo{
    position: fixed;
    top: 1.4vh;
    right: 4em;
    z-index: 9000;
    
}

/*MEDIA*/
        
/*773px*/
@media(min-width: 48.313em) {

    /* el menú deja de ser fijo */
    header .menu {
      /* para que esté en capa superior pero que no parezca */
      position: relative;
      
    }
      
    /* botón "hamburguesa" oculto */
    .menu-btn {
      display: none;
    }
  
    /* menu visible */
    header .menu,
    header .menuVisible ul {
      /* caja flexible para menu horizontal*/
      display: flex;
      /* separación entre sus elementos */
      gap: .25em;
  
      /* para que esté en capa superior pero que no parezca */
      position: relative;
  
      /* elimina desplazamiento */
      translate: 0;
  
      /* elimina fondo */
      background-color: unset;
    }
      
    /* items de lista  que contienen los vínculos del menu */
    header .menu .submenu .submenu2 {
      min-width: 4em; /* que no midan menos de: */
    }
  
    /* vínculos del menu principal */
    header .menu  a {
      background-color: #114672;
      border-radius: .25em ;
      color: white;
      font-size: 1rem;
      width: auto;
      padding: .25em 1em;
      text-align: center;
      display: block; /* para que sean "cajas" */
      margin-block-end: unset;
      border-block-end: unset;
    }

   .submenu {
        position: absolute;
        border-radius: .25em ;
        color: white;
        font-size: 1rem;
        width: 160px;
        padding: 0em 0.2em;
        text-align: center;
        display: block; /* para que sean "cajas" */
        margin-block-end: unset;
        border-block-end: unset;
        display: none;
    }

    .submenu2 {
        position: absolute;
        border-radius: .25em ;
        color: white;
        font-size: 1rem;
        width: 115px;
        padding: 0em 0.1em;
        text-align: center;
        display: block; /* para que sean "cajas" */
        margin-block-end: unset;
        border-block-end: unset;
        display: none;
    }
    
    .menu li:hover .submenu {
        display: block;
        transition: all .3s ease-in-out;
    }
    header .menu li:hover .submenu2 {
        display: block;
        transition: all .3s ease-in-out;
    }
    /* cuando el cursor se posiciona sobre los vínculos */
    header .menu a:hover {
      background-color: white;
      color: #003660;
      border-block-end: unset;
    }

    .btn-inicio {
        margin-right: 0;
    }

    .menu-completo{
        display: flex;
        flex-wrap: wrap;
        align-items: center;
    }
    .carro-logo{
        position: static; 
        
    }
    
}  

/* galeria de imagenes */

.galeria {
    
    margin-inline: auto;
    margin-block-end: 3em;
    padding: 1em;
    max-width: 75em;
}
  
.las-imagenes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(12.5em, 1fr));
    gap: 1em;
}
  
  
.galeria figure {
    border-radius: 2px;
    aspect-ratio: 1; 
    position: relative;
    overflow: hidden;
    margin: 0;
}
  
.galeria img {
    
    object-fit: cover;
    object-position: left center;
    width: 100%;
    height: 100%;
    /*display: block; /* para que "desaparezca" el espacio que queda debajo de la imagen */
}
  
.galeria figcaption {
    background-color: hsla(207, 82%, 24%, 0.884);
    color: white;
    padding: .5em;
    line-height: 1em;
    text-transform: uppercase;
    font-weight: 700;
    
    /* para superponer el epígrafe sobre la foto */
    position: absolute;
    /* estirar para que ocupe todo figure */
    inset: 0;
    /* mover para que se vea apenas el "titulo" de la foto */
    transform: translateY(calc(100% - 2em));
    
    transition: all .6s ease;
}

  /* propiedades de figcaption SÓLO cuando
   el cursor se coloca encima de "figure" */
.galeria figure:hover figcaption {
    background-color: hsla(204, 82%, 24%, 0.767);
    transition: all .3s ease;
  
    /* emplazamiento, 0 del borde superior */
    transform: translateY(0);
    /* grid */
    display: grid;
    /* texto centrado */
    text-align: center;
    place-items: center;
    place-content: center;
    /* relleno en linea 2 renglones */
    padding-inline: 2em;
}
  
.galeria figcaption span {
    display: block;
    font-size: .75em;
    color: #ddd;
    margin-block-start: .5em;
    text-transform: none;
  }
  
.galeria figcaption a {
    display: inline-block;
    font-size: .75em;
    margin-block-start: 1em;
    background-color: hsl(209, 70%, 36%);
    color: hsl(0, 0%, 90%);
    padding: 1em 1em;
    border-radius: 2em;
}
  

  
.galeria figcaption a:hover {
    background-color: hsla(0, 0%, 100%, 0.95);
    color: hsl(209, 71%, 31%);
}



/* cambios a partir de los 800px */
@media(min-width: 50em) {

  
}
  
/* cambios a partir de los 1200px */
@media(min-width: 75em) {

.galeria {
    margin-block-start: 0;
    margin-block-end: 3em;
    min-height: 40vh;
    display: grid;
    align-items: center;
    align-content: center;
    
}


}



.propuesta{
    width: 100%;
    height: 70vh;
    background-image:url("../imagenes/fondoInicio_celu.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 2em;
}

.propuesta_fondo{
    width:70%;
}

/*628px*/
@media(min-width:39.25em){
    .propuesta{
        width: 100%;
        position: relative;
        background-image: url('../imagenes/fondoInicio_mid.jpg');
        background-size: cover;
        background-position: center;
        
    }
    .propuesta_fondo {
        width: 30rem;
    }
}

/*1160px*/
@media(min-width:72.5em){
    .propuesta{
        width: 100%;
        position: relative;
        background-image: url('../imagenes/fondoInicio_xl.jpg');
        background-size: cover;
        background-position: center;
        
    }
    .propuesta_fondo {
        width: 50rem;
    }
}



.propuesta p{
    font-size:1.75rem;
    font-weight: 650;
    color: #003760
    
}

.produ-textos {
    margin: 20px;
}

.productos_inicio_textos p{
    font-size:1.2rem;
    font-weight: 100;
    line-height: 1.5;
}
body{
    display: grid;
    min-height: 100dvh;
    grid-template-rows: auto 1fr;
}

header > .contenedora {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}


footer img {
    max-width: 10rem;
}


.redes img{
    max-width: 1.5rem;
}

.redes ul{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(1rem, 100%), 1fr));
    gap: 1rem
}

.sedes li{
    line-height: 1rem;
   
}
.btn-canje2{
    font-family: Coco-Gothic, sans-serif;
    font-size: 1.4rem;
    text-decoration: none;
    background-color: #114672;
    color: #FFFFFF;
    border-radius: 2.5rem;
    padding-block: 0.5em;
    padding-inline: 1em;
}

.btn-info{
    font-weight:400;
    color: #001c31;
}

.btn-info:hover{
    border-bottom: solid 1px hsla(212, 95%, 15%, 0.884);
    transition: all 0.5s;
    
}

/*VIDEO*/
video{
    height: 100%;
    width: 100%;
    border-radius: .5em;
    box-shadow: 5px 5px 7px gray;
}

.video1{
    height: 100%;
    width: 100%;
    border-radius: .5em;
    box-shadow: 5px 5px 7px gray;
}

.video-canje{
    margin-block-start: 3rem;
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
}

.video-canje1{
    margin-block-start: 3rem;
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
}

@media(min-width: 48.313em) {
    .produ-textos{
        display: flex;
        align-items: center;
        flex-wrap: nowrap;
        margin: 0;
    }

    .productos_inicio {
        display: flex;
        max-width: 80rem;
        padding: 2rem;
    }

    .productos_inicio_textos{
        padding: 1rem
    }
    
    .video1 {
        height: 80%;
        width: 80%;
        border-radius: 0.5em;
        box-shadow: 5px 5px 7px gray;
    }
    .video-canje1 {
        margin-block-start: 3rem;
        display: flex;
        justify-content: flex-end;
        flex-wrap: nowrap;
        margin: 0;
    }
}





/* ESTILOS PAGINA CENTRO DE FORMACION PROFESIONAL*/
.centro01 {
    width: 100%;
    height: 50vh;
    background-image:url("../imagenes/fabrica_hombre_3.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    
}

.centro01{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: column;
}
.centro-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: column;
}

.cfp-texto p{
    font-size:1.1rem;
    font-weight: 100;
    line-height: 1.5;
}

.cfp-texto h4{
    font-size:1.4rem;
    font-weight: bold;
    margin-block-start: 3em;
    color:  #494c4e;
    
    
    
}

.cfp-texto h2{
    font-family: Coco-Gothic, sans-serif;
    font-size: 2.5rem;
    text-align: left;
    color:  #114672;
    line-height: 1.1;
    margin-block-start: 2em;
    
}
.centro-texto{
    max-width: 30rem;
    padding: 1rem;
}
.centro-texto2{
    padding: 1rem;
    max-width: 30rem;
}

.tituloCentro {
    color: #fff;
    font-size: 40px;
    text-align: left;
}

.centro01 h3{
    color: #fff;
    font-size: 15px;
    font-weight: 200;
    
}
.cfp-texto {
    margin: 20px;
}

/* formilario cfp*/
    
.formularioCFP{
    background-color: #114672;
    
    color: #f5f5f5;
    height: 270px;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    flex-direction: column;

}

.formularioCFP h2{
    color: #f5f5f5;
    text-align: center;

}




.formularioCFP .enviar{
    background-color:  #f3f3f3;
    border: none;
    color: #114672;
    padding: 10px 60px;
    /* text-align: center; */
    text-decoration: none;
    /* display: inline-block; */
    font-size: 18px;
    cursor: pointer;
    font-weight:bold;
    border-radius:50px;
    display: flex;



}

.form-container {
    display: flex;
    justify-content: center;
}

.form-grid {
    display: grid;
    grid-template-columns: max-content auto;
    grid-gap: 10px;
    align-items: center;
}

.center-enviar{

    display: flex;
    justify-content: center;
    padding: 2em;
        margin-top: 1em;
        
} 


    .inline-container label {
    margin-right: 10px; 
    }

    .espacio1 {
    width:300px;
    border-radius: 10px;
    }
    .espacio2 {
    width:300px;
    border-radius: 10px;
    }
    .espacio3 {
    width:300px;
    border-radius: 10px;
    }

/*1033px*/
@media(min-width: 64.563em) {
    .cfp-texto-flex{
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: space-between;
    }

    .cfp-texto-flex div{
        max-width: 27rem;
        padding: 1rem;
    }
}

/*628px*/
    @media(min-width:39.25em){
        .centro01{
            width: 100%;
            position: relative;
            background-image: url('../imagenes/fabrica_hombre_2.jpg');
            background-size: cover;
            background-position: center;
            
        }
        
    }

/*1160px*/
    @media(min-width:72.5em){
        .centro01{
            width: 100%;
            position: relative;
            background-image: url('../imagenes/fabrica_hombre_1.jpg');
            background-size: cover;
            background-position: center;
        }

    }





/* PAGINA PATRIMONIO */
.ley01 {
    width: 100%;
    height: 50vh;
    background-image:url("../imagenes/camara_senadores_3.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    
}
.importancia-texto p{
    font-size:1.1rem;
    font-weight: 100;
    line-height: 1.5;
}

.importancia-texto h4{
    font-size:1.4rem;
    font-weight: bold;
    margin-block-start: 3em;
    color:  #494c4e;
    
    
    
}

.importancia-texto h2{
    font-family: Coco-Gothic, sans-serif;
    font-size: 2.5rem;
    text-align: left;
    color:  #114672;
    line-height: 1.1;
    margin-block-start: 2em;
    
}

.ley01{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: column;
}
.ley-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: column;
}

.ley-texto{
    max-width: 30rem;
   
    padding: 1rem;
}
.ley-texto2{
    padding: 1rem;
}

.tituloLey {
    color: #fff;
    font-size: 40px;
    text-align: left;
}

.ley01 h3{
    color: #fff;
    font-size: 15px;
    font-weight: 200;
    
}
.importancia-texto {
    margin: 20px;
}

/*628px*/
    @media(min-width:39.25em){
        .ley01{
            width: 100%;
            position: relative;
            background-image: url('../imagenes/camara_senadores_2.jpg');
            background-size: cover;
            background-position: center;
            
        }
        
    }
/*1160px*/ 
    @media(min-width:72.5em){
        .ley01{
            width: 100%;
            position: relative;
            background-image: url('../imagenes/camara_senadores_1.jpg');
            background-size: cover;
            background-position: center;
        }
    

    }

/* PAGINA PLAN CANJE*/

.canje01 {
    width: 100%;
    height: 70vh;
    background-image:url("../imagenes/heladera_nenes_3.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}


.p_canje_texto p{
    font-size:1.1rem;
    font-weight: 100;
    line-height: 1.5;
}



.p_canje_texto h2{
    font-family: Coco-Gothic, sans-serif;
    font-size: 2.5rem;
    text-align: left;
    color:  #114672;
    line-height: 1.1;
    margin-block-end: 2em;
    margin-block-start: 2em;
    
}
.canje01{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: column;
}
.canje-flex {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
}

.canje-texto{
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    align-items: flex-start;
  
    max-width: 30rem;
    padding: 1rem;
}
.canje-texto2{
    padding: 1rem;
}

.tituloCanje {
    color: #114672;
    font-size: 40px;
    text-align: left;
}

.canje01 h3{
    color: #114672;
    font-size: 18px;
    font-weight: 200;
    
}
.p_canje_texto {
    margin: 20px;
}


#nuestros_prductos{
    font-family: Coco-Gothic, sans-serif;
    color: #114672;
    font-size: 20px;
}
#nuestros_prductos{
text-align: center;
}

.btn-mas-info{
    margin-top: 2rem;
    color:#ffffff;
    padding: 1em;
    font-size: 12px;
    background-color: #114672;
    border-radius: 50px;
    transition: all .3s ease;
    
}

.btn-mas-info:hover{
    background-color: #1766a7;
    transition: all .3s ease;
   
    
}

.span-canje{
    color: #000000;
    font-weight: bold;
}

/*628px*/
@media(min-width:39.25em){
    .canje01{
        width: 100%;
        position: relative;
        background-image: url('../imagenes/heladera_nenes_2.jpg');
        background-size: cover;
        background-position: center;
        
    }
    
}
/*1160px*/
@media(min-width:72.5em){
    .canje01{
        width: 100%;
        position: relative;
        background-image: url('../imagenes/heladera_nenes_1.jpg');
        background-size: cover;
        background-position: center;
    }


}
     

    /* PAGINA REVIVAMOS*/
    
    @media(max-width:524px){
        #right{
            display: none;
        }
        .revivamos01{
            background-image:url("../imagenes/fabrica_viejo_azul.jpg");
        }
    } 
    .revivamos01 {
        width: 100%;
        height: 50vh;
        background-color: #114672;
        display: grid;
        justify-content: center;
        grid-template-columns: 50% 50%;
    }
    .cont_revivamos_texto p{
        font-size:1.1rem;
        font-weight: 100;
        line-height: 1.5;
    }

    .cont_revivamos_texto h4{
        font-size:1.4rem;
        font-weight: bold;
        margin-block-start: 3em;
        color:  #494c4e;
        
        
        
    }

    .cont_revivamos_texto h2{
        font-family: Coco-Gothic, sans-serif;
        font-size: 2.5rem;
        text-align: left;
        color:  #114672;
        line-height: 1.1;
        margin-block-start: 2em;
        
    }
    .revivamos02{
        width: 100%;
        height: 50vh;
        display: grid;
        grid-template-columns: 60% 40%;
        grid-row: 1 / -1;
        grid-column: 1 / -1;
        
    }
    .revivamos-flex {
        display: flex;
        flex-wrap: nowrap;
        justify-content: space-between;
        flex-direction: row;
        align-items: center;
    }
    
    .revivamos-texto{
        display: flex;
        flex-wrap: nowrap;
        flex-direction: column;
        align-items: flex-start;
      
        max-width: 30rem;
        padding: 1rem;
    }
    .revivamos-texto2{
        padding: 1rem;
    }
    
    .tituloRevivamos {
        color: #f5f5f5;
        font-size: 40px;
        text-align: left;
    }
    
    .revivamos01 h3{
        color: #f5f5f5;
        font-size: 18px;
        font-weight: 200;
        
    }
    .cont_revivamos_texto {
        margin: 20px;
    }
    
    
    .btn-ley_p{
        margin-top: 2rem;
        color:#114672;
        padding: 1em;
        font-size: 12px;
        background-color: #f5f5f5;
        border-radius: 50px;
        transition: all .3s ease;
        
    }
    
    .btn-ley_p:hover{
        color: #f5f5f5;
        background-color: #1766a7;
        transition: all .3s ease;
       
        
    }

    .btn-cfp2{
        margin-top: 2rem;
        color:#114672;
        padding: 1em;
        font-size: 12px;
        background-color: #f5f5f5;
        border-radius: 50px;
        transition: all .3s ease;
        
    }
    
    .btn-cfp2:hover{
        color: #f5f5f5;
        background-color: #1766a7;
        transition: all .3s ease;
       
        
    }
    
    .revivamos_imagen {
        clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
        width: 100%;
        height: 50vh;
        object-fit: cover;
    }
   
  
    
   
    /*PÁGINA PRODUCTO*/


    .productos01 {
        width: 100%;
        height: 40vh;
        background-color: #114672;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        flex-direction: column;
    }

    .productos01 h1{
        color: #f3f3f3;
        font-size: 40px;
        text-align: left;
    
    }
    
    .p_canje_texto h2{
        font-family: Coco-Gothic, sans-serif;
        font-size: 2rem;
        text-align: left;
        color:  #114672;
        line-height: 1.1;
        
    }
   
    .productos-flex {
        display: flex;
        flex-wrap: nowrap;
        justify-content: space-between;
        flex-direction: row;
        align-items: center;
    }

    .canje-detalles{
        display: flex;
        flex-direction: column;
        align-items: center;
        flex-wrap: wrap;
        gap: 2em;
    }

    .canje-detalles2 {
        margin-block-start: 2rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        flex-wrap: wrap;
        gap: 2em;
    }
    
    .productos-texto{
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
        align-items: flex-start;
      
        max-width: 30rem;
        padding: 1rem;
    }
    .productos-texto2{
        padding: 1rem;
    }
    

    
    .head-producto{
        background-color: #114672;
        padding: 3%;
        display: flex;
        justify-content: space-between;
   
    
    }
    .head-producto h1{
        color: #f3f3f3;
        font-size: 25px;
    
    }
   
    .articulo-producto{
        border: 2px solid grey;
        border-radius: 2.5em;
       
        padding: 2%;
        margin-left: 2px;
        margin-right: 2px;
    
    }
    .articulo-producto h2{
        margin-left: 5%;
        color: #5c6e7c;
    }
    
    .articulo-producto #precio{
        font-size:30px;
        color: #021f36;
        margin-left: 5%;
        
    }
    .articulo-producto #cuotas{
        margin-left: 5%;
        font-size: 10px;
        margin-bottom: 5%;
    }
    .btn-Compra{
        color:#f3f3f3;
        padding: 2%;
        font-size: 10px;
        background-color:#114672 ;
        border-radius: 50px;
        margin-left: 5%;
        font-size: 15px;
       
    }
    .btn-Cotiza{
        color: #114672;
        padding: 2%;
       
        background-color: #f3f3f3;
        border-radius: 50px;
        margin-left: 5%;
        font-size: 15px;
    }
    .articulo-producto h6{
        margin-left: 5%;
        margin-top: 10%;
        margin-bottom: 0;
    }
    .articulo-producto p{
        font-size: 12px;
        margin-left: 5%;
    
    }
    
    .arrepentimiento-texto{
        max-width: 20em;
        display: flex;
        flex-direction: column;
        align-items: center;
        flex-wrap: wrap;
    }

    .arrepentimiento-texto h5{
        text-align: center;
    }
    .arrepentimiento-texto a{
        background-color: #114672 ;
        color:#f3f3f3;
        padding:0.5rem;
        border-radius: 2em;
    }

    #Características{
        color: #003660;
        text-align: center;  
    }
   
    .contenedor-características  h5{
        text-align: center;
        padding: 1em;
    }

    .contenedor-características > ul > li:not(:last-of-type) {
        border-right: solid 1px hsl(280 29% 44% / .15);
        margin-block-end: 1.5em;
    }
    
    .contenedor-características > ul{
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: center;
        padding: 0;
    }


/*
  galeria de imagenes
*/

.galeria2{
    padding: 2em 1em 2em 1em;
    margin-inline: auto;
    max-width: 30rem;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 1em;
}

.galeria-producto2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1em;
}
  
  .slider {
    position: relative;
    overflow: hidden;
    max-width: 30rem;
    min-height: 40vh;
  }
  
  .slide {
    width: 100%;
    height: 100%;
    position: absolute;
    transition: all 0.5s;
    margin: 0;
  }
  
  .slide img {
    width: 100%;
    height: 100%;

    object-fit: contain;
  }
  
  .slide figcaption {
    background-color: hsl(210 29% 30% / 0.75);
    border-radius: .5em;
    color: white;
    padding: 1em;
    text-transform: uppercase;
    font-weight: 700;
    position: absolute;
    inset: auto 1em 1em 1em;
  
    display: grid;
    grid-template-rows: auto 1fr auto;
    gap: .5em;
  }
  
  .slide figcaption span {
    display: block;
    font-size: .85em;
    color: #ddd;
    text-transform: none;
  }
  
  .slide a {
    background-color: hsl(209 100% 35% / 0.5);
    color: hsl(0 0% 90% / 0.85);
    padding: .25em 1em;
    border-radius: 2em;
    text-decoration: none;
    justify-self: end;
    margin-block-start: 1em;
  }
  
  .slide a::after {
    content: " →";
  }
  
  .slide a:hover {
    background-color: hsl(209 100% 35% / 0.95);
    box-shadow: 0 .25em .25em hsl(0 0% 0% / 0.25);
    color: hsl(0 0% 90%);
  }
  
  
  
  .btn {
    position: absolute;
    z-index: 10;
    top: 18em;
    width: 2.5em;
    aspect-ratio: 1;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    background-color: hsl(210 29% 30% / 0.75);
    color: white;
    font-size: 1.1em;
    opacity: .75;
  }
  
  .btn:active,
  .btn:hover {
    opacity: .9;
    border: solid 1px white;
  }
  
  .btn-prev {
    left: calc(100% - 6.25em);
  }
  
  .btn-prox {
    right: 1em;
  }

#slide2 {
    border: 2px solid rgba(128, 128, 128, 0.226);
    border-radius: 0.5em;
}
#slide1 {
    
    border: 2px solid rgba(128, 128, 128, 0.226);
    border-radius: 0.5em;
}

/*955px*/
@media(min-width:59.688em){
    .compra-producto{
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
        justify-content: center;
        gap: 2em;
        align-items: center;
    }

    .galeria2{
        padding: 2em 1em 2em 1em;
        margin-inline: 0;
        max-width: 30rem;
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
        gap: 1em;
    }

    .canje-detalles{
        display: flex;
        flex-direction: column;
        align-items: center;
        flex-wrap: wrap;
        gap: 2em;
        margin: 0;
    }
} 


/* Carrito */

.head-carrito{
    /* box-shadow: 3px 3px 3px gray; */
    padding: 1em;
    border-bottom: 1px solid #dddddd;
   
}
.head-carrito h1{
   font-family:Gotham, sans-serif;    
   font-size: 22px;
   font-weight: 100;
   color: grey;
   
}
.tarjeta-heladera{
    background-color: #edecec;
    margin-top: 2rem;
    border-radius: .5em;
    /* border: 1px solid #434343; */
    box-shadow: 5px 5px 7px gray;
    display: grid;
    grid-template-areas: 
    "img es titulo"
    "img es precio"
    "img es boton" 
    ;
    grid-template-rows: 5em 2em 4em;
    grid-template-columns: 11em 2em auto;
    /* gap: 2%; */
}

.tarjeta-heladera h3{
    grid-area: titulo;
    text-align: right;
    padding-right: 1em;
}

.tarjeta-heladera p{
    grid-area: precio;
    text-align: right;
    padding-right: 1em;
    font-weight:bold;
    color: #242525;
}

.tarjeta-heladera form {
    grid-area: boton;
    width: 5em;
    align-self: self-end;
    justify-self: end;
    margin-right: 1em;
    margin-bottom: 1em ;
}

.tarjeta-heladera img{
    height: 90%;
    align-self: center;
    justify-self: center;
    grid-area: img;
    border-radius: .5em;
}

.tarjeta-cupon h4{
    text-align: center;
    margin-top: 3em;

}

.boton-quitar{
    background-color: #114672;
    border: none;
    color: #f3f3f3;
    padding: 10px;
    font-size: 15px;
    cursor: pointer;
    font-weight:bold;
    border-radius: 1.5em;
    
}

.form-codigo{
    display: flex;
    justify-content: center;
    margin-bottom: 3em;
}

.contenedor-total form {
    background-color: #f8f8f8;
    display: grid;
    grid-template-areas: 
    " sub   es   es  precio1"
    " total es   es  precio2"
    " fin   fin fin  fin  "
    " con   con  con  con  "
    ;
    padding: 1em;

}

.sub{
    grid-area: sub;
}

.precio1{
    grid-area: precio1;
    text-align: right;
}

.total1{
    grid-area: total;
    color: #2e2f2f;
}

.precio2{
    grid-area: precio2;
    color: #2e2f2f;
    text-align: right;
}

.fin{
    grid-area: fin;
    background-color: #114672;
    border: none;
    color: #f3f3f3;
    padding: 10px;
    font-size: 20px;
    cursor: pointer;
    margin-bottom: 2rem;
    margin-top: 3rem;
    font-weight: bold;
   
  
}


.con {
    grid-area: con;
    background-color: #e5e4e4;
    border: solid 2px #114672 ;
    color: #114672;
    padding: 10px;
    font-size: 20px;
    cursor: pointer;
    font-weight: bold;
    margin-bottom: 3rem;
   
}


.aplicar{
    background-color: #e5e4e4;
    border: none;
    color: #114672;
    padding: 10px;
    font-size: 13px;
    cursor: pointer;
    font-weight:bold;
    border-radius:2em;
    transition: all 0.2s ease-out;

}

.aplicar:hover{
    background-color:#114672;
    color: #e5e4e4;
    transition: all 0.2s ease-out;
    

}

.tarjeta-heladera2{
    background-color: #edecec;
    border-radius: .5em;
    box-shadow: 5px 5px 7px gray;
    width:100%;
    height: 150px;
    display: flex;
    align-content: space-between;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
}
.tarjeta-heladera2 p{
    
    text-align: center;
    color: rgb(173, 173, 173);
    
    
}

.flex-tarjeta{
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-wrap: wrap;
}

/* Botón de Arrepentimiento*/

.Arrepentimiento{
    background-color: rgb(238, 238, 238);
    margin-block-start: 2rem;
    padding: 2em;
    max-width: 40rem;
    
}
.form-arrepentimiento{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2em;
    margin-block-start: 2rem;
}
.caja-arrepentimiento h2{
    color: #353535;
    text-align: center;
}

.form-arrepentimiento label{
    display: block;
    
}

.form-arrepentimiento input{
    display: block;
    width: 100%;
    padding: 0.5em;
    margin-bottom: 1em;
    border: 1px solid #ccc;
    border-radius: 3px;
}

.caja-arrepentimiento p{
    font-size: 12px;
   
}
.caja-arrepentimiento #texto-ar{
    font-size:15px;
    font-weight: lighter;
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
}

.center-enviar-ar .enviar{
    
    background-color: #114672;
    color: #efefef;
    padding: 10px;
    font-size: 18px;
    cursor: pointer;

    margin-bottom: 1.5em;
    border-radius:50px;
}




@media(min-width: 42.938em) {
    video{
        height: 70%;
        width: 70%;
        border-radius: .5em;
        box-shadow: 5px 5px 7px gray;
    }
}
