body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    overflow-x: hidden;
    background: #f7f5f7;
}

/* BLOQUES DE COLORES */
.block {
    position: relative;
    height: 330px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 100px;
    overflow: hidden;
}

/* COLORES PASTEL */
.pink { background: #f5d0e5; border-bottom-right-radius: 80px; }
.green { background: #dff5ca; border-bottom-left-radius: 80px; }
.peach { background: #f7d5d7; border-bottom-right-radius: 80px; }
.blue { background: #bcd2ff; border-bottom-left-radius: 80px; }

/* OBJETOS FLOTANDO */
img.floating {
    position: absolute;
    height: 170px;
    left: 20px;
    animation: float 4s ease-in-out infinite;
}

.item1 { top: 30px; }
.item2 { top: 50px; }
.item3 { top: 40px; }
.item4 { top: 40px; }

/* ANIMACIÓN FLOTANTE */
@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-13px); }
    100% { transform: translateY(0); }
}

/* TEXTO ESTILO “ETIQUETA” */
.label {
    font-size: 28px;
    font-weight: bold;
    margin-left: 220px;
    max-width: 500px;
    color: #2d2d2d;
}

/* BOTÓN TIPO CARPETA CUTE */
.folder-btn {
    margin-left: 220px;
    margin-top: 10px;
    padding: 12px 24px;
    background: white;
    border-radius: 15px;
    text-decoration: none;
    color: #444;
    font-weight: bold;
    border: 2px solid #00000020;
    box-shadow: 3px 3px 0px #00000040;
    transition: 0.2s;
}

.folder-btn:hover {
    transform: scale(1.05);
    background-color: #fff9ff;
}
