/* ============================================================
   TODOS A BORDO — Main Stylesheet
   Brand: Dark Blue #07395E | Light Blue #26BBBB | Yellow #E3C871
   ============================================================ */

/* ---- Variables ---- */
:root {
  --dark-blue:    #07395E;
  --light-blue:   #26BBBB;
  --yellow:       #E3C871;
  --white:        #FFFFFF;
  --light-bg:     #F5F8FA;
  --mid-bg:       #EBF2F7;
  --text-body:    #3d5a6e;
  --text-muted:   #7a96a6;
  --border:       #dce8f0;
  --shadow-xs:    0 1px 4px rgba(7, 57, 94, 0.06);
  --shadow-sm:    0 2px 12px rgba(7, 57, 94, 0.07);
  --shadow:       0 4px 24px rgba(7, 57, 94, 0.10);
  --shadow-lg:    0 8px 48px rgba(7, 57, 94, 0.16);
  --radius-sm:    8px;
  --radius:       12px;
  --radius-lg:    20px;
  --radius-xl:    28px;
  --transition:   all 0.3s ease;
  --navbar-h:     78px;
}

/* ---- Reset ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--navbar-h);
  overflow-x: clip;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-body);
  background: var(--white);
  line-height: 1.65;
  overflow-x: clip;
  max-width: 100vw;
}

img { max-width: 100%; height: auto; display: block; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }
button { font-family: inherit; }

/* ---- Typography helpers ---- */
h1, h2, h3, h4 {
  color: var(--dark-blue);
  line-height: 1.2;
  font-weight: 700;
}

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--light-blue);
  margin-bottom: 0.6rem;
}

.section-title {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  color: var(--dark-blue);
  margin-bottom: 0.9rem;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.75;
}

.text-center            { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

.section-header         { margin-bottom: 3rem; }

/* ---- Layout ---- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section { padding: 3rem 0; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.82rem 1.65rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-yellow {
  background: var(--yellow);
  color: var(--dark-blue);
  border-color: var(--yellow);
}
.btn-yellow:hover {
  background: #d4b45e;
  border-color: #d4b45e;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(227, 200, 113, 0.45);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.65);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}

.btn-dark-blue {
  background: var(--dark-blue);
  color: var(--white);
  border-color: var(--dark-blue);
}
.btn-dark-blue:hover {
  background: #052e4a;
  border-color: #052e4a;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(7, 57, 94, 0.35);
}

.btn-outline-blue {
  background: transparent;
  color: var(--dark-blue);
  border-color: var(--dark-blue);
}
.btn-outline-blue:hover {
  background: var(--dark-blue);
  color: var(--white);
}

.btn-full { width: 100%; justify-content: center; }


/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  inset-block-start: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  height: var(--navbar-h);
  border-bottom: 1px solid var(--border);
  transition: background-color 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

.navbar.at-top {
  background: transparent;
  border-bottom-color: transparent;
  box-shadow: none;
}

.navbar.scrolled {
  box-shadow: var(--shadow);
  border-bottom-color: transparent;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--navbar-h);
}

.navbar-logo img {
  height: 52px;
  width: auto;
  transition: height 0.32s ease;
}

.navbar.at-top .navbar-logo img {
  height: 68px;
}

/* Nav menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-body);
  position: relative;
  transition: color 0.2s;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--light-blue);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.nav-link:hover,
.nav-link.active { color: var(--dark-blue); }

.nav-link:hover::after,
.nav-link.active::after { width: 100%; }

.nav-cta-mobile { display: none; }

/* Hamburger */
.navbar-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}

.navbar-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark-blue);
  border-radius: 2px;
  transition: var(--transition);
}

.navbar-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar-toggle.open span:nth-child(2) { opacity: 0; }
.navbar-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ============================================================
   HERO (light design)
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--white);
  padding-top: calc(var(--navbar-h) + 3.5rem);
  padding-bottom: 4rem;
}

.hero-stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-star {
  position: absolute;
  width: var(--star-size, 2px);
  height: var(--star-size, 2px);
  border-radius: 50%;
  background: rgba(227, 200, 113, 0.9);
  box-shadow: 0 0 6px rgba(227, 200, 113, 0.45);
  opacity: 0;
  animation: hero-star-twinkle var(--star-duration, 3.2s) ease-in-out var(--star-delay, 0s) infinite;
}

.hero-plane-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.hero-plane-unit {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-plane-trail {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-plane-trail polyline {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-plane-trail-main line {
  stroke: rgba(222, 228, 236, 0.72);
  stroke-width: 1.9;
  stroke-linecap: round;
}

.hero-plane {
  position: absolute;
  left: 0;
  top: 0;
  color: var(--yellow);
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  transform-origin: center center;
  pointer-events: none;
  will-change: transform;
}

.hero-plane-bubble {
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(255, 255, 255, 0.95);
  color: var(--dark-blue);
  border: 1px solid rgba(220, 232, 240, 0.95);
  border-radius: 14px;
  padding: 0.36rem 0.65rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
  opacity: 0;
  transform: translate(-9999px, -9999px);
  transition: opacity 0.18s ease;
  pointer-events: none;
}

.hero-plane-bubble::after {
  content: '';
  position: absolute;
  left: 30%;
  bottom: -6px;
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.95);
  border-right: 1px solid rgba(220, 232, 240, 0.95);
  border-bottom: 1px solid rgba(220, 232, 240, 0.95);
  transform: translateX(-50%) rotate(45deg);
}

.hero-plane-bubble.is-visible {
  opacity: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

@keyframes hero-star-twinkle {
  0%, 100% {
    opacity: 0;
    transform: scale(0.7);
  }
  45% {
    opacity: 0.95;
    transform: scale(1.15);
  }
  70% {
    opacity: 0.35;
    transform: scale(0.9);
  }
}

.hero-intro {
  text-align: center;
  max-width: 880px;
  margin: 0 auto 2.0rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(38, 187, 187, 0.1);
  border: 1px solid rgba(38, 187, 187, 0.3);
  color: var(--dark-blue);
  padding: 0.42rem 1.1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-badge i { color: var(--light-blue); }

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: var(--dark-blue);
  font-weight: 800;
  margin-bottom: 1.2rem;
}

.hero-highlight { color: var(--light-blue); }

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-body);
  margin: 0 auto 1.2rem;
  line-height: 1.75;
  max-width: 760px;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Travel type cards grid */
.hero-travel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.hero-travel-card {
  position: relative;
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 200px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-decoration: none;
}

.hero-travel-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.hero-travel-img {
  width: 100%;
  height: 100%;
}

.hero-travel-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.hero-travel-card:hover .hero-travel-img img { transform: scale(1.07); }

.hero-travel-label {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 1rem;
  background: linear-gradient(to top, rgba(7,57,94,0.75) 0%, rgba(7,57,94,0.1) 55%, transparent 100%);
  color: var(--white);
  gap: 0.3rem;
  text-align: center;
}

.hero-travel-label i {
  font-size: 1.4rem;
  color: var(--yellow);
}

.hero-travel-label span {
  font-size: 2.0rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}


/* ============================================================
   ABOUT
   ============================================================ */
.about { background: var(--light-bg); }

.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 4.5rem;
  align-items: center;
}

.about-img-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 3 / 4;
}

.about-carousel {
  position: relative;
  width: 100%;
  height: 100%;
}

.about-carousel-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 0.9s ease, transform 1.6s ease;
}

.about-carousel-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.about-img-card {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--white);
  border-radius: var(--radius);
  padding: 0.9rem 1.25rem;
  box-shadow: var(--shadow);
  font-size: 0.85rem;
}

.about-img-card i {
  font-size: 1.5rem;
  color: var(--yellow);
}

.about-img-card strong {
  display: block;
  font-size: 0.9rem;
  color: var(--dark-blue);
}

.about-img-card span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.about-intro {
  font-size: 0.98rem;
  line-height: 1.8;
  color: var(--text-body);
  margin-bottom: 2rem;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2.25rem;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.about-feature-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: var(--radius-sm);
  background: var(--light-blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.about-feature h4 {
  font-size: 0.92rem;
  margin-bottom: 0.2rem;
}

.about-feature p {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.6;
}


/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { background: var(--white); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--light-bg);
  border-radius: var(--radius-xl);
  padding: 2rem 1.75rem;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow);
  border-color: rgba(38, 187, 187, 0.4);
}

.testimonial-stars {
  display: flex;
  gap: 0.2rem;
  color: var(--yellow);
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.testimonial-avatar {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: 50%;
  background: var(--dark-blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.testimonial-author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--dark-blue);
}

.testimonial-author span {
  font-size: 0.78rem;
  color: var(--text-muted);
}


/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--light-bg); }

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: start;
}

/* Contact form */
.contact-form-wrapper {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.contact-form h3 {
  font-size: 1.35rem;
  margin-bottom: 1.75rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-row--3 {
  grid-template-columns: 1fr 1fr 1fr;
}

.form-group { margin-bottom: 1.2rem; }

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-body);
  margin-bottom: 0.4rem;
}

.form-required {
  color: var(--light-blue);
  font-weight: 700;
}

.form-label-hint {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  color: var(--dark-blue);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  appearance: none;
}

.form-group input[type="date"] {
  color: var(--text-body);
}

.form-group input[type="number"] {
  -moz-appearance: textfield;
  appearance: textfield;
}

.form-group input[type="number"]::-webkit-outer-spin-button,
.form-group input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--light-blue);
  box-shadow: 0 0 0 3px rgba(38, 187, 187, 0.12);
}

.form-group textarea { min-height: 80px; resize: none; }

/* Contact info */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-info-card {
  background: var(--dark-blue);
  border-radius: var(--radius-xl);
  padding: 2rem 2rem 2.25rem;
}

.contact-info-card h3 {
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: 0.4rem;
}

.contact-info-card > p {
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  margin-bottom: 1.75rem;
  line-height: 1.65;
}

.contact-details { display: flex; flex-direction: column; gap: 1.15rem; }

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: var(--radius-sm);
  background: rgba(38, 187, 187, 0.2);
  color: var(--light-blue);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-detail strong {
  display: block;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.2rem;
}

.contact-detail span {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.55;
}

.contact-social-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 1.6rem 2rem;
  border: 1px solid var(--border);
}

.contact-social-card h4 {
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
}

.contact-social-card p {
  font-size: 0.83rem;
  color: var(--text-muted);
  margin-bottom: 1.1rem;
}

.social-links { display: flex; gap: 0.6rem; justify-content: center; }

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--light-bg);
  border: 1px solid var(--border);
  color: var(--dark-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--dark-blue);
  color: var(--white);
  border-color: var(--dark-blue);
}

.social-link.social-link--facebook i { color: #1877F2; }

.social-link.social-link--instagram i {
  background: linear-gradient(45deg, #f58529 0%, #feda77 25%, #dd2a7b 55%, #8134af 78%, #515bd4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.social-link.social-link--whatsapp i { color: #25D366; }


/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--dark-blue);
  color: rgba(255,255,255,0.7);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1.2fr 1fr 1fr;
  gap: 3rem;
  padding: 3.5rem 0 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.09);
}

/* Footer brand / logo on dark */
.footer-logo-wrap {
  background: rgba(255,255,255,0.95);
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 1rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.1rem;
}

.footer-logo-wrap img { height: 42px; width: auto; }

.footer-partner-logos {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.1rem;
}

.footer-partner-logos img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.footer-brand p {
  font-size: 0.87rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 0.55rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--light-blue);
  color: var(--white);
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 1.3rem;
  padding-bottom: 0.7rem;
  position: relative;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--light-blue);
  border-radius: 2px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links a {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.2s;
}

.footer-links a i {
  font-size: 0.6rem;
  color: var(--light-blue);
}

.footer-links a:hover { color: var(--light-blue); }

.footer-contact { display: flex; flex-direction: column; gap: 0.9rem; }

.footer-company-info {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.footer-company-info p {
  font-size: 0.86rem;
  line-height: 1.5;
}

.footer-company-info a {
  color: inherit;
  transition: color 0.2s;
}

.footer-company-info a:hover { color: var(--light-blue); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.86rem;
}

.footer-contact-item i {
  color: var(--light-blue);
  margin-top: 3px;
  flex-shrink: 0;
}

/* Footer bottom */
.footer-bottom {
  padding: 1.4rem 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 0.75rem;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-bottom-links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}

.footer-bottom-links a:hover { color: var(--light-blue); }

/* Keep non-home pages with a solid white header even at top scroll position */
.legal-page .navbar.at-top {
  background: var(--white);
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-xs);
}


/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-page {
  background: var(--light-bg);
}

.legal-page-main {
  padding-top: calc(var(--navbar-h) + 2.4rem);
  padding-bottom: 3.5rem;
}

.legal-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  padding: 2.4rem 2.2rem;
}

.legal-card-header {
  margin-bottom: 1.4rem;
}

.legal-updated {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.legal-content {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.legal-content h3 {
  font-size: 1.02rem;
  color: var(--dark-blue);
  margin-top: 0.8rem;
}

.legal-content p,
.legal-content li {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.8;
}

.legal-content ul {
  margin-left: 1.1rem;
  list-style: disc;
}

.legal-content ol {
  margin-left: 1.1rem;
}

.legal-note {
  background: var(--mid-bg);
  border-left: 4px solid var(--light-blue);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 0.9rem 1rem;
}


/* ============================================================
   RESERVAS ONLINE — COMING SOON MODAL
   ============================================================ */
body.modal-open {
  overflow: hidden;
}

.coming-soon-modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  z-index: 1200;
}

.coming-soon-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.coming-soon-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 57, 94, 0.4);
  backdrop-filter: blur(2px);
}

.coming-soon-dialog {
  position: relative;
  width: min(520px, calc(100% - 2rem));
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: 2rem 2rem 1.8rem;
  text-align: center;
}

.coming-soon-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 34px;
  height: 34px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--text-muted);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.coming-soon-close:hover {
  color: var(--dark-blue);
  border-color: var(--light-blue);
}

.coming-soon-icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 0.9rem;
  border-radius: 50%;
  background: rgba(38, 187, 187, 0.13);
  color: var(--light-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.coming-soon-dialog h3 {
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
}

.coming-soon-dialog p {
  font-size: 0.94rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.2rem;
}


/* ============================================================
   SCROLL TO TOP
   ============================================================ */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--dark-blue);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
  z-index: 900;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--light-blue);
  transform: translateY(-3px);
}


/* ============================================================
   FADE-IN ANIMATIONS
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in:nth-child(2) { transition-delay: 0.08s; }
.fade-in:nth-child(3) { transition-delay: 0.16s; }
.fade-in:nth-child(4) { transition-delay: 0.24s; }
.fade-in:nth-child(5) { transition-delay: 0.32s; }
.fade-in:nth-child(6) { transition-delay: 0.40s; }


/* ============================================================
   RESPONSIVE — Tablet (≤1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .services-grid          { grid-template-columns: repeat(2, 1fr); }
  .destinations-grid      { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid      { grid-template-columns: repeat(2, 1fr); }
  .footer-grid            { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .about-grid             { gap: 3rem; }
}


/* ============================================================
   RESPONSIVE — Mobile (≤768px)
   ============================================================ */
@media (max-width: 768px) {
  :root { --navbar-h: 68px; }

  section { padding: 3.5rem 0; }

  /* Navbar */
  .nav-cta-desktop { display: none; }
  .navbar-toggle   { display: flex; }

  .navbar-logo img,
  .navbar.at-top .navbar-logo img {
    height: 42px;
  }

  .nav-menu {
    display: none;
    position: fixed;
    top: var(--navbar-h);
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.5rem 1.25rem;
    box-shadow: var(--shadow);
    border-top: 1px solid var(--border);
    z-index: 999;
    gap: 0;
  }

  .nav-menu.open { display: flex; }

  .nav-menu li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
  }

  .nav-menu li:last-child { border-bottom: none; padding-top: 1.1rem; }

  .nav-cta-mobile { display: block; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }

  .hero-travel-label span {
    font-size: 1.08rem;
    line-height: 1.15;
  }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; }

  /* Orçamento form */
  .form-row { grid-template-columns: 1fr; }
  .form-group input,
  .form-group select,
  .form-group textarea,
  .wizard-room-row select {
    width: 100%;
    box-sizing: border-box;
  }

  .wizard-steps { grid-template-columns: 1fr; }
  .wizard-step { display: none !important; }
  .wizard-step.is-active { display: block !important; }
  .wizard-step.is-fading-out,
  .wizard-step.is-fading-in {
    animation: none !important;
    opacity: 1 !important;
  }
  .wizard-step-grid { grid-template-columns: 1fr; gap: 1.2rem; }
  .wizard-step-media { display: none; }
  .wizard-counters { grid-template-columns: 1fr; }
  .wizard-room-row { gap: 0.35rem; }
  .wizard-step[data-step="2"] .wizard-step-media,
  .wizard-step[data-step="2"] .wizard-step-content { height: auto; }
  .wizard-step[data-step="2"] .wizard-step-media img { height: auto; }
  .wizard-step-scroll { overflow: visible; padding-right: 0; }
  .wizard-nav { flex-direction: column-reverse; }
  .wizard-nav .btn { width: 100%; justify-content: center; }

  .wizard-counter {
    width: 100%;
    justify-content: flex-start;
    flex-direction: column;
    align-items: stretch;
    gap: 0.45rem;
  }

  .wizard-counter-controls {
    width: 100%;
    grid-template-columns: 28px minmax(0, 1fr) 28px;
  }

  .wizard-counter-controls input {
    width: 100%;
    min-width: 0;
    max-width: none;
  }

  .wizard-room-row {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .wizard-room-row > * {
    width: 100%;
  }

  .wizard-room-row strong,
  .wizard-room-row label,
  .wizard-room-remove {
    margin-left: 0;
  }

  .wizard-room-remove {
    align-self: flex-end;
  }

  .wizard-contact-pref {
    width: 100%;
    flex-direction: column;
  }

  .wizard-pref-btn {
    min-width: 0;
    width: 100%;
  }

  .wizard-check-field {
    width: 100%;
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
  }

  .wizard-check-field input {
    width: 17px;
    flex: 0 0 17px;
  }

  .wizard-check-label {
    width: auto;
    flex: 1;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2.5rem 0 2rem;
    text-align: center;
    justify-items: center;
  }

  .footer-brand,
  .footer-col,
  .footer-contact,
  .footer-company-info,
  .footer-links {
    width: 100%;
    align-items: center;
  }

  .footer-brand,
  .footer-col,
  .footer-contact,
  .footer-company-info,
  .footer-links,
  .footer-social,
  .footer-partner-logos {
    justify-content: center;
    text-align: center;
  }

  .footer-brand p {
    max-width: none;
  }

  .footer-col h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-partner-logos {
    flex-wrap: wrap;
  }

  .footer-links a,
  .footer-company-info p,
  .footer-brand p,
  .footer-contact-item a {
    text-align: center;
  }

  .footer-contact-item {
    width: 100%;
    justify-content: center;
  }

  .footer-bottom-inner {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .footer-bottom p {
    font-size: 0.73rem;
  }

  .footer-bottom-links {
    width: 100%;
    justify-content: center;
    flex-direction: column;
    gap: 0.35rem;
  }

  .footer-bottom-links a {
    font-size: 0.73rem;
  }

  /* Legal pages */
  .legal-card {
    padding: 1.55rem 1.2rem;
    border-radius: var(--radius-lg);
  }

  /* Scroll top */
  .scroll-top { bottom: 1.25rem; right: 1.25rem; }

  .navbar-toggle {
    margin-right: 0;
  }

  .scroll-top {
    right: 1rem;
  }
}


/* ============================================================
   RESPONSIVE — Small Mobile (≤480px)
   ============================================================ */
@media (max-width: 480px) {
  .hero-travel-grid { grid-template-columns: 1fr 1fr; }
  .hero-actions     { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}


/* ============================================================
   ABOUT — story text
   ============================================================ */
.about-story {
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
  margin-bottom: 1.75rem;
}

.about-story p {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.8;
}

.about-tagline {
  background: var(--mid-bg);
  border-left: 4px solid var(--light-blue);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1rem 1.4rem;
  margin-bottom: 1rem;
}

.about-tagline p {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dark-blue);
  line-height: 1.5;
}

.about-slogan {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--light-blue);
  font-weight: 500;
  margin-bottom: 2rem;
}

/* ============================================================
   PEDIDO DE ORÇAMENTO
   ============================================================ */
.orcamento {
  background: var(--white);
}

.orcamento-form-wrapper {
  max-width: 1020px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.75rem 3rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.wizard-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
  margin-bottom: 1.4rem;
}

.wizard-step-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.78rem;
  color: var(--text-muted);
  background: var(--light-bg);
  font-weight: 600;
  text-align: center;
}

.wizard-step-chip span {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--mid-bg);
  color: var(--dark-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.73rem;
  font-weight: 700;
  padding-top: 2px;
}

.wizard-step-chip.is-active {
  border-color: rgba(38, 187, 187, 0.5);
  color: var(--dark-blue);
  background: rgba(38, 187, 187, 0.08);
}

.wizard-step-chip.is-active span {
  background: var(--light-blue);
  color: var(--white);
}

.wizard-step-summary {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  width: 100%;
  padding: 0.78rem 1rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(38, 187, 187, 0.5);
  border-radius: 999px;
  background: rgba(38, 187, 187, 0.08);
  color: var(--dark-blue);
  font-size: 0.8rem;
  font-weight: 600;
  text-align: center;
}

.wizard-step-summary span {
  color: var(--text-muted);
  font-weight: 600;
}

.wizard-step-summary strong {
  color: var(--dark-blue);
  font-weight: 700;
}

.wizard-step { display: none; }
.wizard-step.is-active { display: block; }

.wizard-step.is-fading-out,
.wizard-step.is-fading-in {
  pointer-events: none;
}

.wizard-step.is-fading-out {
  animation: wizardStepFadeOut 220ms ease forwards;
}

.wizard-step.is-fading-in {
  animation: wizardStepFadeIn 320ms ease forwards;
}

@keyframes wizardStepFadeOut {
  from { opacity: 1; }
  to { opacity: 0; }
}

@keyframes wizardStepFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .wizard-step.is-fading-out,
  .wizard-step.is-fading-in {
    animation: none;
  }
}

.wizard-step-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 2rem;
  align-items: stretch;
}

.wizard-step-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.wizard-step-media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  min-height: 0;
  object-fit: cover;
}

.wizard-step-content {
  display: flex;
  flex-direction: column;
}

.wizard-step[data-step="2"] .wizard-step-media,
.wizard-step[data-step="2"] .wizard-step-content {
  height: 430px;
}

.wizard-step[data-step="2"] .wizard-step-media img {
  height: 100%;
  aspect-ratio: auto;
}

.wizard-step-scroll {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding-right: 0.4rem;
}

.wizard-step-scroll::-webkit-scrollbar {
  width: 8px;
}

.wizard-step-scroll::-webkit-scrollbar-thumb {
  background: #c8d4e2;
  border-radius: 999px;
}

.wizard-check-field {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.wizard-check-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1.2;
  margin-top: 9px;
}

.wizard-check-field input {
  appearance: none;
  -webkit-appearance: none;
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 17px;
  height: 17px;
  margin: 0 3px 0 0;
  padding: 0;
  border: 1.5px solid #b8c3d2;
  border-radius: 3px;
  background: #f8fbff;
  place-content: center;
  box-sizing: border-box;
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
  flex: 0 0 17px;
  align-self: center;
}

.wizard-check-field input::after {
  position: absolute;
  top: 50%;
  left: 50%;
  content: '';
  width: 7px;
  height: 4px;
  border-left: 1.8px solid #fff;
  border-bottom: 1.8px solid #fff;
  transform: translate(-50%, -60%) rotate(-45deg) scale(0);
  transform-origin: center;
  transition: transform 0.18s ease;
}

.wizard-check-field input:hover {
  border-color: var(--light-blue);
  box-shadow: 0 0 0 3px rgba(25, 159, 214, 0.12);
}

.wizard-check-field input:focus-visible {
  outline: none;
  border-color: var(--light-blue);
  box-shadow: 0 0 0 4px rgba(25, 159, 214, 0.22);
}

.wizard-check-field input:checked {
  background: linear-gradient(135deg, #1aa9e8 0%, #0e7eb5 100%);
  border-color: #0e7eb5;
}

.wizard-check-field input:checked::after {
  transform: translate(-50%, -60%) rotate(-45deg) scale(1);
}

.wizard-counters {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem 1rem;
  margin-top: 0.6rem;
}

.wizard-counter {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 0.5rem;
}

.wizard-counter > span {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--text-muted);
  margin: 0;
}

.wizard-counter-controls {
  display: grid;
  grid-template-columns: 28px 58px 28px;
  gap: 0.35rem;
  align-items: center;
}

.counter-btn {
  border: 1px solid var(--border);
  background: var(--light-bg);
  color: var(--dark-blue);
  border-radius: 7px;
  height: 28px;
  cursor: pointer;
  font-weight: 700;
}

.counter-btn:hover {
  border-color: var(--light-blue);
  color: var(--light-blue);
}

.wizard-counter-controls input {
  width: 58px;
  min-width: 58px;
  max-width: 58px;
  padding: 0.4rem 0.45rem;
  text-align: center;
  font-weight: 600;
  color: var(--dark-blue);
  background: var(--white);
}

.wizard-rooms {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 0.6rem;
  margin-bottom: 0.75rem;
}

.wizard-room-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.45rem 0.55rem;
  background: var(--light-bg);
}

.wizard-room-row {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.wizard-room-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  margin-bottom: 0.55rem;
}

.wizard-room-controls {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem;
}

.wizard-room-control {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.wizard-room-row strong {
  font-size: 0.78rem;
  color: var(--dark-blue);
  margin-right: 0.25rem;
}

.wizard-room-remove {
  border: none;
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 0.8rem;
  padding: 0.2rem;
  margin-left: auto;
}

.wizard-room-remove:hover { color: #d54f4f; }

.wizard-room-row label {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin: 0;
}

.wizard-room-row select {
  width: 66px;
  min-width: 66px;
  padding: 0.35rem 0.4rem;
  font-size: 0.78rem;
}

.wizard-room-head strong {
  font-size: 0.78rem;
  color: var(--dark-blue);
  margin: 0;
}

.wizard-room-control label {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin: 0;
}

.wizard-room-control select {
  width: 100%;
  min-width: 0;
  padding: 0.35rem 0.4rem;
  font-size: 0.78rem;
}

.wizard-add-room {
  padding: 0.42rem 0.7rem;
  font-size: 0.74rem;
}

.wizard-contact-pref {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.wizard-pref-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.wizard-pref-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 92px;
  padding: 0.48rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 9px;
  background: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.wizard-pref-btn:hover {
  border-color: rgba(25, 159, 214, 0.55);
  color: var(--light-blue);
}

.wizard-pref-input:checked + .wizard-pref-btn {
  border-color: rgba(25, 159, 214, 0.7);
  background: rgba(25, 159, 214, 0.11);
  color: #0f6f9d;
}

.wizard-pref-input:focus-visible + .wizard-pref-btn {
  box-shadow: 0 0 0 3px rgba(25, 159, 214, 0.2);
}

@media (max-width: 768px) {
  .wizard-steps {
    display: none;
  }

  .wizard-step-summary {
    display: flex;
  }

  .footer-brand p {
    width: 100%;
    max-width: none;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .wizard-step {
    display: none !important;
  }

  .wizard-step.is-active {
    display: block !important;
  }

  .wizard-step.is-fading-out,
  .wizard-step.is-fading-in {
    animation: none !important;
    opacity: 1 !important;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    box-sizing: border-box;
  }

  .wizard-step-content,
  .wizard-step-scroll,
  .wizard-counter,
  .wizard-counter-controls,
  .wizard-room-item,
  .wizard-room-row,
  .wizard-room-row > *,
  .wizard-contact-pref,
  .wizard-pref-btn,
  .wizard-check-field {
    width: 100%;
    box-sizing: border-box;
  }

  .wizard-step-content,
  .wizard-step-grid,
  .wizard-step-grid > *,
  .form-row,
  .form-group,
  .wizard-contact-pref,
  .wizard-pref-btn {
    min-width: 0;
    max-width: 100%;
  }

  .wizard-step-grid {
    grid-template-columns: 1fr;
  }

  .wizard-step-media {
    display: none;
  }

  .wizard-counters {
    grid-template-columns: 1fr;
  }

  .wizard-counter {
    flex-direction: column;
    align-items: stretch;
    gap: 0.45rem;
  }

  .wizard-counter-controls {
    grid-template-columns: 28px minmax(0, 1fr) 28px;
  }

  .wizard-counter-controls input {
    min-width: 0;
    max-width: none;
  }

  .wizard-room-row {
    flex-direction: column;
    align-items: stretch;
  }

  .wizard-room-row label,
  .wizard-room-row strong,
  .wizard-room-remove {
    margin-left: 0;
  }

  .wizard-room-remove {
    align-self: flex-end;
  }

  .wizard-room-head {
    align-items: flex-start;
  }

  .wizard-room-controls {
    grid-template-columns: 1fr 1fr;
  }

  .wizard-room-control select {
    min-width: 0;
  }

  .wizard-contact-pref {
    flex-direction: column;
  }

  .wizard-pref-btn {
    min-width: 0;
  }

  .wizard-check-field {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
  }

  .wizard-check-field input {
    width: 17px;
    flex: 0 0 17px;
  }

  .wizard-check-label {
    width: auto;
    flex: 1;
  }
}

.wizard-nav {
  margin-top: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.wizard-nav--end {
  justify-content: flex-end;
}


/* ============================================================
   CONTACTOS
   ============================================================ */
.contactos {
  background: var(--light-bg);
}

.contactos .section-label { color: var(--light-blue); }
.contactos .section-title { color: var(--dark-blue); }
.contactos .section-subtitle { color: var(--text-muted); }

.contactos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 980px;
  margin: 0 auto 3rem;
}

.contactos-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 1.75rem 1.5rem;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.contactos-card:hover {
  background: var(--white);
  border-color: var(--light-blue);
  box-shadow: var(--shadow);
}

.contactos-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  background: rgba(38,187,187,0.15);
  color: var(--light-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin: 0 auto 1rem;
}

.contactos-card h4 {
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.contactos-card p {
  color: var(--text-body);
  font-size: 0.9rem;
  line-height: 1.6;
}

.contactos-card p a {
  color: var(--dark-blue);
  transition: color 0.2s;
}

.contactos-card p a:hover { color: var(--light-blue); }

.contactos-social {
  text-align: center;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}

.contactos-social h4 {
  color: var(--dark-blue);
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.contactos-social p {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 1.25rem;
}

.contactos-social .social-link {
  background: var(--white);
  border-color: var(--border);
  color: var(--text-muted);
  width: 46px;
  height: 46px;
  font-size: 1.12rem;
}

.contactos-social .social-link:hover {
  background: var(--white);
  border-color: var(--light-blue);
  color: var(--text-muted);
  box-shadow: var(--shadow);
}

/* Scroll top button above dark footer */
.contactos + .scroll-top { bottom: 2rem; }


/* ============================================================
   RESPONSIVE ADDITIONS
   ============================================================ */
@media (max-width: 900px) {
  .contactos-grid   { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hero-travel-grid        { grid-template-columns: repeat(2, 1fr); }
  .hero-travel-card        { height: 170px; }
  .orcamento-form-wrapper  { padding: 1.75rem 1.5rem; }
  .contactos-grid          { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .hero-travel-grid        { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .hero-travel-card        { height: 145px; }
  .contactos-grid          { grid-template-columns: 1fr; }
}
