* {
    font-family: "Inter", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #ffffff;
}

.autoshow{
    animation: text-appear both;
    animation-timeline: view();
    animation-range: entry 20% cover 100vh;
}

@keyframes text-appear{
    from{
        opacity: 0;
        transform: translateY(100px);
    }

    to{
        opacity: 1;
        transform: translateY(0);
    }
}

.menucontainer {
    max-width: 1300px;
    margin: 0 ;
}

.header {
  background-image:url(categoriaimg.jpg);
  background-size: cover;
  background-attachment: scroll;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}


.Menu {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 15px; 
    background-color: #ffffffdc; 
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); 
    z-index: 1000;
}

.logo {
    width: 60px; 
    height: auto;
}

.Menu .navbar {
    flex: 1; 
    display: flex; 
    justify-content: center; 
}

.Menu .navbar ul {
    display: flex;
    list-style: none;
    gap: 20px; 
}

.Menu .navbar ul li a {
    font-size: 16px;
    text-align: center;
    text-decoration: none;
    color: #333; 
    display: block;
    font-weight: 600;
    text-transform: uppercase;
    padding: 5px 0; 
    transition: color 0.3s;
}

.Menu .navbar ul li a:hover {
    color: #0094d8;
    text-decoration: underline;
}

#Menu,
input[type="checkbox"] {
    display: none;
}

.menuicon,
.Menu label {
    display: none;
}

.search {
    width: 25px;
    height: auto;
    transition: transform 0.3s;
}

.search:hover {
    transform: scale(1.1);
}

.text{
    text-align: center;
    color: #cac9c9;
    font-weight: bolder;
    margin-top: 100px;
}

.text h1{
    font-size: 45px;
    margin-bottom: 20px;
    color: #ffffff;
}

.text p{
    font-size: 16px;
    font-weight: 700;
}

.autoshow img{
    animation: image-appear both;
    animation-timeline: view();
    animation-range: entry 20% cover 100vh;
}

@keyframes image-appear{
    from{
        opacity: 0;
        scale: .95;
       translate: 0 4res;
    }

    to{
        opacity: 1;
        scale: 1;
        translate: 0 0;
    }
}

.main-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

.zones{
    margin-top: 20%;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    justify-items: center;
    padding: 10px;
    margin-bottom: 50px;
}

.cate img{
    border-radius: 15px;
    width: 100%;
    height: auto;
    max-width: 300px;
    display: block;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cate img:hover{
   box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
   transform: scale(1.05);
}


.last {
    margin-top: 80px; 
    max-width: 1300px;
}

.encabezado {
    background-color: #eff3d7;
    text-align: center;
    color: #0094d8;
    padding: 10px 1px; 
}

.encabezado h5 {
    font-size: 30px; 
    text-transform: uppercase;
    font-weight: bolder;
    margin-bottom: 5px;
}

.encabezado h4 {
    font-size: 50px; 
    text-transform: uppercase;
    font-weight: bolder;
}

.items {
    background: #0094d8;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px; 
    padding: 40px 1px; 
    place-items: center;
}

.services1,
.services2,
.services3 {
    text-align: center;
    padding: 15px; 
   
    border-radius: 15px;
    height: 100%; 
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.services1 img,
.services2 img,
.services3 img {
    width: 80px;
    margin-bottom: 15px;
}

.services1 h3,
.services2 h3,
.services3 h3 {
    font-size: 25px; 
    color: aliceblue;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.services1 p,
.services2 p,
.services3 p {
    font-size: 18px;
    color: aliceblue;
    font-weight: 600;
    line-height: 1.5;
}

.footblack {
    background-color: #3d3c3c;
    color: #ecebeb;
    padding: 40px 10px; 
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}

.contactos,
.acerca {
    flex-basis: 25%;
    min-width: 250px;
    margin-bottom: 25px; 
}

.contactos h4,
.acerca h4 {
    font-size: 22px; 
    font-weight: 700;
    color: aliceblue;
    text-transform: capitalize;
    margin-bottom: 12px;
}

.plataforma,
.acerca a {
    
    color: #ecebeb;
    font-weight: 500;
    font-size: 14px; 
    text-transform: capitalize;
    text-decoration: none;
    margin-bottom: 5px;
}

.usuario {
    font-size: 14px; 
    text-transform: capitalize;
    color: #0095f6;
    font-weight: 500;
    display: inline;
    text-decoration: underline;
}

.usuario:hover {
    color: #2100f8;
}

.acerca a:hover {
    color: #fdfcfc;
}

.logo1 {
    flex-basis: 40%;
    text-align: center;
    margin-bottom: 25px; 
}

.logo1 img {
    width: 400px;
}

.svgs {
    flex-basis: 100%;
    display: flex;
    justify-content: center;
    gap: 20px; 
    margin-top: 15px; 
}

.svgs img {
    width: 35px; 
}
@media (max-width: 968px) {
     .Menu .navbar {
        display: flex;
        width: 100%;
        
        text-align: center;
    }

    .Menu label {
        display: block;
        cursor: pointer;
    }

    #Menu:checked ~ .navbar {
        display: block;
    }

    .Menu .navbar ul {
        flex-direction: row;
        gap: 10px;
        padding-top: 10px;
    }

    .Menu .navbar ul li a {
        font-size: 12px;
    }
    .header{
    background-size: 100%;
    background-repeat: no-repeat;
    background-color: #fff1c795;
    background-position: center center;
}
.encabezado h5 {
    font-size: 15px; 

}

.encabezado h4 {
    font-size: 30px; 
}
    .text h1{
        font-size: 40px;
    }

    .text p{
        font-size: 16px;
    }

    .main-content {
        padding: 10px;
    }
     .services1,
    .services2,
    .services3 {
        flex-direction: column;
        align-items: center;
        text-align: center;
       
    }
.header{min-height: 70vh;}
    .footblack {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .contactos,
    .acerca,
    .logo1 {
        min-width: auto;
        width: 100%;
        text-align: left;
    }

    .logo1 img {
        width: 200px;
        margin-left: 28%;
    }
}