.tab-btn {
  @apply py-2 px-4 text-gray-600 text-sm font-medium border-b-2 border-transparent cursor-pointer transition flex items-center;
}
.tab-btn:hover {
  @apply text-orange-500;
}
.active-tab {
  @apply text-orange-500 border-orange-500;
}
.no-scrollbar::-webkit-scrollbar {
  display: none;
}
.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Fundo com padrão de ícones */
.bg-pattern {
  background-image: url("https://i.ibb.co/vjR1rsR/travel-pattern.png");
  background-size: contain;
  background-repeat: repeat;
  background-position: center;
  opacity: 0.07;
}

.no-scrollbar::-webkit-scrollbar {
  display: none;
}
.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.package-card {
  min-width: 260px;
  border: 2px solid #f0e4da;
  border-radius: 1rem;
  background-color: #fff;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.package-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.package-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
}

/***********************************************
 * Estilos para a seção de INDEX.HTML
 ***********************************************/

.dot {
  width: 10px;
  height: 10px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
}

.dot.active {
  width: 26px;
  background: #ffffff;
}

#slidesContainer {
  cursor: grab;
  will-change: transform;
}

#slidesContainer.dragging {
  cursor: grabbing;
  touch-action: none;
}

#heroSlider {
  touch-action: pan-y;
}

.dot:focus-visible {
  outline: 2px solid white;
  outline-offset: 4px;
}

.hero-clean {
  padding: 90px 20px;
  background: #ffffff;
}

.hero-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* TEXTO */
.hero-left h1 {
  font-size: 44px;
  color: #0b1c39;
  margin-bottom: 20px;
}

.hero-left p {
  color: #6b7280;
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.6;
}

/* SOCIAL PROOF */
.hero-proof {
  display: flex;
  align-items: center;
  gap: 16px;
}

.avatars {
  display: flex;
}

.avatars img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  margin-left: -10px;
}

.avatars img:first-child {
  margin-left: 0;
}

.proof-text strong {
  font-size: 16px;
  color: #0b1c39;
}

.proof-text span {
  display: block;
  font-size: 13px;
  color: #8b95a7;
}

/* IMAGEM */
.hero-right {
  position: relative;
}

.hero-photo {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 26px;
  transition: transform 0.6s ease;
}

/* CARD AVALIAÇÃO */
.rating-card {
  position: absolute;
  bottom: -28px;
  left: 40px;
  display: flex;
  gap: 12px;
  align-items: center;
  background: #ffffff;
  padding: 16px 22px;
  border-radius: 18px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  animation: float 4s ease-in-out infinite;
}

.rating-card .star {
  width: 40px;
  height: 40px;
  background: #fff3e0;
  color: #ff9800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.rating-card span {
  font-size: 13px;
  color: #6b7280;
}
.hero-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.15;
  color: #0b1c39;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero-title .title-accent {
  position: relative;
  display: inline-block;
  color: #ff7a00;
}
.hero-title .title-accent:hover::after {
  background: rgba(255, 122, 0, 0.4);
}

/* Sublinhado animado elegante */
.hero-title .title-accent::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 6px;
  background: rgba(255, 122, 0, 0.25);
  border-radius: 6px;
  transform: scaleX(0);
  transform-origin: left;
  animation: underlineReveal 1s ease forwards;
}

/* Entrada suave do título */
.hero-title {
  opacity: 0;
  transform: translateY(18px);
  animation: titleFadeUp 1s ease forwards;
}

@keyframes underlineReveal {
  to {
    transform: scaleX(1);
  }
}

@keyframes titleFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .hero-title {
    font-size: 36px;
  }
}

/* FLUTUAÇÃO */
@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

/* RESPONSIVO */
@media (max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-proof {
    justify-content: center;
  }

  .rating-card {
    left: 50%;
    transform: translateX(-50%);
  }
}

#packages-carousel::-webkit-scrollbar {
  display: none;
}
#packages-carousel {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* BASE */
.featured-categories {
  padding: 70px 0;
  background: #fff;
}

.featured-categories h2 {
  font-size: 26px;
  font-weight: 600;
  color: #0d1440;
  margin-bottom: 30px;
}

/* GRID DESKTOP */
.editorial-grid {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  grid-template-rows: repeat(2, 220px);
  gap: 20px;
}

/* CARDS */
.card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0));
}

.card span {
  position: absolute;
  bottom: 16px;
  left: 18px;
  right: 18px;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  z-index: 2;
}

/* POSIÇÕES DESKTOP */
.honeymoon {
  grid-column: 1;
  grid-row: 1;
}

.summer {
  grid-column: 1;
  grid-row: 2;
}

.disney {
  grid-column: 2;
  grid-row: 1 / span 2;
}

.port {
  grid-column: 3;
  grid-row: 1;
}

.city {
  grid-column: 3;
  grid-row: 2;
}

.escape {
  display: none;
}

/* HOVER */
.card:hover img {
  transform: scale(1.08);
}

/* Hide scrollbar */
#categories-carousel::-webkit-scrollbar {
  display: none;
}
#categories-carousel {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* ========================= */
/* TABLET (≤ 992px) */
/* ========================= */
@media (max-width: 992px) {
  .editorial-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .disney {
    grid-column: 1 / -1;
    grid-row: auto;
    height: 300px;
  }

  .escape {
    display: block;
  }
}

/* ========================= */
/* MOBILE (≤ 600px) */
/* ========================= */
@media (max-width: 600px) {
  .editorial-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .card {
    height: 220px;
  }

  .disney {
    height: 260px;
  }

  .card span {
    font-size: 14px;
  }
}

/* ========================= */
/* MOBILE PREMIUM (≤ 600px) */
/* ========================= */
@media (max-width: 600px) {
  .editorial-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .card {
    height: 150px;
    border-radius: 14px;
  }

  /* HERO */
  .summer {
    order: 1;
    grid-column: 1 / -1;
    height: 220px;
  }

  /* DESTAQUE */
  .disney {
    order: 2;
    grid-column: 1 / -1;
    height: 190px;
  }

  /* GRID 2x2 */
  .port {
    order: 3;
    height: 150px;
  }

  .city {
    order: 4;
    height: 150px;
  }

  .honeymoon {
    order: 5;
    height: 150px;
  }

  .escape {
    order: 6;
    display: block;
    height: 150px;
  }

  /* TEXTO */
  .card span {
    font-size: 14px;
    line-height: 1.3;
  }

  /* OVERLAY MAIS SUAVE */
  .card::after {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0));
  }
}
@media (max-width: 600px) {
  .card span {
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(6px);
    padding: 6px 10px;
    border-radius: 8px;
    width: fit-content;
  }
}

/********************************************************************************************************************************************************
*
*FIM DE ESTILOS PARA A SEÇÃO DE INDEX.HTML
*
********************************************************************************************************************************************************/

/* ========================= */
/* INICIO SESSÃO VOOS.HTML */
/* ========================= */

/* Dot Indicators */
.dot {
  width: 10px;
  height: 10px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
}

.dot.active {
  width: 26px;
  background: #ffffff;
}

#slidesContainer {
  cursor: grab;
  will-change: transform;
}

#slidesContainer.dragging {
  cursor: grabbing;
  touch-action: none;
}

#heroSlider {
  touch-action: pan-y;
}

.dot:focus-visible {
  outline: 2px solid white;
  outline-offset: 4px;
}

.destinos-section {
  background: #fff;
  padding: 80px 0;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

/* GRID */
.destinos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 40px;
}

/* CARD */
.destino-card h3 {
  margin-top: 16px;
  font-size: 18px;
  font-weight: 500;
  color: #1f2a44;
  transition: color 0.3s ease;
}

.destino-card:hover h3 {
  color: #ff7a00;
}

/* IMAGE WRAPPER */
.image-wrapper {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4 / 3; /* Mantém proporção perfeita */
}

/* IMAGE */
.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.destino-card:hover img {
  transform: scale(1.06);
}

/* BADGE */
.badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #ff7a00;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 999px;
}

/* ------------------ */
/* RESPONSIVIDADE REAL */
/* ------------------ */

/* ≤ 1200px */
@media (max-width: 1200px) {
  .destinos-grid {
    gap: 40px 30px;
  }
}

/* ≤ 1024px (Tablet grande) */
@media (max-width: 1024px) {
  .destinos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ≤ 768px (Tablet) */
@media (max-width: 768px) {
  .destinos-section {
    padding: 60px 0;
  }

  .destinos-grid {
    gap: 30px;
  }

  .destino-card h3 {
    font-size: 16px;
  }

  .badge {
    font-size: 12px;
    padding: 6px 12px;
  }
}

/* ≤ 480px (Mobile) */
@media (max-width: 480px) {
  .destinos-grid {
    grid-template-columns: 1fr;
  }

  .image-wrapper {
    aspect-ratio: 16 / 11;
  }

  .destino-card h3 {
    font-size: 15px;
  }
}

/********************************************************************************************************************************************************
*
*FIM DE ESTILOS PARA A PAGINA DE VOOS.HTML
*
********************************************************************************************************************************************************/

/********************************************************************************************************************************************************
*
*INICIO DE ESTILOS PARA A PAGINA DE PACOTES.HTML
*
********************************************************************************************************************************************************/

/* Estado fechado */
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    opacity 0.25s ease;
  opacity: 0;
}

/* Estado aberto */
.accordion-item.active .accordion-content {
  max-height: 500px;
  opacity: 1;
}

/* Hover elegante */
.accordion-btn:hover {
  color: #f97316;
}

/* Rotação da seta */
.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
}

/* Mantém sticky funcionando */
#filterPanel {
  z-index: 10;
}

/* Calendário acima de tudo */
#filterPanel .flatpickr-calendar {
  z-index: 9 !important;
}

/* Garante que nada corte o calendário */
#filterPanel {
  overflow: visible !important;
}
/* Remove qualquer azul de foco */
.flatpickr-calendar *:focus {
  outline: none !important;
  box-shadow: none !important;
}

/* Remove azul padrão de seleção */
.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange {
  background: #f97316 !important;
  border-color: #f97316 !important;
  color: #fff !important;
}

/* Remove azul do range interno */
.flatpickr-day.inRange {
  background: #fed7aa !important;
  border-color: #fed7aa !important;
  color: #ea580c !important;
}

/* Remove azul ao clicar */
.flatpickr-day:active {
  background: #f97316 !important;
  border-color: #f97316 !important;
  color: #fff !important;
}

/* Remove azul de hoje (padrão flatpickr) */
.flatpickr-day.today {
  border-color: #f97316 !important;
}

/* Remove highlight azul estranho em alguns browsers */
.flatpickr-day:hover,
.flatpickr-day:focus {
  box-shadow: none !important;
}

/* ===== CALENDÁRIO ===== */
.flatpickr-calendar {
  border-radius: 16px;
  border: 1px solid #f1f1f1;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
  font-family: Inter, sans-serif;
  padding: 8px;
}

/* ===== CABEÇALHO ===== */
.flatpickr-month {
  font-size: 15px;
  font-weight: 600;
}

.flatpickr-weekdays {
  margin-top: 4px;
}

.flatpickr-weekday {
  font-size: 11px;
  font-weight: 500;
  color: #9ca3af;
}

/* ===== DIAS ===== */
.flatpickr-day {
  height: 34px;
  line-height: 34px;
  border-radius: 10px;
  font-size: 13px;
  transition: all 0.15s ease;
}

/* Hover suave */
.flatpickr-day:hover {
  background: #fff4ec;
  color: #f97316;
}

/* ===== RANGE ===== */
.flatpickr-day.startRange,
.flatpickr-day.endRange {
  background: #f97316;
  border-color: #f97316;
  color: #ffffff;
}

.flatpickr-day.inRange {
  background: #fed7aa;
  border-color: #fed7aa;
  color: #ea580c;
}

/* ===== DIA ATUAL ===== */
.flatpickr-day.today {
  border: 1px solid #f97316;
}

/* Remove azul padrão */
.flatpickr-day.selected {
  background: #f97316;
  border-color: #f97316;
  color: white;
}

/* ===== SETAS ===== */
.flatpickr-prev-month,
.flatpickr-next-month {
  top: 10px;
}

.flatpickr-prev-month:hover,
.flatpickr-next-month:hover {
  color: #f97316;
}

/* Pequeno respiro lateral interno */
.flatpickr-calendar.multiMonth .dayContainer {
  padding: 15px;
}

/* ===== MOBILE: meses empilhados ===== */
/* MOBILE & TABLET */
@media (max-width: 1023px) {
  .flatpickr-calendar {
    position: fixed !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 95vw !important;
    max-width: 500px !important;
    border-radius: 20px !important;
    padding: 20px !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25) !important;
    z-index: 9999 !important;
  }

  .flatpickr-calendar.multiMonth .flatpickr-days {
    display: flex !important;
    flex-direction: column !important;
    gap: 30px !important;
  }

  .flatpickr-calendar.multiMonth .dayContainer {
    width: 100% !important;
  }

  .flatpickr-day {
    height: 52px !important;
    line-height: 52px !important;
    font-size: 16px !important;
    border-radius: 14px;
  }
}

/* ===== TRACK ===== */
.noUi-target {
  background: #e5e7eb;
  height: 5px;
  border: none;
  box-shadow: none;
  border-radius: 999px;
}

/* Range ativo */
.noUi-connect {
  background: #f97316;
  border-radius: 999px;
}

/* ===== HANDLES ===== */
.noUi-handle {
  width: 18px !important;
  height: 18px !important;
  top: -7px;
  border-radius: 50%;
  background: white;
  border: 3px solid #f97316;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  transition: all 0.2s ease;
}

.noUi-handle:hover {
  transform: scale(1.08);
}

/* Remove barras internas */
.noUi-handle:before,
.noUi-handle:after {
  display: none;
}

/* ===== TOOLTIP (agora elegante) ===== */
.noUi-tooltip {
  background: white;
  color: #f97316;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid #fde68a;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

/********************************************************************************************************************************************************
*
*FIM DE ESTILOS PARA A PAGINA DE PACOTES.HTML
*
********************************************************************************************************************************************************/

/********************************************************************************************************************************************************
*
*INICIO DE ESTILOS PARA A PAGINA DE PARCEIROS.HTML
*
********************************************************************************************************************************************************/
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.animate-fadeUp {
  animation: fadeUp 0.8s ease forwards;
}
.delay-100 {
  animation-delay: 0.1s;
}
.delay-200 {
  animation-delay: 0.2s;
}
.delay-300 {
  animation-delay: 0.3s;
}
.delay-400 {
  animation-delay: 0.4s;
}
.delay-500 {
  animation-delay: 0.5s;
}
.delay-600 {
  animation-delay: 0.6s;
}
.delay-700 {
  animation-delay: 0.7s;
}

/********************************************************************************************************************************************************
*
*FIM DE ESTILOS PARA A PAGINA DE PARCEIROS.HTML
*
********************************************************************************************************************************************************/

/********************************************************************************************************************************************************
*
*INICIO DE ESTILOS PARA A PAGINA DE CORPORATE.HTML
*
********************************************************************************************************************************************************/

/* Animação fadeUp */
@keyframes fadeUpIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUpOut {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(20px);
  }
}

.fade-up-in {
  animation: fadeUpIn 0.8s ease forwards;
}

.fade-up-out {
  animation: fadeUpOut 0.8s ease forwards;
}

/*******/

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.animate-fadeUp {
  animation: fadeUp 0.8s ease forwards;
}
.delay-100 {
  animation-delay: 0.1s;
}
.delay-200 {
  animation-delay: 0.2s;
}
.delay-300 {
  animation-delay: 0.3s;
}
.delay-400 {
  animation-delay: 0.4s;
}
.delay-500 {
  animation-delay: 0.5s;
}
.delay-600 {
  animation-delay: 0.6s;
}
.delay-700 {
  animation-delay: 0.7s;
}

/********************************************************************************************************************************************************
*
*FIM DE ESTILOS PARA A PAGINA DE CORPORATE.HTML
*
********************************************************************************************************************************************************/

/********************************************************************************************************************************************************
*
*INICIO DE ESTILOS PARA A PAGINA DE CHECKS.HTML
*
********************************************************************************************************************************************************/

/* Botões de valor */
.value-btn {
  padding: 10px 18px;
  border-radius: 8px;
  border: 1px solid #cbd5e1;
  color: #334155;
  font-weight: 500;
  transition: 0.2s;
  white-space: nowrap;
}
.value-btn:hover {
  border-color: #f97316;
  color: #f97316;
}
.value-btn.active {
  background: #f97316;
  color: white;
  border-color: #f97316;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.animate-fadeUp {
  animation: fadeUp 0.8s ease forwards;
}
.delay-100 {
  animation-delay: 0.1s;
}
.delay-200 {
  animation-delay: 0.2s;
}
.delay-300 {
  animation-delay: 0.3s;
}
.delay-400 {
  animation-delay: 0.4s;
}
.delay-500 {
  animation-delay: 0.5s;
}
.delay-600 {
  animation-delay: 0.6s;
}
.delay-700 {
  animation-delay: 0.7s;
}

/********************************************************************************************************************************************************
*
*FIM DE ESTILOS PARA A PAGINA DE CHECKS.HTML
*
********************************************************************************************************************************************************/

.circle {
  position: relative;
  width: 140px;
  height: 140px;
  border-radius: 9999px;
  background: white;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease;
}

@media (min-width: 640px) {
  .circle {
    width: 160px;
    height: 160px;
  }
}

.circle::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 9999px;
  border: 1px solid rgba(251, 146, 60, 0.6);
  transition: all 0.5s ease;
}

@media (min-width: 640px) {
  .circle::before {
    width: 210px;
    height: 210px;
  }
}

.group:hover .circle {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.group:hover .circle::before {
  border: 4px solid #f97316;
}

/***********************************************
 * Estilos para a seção de FOOTER
 *******************************************/

.site-footer {
  background: linear-gradient(180deg, #fff7f1 0%, #fff 100%);
  color: #1f2a44;
  font-size: 14px;
}

/* Container */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ========================= */
/* TOP BAR */
/* ========================= */
.footer-top {
  background: #fff;
  border-top: 1px solid #f1d7c7;
  border-bottom: 1px solid #f1d7c7;
  padding: 22px 0;
}

.footer-top-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}

.help {
  display: flex;
  align-items: center;
  gap: 14px;
}

.help i {
  width: 38px;
  height: 38px;
  background: rgba(255, 122, 0, 0.1);
  color: #ff7a00;
  border-radius: 50%;
  padding: 8px;
}

.help span {
  line-height: 1.4;
}

.help strong {
  display: block;
  font-weight: 600;
}

.help a {
  color: #ff7a00;
  font-weight: 600;
  text-decoration: none;
}

/* SOCIAL */
.social {
  display: flex;
  align-items: center;
  gap: 14px;
}

.social span {
  font-size: 13px;
  color: #6b7280;
}

.social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff7f1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.social a:hover {
  background: #ff7a00;
}

.social a:hover i {
  color: #fff;
}

.social i {
  width: 18px;
  height: 18px;
  color: #1f2a44;
}

/* ========================= */
/* MAIN FOOTER */
/* ========================= */
.footer-main {
  padding: 70px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
}

.footer-col h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-col h5 {
  font-size: 14px;
  margin-bottom: 6px;
}

.footer-col p {
  color: #4b5563;
  line-height: 1.6;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col a {
  color: #1f2a44;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: #ff7a00;
}

/* ========================= */
/* NEWSLETTER */
/* ========================= */
.newsletter p {
  color: #4b5563;
}

.newsletter form {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.newsletter input {
  flex: 1;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  font-size: 14px;
}

.newsletter button {
  background: linear-gradient(135deg, #ff7a00, #ff9a3d);
  color: #fff;
  border: none;
  padding: 12px 22px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 500;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.newsletter button:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(255, 122, 0, 0.35);
}

/* ========================= */
/* BOTTOM */
/* ========================= */
.footer-bottom {
  border-top: 1px solid #f1d7c7;
  padding: 22px 0;
  font-size: 13px;
  background: #fff;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-brand {
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* ========================= */
/* RESPONSIVO */
/* ========================= */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .footer-top-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-main {
    padding: 50px 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .newsletter form {
    flex-direction: column;
  }

  .newsletter input,
  .newsletter button {
    width: 100%;
  }

  .footer-bottom .container {
    flex-direction: column;
    align-items: flex-start;
  }
}
