/* CONTENIDO GENERAL */
.contenido{
padding:80px 20px;
background:#f6f9fc;
}

/* CAJA PRINCIPAL (usa mismo estilo de tus páginas) */
.caja{
max-width:800px;
margin:auto;
background:white;
padding:70px 40px;
border-radius:18px;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
text-align:center;
}

/* ICONO */
.icono-construccion{
margin-bottom:25px;
}

.icono-construccion i{
font-size:80px;
color:#1a73e8;
animation:float 3s ease-in-out infinite;
}

/* TITULO */
.construccion-box h1{
font-size:32px;
margin-bottom:15px;
}

/* TEXTO */
.construccion-box p{
color:#666;
font-size:18px;
line-height:1.6;
margin-bottom:30px;
}

/* BOTON */
.btn-volver{
background:#1a73e8;
color:white;
padding:12px 28px;
border-radius:8px;
text-decoration:none;
display:inline-block;
transition:0.3s;
}

.btn-volver:hover{
background:#0d5ed7;
transform:translateY(-2px);
}

/* ANIMACION ICONO */
@keyframes float{
0%{transform:translateY(0);}
50%{transform:translateY(-12px);}
100%{transform:translateY(0);}
}

/* RESPONSIVE */
@media(max-width:768px){

.caja{
padding:40px 20px;
}

.construccion-box h1{
font-size:26px;
}

.icono-construccion i{
font-size:60px;
}

}
