* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
    overflow-x: hidden;
}

body {
    display: flex;
    flex-direction: column;
    background: #d900ff;
    background: linear-gradient(90deg, rgba(217, 0, 255, 1) 0%, rgba(255, 215, 128, 1) 63%);
    overflow-x: hidden;
    font-family: "Poppins", sans-serif;
}

.tituloInicio {
    font-family: "Montserrat", sans-serif;
    text-align: center;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 2rem;
    color: white;
    z-index: -1;
}

.tituloAA {
    font-family: "Montserrat", sans-serif;
    text-align: center;
    font-size: clamp(4rem, 20vw, 30rem);
    margin: 0;
    letter-spacing: clamp(-20px, -2vw, -45px);
    color: white;
    text-shadow: clamp(8px, 2vw, 15px) clamp(5px, 1vw, 10px) 0px #ffffffb7;
    line-height: 1;
}
.tituloS {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-align: center;
    font-size: clamp(1.5rem, 3vw, 4rem);
    color: white;
    letter-spacing: clamp(0.5vw, 2vw, 3vw);
    margin: 0;
    position: relative;
}
.hojas1 {
    position: absolute;
    width: clamp(60vw, 80vw, 100vw);
    left: clamp(-30vw, -20vw, -10vw);
    bottom: clamp(-20vh, -15vh, -10vh);
    z-index: 1;
    rotate: -25deg;
    pointer-events: none;
}
.hojas2 {
    position: absolute;
    width: clamp(20vw, 30vw, 40vw);
    left: 0;
    top: clamp(-40vh, -30vh, -15vh);
    z-index: 1;
    rotate: 40deg;
    pointer-events: none;
}
.der {
    transform: rotateY(180deg);
    rotate: 25deg;
    right: -25vw;
    left: inherit !important;
}
.der2 {
    transform: rotateY(180deg);
    right: -1vw;
    rotate: -40deg;
    left: inherit;
}

.contenedor {
    position: relative;
    width: 90%;
    max-width: 1200px;
    min-height: auto;
    background-color: rgb(255, 255, 255);
    border-radius: 15px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 2rem;
    gap: 2rem;
    flex-wrap: wrap;
}

.titulobody {
    font-family: "Poppins", sans-serif;
    font-size: clamp(1.2rem, 5vw, 4rem);
    font-weight: 800;
    letter-spacing: clamp(-5px, -0.5vw, -8px);
    line-height: 70%;
    font-synthesis: none;
    margin: 0;
}
.chico {
    font-size: clamp(0.9rem, 3.5vw, 3rem);
}
.espacio {
    height: clamp(1rem, 5vh, 10vh);
}

@font-face {
    font-family: "Montserrat";
    src: url("fonts/Montserrat-VariableFont_wght.ttf") format("truetype");
}

@media screen and (max-width: 768px) {
    body {
        overflow-x: hidden;
    }

    .tituloInicio {
        height: 50vh!important;
        min-height: auto;
    }
    
    .tituloAA {
        font-size: clamp(6rem, 18vw, 15rem);
        letter-spacing: clamp(-10px, -1.5vw, -25px);
        text-shadow: clamp(4px, 1vw, 8px) clamp(3px, 0.7vw, 5px) 0px #ffffffb7;
    }
    
    .tituloS {
        font-size: clamp(2rem, 2.0vw, 2rem);
        letter-spacing: clamp(0.3vw, 1.5vw, 2vw);
    }
    
    .hojas1 {
        width: clamp(120vw, 100vw, 150vw);
        left: clamp(-20vw, -25vw, -15vw);
        top: clamp(30vh,25vh,50vh);
    }
    
    .hojas2 {
        width: clamp(25vw, 40vw, 50vw);
        top: clamp(-10vh, -25vh, -15vh);
    }
    
    .contenedor {
        width: 100%;
        padding: 1rem;
        gap: 0.5rem;
        margin-bottom: 1rem;
        border-radius: 10px;
    }
    
    .titulobody {
        font-size: clamp(1rem, 4vw, 2.5rem);
        letter-spacing: clamp(-3px, -0.4vw, -6px);
    }
    
    .chico {
        font-size: clamp(0.8rem, 3vw, 2rem);
    }
    
    .imgFresas {
        width: clamp(40px, 20vw, 120px);
        right: clamp(-30vw, -2vw, 0vw);
        top: clamp(-15vh, -8vh, 0vh);
    }
    
    .espacio {
        height: clamp(0.8rem, 3vh, 6vh);
    }
}