/* ==========================================================================
   DONNA CLEAN — LIMPEZA PARA AIRBNB / TEMPORADA
   ========================================================================== */

:root {
  --coral: #FF385C;
  --coral-dark: #E31C5F;
  --coral-light: #FFE4E9;
  --blue: #3454D1;
  --blue-dark: #1C1868;
  --ink: #22222A;
  --gray: #6B6B76;
  --line: #EDEDF2;
  --cream: #FFF8F5;
  --white: #FFFFFF;
  --whatsapp: #25D366;
  --whatsapp-dark: #1EBE57;

  --font-head: 'Poppins', sans-serif;
  --font-body: 'Nunito', sans-serif;

  --radius: 18px;
  --shadow: 0 20px 50px -20px rgba(255, 56, 92, 0.35);
  --shadow-sm: 0 10px 26px -14px rgba(34, 34, 42, 0.25);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--ink); background: var(--white); line-height: 1.6; overflow-x: hidden; }
img, video { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 24px; }

h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 700; color: var(--ink); line-height: 1.25; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 26px; border-radius: 50px; font-weight: 800; font-size: 15px;
  cursor: pointer; border: none; transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}
.btn i { font-size: 18px; }
.btn:hover { transform: translateY(-2px); }

.btn-whatsapp { background: var(--whatsapp); color: #fff; box-shadow: 0 10px 25px -8px rgba(37,211,102,0.6); }
.btn-whatsapp:hover { background: var(--whatsapp-dark); }

.btn-lg { padding: 17px 34px; font-size: 16px; }

.btn-outline-dark { background: #fff; color: var(--ink); border: 2px solid var(--line); }
.btn-outline-dark:hover { border-color: var(--coral); color: var(--coral); }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 12px 24px; gap: 20px; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo img { height: 42px; width: auto; }
.nav { display: flex; gap: 26px; }
.nav a { font-weight: 700; font-size: 14.5px; color: var(--ink); position: relative; padding: 4px 0; }
.nav a::after { content: ''; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px; background: var(--coral); transition: width 0.25s ease; }
.nav a:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }

.cross-link {
  width: 42px; height: 42px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid var(--line);
  color: var(--blue-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.cross-link:hover { background: var(--coral-light); border-color: var(--coral); color: var(--coral-dark); }

.header-cta { flex-shrink: 0; }

.menu-toggle { display: none; background: none; border: none; font-size: 24px; color: var(--ink); cursor: pointer; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 70px 0 90px; background: var(--cream); overflow: hidden; }
.hero-shapes {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(circle at 85% 10%, rgba(255,56,92,0.12), transparent 45%),
              radial-gradient(circle at 5% 90%, rgba(52,84,209,0.12), transparent 45%);
}
.hero-inner { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 60px; align-items: center; position: relative; z-index: 2; }

.badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--coral-light); color: var(--coral-dark);
  padding: 9px 18px; border-radius: 50px; font-size: 13px; font-weight: 800; margin-bottom: 22px;
}
.hero-text h1 { font-size: clamp(30px, 4vw, 44px); margin-bottom: 18px; }
.hero-text h1 span { color: var(--coral); }
.hero-sub { color: var(--gray); font-size: 17px; max-width: 520px; margin-bottom: 30px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 36px; }

.hero-trust { display: grid; grid-template-columns: repeat(2, auto); gap: 14px 30px; }
.hero-trust-item { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 700; color: var(--ink); }
.hero-trust-item i { color: var(--coral); font-size: 16px; }

.hero-media { position: relative; }
.photo-slot-hero { aspect-ratio: 4/5; border-radius: var(--radius); box-shadow: var(--shadow); }

.hero-float-card {
  position: absolute; bottom: -22px; left: -22px;
  background: #fff; border-radius: 16px; padding: 16px 20px;
  box-shadow: var(--shadow-sm);
  display: flex; align-items: center; gap: 14px; max-width: 250px;
}
.hero-float-card i { font-size: 26px; color: var(--coral); background: var(--coral-light); width: 46px; height: 46px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hero-float-card strong { display: block; font-size: 14px; color: var(--ink); }
.hero-float-card span { font-size: 12.5px; color: var(--gray); }

/* ---------- Trust strip ---------- */
.trust-strip { background: var(--blue-dark); padding: 20px 0; }
.trust-strip-inner { display: flex; justify-content: center; flex-wrap: wrap; gap: 30px; }
.trust-strip-item { color: #E4E7FA; font-size: 13.5px; font-weight: 700; display: flex; align-items: center; gap: 8px; }
.trust-strip-item i { color: var(--coral); }

/* ---------- Photo / Video Slots ---------- */
.photo-slot { position: relative; border-radius: var(--radius); overflow: hidden; background: linear-gradient(135deg, #FFE9E0, #FFD9DE); }
.photo-slot img { width: 100%; height: 100%; object-fit: cover; }
.photo-placeholder {
  display: none; position: absolute; inset: 0; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px; text-align: center; padding: 12px;
  background: linear-gradient(135deg, #FFE9E0, #FFD9DE);
}
.photo-placeholder i { font-size: 28px; color: var(--coral); }
.photo-placeholder span { font-size: 13px; font-weight: 700; color: var(--ink); max-width: 200px; }
.photo-slot-card { aspect-ratio: 4/3; }

/* ---------- Before / After Compare ---------- */
.compare {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  user-select: none;
}
.compare-bonus { aspect-ratio: 1/1; }
.compare-after, .compare-before {
  position: absolute; inset: 0;
  overflow: hidden;
}
.compare-before { clip-path: inset(0 50% 0 0); }
.compare-before::after {
  content: '';
  position: absolute; top: 0; bottom: 0; right: 0;
  width: 3px; background: #fff;
}
.compare-after img, .compare-before img { width: 100%; height: 100%; object-fit: cover; }
.compare .ph-label {
  position: absolute; top: 14px; left: 14px;
  background: rgba(34,34,42,0.75);
  color: #fff;
  font-size: 11px; font-weight: 800; letter-spacing: 1px;
  padding: 5px 12px; border-radius: 50px;
}
.compare-before .ph-label { background: var(--coral); color: #fff; }
.compare.ph-after .compare-after, .compare.ph-before .compare-before {
  background: linear-gradient(135deg, #FFE9E0, #FFD9DE);
  display: flex; align-items: center; justify-content: center;
}
.compare-range {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  opacity: 0;
  cursor: ew-resize;
  margin: 0;
}
.compare-handle {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 42px; height: 42px;
  background: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--coral);
  box-shadow: var(--shadow-sm);
  pointer-events: none;
}

/* ---------- Sections ---------- */
.section { padding: 100px 0; }
.section-alt { background: var(--cream); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.eyebrow { display: inline-block; color: var(--coral); font-weight: 800; letter-spacing: 1.2px; text-transform: uppercase; font-size: 13px; margin-bottom: 12px; }
.section-head h2 { font-size: clamp(26px, 3.4vw, 36px); margin-bottom: 14px; }
.section-head p { color: var(--gray); font-size: 16px; }

.grid { display: grid; gap: 28px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }

/* ---------- Cards ---------- */
.card { background: #fff; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card-body { padding: 24px 22px 28px; }
.card-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: linear-gradient(135deg, var(--coral), var(--coral-dark)); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 19px; margin-bottom: 16px;
}
.card h3 { font-size: 18px; margin-bottom: 10px; }
.card p { color: var(--gray); font-size: 14.5px; }

/* ---------- Bônus ---------- */
.bonus { padding: 90px 0; background: linear-gradient(135deg, var(--blue-dark), var(--blue)); color: #fff; }
.bonus-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.ribbon {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.35);
  padding: 8px 18px; border-radius: 50px; font-size: 13px; font-weight: 800; margin-bottom: 20px; color: #fff;
}
.bonus-text h2 { color: #fff; font-size: clamp(26px, 3.2vw, 34px); margin-bottom: 18px; }
.bonus-text h2 span { color: #FFB4C2; }
.bonus-text p { color: #D7DCF6; font-size: 15.5px; margin-bottom: 20px; }
.bonus-list { margin-bottom: 30px; }
.bonus-list li { display: flex; align-items: flex-start; gap: 10px; color: #E4E7FA; font-size: 14.5px; margin-bottom: 10px; font-weight: 600; }
.bonus-list li i { color: #FFB4C2; margin-top: 3px; }

/* ---------- Pricing ---------- */
.pricing { align-items: stretch; }
.price-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 36px 28px; display: flex; flex-direction: column; box-shadow: var(--shadow-sm);
  position: relative;
}
.price-card h3 { font-size: 21px; margin-bottom: 8px; }
.price-desc { color: var(--gray); font-size: 14px; margin-bottom: 22px; }
.price-card ul { margin-bottom: 26px; flex-grow: 1; }
.price-card li { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; margin-bottom: 12px; color: var(--ink); font-weight: 600; }
.price-card li i { color: var(--coral); margin-top: 3px; }
.price-card li.highlight { color: var(--coral-dark); }
.price-card li.highlight i { color: var(--coral-dark); }
.price-card .btn { width: 100%; }

.price-card-featured {
  border: 2px solid var(--coral);
  transform: scale(1.03);
  box-shadow: var(--shadow);
}
.price-tag {
  position: absolute; top: -16px; left: 50%; transform: translateX(-50%);
  background: var(--coral); color: #fff; font-size: 12px; font-weight: 800;
  padding: 7px 16px; border-radius: 50px; display: flex; align-items: center; gap: 6px; white-space: nowrap;
}

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.step { text-align: center; }
.step-num {
  width: 54px; height: 54px; border-radius: 50%;
  background: linear-gradient(135deg, var(--coral), var(--coral-dark)); color: #fff;
  font-family: var(--font-head); font-size: 21px; font-weight: 800;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; box-shadow: var(--shadow-sm);
}
.step h3 { font-size: 17px; margin-bottom: 8px; }
.step p { color: var(--gray); font-size: 14px; }

/* ---------- Features ---------- */
.features .feature { text-align: center; padding: 34px 24px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.features .feature:hover { transform: translateY(-6px); box-shadow: var(--shadow-sm); }
.feature-icon {
  width: 58px; height: 58px; margin: 0 auto 18px; border-radius: 50%;
  background: var(--coral-light); color: var(--coral-dark);
  display: flex; align-items: center; justify-content: center; font-size: 23px;
}
.feature h3 { font-size: 17.5px; margin-bottom: 10px; }
.feature p { color: var(--gray); font-size: 14.5px; }

/* ---------- CTA Final ---------- */
.cta-final { background: linear-gradient(135deg, var(--coral-dark), var(--coral)); padding: 80px 0; text-align: center; }
.cta-final-inner h2 { color: #fff; font-size: clamp(24px, 3vw, 34px); margin-bottom: 12px; }
.cta-final-inner p { color: #FFE4E9; margin-bottom: 28px; font-size: 16px; }

/* ---------- Footer ---------- */
.footer { background: var(--blue-dark); color: #C7C9E6; padding: 70px 0 0; }
.footer-inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-col { min-width: 0; }
.footer-logo { height: 40px; margin-bottom: 16px; filter: brightness(0) invert(1); }
.footer-col p { font-size: 14px; margin-bottom: 10px; overflow-wrap: break-word; }
.footer-col h4 { color: #fff; font-size: 16px; margin-bottom: 18px; }
.footer-col a { display: block; font-size: 14px; margin-bottom: 10px; color: #C7C9E6; overflow-wrap: break-word; }
.footer-col a:hover { color: var(--coral); }
.footer-legal { margin-top: 16px; font-size: 12.5px; opacity: 0.75; }
.footer-legal p { margin-bottom: 3px; }
.footer-col .btn-whatsapp { margin-bottom: 18px; }
.footer-social { display: flex; gap: 14px; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; margin-bottom: 0; }
.footer-map iframe { width: 100%; height: 260px; border: 0; filter: grayscale(0.3) contrast(1.1); }
.footer-bottom { text-align: center; padding: 22px 0; font-size: 13px; opacity: 0.7; }
.footer-bottom p { margin: 0; }
.footer-credit { margin-top: 6px !important; font-size: 12px !important; }
.footer-credit strong { color: var(--coral); font-weight: 700; }

/* ---------- WhatsApp float ---------- */
.whatsapp-float {
  position: fixed; bottom: 26px; right: 26px; width: 62px; height: 62px;
  background: var(--whatsapp); border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 30px; box-shadow: 0 10px 30px -6px rgba(37,211,102,0.6); z-index: 999;
  animation: pulse 2.2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.55); }
  70% { box-shadow: 0 0 0 18px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ---------- Mobile sticky CTA ---------- */
.mobile-sticky { display: none; position: fixed; bottom: 0; left: 0; right: 0; background: #fff; box-shadow: 0 -8px 24px rgba(0,0,0,0.12); padding: 10px 14px; gap: 10px; z-index: 998; }
.mobile-sticky .btn { flex: 1; padding: 13px; font-size: 14px; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */

/* Tablet / small laptop: switch nav to hamburger before it gets cramped */
@media (max-width: 1200px) {
  .nav { display: none; }
  .menu-toggle { display: block; }
  .header-cta { display: none; }
  .nav.open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: #fff;
    padding: 20px 24px;
    border-bottom: 1px solid var(--line);
    gap: 16px;
    box-shadow: var(--shadow-sm);
    max-height: calc(100vh - 100%);
    overflow-y: auto;
  }
}

@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-media { order: -1; max-width: 420px; width: 100%; margin: 0 auto 30px; }
  .hero-text { text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; }
  .bonus-inner { grid-template-columns: 1fr; }
  .bonus-media { order: -1; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .price-card-featured { transform: none; }
}

@media (max-width: 760px) {
  .container { padding: 0 18px; }
  .hero { padding: 50px 0 70px; }
  .hero-trust { grid-template-columns: 1fr; justify-items: center; }
  .hero-float-card { left: 0; right: 0; width: max-content; max-width: 90%; margin: 0 auto; bottom: -18px; }
  .grid-3 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; text-align: left; }
  .mobile-sticky { display: flex; }
  .whatsapp-float { bottom: 86px; width: 54px; height: 54px; font-size: 26px; }
  .section { padding: 60px 0; }
  .section-head { margin-bottom: 40px; }
  .trust-strip-inner { flex-direction: column; align-items: flex-start; gap: 14px; }
}

@media (max-width: 480px) {
  .hero-actions, .bonus-text .btn-whatsapp, .section-cta, .cta-final-inner {
    display: flex; flex-direction: column; align-items: stretch;
  }
  .hero-actions .btn, .cta-final-inner .btn { width: 100%; }
  .btn { white-space: normal; text-align: center; line-height: 1.3; }
  .hero-text h1 { font-size: 26px; }
  .badge, .ribbon { font-size: 12px; padding: 7px 14px; }
  .mobile-sticky .btn { white-space: nowrap; }
}
