*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:'Poppins',sans-serif;
background:#fff7f0;
color:#333;
line-height:1.7;
}

/* HEADER */

.header{
text-align:center;
padding:70px 20px 60px;
background:linear-gradient(135deg,#ffd28a,#ff9f5a);
color:white;
}

.header h1{
font-size:2.4rem;
margin-bottom:10px;
}

.back{
display:inline-block;
margin-bottom:20px;
text-decoration:none;
color:white;
}

/* CONTAINER */

.container{
max-width:980px;
margin:auto;
padding:60px 24px;
}

section{
margin-bottom:70px;
}

section h2{
margin-bottom:20px;
color:#ff7a00;
}

/* CLASS LIST */

.class-list{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
gap:20px;
}

.class-box{
background:white;
padding:24px;
border-radius:18px;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
transition:0.35s;
position:relative;
overflow:hidden;
}

.class-box:hover{
transform:translateY(-8px) scale(1.02);
box-shadow:0 18px 35px rgba(0,0,0,0.15);
}

.class-box h3{
color:#ff7a00;
margin-bottom:10px;
}

/* INFO */

.info{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
gap:20px;
}

.box{
background:white;
padding:25px;
border-radius:18px;
text-align:center;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

/* CTA */

.cta{
text-align:center;
padding:60px 30px;
background:linear-gradient(135deg,#ff7a00,#ffb347);
color:white;
border-radius:24px;
}

.btn{
display:inline-block;
padding:14px 35px;
background:white;
color:#ff7a00;
border-radius:30px;
text-decoration:none;
font-weight:600;
margin-top:20px;
}

/* FOOTER */

.footer{
background:#4a4aff;
color:white;
padding:50px 40px 20px;
}

.footer-container{
max-width:1000px;
margin:auto;
display:flex;
justify-content:space-between;
gap:40px;
flex-wrap:wrap;
}

.footer-social{
display:flex;
flex-direction:column;
gap:10px;
}

.social-btn{
padding:10px;
border-radius:8px;
text-decoration:none;
color:white;
}

.whatsapp{background:#25D366;}
.instagram{background:#E4405F;}

.footer-bottom{
text-align:center;
margin-top:30px;
border-top:1px solid rgba(255,255,255,0.3);
padding-top:15px;
font-size:13px;
}

/* =========================
   ANIMATION
========================= */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(35px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-35px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* HEADER ANIMATION */
.header{
  animation: fadeDown 0.9s ease;
}

/* SECTION HIDDEN */
section{
  opacity:0;
  transform:translateY(40px);
  transition:0.7s;
}

section.show{
  opacity:1;
  transform:translateY(0);
}