@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@400;600&family=Poppins:wght@300;400;600&family=Playfair+Display:wght@600&display=swap');

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

/* FONDO */
body{
font-family: 'Poppins', sans-serif;
background:
linear-gradient(135deg, rgba(255,182,193,0.5), rgba(255,105,135,0.3)),
repeating-linear-gradient(0deg, rgba(255,255,255,0.2) 0px, rgba(255,255,255,0.2) 1px, transparent 1px, transparent 40px),
repeating-linear-gradient(90deg, rgba(255,255,255,0.2) 0px, rgba(255,255,255,0.2) 1px, transparent 1px, transparent 40px);
color:#333;
}

/* TITULOS */
h1{
font-family: 'Playfair Display', serif;
font-size:3.2rem;
text-align:center;
color:#d6336c;
letter-spacing:2px;
text-shadow: 4px 4px 0px #ffc2d1;
margin-top:25px;
}

h2{
font-family: 'Fredoka', cursive;
font-size:1.8rem;
color:#ff4d79;
text-align:center;
margin:20px 0;
}

h3{
font-family: 'Poppins', sans-serif;
color:#c9184a;
border-left:5px solid #ff4d79;
padding-left:10px;
margin-top:20px;
}

/* TEXTO */
p{
text-align:center;
font-size:1rem;
color:#555;
margin:10px 0;
}

/* IMÁGENES */
img{
display:block;
margin:20px auto;
border-radius:25px;
box-shadow:
0 15px 40px rgba(255, 105, 135, 0.4),
0 5px 10px rgba(0,0,0,0.1);
max-width:90%;
border:4px solid white;
}

/* BOTONES */
button{
background: linear-gradient(135deg, #ff4d79, #ff85a2);
border:none;
padding:12px 22px;
border-radius:30px;
box-shadow:
0 6px 20px rgba(255, 77, 121, 0.5),
inset 0 -3px 5px rgba(0,0,0,0.1);
}

button a{
color:white;
text-decoration:none;
font-weight:600;
letter-spacing:1px;
}

/* MENÚ */
nav ul{
display:flex;
justify-content:center;
gap:25px;
list-style:none;
margin:40px 0;
flex-wrap:wrap;
}

nav a{
text-decoration:none;
background:linear-gradient(145deg, #ffffff, #ffe6ee);
padding:15px 22px;
border-radius:25px;
color:#ff3e6c;
font-weight:600;
box-shadow:
8px 8px 15px rgba(0,0,0,0.1),
-5px -5px 10px rgba(255,255,255,0.6);
border:2px solid #ffc2d1;
}

/* SECCIONES */
section{
width:90%;
max-width:850px;
margin:40px auto;
background:linear-gradient(145deg, #ffffff, #fff0f5);
padding:30px;
border-radius:30px;
box-shadow:
0 20px 40px rgba(255, 105, 135, 0.3),
inset 0 0 10px rgba(255,255,255,0.5);
border:1px solid #ffd6e0;
position:relative;
}

/* DECORACIÓN */
section::before{
content:"";
position:absolute;
top:-10px;
left:-10px;
width:40px;
height:40px;
background:#ff4d79;
border-radius:10px;
opacity:0.3;
}

section::after{
content:"";
position:absolute;
bottom:-10px;
right:-10px;
width:40px;
height:40px;
background:#ff85a2;
border-radius:10px;
opacity:0.3;
}

/* LISTAS */
ul{
margin-top:10px;
padding-left:20px;
}

ul li{
margin:10px 0;
padding:8px;
border-radius:10px;
background:rgba(255, 192, 203, 0.2);
}

/* CHECKBOX */
input[type="checkbox"]{
accent-color:#ff4d79;
transform:scale(1.2);
margin-right:10px;
}

/* ESTILO DE RECETAS */
#receta1, #receta2, #receta3{
background:
linear-gradient(145deg, #ffffff, #ffe6ee);
border:2px solid #ffb3c6;
box-shadow:
0 20px 50px rgba(255, 105, 135, 0.4),
inset 0 0 15px rgba(255,255,255,0.5);
}

/* ORDEN LISTA */
ol{
padding-left:20px;
}

ol li{
margin:12px 0;
padding:10px;
background:rgba(255, 182, 193, 0.2);
border-radius:10px;
}

/* BOTÓN FINAL */
section button{
display:block;
margin:25px auto 0;
}

/* GENERAL */
body::after{
content:"";
position:fixed;
top:0;
right:0;
width:200px;
height:100%;
background:linear-gradient(180deg,#ff4d79,#ff85a2);
opacity:0.15;
}

/* FORMULARIO */

form{
background:white;
padding:25px;
border-radius:20px;
box-shadow: 0 10px 25px rgba(0,0,0,0.08);
border:1px solid #ffd6e0;
}

input, select, textarea{
width:100%;
padding:14px;
margin:10px 0;
border-radius:15px;
border:1px solid #ffc2d1;
background:#fff8fb;
font-size:0.95rem;
}

input, select, textarea{
box-shadow:none;
}

input:focus, textarea:focus, select:focus{
outline:none;
border-color:#ff4d79;
}

input[type="radio"]{
accent-color:#ff4d79;
margin-right:5px;
}

input[type="checkbox"]{
accent-color:#ff4d79;
}

form div:first-child{
display:flex;
gap:15px;
justify-content:center;
}

textarea{
resize:none;
height:120px;
}

form button{
background:#ff4d79;
border:none;
padding:10px;
border-radius:15px;
font-size:0.9rem;
color:white;
}

form div:last-child{
display:flex;
gap:10px;
}

form p{
font-size:0.9rem;
color:#666;
}