@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url("https://use.typekit.net/aiu0amb.css");

body{
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    margin: 0;
    background-image: url("images/paper.png"); 
    background-repeat: repeat; 
    background-size: 400px 400px; 
    background-attachment: fixed; 
    transition: background-color 1s ease;
    background-blend-mode: multiply;

}
/* prueba */
.nav-bar{
    z-index: 100;
    display: flex;
    position: fixed;
    width: 100%;
    justify-content: space-around;
    top: 0;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1)  ;
    justify-self: center;
    justify-content:space-around;
    background-color: #fafafa;
   align-items: center;
    padding: 20px 100px;
}
.logo-nb img{
    width: 100px;


}
.nav-bar ul{
    margin: 0;
    align-items: center;
    list-style: none;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    font-family: "Inter";
    font-weight: 900;
    letter-spacing: 1px;
    font-size: 32px;
    text-transform: uppercase;
}
.links a{
    position: relative;
    z-index: 2;
    color: #578E7E;
    text-decoration: none;
    transition: color .3s ease;
}
.links a::after{
    content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;           
  background-color: #578E7E;
  transform: scaleX(0);  
  transform-origin: right; 
  transition: transform 0.5s ease;
}


.links a:hover::after {
  transform: scaleX(1);   
  
  transform-origin: left; 
  
}
.contacto-btn {
    display: flex;               /* convierte el div en flex container */
    justify-content: center;     /* centra horizontalmente */
    align-items: center;         /* centra verticalmente */
    padding: 25px 20px;          /* ajusta altura del botón */
    background-color: #D15734;
    border-radius: 8px;
    transition: background-color .3s ease, color .3s ease;
    height: 43px;
}
.contacto-btn:hover{
    background-color: #578E7E;
    color: #fafafa;
}
.contacto-btn a{
    display: flex;               /* hace al link un flex container opcional */
    justify-content: center;     /* centra texto horizontalmente */
    align-items: center;         /* centra texto verticalmente */
    color: #F5ECD2;
    text-decoration: none;
    font-style: italic;
    font-family: "oso-serif";
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
    height: 100%;
}

.toggle_bt{
    display: none;
}


.drawer{
   
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1)  ;
    flex-direction: column;
    display: none;
    background-color: #fafafa;  
    padding: 0 28px 20px 28px;
    width: 100%;
    list-style: none;
    justify-items: center;
    z-index: 2;
    
}
.drawer li{
    margin-bottom: 2rem;
    text-align: center;

}
.drawer a{
  
    text-decoration: none;
    font-weight: 900;
    letter-spacing: 1px;
    font-size: 20px;
}
.nav-b img{
    width: 50px;
    z-index: 300;
   }
.menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 25vh;           /* 1/4 de pantalla inicialmente */
    background: #fafafa;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* li arriba */
    align-items: center;
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out, height 0.3s ease-in-out;
    z-index: 100;
    padding: 20px 0;
    overflow: hidden;
    
  }
  
  .menu-link {
      font-family: "Inter";
    width: 100%;
    list-style: none;
    padding-left: 0;
    margin: 0;
    text-transform: uppercase;
  }
  
  .menu li {
    list-style: none;
    width: 100%;
    text-align: center;
    padding: 0;
    margin: 20px 0;
  }
  
  .menu li a {
    font-size: 24px;
    color: #578E7E;
    text-decoration: none;
  }
  
  .menu.activo {
    transform: translateY(0);
    height: 40vh;
    top: 15px; 
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1)/* al inicio sigue mostrando 1/4 */
  }
  
  /* nav-b al fondo del menú */
  .nav-b {
    margin-top: auto; /* empuja hacia abajo */
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 10px 20px;
    z-index: 300;
  }
  
  /* botón menuToggle */
  #menuToggle {
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 24px;
    z-index: 500;
  }

#menuIcon {
    transition: transform 0.3s ease;
}
  
#menuIcon.rotado {
    transform: rotate(180deg);
}




/* prueba */
.uno{
    width: 100vw;
    margin-top: 100px;
}
.grid-uno{
    max-width: 1260px;
    justify-self: center;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, auto);
    gap: 20px;
    margin: 20px 20px;
    justify-items: center;
    align-items: end;
    mix-blend-mode: multiply;
}

.pf{
    width: 300px;
    border-radius: 8px;
    position: relative;
}

.logo{
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
    width: 100%;
    grid-column: 2 / 4;
    

}
.logo img{
    margin-top: auto;
}
.uno{
    grid-column: 1;
}
.description{
    grid-column: 1 / 3;
    align-self: start;
    color: #578E7E;
}
.description h1{
    font-family: "oso-serif";
    font-style: italic;
    font-weight: 900;
    font-size: 64px;
    font-weight: 900;
    margin-top: 10px;
    margin-bottom: 32px;
}
.description p{
    font-family: "Inter";
    font-size: 24px;
    font-weight: 400;
    
}
.dos{
    align-content: center;
    margin: 200px 0;
}
.intro{
    position: sticky;
    top: 10px;
    mix-blend-mode: multiply;
}
.intro h1{
    text-align: start;
    font-family: "oso-serif";
    font-style: italic;
    font-weight: 900;
    font-size: 96px;
   
    color: #578E7E;
    margin-top: 100px;
    margin-bottom: 32px;
}
.intro p{
    color: #578E7E;
    font-family: "Inter";
    text-align: start;
    font-weight: 400;
    font-size: 20px;

}
.instrucciones{
    max-width: 1260px;
    justify-self: center;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 600px;
    gap: 20px;
    text-align: center;
    align-items: start;
}

.paso{
    align-items: center;
    display: flex;
    flex-direction: column;
    mix-blend-mode: multiply;
    border-radius: 8px;
    background-color: #578E7E;
    border-radius: 16px;
}


.paso img{
    position: relative;
    padding: 40px 40px;
    margin: 0;
    
    
}
.paso h2{
    position: relative;
    font-family: "Inter";
    font-weight: 900;
    font-size: 24px;
    color: #fafafa;
    width: 200px;
    text-align: center;
    margin: 50px 0;
    border-radius: 8px 8px 0 0 ;
    margin-bottom: 0;
    height: 40px;
    line-height: 40px;
    text-transform: uppercase;

    
}

.paso p{
    font-family: "Inter";
    text-align: start;
    color: #fafafa;
    margin-top: 0;
    padding: 16px;
    width: 90%;
    border-radius: 0 0 8px 8px;
    position: relative;
}

.photo{
    grid-column: 2 / 3;
}
.website{
    margin-top: 200px;
}
.edit{
    grid-column: 2 / 3;
}
.download{
    grid-column: 3 / 4;
    margin-top: 250px;
}
.tres{
    background-color: #578E7E;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 100px 0;
}
.intro-af{
    margin: 0 0 32px;


}
.intro-af h1{
    font-family: "oso-serif";
    font-style: italic;
    font-weight: 900;
    font-size: 96px;
    color: #fafafa;
    text-align: center;
}
.intro-af p{
    font-family: "Inter";
    text-align: start;
    font-weight: 400;
    font-size: 24px;
    color: #fafafa;
    
}

.carousel-d-big{
    max-width: 70%;
    margin-bottom: 36px;
}
.carousel-d-medium{
    display: none;
}
.carousel-control-prev-icon, .carousel-control-next-icon{
    filter: invert(52%) sepia(9%) saturate(1069%) hue-rotate(112deg) brightness(91%) contrast(89%);
}

.carousel-caption h5, .carousel-caption p{
    color: #578E7E;
}
.carousel-caption h5{
    font-family: "Inter";
    font-size: 36px;
    font-weight: 900;
    font-style: italic;
}

.carousel-caption p{
    font-family: "Inter";
    font-size: 20px;
}
.carousel-inner{
    position: relative;
    border-radius: 8px;
}
.carousel-inner::before{
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 8px;
    background-color: #fafafa;
   
}

#carouselMedium .carousel-indicators [data-bs-target], #carouselBig .carousel-indicators [data-bs-target], #carouselMobile .carousel-indicators [data-bs-target] {
    background-color: #578E7E;
}
.carousel-d-mobile{
    display: none;
}
.carousel-indicators .active{
    background-color: #578E7E;
}
footer{
    display: flex;
    flex-direction: column;
    background-color: #578E7E;
    justify-content: center;
    align-items: center;
}

.f-logo{
    display: flex;
    flex-direction: column;
    min-width: 90%;
    border-top: solid 8px #fafafa;
    padding-top: 36px;
    max-width: 1260px;
    margin-bottom: 32px;
    justify-content: center;
}
.f-logo p{
    font-family: "Overpass";
    color: #fafafa;
    font-size: 32px;
    font-weight: 300;
    text-align: center;
}
.footer-btn{
    align-self: center;
    border: none;
    background-color: #fafafa;
    padding: 8px 20px;
    border-radius: 8px;
    font-family: "oso-serif";
    font-weight: 800;
    font-style: italic;
    color: #578E7E;
    text-decoration: none;
    font-size: 32px;
}
.footer-btn:hover{
    transition: background-color 0.3s ease, color 0.3s ease;
    background-color: #050505;
    color: #578E7E;
    
}
footer img{
    align-self: center; 
    margin-bottom: 32px;
}
.redes{
    display: flex;
    justify-content: space-between;
    width: 30%;
    margin: 36px;
}
.redes img{
    width: 60px;
}
/* HOJA EJEMPLO  */




@media (min-width: 769px) and (max-width: 1366px){
    .nav-bar{
        padding: 20px 80px;
        
    }
    .nav-bar ul{
        font-size: 24px;
        gap: 10px;
    }
    .grid-uno{
        max-width: 900px;
        justify-self: center;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(3, auto);
        gap: 20px;
        margin: 8px 8px;
        justify-items: center;
        align-items: end;
    }
    .pf{
        width: 200px;
        border-radius: 8px;
    }
    .description h1{
        font-size: 42px;
        margin-bottom: 8px;
    }
    .description p{
        font-size: 16px;
    }
    .dos{
        margin: 50px 0;
    }
    .instrucciones{
        max-width: 900px;
    }
   
    .intro h1{
        font-size: 48px;

    }
    .intro p{
        font-size: 16px;
    }
    .paso img{
        padding: 50px 40px;
    }
    .paso p{
        text-align: start;
        background-color: #578E7E;
        color: #fafafa;
        margin-top: 0;
        padding: 16px;
        width: 80%;
    }
    .intro-af h1{
        font-size: 48px;
    }
    .intro-af p{
        font-size: 20px;
    }
    .carousel-d-big{
        display: none;
    }
    .carousel-d-medium{
        display: flex;
        max-width: 70%;
        margin-bottom: 36px;
    }
    .f-logo p{
        font-size: 24px;
        margin-bottom: 36px;
    }

    /* HOJA EJEMPLO  */
    
}
@media screen and (max-width: 768px) {
   /* prueba */
   .drawer{
    display: flex;
    position: fixed;

   }
   .toggle_bt{
    display: block;
    z-index: 200;
}
 
   .nav-bar{
    display: none;
    z-index: 300;
   }
   
   
   
  
  
   /* prueba */
    .grid-uno{
        padding: 0 20px;
        min-width: 80%;
        justify-self: center;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(5, auto);
        gap: 20px;
        justify-items: center;
        align-items: end;
        mix-blend-mode: multiply;
    }
    .two{
        grid-column: 2 / 3;
        grid-row: 1 / 2;
    }
    .logo{
        grid-column: 1 / 3;
    }
    .description h1{
        text-align: center;
        font-size: 32px;
    }
    .description p{
        font-size: 16px;
    }
    .uno{
        min-width: 100%;
        margin-top: 100px;
    }
    .instrucciones{
        min-width: 100%;
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        grid-template-rows: auto 1fr 1fr 1fr 1fr;
        gap: 20px;
        text-align: center;
        align-items: center;
        justify-items: center ;
        }
    .paso{
        align-items: center;
        justify-items: start;
        width: 80%;
        
    }
    .intro{
        grid-row: 1 / 2;
        position: relative;
    }
    .paso img{
        width: 60%;
        padding: 30px 50px;

    }
    .paso p{
        width: 90%;
    }
    .photo{
        grid-row: 2 / 3;
        grid-column: 1 / 2;
    }
    .website{
        grid-row: 3 / 4;
        grid-column: 1 / 2;
        margin-top: 0;
    }
    .edit{
        grid-row: 4 / 5;
        grid-column: 1 / 2;
        
    }
    .download{
        grid-row: 5 / 6;
        grid-column: 1 / 2;
        margin-top: 0;
    }
    .f-logo{
        padding: 20px 0;
    }
    .f-logo img{
        width: 100%;
    }
    .pf{
        width: 100%;
    }
    .dos{
        margin-top: 64px;
        padding: 0 20px;
        margin-bottom: 64px;

    }
    .intro h1{
        text-align: center;
        margin-top: 0;
        font-size: 48px;
    }
    .tres{
        padding-top: 32px;
        padding: 20px;
    }
    .intro-af h1{
        font-size: 48px;
    }
    .intro-af p{
        text-align: center;
        font-size: 16px;
        
    }
    .carousel-d-big{
        display: none;
    }
    .carousel-d-medium{
        display: none;
    }
    .carousel-d-mobile{
        display: block;
        margin-bottom: 64px;

    }
    footer{
        padding: 0 20px;
    }
    .f-logo img{
        padding-top: 32px;
    }
    .f-logo p{
        font-size: 16px;
        margin-bottom: 32px;
    }
    .redes{
        width: 70%;
        margin: 36px;
    }
    
    /* HOJA EJEMPLO  */
    
}