:root {
  --teal: #004D4D;
  --teal-dark: #003333;
  --teal-light: #006666;
  --green: #4CAF50;
  --green-dark: #388E3C;
  --lime: #C6D91B;
  --lime-dark: #A8C017;
  --gold: #FFD700;
  --gold-dark: #E6C200;
  --white: #FFFFFF;
  --charcoal: #333333;
  --gray: #666666;
  --gray-light: #F5F5F5;
  --gray-border: #E0E0E0;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --header-h: 72px;
  --font-display: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-script: 'Caveat', cursive;
  --max-w: 1140px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--teal);
  color: var(--white);
  padding: 12px 24px;
  z-index: 9999;
  border-radius: var(--radius-sm);
  font-weight: 600;
}
.skip-link:focus { top: 16px; }

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}

.section__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}

.section__tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(0, 77, 77, 0.08);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section__title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--teal-dark);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section__desc {
  font-size: 1.125rem;
  color: var(--gray);
  line-height: 1.7;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9375rem;
  padding: 14px 32px;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.btn:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 2px;
}
.btn--lg { padding: 18px 40px; font-size: 1rem; }
.btn--full { width: 100%; }
.btn--primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--teal-dark);
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
}
.btn--primary:active { transform: translateY(0); }
.btn--whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}
.btn--whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  z-index: 1000;
  transition: var(--transition);
}
.header--scrolled { box-shadow: var(--shadow-sm); }
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
}
.header__logo-img {
  width: 36px;
  height: auto;
  flex-shrink: 0;
}
.logo-text {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--teal);
  line-height: 1.1;
}
.logo-text small {
  display: block;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--gray);
}
.header__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.header__toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--teal);
  border-radius: 2px;
  transition: var(--transition);
}
.header__toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.header__toggle.active span:nth-child(2) { opacity: 0; }
.header__toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.header__menu {
  display: flex;
  align-items: center;
  gap: 8px;
}
.header__menu a {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--charcoal);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.header__menu a:hover,
.header__menu a.active {
  color: var(--teal);
  background: rgba(0, 77, 77, 0.06);
}
.header__menu .nav-cta {
  background: var(--teal);
  color: var(--white) !important;
  padding: 10px 20px;
  margin-left: 8px;
}
.header__menu .nav-cta:hover {
  background: var(--teal-dark) !important;
  transform: translateY(-1px);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 40px) 0 80px;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 51, 51, 0.85) 0%, rgba(0, 77, 77, 0.75) 50%, rgba(0, 102, 102, 0.7) 100%);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.hero__logo {
  max-width: 200px;
  margin: 0 auto 16px;
}
.hero__badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--gold);
  border: 1px solid rgba(255, 215, 0, 0.3);
  padding: 6px 20px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  max-width: 850px;
  margin: 0 auto 20px;
}
.hero__title span {
  background: linear-gradient(135deg, var(--gold), var(--lime));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 650px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.hero__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero__cta-divisor {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.hero__info {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.hero__info-item {
  text-align: center;
}
.hero__info-value {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
}
.hero__info-label {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.hero__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.hero__logos-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.hero__mcmv {
  height: 36px;
  width: auto;
}
.hero__faal {
  height: 28px;
  width: auto;
}

.problem {
  background: var(--gray-light);
}
.problem__grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}
.problem__card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 32px;
  box-shadow: var(--shadow-md);
}
.problem__card h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--teal-dark);
  margin-bottom: 20px;
}
.problem__card h3 span { color: var(--green); }
.problem__card ul { display: flex; flex-direction: column; gap: 12px; }
.problem__card li {
  padding-left: 24px;
  position: relative;
  font-size: 0.9375rem;
  color: var(--gray);
}
.problem__card--before li::before {
  content: '✕';
  position: absolute;
  left: 0;
  color: #E53935;
  font-weight: 700;
}
.problem__card--after li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}
.problem__arrow {
  display: flex;
  align-items: center;
}
.problem__image {
  max-width: 800px;
  margin: 40px auto 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.problem__image img {
  width: 100%;
  height: auto;
  display: block;
}

.features {
  background: var(--white);
}
.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.features__card {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.features__card:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.features__img {
  width: 100%;
  height: 200px;
  overflow: hidden;
}
.features__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.features__card:hover .features__img img {
  transform: scale(1.05);
}
.features__body {
  padding: 24px 20px 28px;
}
.features__body h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--teal-dark);
  margin-bottom: 8px;
}
.features__body p {
  font-size: 0.875rem;
  color: var(--gray);
  line-height: 1.7;
}

.numbers {
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
}
.numbers__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.numbers__item { padding: 16px; }
.numbers__value {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.numbers__suffix {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold);
  margin-left: 4px;
}
.numbers__label {
  display: block;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.testimonials {
  background: var(--gray-light);
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial__card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}
.testimonial__stars {
  color: var(--gold);
  font-size: 1.125rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.testimonial__card blockquote {
  font-size: 0.9375rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial__author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-border);
}
.testimonial__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--white);
  font-size: 1rem;
  flex-shrink: 0;
}
.testimonial__author strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.875rem;
  color: var(--teal-dark);
}
.testimonial__author span {
  font-size: 0.75rem;
  color: var(--gray);
}

.gallery {
  background: var(--gray-light);
}
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 16px;
}
.gallery__item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery__item:hover img {
  transform: scale(1.05);
}
.gallery__item--wide {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery__label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 20px;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
}

.city {
  background: var(--white);
}
.city__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.city__card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--gray-border);
  transition: var(--transition);
}
.city__card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.city__card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.city__card h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--teal-dark);
  padding: 16px 20px 4px;
}
.city__card p {
  font-size: 0.875rem;
  color: var(--gray);
  padding: 0 20px 20px;
}

.attraction {
  background: var(--gray-light);
}
.attraction__box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-md);
}
.attraction__content .section__tag {
  margin-bottom: 12px;
}
.attraction__content .section__title {
  font-size: 1.75rem;
  margin-bottom: 16px;
}
.attraction__content p {
  font-size: 0.9375rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 20px;
}
.attraction__content ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.attraction__content li {
  font-size: 0.875rem;
  color: var(--teal);
  font-weight: 600;
  padding-left: 24px;
  position: relative;
}
.attraction__content li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}
.attraction__img {
  border-radius: var(--radius);
  overflow: hidden;
}
.attraction__img img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--radius);
}

.guarantee {
  background: var(--white);
}
.guarantee__box {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  background: linear-gradient(135deg, rgba(0, 77, 77, 0.03), rgba(76, 175, 80, 0.05));
  border: 1px solid rgba(0, 77, 77, 0.1);
  border-radius: var(--radius-lg);
  padding: 56px 40px;
}
.guarantee__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.guarantee__logos img {
  height: 44px;
  width: auto;
}
.guarantee__logos img:last-child {
  height: 38px;
}
.guarantee__icon {
  color: var(--green);
  margin-bottom: 20px;
}
.guarantee__box h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--teal-dark);
  margin-bottom: 16px;
}
.guarantee__box > p {
  font-size: 1rem;
  color: var(--gray);
  max-width: 550px;
  margin: 0 auto 28px;
}
.guarantee__box ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.guarantee__box li {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: 100px;
  padding: 10px 20px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--teal);
}
.guarantee__box li::before {
  content: '✓ ';
  color: var(--green);
}

.faq {
  background: var(--gray-light);
}
.faq__list {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq__item {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--teal-dark);
  text-align: left;
  transition: var(--transition);
}
.faq__question:hover { background: rgba(0, 77, 77, 0.02); }
.faq__question svg {
  flex-shrink: 0;
  transition: var(--transition);
  color: var(--teal);
}
.faq__question[aria-expanded="true"] svg { transform: rotate(180deg); }
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 24px;
}
.faq__answer p {
  font-size: 0.9375rem;
  color: var(--gray);
  line-height: 1.7;
  padding-bottom: 20px;
}

.cta {
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
}
.cta__box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 56px;
  box-shadow: var(--shadow-lg);
}
.cta .section__tag { background: rgba(0, 77, 77, 0.08); }
.cta .section__title { color: var(--teal-dark); }
.cta .section__desc { color: var(--gray); }

.cta__urgency {
  text-align: center;
  margin-bottom: 40px;
}
.cta__counter {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 12px;
}
.cta__counter > div {
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  color: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px;
  min-width: 80px;
}
.cta__counter span {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}
.cta__counter small {
  display: block;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 4px;
}
.cta__urgency-text {
  font-size: 0.8125rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}

.cta__dual {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: start;
}
.cta__form-wrap,
.cta__whatsapp-wrap {
  padding: 32px;
}
.cta__form-wrap h3,
.cta__whatsapp-wrap h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--teal-dark);
  margin-bottom: 12px;
}
.cta__whatsapp-wrap p {
  font-size: 0.9375rem;
  color: var(--gray);
  margin-bottom: 20px;
  line-height: 1.7;
}
.cta__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
}
.cta__divider span {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gray);
  background: var(--gray-light);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--gray-border);
}

.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 6px;
}
.form-group input {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--gray-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--charcoal);
  transition: var(--transition);
  background: var(--white);
}
.form-group input:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0, 77, 77, 0.1);
}
.form-group input.error {
  border-color: #E53935;
  box-shadow: 0 0 0 3px rgba(229, 57, 53, 0.1);
}
.form-group input.valid {
  border-color: var(--green);
}
.form-error {
  display: block;
  font-size: 0.75rem;
  color: #E53935;
  margin-top: 4px;
  min-height: 18px;
}
.cta__submit {
  margin-top: 8px;
  position: relative;
}
.cta__submit .btn-loading { display: none; align-items: center; gap: 8px; }
.cta__submit.loading .btn-text { display: none; }
.cta__submit.loading .btn-loading { display: inline-flex; }
.cta__submit.loading .btn-loading svg { animation: spin 1s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.form-disclaimer {
  font-size: 0.75rem;
  color: var(--gray);
  text-align: center;
  margin-top: 12px;
}
.form-success {
  text-align: center;
  padding: 32px 0;
}
.form-success svg { margin-bottom: 16px; }
.form-success h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--teal-dark);
  margin-bottom: 8px;
}
.form-success p {
  font-size: 0.9375rem;
  color: var(--gray);
}

.cta__logos-footer {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 16px 0 20px;
}
.cta__logos-footer img {
  height: 32px;
  width: auto;
}
.cta__logos-footer img:last-child {
  height: 28px;
}
.cta__contact-info {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-border);
  font-size: 0.875rem;
  color: var(--gray);
  line-height: 1.8;
}
.cta__contact-info strong {
  color: var(--teal);
  font-family: var(--font-display);
}

.footer {
  background: var(--teal-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 64px 0 32px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer__logo {
  max-width: 160px;
  margin-bottom: 12px;
}
.footer__brand p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  max-width: 300px;
}
.footer__brand-logos {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
}
.footer__brand-logos img {
  height: 32px;
  width: auto;
}
.footer__brand-logos img:last-child {
  height: 28px;
}
.footer__links h4,
.footer__contact h4 {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer__links a,
.footer__contact a {
  display: block;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  padding: 4px 0;
  transition: var(--transition);
}
.footer__links a:hover,
.footer__contact a:hover { color: var(--white); }
.footer__contact p {
  font-size: 0.875rem;
  line-height: 1.7;
}
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition);
  animation: pulse-whatsapp 2s infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}
@keyframes pulse-whatsapp {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6); }
}

.exit-popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.exit-popup.open {
  opacity: 1;
  pointer-events: all;
}
.exit-popup__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
}
.exit-popup__box {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 520px;
  width: 90vw;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  transform: scale(0.9) translateY(20px);
  transition: transform 0.4s ease;
}
.exit-popup.open .exit-popup__box {
  transform: scale(1) translateY(0);
}
.exit-popup__close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--gray);
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition);
  z-index: 1;
  line-height: 1;
}
.exit-popup__close:hover {
  background: var(--gray-light);
  color: var(--charcoal);
}
.exit-popup__content {
  padding: 48px 40px 40px;
  text-align: center;
}
.exit-popup__tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(0, 77, 77, 0.08);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.exit-popup__title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--teal-dark);
  line-height: 1.2;
  margin-bottom: 12px;
}
.exit-popup__desc {
  font-size: 0.9375rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 28px;
}
.exit-popup__cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.exit-popup__cta .btn {
  width: 100%;
}
body.popup-open {
  overflow: hidden;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1024px) {
  .features__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__grid { grid-template-columns: repeat(3, 1fr); }
  .gallery__item--wide { grid-column: span 2; grid-row: span 1; }
  .city__grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .header__toggle { display: flex; }
  .header__menu {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 16px 24px 24px;
    gap: 4px;
    box-shadow: var(--shadow-md);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
  }
  .header__menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .header__menu a { width: 100%; padding: 12px 16px; }
  .header__menu .nav-cta { margin-left: 0; text-align: center; }
  .section { padding: 64px 0; }
  .section__header { margin-bottom: 40px; }
  .section__title { font-size: 1.75rem; }
  .hero { min-height: auto; padding: calc(var(--header-h) + 24px) 0 40px; }
  .hero__bg { min-height: 100%; }
  .hero__logo { max-width: 140px; }
  .hero__badge { font-size: 0.625rem; }
  .hero__subtitle { font-size: 1rem; }
  .hero__cta { flex-direction: column; }
  .hero__cta .btn { width: 100%; font-size: 0.875rem; padding: 14px 24px; }
  .hero__cta-divisor { font-size: 0.75rem; }
  .hero__info { gap: 16px; }
  .hero__info-value { font-size: 1.25rem; }
  .hero__info-label { font-size: 0.6875rem; }
  .hero__logos { gap: 12px; margin-top: 28px; }
  .hero__mcmv { height: 28px; }
  .hero__faal { height: 22px; }
  .problem__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .problem__card { padding: 28px 20px; }
  .problem__arrow { transform: rotate(90deg); justify-content: center; }
  .problem__image { margin-top: 24px; }
  .features__grid { grid-template-columns: 1fr; }
  .features__img { height: 180px; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; gap: 8px; }
  .gallery__item--wide { grid-column: span 2; grid-row: span 1; }
  .gallery__label { font-size: 0.75rem; padding: 10px 14px; }
  .city__grid { grid-template-columns: 1fr; }
  .city__card img { height: 180px; }
  .attraction__box { grid-template-columns: 1fr; gap: 24px; padding: 24px 20px; }
  .attraction__content .section__title { font-size: 1.375rem; }
  .attraction__img img { height: 200px; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .numbers__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .numbers__item { padding: 12px; }
  .numbers__value { font-size: 2rem; }
  .numbers__suffix { font-size: 1rem; }
  .guarantee__box { padding: 28px 20px; }
  .guarantee__box h3 { font-size: 1.25rem; }
  .guarantee__logos img { height: 32px; }
  .guarantee__logos img:last-child { height: 28px; }
  .guarantee__box ul { flex-direction: column; align-items: center; }
  .faq__question { font-size: 0.875rem; padding: 16px 20px; }
  .cta__box { padding: 24px 16px; border-radius: var(--radius); }
  .cta__dual { grid-template-columns: 1fr; gap: 12px; }
  .cta__form-wrap,
  .cta__whatsapp-wrap { padding: 16px 0; }
  .cta__form-wrap h3,
  .cta__whatsapp-wrap h3 { font-size: 1.125rem; }
  .cta__divider { align-self: center; padding: 4px 0; }
  .cta__divider span { width: 36px; height: 36px; font-size: 0.625rem; }
  .cta__counter { gap: 8px; }
  .cta__counter > div { min-width: 60px; padding: 10px 12px; }
  .cta__counter span { font-size: 1.375rem; }
  .cta__urgency { margin-bottom: 24px; }
  .cta__contact-info { font-size: 0.8125rem; }
  .footer { padding: 40px 0 24px; }
  .footer__inner { grid-template-columns: 1fr; gap: 24px; }
  .footer__brand p { max-width: 100%; }
  .footer__cta .btn { width: 100%; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .whatsapp-float { width: 48px; height: 48px; bottom: 16px; right: 16px; }
  .exit-popup__content { padding: 40px 24px 32px; }
  .exit-popup__title { font-size: 1.375rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section__title { font-size: 1.5rem; }
  .cta__counter { gap: 8px; }
  .cta__counter > div { min-width: 56px; padding: 10px 12px; }
  .cta__counter span { font-size: 1.25rem; }
}
