* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #fffaf5;
  color: #333;
  line-height: 1.7;
}

/* HEADER */
.header {
  text-align: center;
  padding: 70px 24px 60px;
  background: linear-gradient(135deg, #fff1e6, #fff7f0);
}

.header h1 {
  font-size: 2.3rem;
  margin-bottom: 12px;
  color: #d96c3b;
}

.header p {
  max-width: 640px;
  margin: auto;
  opacity: 0.85;
}

.back {
  display: inline-block;
  margin-bottom: 26px;
  text-decoration: none;
  color: #d96c3b;
  font-weight: 500;
}

/* CONTAINER */
.container {
  max-width: 980px;
  margin: auto;
  padding: 60px 24px 80px;
}

/* SECTION */
section {
  margin-bottom: 70px;
}

section h2 {
  font-size: 1.45rem;
  margin-bottom: 18px;
  color: #b8572d;
}

/* INTRO */
.intro p {
  max-width: 780px;
}

/* FOCUS */
.focus-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.focus-item {
  padding: 18px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  font-size: 0.95rem;
}

/* INFO */
.info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 22px;
}

.box {
  text-align: center;
  padding: 26px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.box h3 {
  font-size: 0.95rem;
  margin-bottom: 6px;
  color: #d96c3b;
}

.box p {
  font-weight: 500;
}

/* CTA */
.cta {
  text-align: center;
  padding: 60px 30px;
  border-radius: 26px;
  background: linear-gradient(135deg, #f8b28c, #f6c1a4);
  color: #fff;
}

.cta p {
  max-width: 560px;
  margin: 14px auto 28px;
  opacity: 0.95;
}

.btn {
  display: inline-block;
  padding: 14px 38px;
  background: #fff;
  color: #d96c3b;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn:hover {
  transform: translateY(-4px);
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .header h1 {
    font-size: 1.8rem;
  }
}

/* FOOTER */

.footer{
background:#d96c3b;
color:white;
padding:50px 40px 20px;
margin-top:60px;
}

.footer-container{
max-width:1000px;
margin:auto;
display:flex;
justify-content:space-between;
gap:40px;
flex-wrap:wrap;
}

.footer-item{
flex:1;
min-width:240px;
}

.footer-item h3{
font-size:16px;
margin-bottom:14px;
}

.footer-item p{
font-size:14px;
line-height:1.6;
opacity:0.9;
}

/* link maps */

.footer-link{
display:inline-block;
margin-top:10px;
color:white;
text-decoration:none;
font-size:14px;
opacity:0.9;
}

.footer-link i{
margin-right:6px;
}

.footer-link:hover{
opacity:1;
}

/* social */

.footer-social{
display:flex;
flex-direction:column;
gap:10px;
}

.social-btn{
display:flex;
align-items:center;
gap:10px;
padding:10px 14px;
border-radius:8px;
text-decoration:none;
color:white;
font-size:14px;
transition:0.25s;
}

/* whatsapp */

.whatsapp{
background:#25D366;
}

.whatsapp:hover{
transform:translateY(-2px);
box-shadow:0 5px 12px rgba(0,0,0,0.2);
}

/* instagram */

.instagram{
background:#E4405F;
}

.instagram:hover{
transform:translateY(-2px);
box-shadow:0 5px 12px rgba(0,0,0,0.2);
}

/* footer bottom */

.footer-bottom{
text-align:center;
margin-top:35px;
padding-top:18px;
border-top:1px solid rgba(255,255,255,0.25);
font-size:13px;
opacity:0.8;
}

/* RESPONSIVE FOOTER */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 28px;
  }
}

/* =========================
   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 */
.header {
  animation: fadeDown 0.9s ease;
}

/* SECTION DEFAULT */
section {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.7s ease;
}

section.show {
  opacity: 1;
  transform: translateY(0);
}

/* FOCUS CARD */
.focus-item {
  transition: 0.35s;
}

.focus-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.12);
}

/* INFO CARD */
.box {
  transition: 0.35s;
}

.box:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(0,0,0,0.12);
}

/* BUTTON EFFECT */
.btn {
  transition: 0.3s;
}

.btn:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 12px 25px rgba(0,0,0,0.18);
}