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

:root {
  --bg: #fff7ef;
  --card: rgba(255, 255, 255, 0.92);
  --text: #222222;
  --muted: #5d5d5d;
  --line: rgba(247, 127, 0, 0.22);
  --shadow: rgba(202, 59, 0, 0.16);
  --red: #d62828;
  --orange: #f77f00;
  --green: #25d366;
  --gold: #f4c542;
}

body.dark {
  --bg: #151515;
  --card: rgba(31, 31, 31, 0.94);
  --text: #f7f7f7;
  --muted: #cfcfcf;
  --line: rgba(247, 127, 0, 0.28);
  --shadow: rgba(0, 0, 0, 0.34);
}

body {
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  background: radial-gradient(circle at top, rgba(247, 127, 0, 0.24), transparent 34%), linear-gradient(180deg, var(--bg), var(--bg));
  color: var(--text);
  overflow-x: hidden;
  transition: background 0.3s ease, color 0.3s ease;
}

.background-animation { position: fixed; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; opacity: 0.5; }
.cloud, .route { position: absolute; filter: blur(0.2px); animation-timing-function: linear; animation-iteration-count: infinite; }
.cloud-one { top: 9%; left: -12%; font-size: 3rem; animation-name: driftRight; animation-duration: 22s; }
.cloud-two { top: 72%; right: -12%; font-size: 2.2rem; animation-name: driftLeft; animation-duration: 26s; }
.route-one { top: 19%; left: -10%; font-size: 1.8rem; animation-name: flyRight; animation-duration: 14s; }
.route-two { bottom: 13%; right: -10%; font-size: 1.8rem; animation-name: flyLeft; animation-duration: 16s; }

@keyframes driftRight { from { transform: translateX(0); } to { transform: translateX(120vw); } }
@keyframes driftLeft { from { transform: translateX(0); } to { transform: translateX(-120vw); } }
@keyframes flyRight { from { transform: translateX(0) translateY(0); } 50% { transform: translateX(60vw) translateY(-16px); } to { transform: translateX(120vw) translateY(0); } }
@keyframes flyLeft { from { transform: translateX(0) translateY(0); } 50% { transform: translateX(-60vw) translateY(14px); } to { transform: translateX(-120vw) translateY(0); } }

.top-bar { position: fixed; top: 14px; right: 14px; display: flex; gap: 8px; z-index: 5; }
.small-toggle { border: 1px solid var(--line); background: var(--card); color: var(--text); border-radius: 999px; padding: 9px 12px; font-weight: 700; box-shadow: 0 8px 22px var(--shadow); cursor: pointer; backdrop-filter: blur(10px); }
.page { position: relative; z-index: 1; width: 100%; min-height: 100vh; padding: 78px 16px 32px; display: flex; flex-direction: column; align-items: center; }
.hero-card, .section { width: 100%; max-width: 460px; background: var(--card); border: 1px solid var(--line); border-radius: 30px; text-align: center; box-shadow: 0 18px 46px var(--shadow); backdrop-filter: blur(12px); }
.hero-card { position: relative; padding: 28px 22px; overflow: hidden; }
.package-intro { position: relative; height: 42px; margin-bottom: 6px; }
.package { position: absolute; left: -44px; top: 6px; font-size: 1.8rem; animation: packageArrive 1.8s cubic-bezier(.22, .95, .32, 1.15) forwards; }
.pin { position: absolute; right: 22px; top: 6px; font-size: 1.8rem; opacity: 0; animation: pinPop 0.5s ease forwards; animation-delay: 1.1s; }
@keyframes packageArrive { 0% { transform: translateX(0) rotate(-8deg); opacity: 0; } 18% { opacity: 1; } 80% { transform: translateX(calc(100vw - 185px)) rotate(8deg); } 100% { transform: translateX(calc(100vw - 178px)) rotate(0deg); opacity: 1; } }
@keyframes pinPop { from { transform: scale(0.3); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.logo { width: 100%; max-width: 292px; height: auto; margin-bottom: 8px; opacity: 0; animation: fadeUp 0.7s ease forwards; animation-delay: 1.5s; }
body.dark .logo { filter: drop-shadow(0 0 16px rgba(247, 127, 0, 0.28)); }
h1 { font-size: 2.05rem; line-height: 1.1; margin-top: 6px; background: linear-gradient(90deg, var(--red), var(--orange)); -webkit-background-clip: text; background-clip: text; color: transparent; opacity: 0; animation: fadeUp 0.7s ease forwards; animation-delay: 1.65s; }
.tagline { font-size: 1.08rem; font-weight: 800; margin-top: 10px; color: var(--muted); opacity: 0; animation: fadeUp 0.7s ease forwards; animation-delay: 1.8s; }
.description { font-size: 0.98rem; line-height: 1.45; margin: 12px auto 22px; color: var(--muted); max-width: 350px; opacity: 0; animation: fadeUp 0.7s ease forwards; animation-delay: 1.95s; }
.buttons { display: flex; flex-direction: column; gap: 12px; }
.button { display: block; width: 100%; padding: 15px 18px; border-radius: 999px; text-decoration: none; font-size: 1rem; font-weight: 800; color: white; background: linear-gradient(90deg, var(--red), var(--orange)); box-shadow: 0 8px 18px rgba(214, 40, 40, 0.22); opacity: 0; transform: translateY(20px) scale(0.98); animation-name: buttonLoad; animation-duration: 0.55s; animation-timing-function: ease; animation-fill-mode: forwards; transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease; }
.button:hover { transform: translateY(-2px) scale(1.01); box-shadow: 0 12px 24px rgba(214, 40, 40, 0.28); filter: brightness(1.04); }
.whatsapp { background: linear-gradient(90deg, #128c4a, var(--green)); }
.call { background: linear-gradient(90deg, #ff6a00, #ffb21f); }
.social { background: linear-gradient(90deg, var(--red), var(--orange)); }
.delay-1 { animation-delay: 2.08s; } .delay-2 { animation-delay: 2.2s; } .delay-3 { animation-delay: 2.32s; } .delay-4 { animation-delay: 2.44s; } .delay-5 { animation-delay: 2.56s; }
@keyframes buttonLoad { to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }
.section { margin-top: 18px; padding: 24px 18px; }
.section h2 { font-size: 1.35rem; margin-bottom: 16px; }
.service-grid { display: grid; grid-template-columns: 1fr; gap: 12px; }
.service-card { border: 1px solid var(--line); border-radius: 20px; padding: 16px; background: rgba(255, 127, 0, 0.06); text-align: left; }
.service-icon { display: block; font-size: 1.55rem; margin-bottom: 8px; }
.service-card h3 { font-size: 1rem; line-height: 1.25; }
.service-card p { margin-top: 8px; color: var(--muted); font-size: 0.92rem; line-height: 1.45; }
.special-service { border: 2px solid var(--gold); background: linear-gradient(135deg, rgba(244, 197, 66, 0.18), rgba(255, 255, 255, 0.05)); box-shadow: 0 0 15px rgba(244, 197, 66, 0.25), 0 0 30px rgba(244, 197, 66, 0.12); }
body.dark .special-service { background: linear-gradient(135deg, rgba(244, 197, 66, 0.16), rgba(31, 31, 31, 0.4)); box-shadow: 0 0 18px rgba(244, 197, 66, 0.26), 0 0 38px rgba(244, 197, 66, 0.14); }
.badge { display: inline-block; background: var(--gold); color: #222; font-weight: 900; font-size: 0.78rem; padding: 7px 12px; border-radius: 999px; margin-bottom: 12px; }
.phone-number { font-size: 1.25rem; font-weight: 900; margin-bottom: 14px; }
.mini-link { display: inline-block; color: white; background: linear-gradient(90deg, #128c4a, var(--green)); padding: 12px 18px; border-radius: 999px; text-decoration: none; font-weight: 800; }
.floating-whatsapp { position: fixed; right: 18px; bottom: 18px; width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center; text-decoration: none; font-size: 1.65rem; background: var(--green); box-shadow: 0 10px 28px rgba(37, 211, 102, 0.38); z-index: 8; animation: whatsappPulse 2.4s ease-in-out infinite; }
@keyframes whatsappPulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.08); } }
footer { margin-top: 18px; font-size: 0.82rem; color: var(--muted); }
@media (min-width: 620px) { .service-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 380px) { .top-bar { top: 10px; right: 10px; } .small-toggle { padding: 8px 10px; font-size: 0.82rem; } .hero-card, .section { border-radius: 24px; } h1 { font-size: 1.76rem; } .button { font-size: 0.95rem; padding: 14px 16px; } }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; } }
