:root {
    --green: #017f07;
    --green-light: #03a30b;
    --green-dark: #015a05;
    --green-pale: #e8f5e9;
    --cream: #f5f2ec;
    --charcoal: #1a1a1a;
    --text: #333;
    --text-light: #666;
    --white: #fff;
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
  }

  /* HERO */
  .hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    animation: heroZoom 8s ease-out forwards;
  }

  @keyframes heroZoom {
    from { transform: scale(1.1); }
    to { transform: scale(1.0); }
  }

  .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.55) 60%, rgba(0,0,0,0.75) 100%);
  }

  .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    animation: fadeUp 1s ease 0.3s both;
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .hero-logo {
    width: 220px;
    margin: 0 auto 28px;
    display: block;
    filter: drop-shadow(0 4px 16px rgba(0,0,0,0.5));
  }

  .hero-tagline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.8rem);
    font-weight: 900;
    line-height: 1.1;
    text-shadow: 0 2px 20px rgba(0,0,0,0.4);
    margin-bottom: 16px;
  }

  .hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 300;
    opacity: 0.92;
    max-width: 600px;
    margin: 0 auto 100px;
    line-height: 1.6;
  }

  .hero-badge {
    display: inline-block;
    background: var(--green);
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 8px 22px;
    border-radius: 100px;
    margin-bottom: 20px;
  }

  .hero-cta {
    display: inline-block;
    background: var(--green);
    color: white;
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    padding: 16px 40px;
    border-radius: 100px;
    text-decoration: none;
    transition: background 0.3s, transform 0.2s;
    box-shadow: 0 8px 32px rgba(1,127,7,0.4);
  }

  .hero-cta:hover {
    background: var(--green-light);
    transform: translateY(-2px);
  }

  .hero-scroll {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    color: rgba(255,255,255,0.7);
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    animation: bounce 2s infinite;
  }

  .hero-scroll svg { width: 20px; height: 20px; }

  @keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
  }

  /* SECTION COMMON */
  section { padding: 80px 20px; }

  .container { max-width: 1100px; margin: 0 auto; }

  .section-tag {
    display: inline-block;
    color: var(--green);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 12px;
  }

  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--charcoal);
    line-height: 1.2;
    margin-bottom: 20px;
  }

  .section-title span { color: #52c48a; }

  .section-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
    max-width: 680px;
  }

  /* ABOUT */
  .about {
    background: var(--cream);
  }

  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }

  .about-image-wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  }

  .about-image-wrap img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
  }

  .about-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--green);
    color: white;
    padding: 10px 16px;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.3;
  }

  .about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 36px;
  }

  .stat-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    border-left: 4px solid var(--green);
  }

  .stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--green);
  }

  .stat-label {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 4px;
  }

  /* SUSTAINABILITY */
  .sustainability {
    background: var(--green-dark);
    color: white;
    position: relative;
    overflow: hidden;
  }

  .sustainability::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
  }

  .sustainability::after {
    content: '';
    position: absolute;
    bottom: -80px; left: -40px;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
  }

  .sust-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }

  .sust-features {
    display: grid;
    gap: 20px;
    margin-top: 32px;
  }

  .sust-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
  }

  .sust-icon {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.12);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.3rem;
  }

  .sust-feature-text h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 4px; }
  .sust-feature-text p { font-size: 0.85rem; opacity: 0.75; line-height: 1.5; }

  .sust-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  }

  .sust-image img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
  }

  .sust-title { color: white; }
  .sust-tag { color: rgba(255,255,255,0.6); }
  .sust-text { color: rgba(255,255,255,0.8); }

  /* ROOMS */
  .rooms { background: white; }

  .rooms-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: end;
    margin-bottom: 50px;
  }

  .room-types {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .room-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
  }

  .room-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
  }

  .room-card-carousel {
    position: relative;
    height: 260px;
    overflow: hidden;
  }

  .carousel-slides {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease;
  }

  .carousel-slides img {
    min-width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.45);
    color: white;
    border: none;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    z-index: 5;
  }

  .carousel-btn:hover { background: var(--green); }
  .carousel-btn.prev { left: 10px; }
  .carousel-btn.next { right: 10px; }

  .carousel-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 5;
  }

  .carousel-dots span {
    width: 7px;
    height: 7px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.2s;
  }

  .carousel-dots span.active { background: white; }

  .room-card-info {
    padding: 22px;
    background: white;
  }

  .room-card-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: var(--charcoal);
    margin-bottom: 8px;
  }

  .room-card-info p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 14px;
  }

  .room-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .amenity-tag {
    background: var(--green-pale);
    color: var(--green-dark);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 100px;
  }

  /* CHECKIN */
  .checkin-bar {
    background: var(--green);
    color: white;
    padding: 24px 20px;
    text-align: center;
  }

  .checkin-bar p {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.04em;
  }

  .checkin-bar strong { font-weight: 700; }

  /* AMENITIES */
  .amenities { background: var(--cream); }

  .amenities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
  }

  .amenity-card {
    background: white;
    border-radius: 14px;
    padding: 28px 24px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: transform 0.2s;
  }

  .amenity-card:hover { transform: translateY(-4px); }

  .amenity-icon {
    font-size: 2.2rem;
    margin-bottom: 14px;
    display: block;
  }

  .amenity-card h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 8px;
  }

  .amenity-card p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.6;
  }

  /* VIKING VILLAGE */
  .viking {
    background: #1a1a1a;
    color: white;
    position: relative;
    overflow: hidden;
  }

  .viking-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Playfair Display', serif;
    font-size: 20vw;
    font-weight: 900;
    color: rgba(255,255,255,0.02);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
  }

  .viking-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
  }

  .viking-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .viking-images .img-main {
    grid-column: 1 / -1;
    border-radius: 12px;
    overflow: hidden;
    height: 220px;
  }

  .viking-images .img-main img,
  .viking-images .img-sm img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s;
  }

  .viking-images .img-sm {
    border-radius: 12px;
    overflow: hidden;
    height: 140px;
  }

  .viking-images .img-main:hover img,
  .viking-images .img-sm:hover img {
    transform: scale(1.04);
  }

  .viking-tag { color: rgba(255,255,255,0.5); }
  .viking-title { color: white; }
  .viking-text { color: rgba(255,255,255,0.75); }

  .viking-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 28px;
  }

  .vf-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.85);
  }

  .vf-item::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
    flex-shrink: 0;
  }

  /* PAYMENT */
  .payment {
    background: white;
    text-align: center;
    padding: 60px 20px;
  }

  .payment-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--green-pale);
    border: 2px solid var(--green);
    border-radius: 100px;
    padding: 14px 32px;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--green-dark);
    margin-top: 24px;
  }

  /* CTA */
  .cta-section {
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
    color: white;
    text-align: center;
    padding: 80px 20px;
  }

  .cta-section .section-title { color: white; }

  .cta-btn {
    display: inline-block;
    background: white;
    color: var(--green-dark);
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 18px 50px;
    border-radius: 100px;
    text-decoration: none;
    margin-top: 32px;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  }

  .cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(0,0,0,0.25);
  }

  .cta-note {
    margin-top: 16px;
    font-size: 0.85rem;
    opacity: 0.75;
  }

  /* FOOTER */
  footer {
    background: #111;
    color: rgba(255,255,255,0.5);
    padding: 30px 20px;
    text-align: center;
    font-size: 0.85rem;
  }

  footer img { width: 80px; margin-bottom: 12px; filter: brightness(10); opacity: 0.6; }


  /* VIKING PHOTOS LAYOUT */
  .viking-photos {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .viking-photo-main {
    border-radius: 14px;
    overflow: hidden;
    height: 260px;
  }

  .viking-photo-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
  }

  .viking-photo-main:hover img { transform: scale(1.04); }

  .viking-photo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .viking-photo-sm {
    border-radius: 10px;
    overflow: hidden;
    height: 130px;
  }

  .viking-photo-sm img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
  }

  .viking-photo-sm:hover img { transform: scale(1.06); }

  .viking-access-badge {
    margin-top: 28px;
    background: rgba(1, 127, 7, 0.2);
    border: 1px solid rgba(3, 163, 11, 0.4);
    border-radius: 12px;
    padding: 16px 20px;
    font-size: 0.92rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.5;
  }

  @media (max-width: 768px) {
    .viking-photo-main { height: 200px; }
    .viking-photo-sm { height: 100px; }
  }

  /* RESPONSIVE */
  @media (max-width: 768px) {
    .about-grid,
    .sust-grid,
    .rooms-intro,
    .room-types,
    .viking-grid {
      grid-template-columns: 1fr;
      gap: 30px;
    }

    .amenities-grid { grid-template-columns: 1fr 1fr; }

    .about-stats { grid-template-columns: 1fr 1fr; }

    .hero-logo { width: 160px; }

    .viking-images .img-main { height: 180px; }
    .viking-images .img-sm { height: 110px; }
  }

  @media (max-width: 480px) {
    section { padding: 50px 16px; }
    .amenities-grid { grid-template-columns: 1fr; }
    .viking-features { grid-template-columns: 1fr; }
  }

  /* ── NAVBAR ── */
  #navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    padding: 0 32px;
    height: 64px;
    background: rgba(1, 15, 2, 0.97);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 24px rgba(0,0,0,0.4);
    transition: background 0.4s ease, box-shadow 0.4s ease;
  }
  #navbar.scrolled {
    background: rgba(1, 15, 2, 0.99);
    box-shadow: 0 2px 28px rgba(0,0,0,0.5);
  }
  .nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
  }
  .nav-brand img {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 1px 4px rgba(0,0,0,0.4));
  }
  .nav-links {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 6px;
    list-style: none;
    margin: 0; padding: 0;
    flex-shrink: 1;
  }
  /* Hide inner wrapper div on desktop */
  .nav-links-inner {
    display: contents;
  }
  .nav-links a {
    color: rgba(255,255,255,0.88);
    text-decoration: none;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    padding: 6px 12px;
    border-radius: 20px;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
  }
  .nav-links a:hover {
    background: rgba(255,255,255,0.12);
    color: #fff;
  }
  .nav-links .nav-divider {
    width: 1px;
    height: 20px;
    background: rgba(255,255,255,0.2);
    margin: 0 4px;
  }
  .nav-links .nav-external {
    color: rgba(255,255,255,0.6);
    font-size: 0.78rem;
  }
  .nav-links .nav-external:hover {
    color: #fff;
    background: rgba(255,255,255,0.08);
  }
  .nav-reserve {
    background: #017f07 !important;
    color: #fff !important;
    font-weight: 600 !important;
    padding: 7px 16px !important;
    border-radius: 20px !important;
    margin-left: 8px;
    transition: background 0.2s, transform 0.15s !important;
  }
  .nav-reserve:hover {
    background: #019a09 !important;
    transform: translateY(-1px);
  }

  /* Hamburger mobile */
  .nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    background: none;
    border: none;
  }
  .nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s;
  }
  .nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-hamburger.open span:nth-child(2) { opacity: 0; }
  .nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 820px) {
  #navbar {
    padding: 0 18px;
    flex-wrap: wrap;
    height: auto;
    min-height: 60px;
    align-items: flex-start;
  }
  .nav-brand { padding: 11px 0; }
  .nav-hamburger { display: flex; margin: 11px 0; }

.nav-links {
  display: block !important;
  max-height: 0;
  width: 100%;
  overflow: hidden;
  transition: max-height 0.35s ease, border-top 0.35s ease;
  background: rgb(1, 12, 1);
  border-top: 0px solid transparent;
  flex-shrink: unset;
  gap: 0;
}
.nav-links.open {
  max-height: 500px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.nav-links-inner {
  display: flex !important;
  flex-direction: column;
  padding: 6px 0 14px;
}
.nav-links a {
  border-radius: 0 !important;
  padding: 26px 22px !important;
  font-size: 0.92rem !important;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  white-space: normal;
}
.nav-links li:last-child a { border-bottom: none; }
.nav-links .nav-divider { display: none; }
.nav-reserve {
  margin: 10px 22px 0 !important;
  border-radius: 8px !important;
  padding: 12px 22px !important;
  text-align: center;
  display: block;
  }
}
/* ── PARQUE AQUÁTICO section (reuses viking styles, override bg color via inline) ── */

/* ── OUTRAS COMODIDADES ── */
.outras-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.outra-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.2s, box-shadow 0.2s;
}
.outra-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,0.13); }
.outra-img { width: 100%; aspect-ratio: 16/10; overflow: hidden; }
.outra-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.outra-card:hover .outra-img img { transform: scale(1.05); }
.outra-info { padding: 20px 22px 24px; }
.outra-info h4 { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--dark); margin-bottom: 8px; }
.outra-info p { font-size: 0.9rem; color: var(--text-light); line-height: 1.6; }
@media (max-width: 820px) {
  .outras-grid { grid-template-columns: 1fr; }
}

/* ── DEPOIMENTOS ── */
.depoimentos { background: var(--bg); padding: 80px 0; }
.trip-award { margin: 20px 0 0; display: flex; justify-content: center; }
.trip-logo { max-height: 150px; object-fit: contain; }
.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}
.depoimento-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px 26px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.dep-stars { color: #f5a623; font-size: 1.1rem; letter-spacing: 2px; }
.depoimento-card p { font-size: 0.95rem; color: var(--text); line-height: 1.7; flex: 1; font-style: italic; }
.dep-autor { display: flex; align-items: center; gap: 12px; }
.dep-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--green); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1.1rem; flex-shrink: 0;
}
.dep-autor strong { display: block; font-size: 0.93rem; color: var(--dark); }
.dep-autor span { font-size: 0.82rem; color: var(--text-light); }
@media (max-width: 820px) {
  .depoimentos-grid { grid-template-columns: 1fr; }
}

/* ── FAQ ── */
.faq { background: #f4f6f2; padding: 80px 0; }
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 2px 10px rgba(0,0,0,0.06); }
.faq-question {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px; gap: 16px; text-align: left;
}
.faq-question span { font-size: 1rem; font-weight: 600; color: var(--dark); line-height: 1.4; }
.faq-question svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--green); transition: transform 0.3s; }
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease; padding: 0 24px; }
.faq-item.open .faq-answer { max-height: 300px; padding: 0 24px 20px; }
.faq-answer p { font-size: 0.93rem; color: var(--text); line-height: 1.7; }
.faq-answer a { color: var(--green); }

/* ── FOOTER empreendimento ── */
.footer-empreendimento { margin: 20px 0 22px; }
.footer-magic-logo { width: 320px; object-fit: contain; opacity: 0.9; }

/* ── HERO DESKTOP FIX (≥1024px) ── */
@media (min-width: 1024px) {
  .hero {
    align-items: center;
  }

  .hero-content {
    padding-bottom: 80px;
  }

  .hero-scroll {
    bottom: 28px;
  }
}

.hero-content {
  padding-bottom: 80px;
}