/* RESET */

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

body {
  font-family: Arial, Helvetica, sans-serif;
  color: #333;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
  height: 100%;
}

img,
svg,
iframe {
  max-width: 100%;
}

.site-footer {
  margin-top: auto;
}

/* TEXTO EM FUNDOS CLAROS */

.evento,
.galeria,
.futuro,
.instagram,
.chegar,
header {
  color: #1f2d3d;
}

.evento h1,
.evento h2,
.evento h3,
.galeria h1,
.galeria h2,
.galeria h3,
.futuro h1,
.futuro h2,
.futuro h3,
.instagram h1,
.instagram h2,
.instagram h3,
.chegar h1,
.chegar h2,
.chegar h3,
header h1,
header h2,
header h3,
.evento p,
.galeria p,
.futuro p,
.instagram p,
.chegar p,
.evento li,
.galeria li,
.futuro li,
.instagram li,
.chegar li,
.evento td,
.evento th,
.galeria td,
.galeria th,
.futuro td,
.futuro th,
.instagram td,
.instagram th,
.chegar td,
.chegar th {
  color: #1f2d3d;
}

.evento a:not(.btn),
.galeria a:not(.btn),
.futuro a:not(.btn),
.instagram a:not(.btn),
.chegar a:not(.btn),
header a:not(.btn) {
  color: #1f2d3d;
}

/* CONTAINER */

.container {
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
}

/* HEADER */

.site-header {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(88, 167, 205, 0.88);
  backdrop-filter: blur(6px);
}

.home .site-header {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
}

.header-topbar {
  background: #3f9fcb;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.site-header .header-topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 24px;
  max-width: 100%;
}

.header-topbar-social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-social-link {
  width: 18px;
  height: 18px;
  color: #fff !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0.85;
}

.header-social-link svg {
  width: 12px;
  height: 12px;
}

.header-social-link:hover {
  opacity: 1;
}

.header-topbar-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-topbar-links a {
  color: #eef8ff !important;
  font-size: 11px;
  text-decoration: none;
  font-weight: 500;
  opacity: 0.9;
}

.header-topbar-links a:hover {
  opacity: 1;
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  padding: 14px 24px;
  max-width: 100%;
  gap: 16px;
  background: rgba(255, 255, 255, 0.12) !important;
  backdrop-filter: blur(2px);
}

.site-branding {
  text-decoration: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-button {
  background: #f05a28;
  color: white;
  padding: 10px 24px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  display: inline-block;
}

.hamburger-toggle {
  display: flex;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  gap: 6px;
  padding: 8px;
}

.hamburger-toggle span,
.mobile-menu-toggle span {
  width: 24px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s;
}

.hamburger-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger-toggle.active span:nth-child(2) {
  opacity: 0;
}

.hamburger-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.main-navigation {
  display: none !important;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: clamp(280px, 22vw, 360px);
  height: 100vh;
  background: linear-gradient(135deg, #1f4f86 0%, #2a7fa0 100%);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 1100;
  padding-top: 60px;
  overflow-y: auto;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 24px 12px;
}

.mobile-menu-toggle {
  display: flex;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  gap: 6px;
  padding: 8px 0;
  flex-shrink: 0;
}

.mobile-menu-heading {
  padding: 0;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.8;
}

.mobile-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 20px 0;
}

.mobile-nav li {
  list-style: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav a {
  display: block;
  padding: 16px 24px;
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  word-break: break-word;
  transition: background 0.2s;
}

.mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.1);
}

.mobile-nav ul {
  list-style: none;
  padding-left: 24px;
  background: rgba(0, 0, 0, 0.1);
}

.mobile-nav ul li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-nav ul a {
  font-size: 14px;
  padding: 12px 24px;
}

.site-header a,
.site-header h1,
.site-header h2,
.site-header h3,
.site-header p {
  color: #fff !important;
}

.main-navigation .menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 24px;
}

.main-navigation .menu li {
  list-style: none;
}

.main-navigation .menu a {
  text-decoration: none;
  font-weight: 500;
  font-size: 13px;
  color: #fff;
}

/* PÁGINAS INTERNAS */

.page-main {
  background: #fff;
}

.page-header-band {
  background: #439bc7;
  color: #fff;
}

.page-header-band .page-header-container {
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding-top: 24px;
  padding-bottom: 24px;
}

.page-header-band .page-title {
  color: #fff;
  margin-bottom: 10px;
}

.page-header-band .post-meta {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
}

@media (max-width: 900px) {
  .page-header-band .page-header-container {
    min-height: 130px;
    padding-top: 18px;
    padding-bottom: 18px;
  }
}

.page-content {
  max-width: 900px;
  margin: 0 auto;
}

.page-title {
  font-size: 38px;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #1f2d3d;
}

.page-entry p,
.page-entry ul,
.page-entry ol {
  margin-bottom: 16px;
}

.post-attachment {
  margin-top: 50px;
  padding-top: 40px;
  border-top: 2px solid #e0e8f0;
}

.post-attachment-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.post-attachment h3 {
  font-size: 18px;
  color: #1f2d3d;
  font-weight: 700;
  margin: 0;
}

.attachment-download {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: #439bc7;
  color: white !important;
  text-decoration: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.2s;
}

.attachment-download:hover {
  background: #2f7fa3;
}

.blog-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
  background: #f4f4f4;
  padding: 40px 20px;
  border-radius: 12px;
}

.blog-post-card {
  background: #fff;
  border: 1px solid #e8eef5;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: box-shadow 0.3s ease;
}

.blog-post-card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.blog-post-thumb {
  display: block;
  flex-shrink: 0;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  order: 1;
}

.blog-post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-post-content {
  padding: 24px;
  order: 2;
  flex: 1;
}

.blog-post-title {
  font-size: 20px;
  line-height: 1.3;
  margin-bottom: 8px;
}

.blog-post-title a {
  color: #1f2d3d;
  text-decoration: none;
}

.blog-post-title a:hover {
  color: #2f7fa3;
}

.blog-post-meta {
  font-size: 12px;
  color: #5e7387;
  margin-bottom: 10px;
}

.blog-post-excerpt {
  color: #334e63;
  font-size: 14px;
}

.blog-post-excerpt p:last-child {
  margin-bottom: 0;
}

.blog-post-link {
  display: inline-block;
  margin-top: 16px;
  padding: 10px 20px;
  text-decoration: none;
  font-weight: 700;
  color: white;
  background: #f05a28;
  border-radius: 6px;
  transition: background 0.2s ease;
}

.blog-post-link:hover {
  background: #d94817;
}

.blog-post-empty .blog-post-title {
  font-size: 24px;
}

.blog-posts-grid .navigation.pagination {
  margin-top: 6px;
}

.blog-posts-grid .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.blog-posts-grid .nav-links a,
.blog-posts-grid .nav-links span {
  display: inline-flex;
  min-width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border-radius: 8px;
  border: 1px solid #c7dceb;
  text-decoration: none;
  color: #2b5f84;
  font-size: 14px;
}

.blog-posts-grid .nav-links .current {
  background: #439bc7;
  border-color: #439bc7;
  color: #fff;
}

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

  .blog-post-content {
    padding: 18px;
  }

  .blog-post-title {
    font-size: 18px;
  }
}

/* HERO */

.hero {
  height: 700px;
  display: flex;
  align-items: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.1));
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  border: none;
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.hero-prev {
  left: 24px;
}

.hero-next {
  right: 24px;
}

.hero-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 8px;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.45);
}

.hero-dot.active {
  background: #fff;
}

.hero h1 {
  font-size: 64px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 22px;
  margin-bottom: 30px;
}

/* BOTÕES */

.btn {
  background: #f05a28;
  padding: 12px 24px;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  display: inline-block;
}

.btn:hover {
  background: #d94d20;
}

/* EVENTO */

.evento {
  background: white;
}

.evento-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: center;
}

.evento-image-wrap img {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: contain;
  border-radius: 8px;
  display: block;
}

.evento-kicker {
  display: inline-block;
  color: #f05a28;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.evento-content h2 {
  font-size: 34px;
  margin-bottom: 16px;
  color: #1f2d3d;
  line-height: 1.25;
}

.evento-content p {
  color: #555;
  margin-bottom: 26px;
  line-height: 1.7;
}

/* CARANGUEJO */

.caranguejo {
  background: #78bccd;
  color: #fff;
}

.caranguejo-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}

.caranguejo-kicker {
  display: inline-block;
  color: #ffc89a;
  margin-bottom: 12px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.caranguejo-content h2 {
  color: #fff;
  margin-bottom: 16px;
  max-width: 680px;
}

.caranguejo-content p {
  color: #eaf8fc;
  max-width: 680px;
  margin-bottom: 18px;
}

.caranguejo-image-wrap {
  position: relative;
  overflow: visible;
  margin-bottom: 40px;
}

.caranguejo-img-main {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.caranguejo-img-destaque {
  position: absolute;
  bottom: -38px;
  left: -24px;
  width: 66%;
  height: 240px;
  object-fit: cover;
  border-radius: 7px;
  border: 4px solid #fff;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.38);
  z-index: 2;
}

.caranguejo h2 {
  font-size: 34px;
  margin-bottom: 15px;
}

/* INDICADORES */

.caranguejo-indicadores-band {
  background: #65a5c0;
  padding: 12px 0;
}

.indicadores-grid {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  text-align: center;
  gap: 34px;
}

.indicadores-item {
  --ind-icon-size: 38px;
  display: grid;
  grid-template-columns: var(--ind-icon-size) auto;
  grid-template-areas:
    "icon num"
    "icon label";
  align-items: center;
  justify-content: start;
  column-gap: 10px;
  row-gap: 2px;
  padding: 0 20px;
  text-align: left;
}

.indicadores-item > .indicadores-icon,
.indicadores-item > .indicadores-icon-img {
  grid-area: icon;
  justify-self: center;
  align-self: center;
  margin-top: 0;
  display: block;
}

.indicadores-icon {
  width: var(--ind-icon-size);
  height: var(--ind-icon-size);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.indicadores-icon svg {
  width: calc(var(--ind-icon-size) - 6px);
  height: calc(var(--ind-icon-size) - 6px);
}

.indicadores-icon-img {
  width: var(--ind-icon-size);
  height: var(--ind-icon-size);
  object-fit: contain;
  object-position: center;
  margin-bottom: 0;
}

.indicadores-num {
  grid-area: num;
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.indicadores-label {
  grid-area: label;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
}

/* FOTOS DA CIDADE */

.fotos-cidade-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  line-height: 0;
}

.fotos-cidade-item {
  overflow: hidden;
}

.fotos-cidade-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.fotos-cidade-item img:hover {
  transform: scale(1.04);
}

/* GALERIA */

.galeria {
  padding: 0;
}

.galeria-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.galeria-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.galeria-open-full {
  touch-action: manipulation;
}

.galeria-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  padding: 24px;
}

.galeria-lightbox.is-open {
  display: flex;
}

.galeria-lightbox img {
  max-width: 95vw;
  max-height: 92vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
}

.galeria-lightbox-close {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 900px) {
  .galeria-lightbox {
    padding: 16px;
  }

  .galeria-lightbox img {
    max-width: 100vw;
    max-height: 86vh;
    border-radius: 6px;
  }

  .galeria-lightbox-close {
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    font-size: 24px;
  }
}

@media (max-height: 520px) {
  .galeria-lightbox img {
    max-height: 80vh;
  }
}

/* FUTURO */

.futuro {
  background: #f5f5f5;
}

.futuro-kicker {
  display: inline-block;
  color: #8fa0ad;
  margin-bottom: 10px;
}

.futuro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 30px;
  align-items: start;
}

.futuro-grid h3 {
  margin-bottom: 12px;
  color: #12263a;
}

.futuro-left-list,
.futuro-right-list {
  list-style: none;
  margin-top: 14px;
}

.futuro-left-list li,
.futuro-right-list li {
  padding: 10px 0;
  border-bottom: 1px solid #e0e0e0;
}

.futuro-right-list .futuro-accordion-item {
  padding: 0;
}

.futuro-toggle {
  width: 100%;
  background: transparent;
  border: 0;
  cursor: pointer;
  display: flex;
  justify-content: flex-start;
  gap: 8px;
  align-items: center;
  padding: 10px 0;
  text-align: left;
  font: inherit;
  color: inherit;
}

.futuro-plus {
  order: -1;
  color: #f05a28;
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
  transition: transform 0.2s ease;
}

.futuro-accordion-item.is-open .futuro-plus {
  transform: rotate(45deg);
}

.futuro-toggle-content {
  display: none;
  padding: 0 0 10px;
}

.futuro-accordion-item.is-open .futuro-toggle-content {
  display: block;
}

.futuro-toggle-content p {
  margin: 0;
  font-size: 14px;
  opacity: 0.9;
}

.futuro-grid img {
  width: 100%;
  border-radius: 8px;
  margin-top: 18px;
}

.futuro h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.futuro p {
  max-width: 700px;
}

/* TURISMO */

.turismo {
  background: #1260a9;
  color: white;
}

.turismo-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.turismo .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.turismo-kicker {
  display: inline-block;
  color: #d9edf6;
  margin-bottom: 10px;
  font-size: 14px;
}

.turismo-content h2 {
  color: #fff;
  margin-bottom: 14px;
}

.turismo-content p {
  color: #eaf6fb;
  margin-bottom: 18px;
  max-width: 560px;
}

.turismo-card {
  position: relative;
}

.turismo-card img {
  width: 100%;
  border-radius: 8px;
  height: 360px;
  object-fit: cover;
}

.turismo-card-info {
  position: absolute;
  right: 20px;
  bottom: 20px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  padding: 14px 16px;
  border-radius: 8px;
  max-width: 300px;
}

.turismo-card-info h3 {
  margin-bottom: 6px;
  color: #fff;
}

.turismo-card-info p {
  color: #f2f2f2;
  margin: 0;
}

.turismo img {
  width: 100%;
  border-radius: 6px;
}

.turismo h2 {
  font-size: 34px;
  margin-bottom: 15px;
}

/* MAPA */

.mapa {
  padding: 0;
}

.mapa iframe {
  width: 100%;
  height: 400px;
  border: 0;
}

/* COMO CHEGAR */

.chegar {
  background: #f5f5f5;
  color: #1f2d3d;
  text-align: center;
}

.chegar h2 {
  font-size: 34px;
  margin-bottom: 10px;
}

/* INSTAGRAM */

.instagram {
  background: white;
}

.instagram h2 {
  text-align: center;
  margin-bottom: 24px;
}

.instagram-feed-wrapper {
  width: 100%;
}

/* NEWSLETTER */

.newsletter {
  background: transparent;
  color: white;
  text-align: left;
  margin-bottom: -34px;
  position: relative;
  z-index: 3;
}

.newsletter .container {
  max-width: 760px;
  background: #eb6a2f;
  padding: 14px 18px;
  border-radius: 0 8px 8px 0;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  margin-left: 0;
  margin-right: auto;
}

.newsletter h3 {
  margin-bottom: 10px;
  font-size: 22px;
  font-weight: 700;
  color: #fff !important;
  text-align: left;
}

.newsletter-form {
  display: flex;
  justify-content: flex-start;
  gap: 10px;
  flex-wrap: wrap;
}

.newsletter-form input {
  padding: 10px 12px;
  border: none;
  border-radius: 2px;
  width: 240px;
  background: rgba(255, 255, 255, 0.3);
  color: #fff;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.9);
}

.newsletter-form button {
  background: #2f9ad1;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 2px;
  cursor: pointer;
  font-weight: 600;
}

/* FOOTER */

.site-footer {
  background: #65a5c0;
  color: white;
  padding: 0;
}

.footer-main {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  align-items: center;
  justify-items: center;
  text-align: center;
  padding-top: 60px;
  padding-bottom: 40px;
  max-width: 960px;
  margin: 0 auto;
  padding-left: 80px;
  padding-right: 80px;
}

.footer-brand img {
  width: 100%;
  max-width: 180px;
  height: auto;
  border-radius: 8px;
  margin: 0 auto;
  display: block;
}

.footer-brand h3 {
  color: #fff;
  margin-bottom: 6px;
}

.footer-brand p,
.footer-col p,
.footer-col a,
.footer-col li,
.footer-col h4 {
  color: #dceef7;
}

.footer-col h4 {
  margin-bottom: 10px;
  color: #fff;
}

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

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

.footer-col a {
  text-decoration: none;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  justify-content: center;
}

.footer-social a {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #f05a28;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.footer-bottom {
  background: #3a97c8;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
  padding: 14px 20px;
  font-size: 13px;
  color: #dceef7;
}

/* RESPONSIVO */

/* ─── MONITOR GRANDE (1400px+) ─── */
@media (min-width: 1400px) {
  .container {
    max-width: 1340px;
  }

  .hero h1 {
    font-size: 74px;
  }

  .hero {
    height: 760px;
  }
}

/* ─── TABLET LANDSCAPE / NOTEBOOK PEQUENO (900px – 1199px) ─── */
@media (max-width: 1199px) {
  .site-header .container {
    padding: 12px 20px;
  }

  .header-button {
    padding: 9px 16px;
    font-size: 13px;
  }

  .hero h1 {
    font-size: 52px;
  }

  .hero p {
    font-size: 19px;
  }

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

  .caranguejo-layout {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .futuro-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

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

  .fotos-cidade-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  .galeria-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .turismo-layout,
  .turismo .container {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .indicadores-num {
    font-size: 38px;
  }
}

/* ─── TABLET PORTRAIT (600px – 899px) ─── */
@media (max-width: 900px) {
  .site-header .container {
    padding: 12px 16px;
  }

  .site-branding {
    min-width: 0;
  }

  .site-branding h2 {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 170px;
  }

  .header-actions {
    gap: 10px;
  }

  .newsletter {
    margin-bottom: -24px;
  }

  .newsletter .container {
    max-width: 92%;
    margin-left: 0;
    margin-right: auto;
  }

  .newsletter h3 {
    font-size: 18px;
    text-align: center;
  }

  .newsletter-form {
    justify-content: center;
  }

  .header-topbar-links {
    display: none;
  }

  .main-navigation {
    display: none !important;
  }

  .hamburger-toggle {
    display: flex;
  }

  .container {
    padding: 40px 20px;
  }

  .hero {
    height: 480px;
  }

  .hero h1 {
    font-size: 36px;
    margin-bottom: 12px;
  }

  .hero p {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .evento-layout,
  .caranguejo .container,
  .turismo .container,
  .turismo-layout,
  .caranguejo-layout,
  .futuro-grid,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .evento-image-wrap img {
    height: 280px;
  }

  .evento-content h2 {
    font-size: 26px;
  }

  .turismo-card img {
    height: 260px;
  }

  .turismo-card-info {
    position: static;
    margin-top: 10px;
    max-width: 100%;
  }

  .turismo h2,
  .caranguejo h2,
  .futuro h2 {
    font-size: 26px;
  }

  .indicadores-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    justify-items: center;
    align-items: start;
  }

  .indicadores-item {
    --ind-icon-size: 34px;
    grid-template-columns: var(--ind-icon-size) minmax(0, 1fr);
    grid-template-areas:
      "icon num"
      "icon label";
    column-gap: 10px;
    row-gap: 3px;
    justify-content: start;
    justify-self: center;
    width: 180px;
    max-width: 100%;
    text-align: left;
    align-items: start;
    margin: 0;
  }

  .indicadores-item > .indicadores-icon,
  .indicadores-item > .indicadores-icon-img {
    justify-self: start;
    align-self: center;
  }

  .indicadores-num,
  .indicadores-label {
    justify-self: start;
    text-align: left;
  }

  .indicadores-num {
    font-size: 36px;
    line-height: 1;
  }

  .indicadores-label {
    line-height: 1.2;
  }

  .caranguejo-img-destaque {
    display: block;
    position: relative;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 180px;
    margin-top: 0;
    border: 0;
    box-shadow: none;
  }

  .caranguejo-image-wrap {
    margin-bottom: 0;
  }

  .caranguejo-img-main {
    height: 300px;
  }

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

  .fotos-cidade-strip .fotos-cidade-item:nth-child(n + 5) {
    display: none;
  }

  .fotos-cidade-item img {
    height: 180px;
  }

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

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

  .hero-control {
    width: 34px;
    height: 34px;
    font-size: 18px;
  }

  .main-navigation {
    display: none !important;
  }

  .page-title {
    font-size: 28px;
  }
}

/* ─── MOBILE (até 600px) ─── */
@media (max-width: 600px) {
  .home .site-header {
    background: rgba(88, 167, 205, 0.88);
  }

  .home .site-header .container {
    background: rgba(255, 255, 255, 0.12) !important;
  }

  .site-header .container {
    padding: 10px 12px;
  }

  .newsletter {
    margin-bottom: 0;
  }

  .newsletter .container {
    max-width: calc(100% - 12px);
    border-radius: 0 8px 8px 0;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
    margin-left: 0;
    margin-right: auto;
  }

  .footer-main {
    padding-top: 44px;
  }

  .site-header .header-topbar .container {
    padding: 5px 16px;
  }

  .header-topbar-social {
    gap: 8px;
  }

  .container {
    padding: 32px 16px;
  }

  .hero {
    height: auto;
    min-height: clamp(280px, 58vw, 360px);
  }

  .hero-slide {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center bottom;
    background-color: rgba(88, 167, 205, 0.88)
  }

  .hero .container {
    padding-top: 86px;
    padding-bottom: 18px;
  }

  .hero::before {
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.45),
      rgba(0, 0, 0, 0.2) 45%,
      rgba(0, 0, 0, 0.55)
    );
  }

  .hero h1 {
    font-size: 26px;
    margin-bottom: 8px;
  }

  .hero p {
    font-size: 14px;
    margin-bottom: 16px;
  }

  .hero-control {
    display: none;
  }

  .hero-dots {
    bottom: 14px;
  }

  .evento-image-wrap img {
    height: 200px;
  }

  .evento-kicker {
    font-size: 11px;
  }

  .evento-content h2 {
    font-size: 22px;
  }

  .caranguejo h2,
  .futuro h2,
  .turismo h2 {
    font-size: 22px;
  }

  .caranguejo-img-main {
    height: 220px;
  }

  .turismo-card img {
    height: 200px;
  }

  .indicadores-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    justify-items: center;
    align-items: start;
  }

  .indicadores-num {
    font-size: 28px;
  }

  .indicadores-icon {
    width: var(--ind-icon-size);
    height: var(--ind-icon-size);
  }

  .indicadores-icon-img {
    width: var(--ind-icon-size);
    height: var(--ind-icon-size);
  }

  .indicadores-item {
    --ind-icon-size: 32px;
    grid-template-columns: var(--ind-icon-size) minmax(0, 1fr);
    grid-template-areas:
      "icon num"
      "icon label";
    column-gap: 10px;
    row-gap: 3px;
    justify-content: start;
    justify-self: center;
    width: 180px;
    max-width: 100%;
    text-align: left;
    margin: 0;
    align-items: start;
  }

  .indicadores-item > .indicadores-icon,
  .indicadores-item > .indicadores-icon-img {
    justify-self: start;
    align-self: center;
  }

  .indicadores-num,
  .indicadores-label {
    justify-self: start;
    text-align: left;
  }

  .indicadores-num {
    line-height: 1;
  }

  .indicadores-label {
    line-height: 1.2;
  }

  .fotos-cidade-strip {
    grid-template-columns: 1fr 1fr;
  }

  .fotos-cidade-strip .fotos-cidade-item:nth-child(n + 5) {
    display: none;
  }

  .fotos-cidade-item img {
    height: 130px;
  }

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

  .galeria-grid img {
    height: 150px;
  }

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

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

  .footer-brand {
    text-align: center;
  }

  .footer-brand img {
    margin: 0 auto 12px;
    display: block;
  }

  .footer-social {
    justify-content: center;
  }

  .newsletter-form {
    flex-direction: column;
    align-items: center;
  }

  .newsletter-form input {
    width: 100%;
    max-width: 340px;
  }

  .newsletter-form button {
    width: 100%;
    max-width: 340px;
  }

  .btn {
    width: 100%;
    text-align: center;
    display: block;
  }

  .header-button {
    padding: 8px 14px;
    font-size: 13px;
  }

  .site-branding h2 {
    font-size: 15px;
  }

  .site-branding img {
    height: 36px !important;
  }

  .page-title {
    font-size: 22px;
  }

  .page-main .container {
    padding: 28px 16px;
  }

  .mobile-menu {
    width: 80vw;
  }
}

/* ─── RETROCOMPATIBILIDADE GERAL ─── */

@supports not (
  (-webkit-backdrop-filter: blur(2px)) or (backdrop-filter: blur(2px))
) {
  .site-header,
  .home .site-header,
  .site-header .container {
    backdrop-filter: none;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 24px 14px;
  }

  .hero {
    height: auto;
    min-height: 290px;
  }

  .hero h1 {
    font-size: 22px;
  }

  .hero p {
    font-size: 13px;
  }

  .indicadores-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    justify-items: center;
  }

  .indicadores-item {
    width: 180px;
    max-width: 100%;
    justify-self: center;
  }

  .mobile-menu {
    width: 100vw;
  }
}

@media (max-height: 520px) and (orientation: landscape) {
  .hero {
    height: auto;
    min-height: 300px;
    padding: 34px 0;
  }

  .site-header .container {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

@media (pointer: coarse) {
  .btn,
  .header-button,
  .newsletter-form button,
  .futuro-toggle,
  .galeria-lightbox-close {
    min-height: 44px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
