@import url('https://fonts.googleapis.com/css2?family=Golos+Text:wght@800&family=Nunito:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300&display=swap');

/* ── Base da seção ── */
.viagens-section {
  position: relative;
  width: 100%;
  background: #ffffff;
  display: block;
  min-height: auto;
  padding: 0;
  overflow: visible;
  font-family: 'Nunito', sans-serif;
  color: #1a2148;
  line-height: 1.4;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.viagens-section *,
.viagens-section *::before,
.viagens-section *::after {
  box-sizing: border-box;
  font-family: 'Nunito', sans-serif;
  color: inherit;
}

.viagens-section h1,
.viagens-section h2,
.viagens-section h3,
.viagens-section h4,
.viagens-section h5,
.viagens-section h6 {
  font-family: 'Golos Text', sans-serif;
  font-weight: 800;
  color: #1a2148;
  margin: 0;
  line-height: 1;
}

/* ── Layout ── */
.vg-wrap {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 60px 48px;
}

.vg-hero {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 56px;
}

/* ── Card agência ── */
.agency-card {
  background: #fff;
  border: 1px solid #e8eaf0;
  border-radius: 24px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, .07);
}

.agency-logo {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #e8eaf0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .08);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.agency-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.agency-name {
  font-family: 'Golos Text', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: #1a2148;
  margin: 0;
  line-height: 1.1;
}

.agency-tagline {
  font-family: 'Nunito', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #6b7280;
  line-height: 1.65;
  margin: 0;
}

.agency-socials {
  display: flex;
  gap: 8px;
  align-items: center;
}

.social-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7280;
  text-decoration: none;
  transition: background .2s, color .2s, border-color .2s;
}

.social-btn:hover {
  background: rgba(254, 72, 180, .10);
  color: #FE48B4;
  border-color: rgba(254, 72, 180, .35);
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  color: #1a2148;
  font-family: 'Nunito', sans-serif;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  text-transform: none;
  letter-spacing: 0;
  transition: background .2s, border-color .2s, color .2s;
}

.contact-btn:hover {
  background: rgba(254, 72, 180, .08);
  border-color: rgba(254, 72, 180, .30);
  color: #FE48B4;
}

.contact-btn.wpp:hover {
  background: rgba(37, 211, 102, .10);
  border-color: rgba(37, 211, 102, .40);
  color: #1a8a3a;
}

/* ── Hero conteúdo ── */
.vg-hero-content {
  display: flex;
  flex-direction: column;
}

.vg-badge-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(254, 72, 180, .08);
  border: 1px solid rgba(254, 72, 180, .30);
  color: #d6236e;
  font-family: 'Nunito', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .10em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 20px;
  width: fit-content;
}

.vg-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #FE48B4;
  animation: pulse-dot 2s ease infinite;
  flex-shrink: 0;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .5; transform: scale(.8); }
}

.vg-title {
  font-family: 'Golos Text', sans-serif !important;
  font-size: clamp(34px, 3.8vw, 56px) !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  line-height: .95 !important;
  color: #1a2148 !important;
  margin-bottom: 36px !important;
}

.vg-title .accent {
  color: #FE48B4;
  font-family: 'Golos Text', sans-serif;
  font-weight: 800;
}

.vg-desc {
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.75;
  color: #6b7280;
  max-width: 100%;
  margin-bottom: 28px;
}

.vg-event-strip {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #f0f4ff;
  border: 1px solid #c7d2fe;
  border-radius: 12px;
  padding: 14px 20px;
  width: fit-content;
  max-width: 100%;
}

.vg-event-icon {
  color: #4f46e5;
  flex-shrink: 0;
}

.vg-event-text {
  font-family: 'Nunito', sans-serif;
  font-size: 13px;
  line-height: 1.55;
  color: #374151;
}

.vg-event-text strong {
  color: #1a2148;
  font-weight: 700;
}

/* ── Rótulo de seção ── */
.vg-section-label {
  font-family: 'Nunito', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #FE48B4;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.vg-section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #e5e7eb;
}

/* ── Grid hotéis ── */
.hotels-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 40px;
}

.hotel-card {
  grid-column: auto;
  background: #fff;
  border: 1px solid #e8eaf0;
  border-radius: 16px;
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color .2s, box-shadow .2s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .05);
  min-height: 210px;
}

.hotel-card:hover {
  border-color: rgba(254, 72, 180, .30);
  box-shadow: 0 6px 24px rgba(254, 72, 180, .08);
}

.hotel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.hotel-name {
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #1a2148;
  line-height: 1.3;
  margin: 0;
}

.hotel-stars {
  color: #FE48B4;
  font-size: 12px;
  white-space: nowrap;
  flex-shrink: 0;
}

.hotel-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-start;
}

.h-badge {
  display: inline-flex;
  align-items: center;
  font-family: 'Nunito', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 999px;
}

.h-badge.near {
  background: rgba(254, 72, 180, .10);
  border: 1px solid rgba(254, 72, 180, .28);
  color: #d6236e;
}

.h-badge.far {
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  color: #1a2148;
}

.h-amenity {
  font-family: 'Nunito', sans-serif;
  font-size: 11px;
  font-weight: 400;
  color: #1a2148;
}

.hotel-rates {
  border-top: 1px solid #f0f0f5;
  padding-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: auto;
}

.rate-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.rate-label {
  font-family: 'Nunito', sans-serif;
  font-size: 11px;
  font-weight: 400;
  color: #1a2148;
}

.rate-val {
  font-family: 'Golos Text', sans-serif;
  font-size: 17px;
  font-weight: 800;
  color: #FE48B4;
}

.rate-val small {
  font-family: 'Nunito', sans-serif;
  font-size: 10px;
  font-weight: 400;
  color: #1a2148;
  margin-right: 2px;
}

/* ── CTA strip ── */
.vg-cta-strip {
  background: linear-gradient(160deg, #242D5D 0%, #0d1235 100%);
  border: none;
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 40px;
  text-align: center;
}

.vg-cta-text {
  font-family: 'Nunito', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: rgba(255, 255, 255, .85);
  line-height: 1.65;
  margin-bottom: 8px;
}

.vg-cta-text strong {
  color: #fff;
  font-weight: 700;
}

.vg-cta-sub {
  font-family: 'Nunito', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #FE48B4;
  margin-bottom: 22px;
}

.vg-cta-note {
  font-family: 'Nunito', sans-serif;
  font-size: 11px;
  color: rgba(255, 255, 255, .40);
  margin-top: 14px;
}

.vg-cta-strip .btn-ghost {
  color: #fff !important;
  border-color: rgba(255, 255, 255, .35) !important;
  background: rgba(255, 255, 255, .12) !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  font-weight: 500 !important;
}

.vg-cta-strip .btn-ghost:hover {
  background: #fff !important;
  border-color: #fff !important;
  color: #1a2148 !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .18) !important;
}

.vg-cta-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Botões ── */
.btn {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  font-family: 'Nunito', sans-serif !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  letter-spacing: .06em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  padding: 16px 32px !important;
  border-radius: 999px !important;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease !important;
  cursor: pointer !important;
  border: 1px solid transparent !important;
  outline: none !important;
}

.btn-primary {
  background: #FE48B4 !important;
  color: #fff !important;
  border-color: #FE48B4 !important;
  box-shadow: 0 12px 40px -8px rgba(254, 72, 180, .45) !important;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.03) !important;
  box-shadow: 0 0 0 6px rgba(254, 72, 180, .18), 0 20px 60px -10px rgba(254, 72, 180, .45) !important;
  color: #fff !important;
  background: #FE48B4 !important;
}

.btn-ghost {
  background: transparent;
  color: #1a2148;
  border-color: #d1d5db;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 500;
}

.btn-ghost:hover {
  background: #f3f4f6;
  border-color: #9ca3af;
  color: #1a2148;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .vg-wrap { padding: 40px 20px; }
  .vg-hero { grid-template-columns: 1fr; gap: 32px; }
  .hotels-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .hotels-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .vg-cta-strip { padding: 22px 16px; }
  .vg-cta-btns { flex-direction: column; }
  .vg-cta-btns .btn { justify-content: center; }
}
