:root {
  --bg: #fff8f3;
  --bg-soft: #fffdfb;
  --text: #241f1c;
  --muted: #725f57;
  --primary: #e86f4c;
  --primary-dark: #b7472c;
  --secondary: #0e2731;
  --accent: #f4b860;
  --card: #ffffff;
  --border: rgba(43, 31, 27, 0.12);
  --shadow: 0 24px 60px rgba(60, 31, 20, 0.13);
  --radius-lg: 30px;
  --radius-md: 22px;
  --radius-sm: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(244, 184, 96, 0.34), transparent 34rem),
    radial-gradient(circle at top right, rgba(232, 111, 76, 0.18), transparent 38rem),
    var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

.section {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 86px 0;
}

.site-header {
  min-height: 92vh;
}

.navbar {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 20;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-logo,
.footer-logo {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 10px 26px rgba(14, 39, 49, 0.14);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-weight: 650;
}

.nav-links a {
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--primary-dark);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: 50%;
  padding: 10px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  border-radius: 999px;
  background: var(--text);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 46px;
  align-items: center;
  padding-top: 42px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--primary-dark);
  text-transform: uppercase;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 680px;
  margin-bottom: 22px;
  font-size: clamp(2.1rem, 4.4vw, 3.9rem);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

h2 {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  line-height: 1;
  letter-spacing: -0.05em;
  margin-bottom: 18px;
}

h3 {
  font-size: 1.25rem;
  line-height: 1.15;
  margin-bottom: 12px;
}

.hero-text,
.section-heading p,
.promo-panel p,
.youtube-content p,
.newsletter-box p {
  color: var(--muted);
  font-size: 1rem;
}

.hero-text {
  max-width: 590px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 34px 0 28px;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  box-shadow: 0 14px 32px rgba(183, 71, 44, 0.25);
}

.btn-secondary {
  color: var(--secondary);
  background: rgba(255, 255, 255, 0.72);
  border-color: var(--border);
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-list span {
  padding: 8px 13px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  color: var(--muted);
  font-weight: 700;
  font-size: 0.9rem;
}

.hero-card {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  backdrop-filter: blur(18px);
}

.hero-card-image {
  min-height: 360px;
  position: relative;
  overflow: hidden;
}

.official-brand-panel {
  display: grid;
  place-items: center;
  padding: 28px;
  background:
    radial-gradient(circle at 72% 22%, rgba(232, 111, 76, 0.18), transparent 15rem),
    #0e2731;
}

.official-logo-large {
  width: min(100%, 390px);
  height: auto;
  display: block;
  filter: drop-shadow(0 18px 35px rgba(0, 0, 0, 0.22));
}

.hero-card-body {
  padding: 30px;
}

.hero-card-body p,
.content-card p,
.affiliate-card p,
.social-card p {
  color: var(--muted);
}

.text-link {
  color: var(--primary-dark);
  font-weight: 900;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.about-grid,
.youtube-content,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: 36px;
  align-items: start;
}

.about-grid p {
  color: var(--muted);
  font-size: 1.08rem;
}

.stats-card,
.content-card,
.affiliate-card,
.social-card,
.contact-form,
.newsletter-box,
.promo-panel,
.video-placeholder {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.73);
  box-shadow: 0 16px 42px rgba(60, 31, 20, 0.08);
}

.stats-card {
  padding: 26px;
  display: grid;
  gap: 18px;
}

.stats-card div {
  display: grid;
  gap: 4px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}

.stats-card div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.stats-card strong {
  color: var(--secondary);
  font-size: 1.45rem;
  line-height: 1;
}

.stats-card span {
  color: var(--muted);
}

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

.content-card,
.affiliate-card {
  padding: 26px;
}

.card-icon {
  display: inline-flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border-radius: 18px;
  background: rgba(244, 184, 96, 0.22);
  font-size: 1.6rem;
}

.promo-panel {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 36px;
  align-items: center;
  padding: 38px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(25, 77, 74, 0.98), rgba(25, 77, 74, 0.86)),
    radial-gradient(circle at top right, rgba(244, 184, 96, 0.38), transparent 26rem);
}

.promo-panel .eyebrow,
.promo-panel p {
  color: rgba(255, 255, 255, 0.78);
}

.promo-panel h2 {
  color: #fff;
}

.promo-list {
  display: grid;
  gap: 14px;
}

.promo-list div {
  padding: 18px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.1);
}

.promo-list strong,
.promo-list span {
  display: block;
}

.promo-list span {
  color: rgba(255, 255, 255, 0.74);
}

.affiliate-card.featured {
  background: linear-gradient(180deg, #fff, #fff2e5);
  border-color: rgba(232, 111, 76, 0.26);
}

.affiliate-card small {
  display: block;
  margin-top: 14px;
  color: var(--muted);
}

.youtube-content {
  align-items: center;
}

.video-placeholder {
  min-height: 310px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 26px;
  background:
    linear-gradient(135deg, rgba(232, 111, 76, 0.17), rgba(244, 184, 96, 0.22)),
    #fff;
}

.video-placeholder span {
  width: 84px;
  height: 84px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 12px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 2.4rem;
  box-shadow: 0 18px 35px rgba(183, 71, 44, 0.22);
}

.video-placeholder p {
  max-width: 270px;
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.newsletter-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 26px;
  padding: 34px;
  background: linear-gradient(135deg, rgba(244, 184, 96, 0.23), rgba(255, 255, 255, 0.88));
}

.newsletter-box h2 {
  margin-bottom: 8px;
}

.newsletter-box p {
  margin-bottom: 0;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 26px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--text);
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 13px 14px;
  background: #fff;
  color: var(--text);
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus {
  outline: 3px solid rgba(232, 111, 76, 0.18);
  border-color: rgba(232, 111, 76, 0.55);
}

.social-card {
  padding: 26px;
  display: grid;
  gap: 12px;
}

.social-card a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: #fff;
  font-weight: 900;
}

.social-card a::after {
  content: "→";
  color: var(--primary-dark);
}

.site-footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 40px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--border);
  color: var(--muted);
}

.site-footer div {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-weight: 900;
}

.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 40;
  padding: 13px 17px;
  border-radius: 999px;
  color: #fff;
  background: var(--secondary);
  font-weight: 900;
  box-shadow: 0 15px 38px rgba(25, 77, 74, 0.28);
}

@media (max-width: 880px) {
  .menu-toggle {
    display: inline-block;
  }

  .nav-links {
    position: absolute;
    top: 74px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    display: block;
    padding: 12px 14px;
  }

  .hero,
  .about-grid,
  .promo-panel,
  .youtube-content,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 40px;
  }

  .cards-grid,
  .affiliate-grid {
    grid-template-columns: 1fr;
  }

  .newsletter-box,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .section {
    width: min(100% - 28px, 1120px);
    padding: 62px 0;
  }

  .navbar {
    width: min(100% - 24px, 1180px);
  }

  h1 {
    font-size: clamp(2.45rem, 17vw, 4rem);
  }

  .hero-card-image {
    min-height: 280px;
  }

  .official-logo-large {
    width: min(100%, 310px);
  }

  .promo-panel,
  .newsletter-box {
    padding: 24px;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
  }
}


/* Roteiros personalizados */
.custom-itineraries {
  padding-top: 36px;
}

.custom-hero {
  display: grid;
  grid-template-columns: 1fr 0.84fr;
  gap: 22px;
  align-items: stretch;
  margin-bottom: 22px;
}

.custom-copy,
.custom-highlight,
.planner-card,
.travel-styles,
.briefing-panel {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 16px 42px rgba(60, 31, 20, 0.08);
}

.custom-copy {
  padding: 38px;
  background:
    radial-gradient(circle at 12% 18%, rgba(244, 184, 96, 0.28), transparent 16rem),
    rgba(255, 255, 255, 0.76);
}

.custom-copy h2 {
  max-width: 760px;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.custom-copy p {
  max-width: 690px;
  color: var(--muted);
  font-size: 1.03rem;
}

.custom-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.custom-highlight {
  padding: 30px;
  color: #fff;
  background:
    radial-gradient(circle at 86% 12%, rgba(232, 111, 76, 0.34), transparent 13rem),
    linear-gradient(135deg, #0e2731, #123440);
}

.custom-highlight h3 {
  color: #fff;
  font-size: 1.65rem;
  letter-spacing: -0.03em;
}

.custom-highlight p,
.custom-highlight li {
  color: rgba(255, 255, 255, 0.76);
}

.custom-highlight ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding-left: 19px;
}

.mini-label {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: #fff6d8;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.custom-layout-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 22px 0;
}

.planner-card {
  padding: 26px;
}

.step-number {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--primary-dark);
  font-size: 0.85rem;
  font-weight: 950;
  letter-spacing: 0.16em;
}

.planner-card p {
  color: var(--muted);
}

.travel-styles {
  padding: 32px;
  margin-top: 22px;
}

.section-heading.compact {
  margin-bottom: 22px;
}

.section-heading.compact h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.65rem);
}

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

.style-grid article {
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.72);
}

.style-grid span {
  display: inline-flex;
  margin-bottom: 16px;
  font-size: 1.55rem;
}

.style-grid p {
  color: var(--muted);
  margin-bottom: 0;
}

.briefing-panel {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 26px;
  align-items: start;
  margin-top: 22px;
  padding: 34px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(255, 248, 243, 0.92)),
    radial-gradient(circle at bottom right, rgba(232, 111, 76, 0.16), transparent 20rem);
}

.briefing-panel p {
  color: var(--muted);
}

.briefing-form {
  display: grid;
  gap: 14px;
}

select {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 13px 14px;
  background: #fff;
  color: var(--text);
  font: inherit;
}

select:focus {
  outline: 3px solid rgba(232, 111, 76, 0.18);
  border-color: rgba(232, 111, 76, 0.55);
}

@media (max-width: 880px) {
  .custom-hero,
  .custom-layout-grid,
  .briefing-panel {
    grid-template-columns: 1fr;
  }

  .style-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .custom-copy,
  .custom-highlight,
  .travel-styles,
  .briefing-panel {
    padding: 24px;
  }

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


.jotform-card {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at top right, rgba(244, 184, 96, 0.22), transparent 14rem),
    #fff;
}

.jotform-preview h3 {
  font-size: 1.5rem;
}

.jotform-preview p {
  color: var(--muted);
}

.jotform-icon {
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 18px;
  border-radius: 19px;
  background: rgba(232, 111, 76, 0.12);
  font-size: 1.7rem;
}

.briefing-checklist {
  display: grid;
  gap: 10px;
  margin: 22px 0;
}

.briefing-checklist span {
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--muted);
  font-weight: 750;
}

.briefing-checklist span::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  color: #fff;
  background: var(--secondary);
  font-size: 0.78rem;
  font-weight: 950;
}


.briefing-title-link {
  display: inline-flex;
  width: fit-content;
  transition: color 0.2s ease, transform 0.2s ease;
}

.briefing-title-link:hover {
  color: var(--secondary);
  transform: translateX(3px);
}

.briefing-inline-button {
  margin-top: 18px;
}


.video-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: #0e2731;
  box-shadow: 0 16px 42px rgba(60, 31, 20, 0.08);
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}


.video-fallback-link {
  display: inline-flex;
  margin-top: 14px;
  color: var(--primary-dark);
  font-weight: 900;
  transition: color 0.2s ease, transform 0.2s ease;
}

.video-fallback-link:hover {
  color: var(--secondary);
  transform: translateX(3px);
}


/* Blog */
.blog-teaser {
  padding-top: 18px;
  padding-bottom: 34px;
}

.blog-teaser-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 34px 36px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at 88% 20%, rgba(244, 184, 96, 0.22), transparent 15rem),
    rgba(255, 255, 255, 0.76);
  box-shadow: 0 16px 42px rgba(60, 31, 20, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.blog-teaser-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 48px rgba(60, 31, 20, 0.12);
}

.blog-teaser-card h2 {
  max-width: 760px;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
}

.blog-teaser-card p:last-child {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--muted);
}

.blog-teaser-action {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 168px;
  color: var(--primary-dark);
  font-weight: 900;
}

.blog-teaser-action strong {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: #fff;
  background: var(--secondary);
  font-size: 1.2rem;
}

.blog-page-header {
  padding-top: 48px;
  padding-bottom: 34px;
}

.blog-page-header .intro {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.05rem;
}

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

.blog-post-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 42px rgba(60, 31, 20, 0.08);
}

.blog-post-cover {
  min-height: 180px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 70% 20%, rgba(244, 184, 96, 0.45), transparent 9rem),
    linear-gradient(135deg, #0e2731, #17404d);
  font-size: 2.2rem;
}

.blog-post-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 24px;
}

.blog-post-body .category {
  margin-bottom: 10px;
  color: var(--primary-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.blog-post-body p {
  color: var(--muted);
}

.blog-post-link {
  margin-top: auto;
  color: var(--primary-dark);
  font-weight: 900;
}

.blog-back-link {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--secondary);
  font-weight: 900;
}

@media (max-width: 880px) {
  .blog-posts-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .blog-teaser-card {
    grid-template-columns: 1fr;
    padding: 26px;
  }

  .blog-teaser-action {
    justify-content: space-between;
  }
}
