*{

margin:0;
padding:0;
box-sizing:border-box;
font-family:'Segoe UI',sans-serif;

}


body{

background:#f5f0fa;

color:#444;

}



/* HEADER */


.header{

height:90px;

background:white;

display:flex;

justify-content:center;

align-items:center;

box-shadow:0 5px 20px rgba(0,0,0,.08);

}



.header h1{

font-family:Georgia,serif;

color:#886891;

font-size:38px;

}



.header i{

color:#b88fc2;

}




/* HERO */


.hero{

text-align:center;

padding:60px 20px;

}



.hero h2{

font-family:Georgia,serif;

font-size:45px;

color:#6a4e72;

}



.hero p{

font-size:20px;

color:#886891;

}





/* CONTENIDO */


.reclamo-container{

display:flex;

gap:40px;

padding:20px 10% 60px;

}




.info{

background:#886891;

color:white;

padding:40px;

border-radius:25px;

flex:1;

text-align:center;

}



.info .icon{

font-size:65px;

color:#f5dff7;

}



.info h3{

font-size:25px;

margin:25px 0;

}



.info p{

line-height:1.8;

}





/* FORMULARIO */


.formulario{

background:white;

padding:40px;

border-radius:25px;

box-shadow:0 10px 25px rgba(136,104,145,.15);

flex:1.5;

}



.formulario h3{

color:#6a4e72;

font-size:25px;

margin-bottom:25px;

}




form{

display:flex;

flex-direction:column;

gap:15px;

}



input,
select,
textarea{


padding:15px;

border-radius:15px;

border:1px solid #ddd;

outline:none;

font-size:15px;

}



textarea{

height:130px;

resize:none;

}




button{

background:#886891;

border:none;

color:white;

padding:15px;

border-radius:30px;

font-size:16px;

cursor:pointer;

}



button:hover{

background:#6a4e72;

}





/* INFORMACION */


.derechos{

background:white;

padding:50px 10%;

text-align:center;

}



.derechos h2{

color:#6a4e72;

margin-bottom:30px;

}



.boxes{

display:flex;

justify-content:center;

gap:30px;

}



.boxes div{

width:280px;

padding:25px;

background:#f5f0fa;

border-radius:20px;

}



.boxes i{

font-size:35px;

color:#886891;

margin-bottom:15px;

}





.volver{

text-align:center;

padding:40px;

}



.volver a{

background:#886891;

color:white;

padding:15px 35px;

border-radius:30px;

text-decoration:none;

}




@media(max-width:900px){


.reclamo-container,
.boxes{

flex-direction:column;

}

}