:root {
  --navy: #012e40;
  --teal: #1a8a8a;
  --teal-light: #23b0b0;
  --green: #4caf50;
  --cream: #f0ede6;
  --white: #ffffff;
  --text: #062f3d;
  --muted: #61717a;

  --radius: 28px;

  --shadow-sm: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 20px 50px rgba(0, 0, 0, 0.12);

  --transition: 0.35s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}

img {
  width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

/* ========================================
   NAVBAR
======================================== */
.navbar {
  width: 100%;

  position: fixed;
  top: 0;
  left: 0;

  z-index: 999;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 18px 7%;

  background: rgba(1, 46, 64, 0.9);

  backdrop-filter: blur(14px);

  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.navbar__brand img {
  width: 60px;
}

.navbar__brand h2 {
  color: white;
  font-size: 1.3rem;
}

.navbar__brand span {
  color: rgba(255, 255, 255, 0.7);

  font-size: 0.85rem;
}

.btn-nav {
  height: 52px;

  padding: 0 24px;

  border-radius: 999px;

  display: flex;
  align-items: center;
  gap: 10px;

  background: rgba(255, 255, 255, 0.1);

  color: white;

  font-weight: 600;

  transition: var(--transition);
}

.btn-nav:hover {
  background: var(--teal);

  transform: translateY(-4px);
}

/* ========================================
   TOP SECTION
======================================== */
.top-section {
  padding: 100px 7% 60px;
  ;
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr;

  gap: 70px;

  align-items: center;
}

.section-tag {
  width: fit-content;

  margin: 10px;

  display: flex;
  align-items: center;
  gap: 10px;

  padding: 7px 18px;

  border-radius: 999px;

  background: rgba(35, 176, 176, 0.12);

  color: var(--teal);

  font-size: 0.75rem;
  font-weight: 700;

  letter-spacing: 1px;

  margin-top: 40px;
}

.section-tag--hero {
  margin: 0 auto 24px;
}

.top-section__content {
  position: relative;
}

.top-section::after {
  content: "";

  position: absolute;

  width: 86%;
  left: 50%;

  left: 7%;
  right: 7%;

  bottom: 5px;

  height: 3px;

  background: repeating-linear-gradient(90deg,
      #0000001a 0px,
      #0000001a 10px,
      transparent 10px,
      transparent 18px);
}

.top-section__content h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);

  line-height: 1.05;

  margin-bottom: 24px;
}

.top-section__content h1 span {
  color: var(--teal);
}

.top-section__content p {
  color: var(--muted);

  line-height: 2;

  font-size: 1.05rem;

  max-width: 650px;

  margin-bottom: 38px;
}

.top-section__cards {
  display: flex;
  gap: 18px;

  flex-wrap: wrap;
}

.mini-card {
  min-width: 230px;

  padding: 22px;

  border-radius: 24px;

  background: white;

  display: flex;
  align-items: center;
  gap: 18px;

  box-shadow: 15px 15px 10px rgba(0, 0, 0, 0.08);

  transition: var(--transition);
}

.mini-card:hover {
  transform: translateY(-8px);
}

.mini-card i {
  width: 55px;
  height: 55px;

  border-radius: 18px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(35, 176, 176, 0.12);

  color: var(--teal);

  font-size: 1.2rem;
}

.mini-card strong {
  display: block;

  margin-bottom: 4px;
}

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

  font-size: 0.92rem;
}

/* ========================================
   IMAGE
======================================== */
.top-section__image {
  position: relative;

  margin-top: 50px;
}

.top-section__image img {
  border-radius: 100%;

  width: 100%;
  height: 100%;

  box-shadow: 15px 15px 10px rgba(0, 0, 0, 0.13);

  object-fit: cover;
}

.image-circle {
  position: absolute;

  border-radius: 50%;
}

.image-circle--1 {
  width: 180px;
  height: 180px;

  background: rgba(35, 176, 176, 0.15);

  top: -30px;
  right: -30px;

  z-index: -2;
}

.image-circle--2 {
  width: 90px;
  height: 90px;

  background: rgba(35, 176, 176, 0.18);

  bottom: -20px;
  left: -20px;

  z-index: -2;
}

.floating-box {
  position: absolute;

  left: 30px;
  bottom: 30px;

  padding: 18px 22px;

  border-radius: 24px;

  background: rgba(1, 46, 64, 0.92);

  display: flex;
  align-items: center;
  gap: 16px;

  backdrop-filter: blur(12px);

  color: white;
}

.floating-box i {
  font-size: 1.5rem;

  color: var(--teal-light);
}

.floating-box strong {
  display: block;

  margin-bottom: 4px;
}

.floating-box span {
  font-size: 0.9rem;

  color: rgba(255, 255, 255, 0.75);
}

/* ========================================
   LOCAIS
======================================== */
.locais {
  padding: 20px 7% 50px;
}

/* ========================================
   TOP LOCAIS
======================================== */
.locais__top {
  text-align: center;

  max-width: 850px;

  margin: 0 auto 30px;
}

.locais__top h2 {
  font-size: clamp(2rem, 6vw, 3rem);

  margin-bottom: 18px;
}

.locais__top p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.9;
}

.locais__carousel {
  position: relative;
  overflow: hidden;
}

.carousel-btn {
  position: absolute;

  top: 50%;

  transform: translateY(-50%);

  width: 60px;
  height: 60px;

  border: none;
  border-radius: 50%;

  background: white;

  color: var(--navy);

  font-size: 1rem;

  margin: 10px;

  cursor: pointer;

  z-index: 20;

  box-shadow: var(--shadow-sm);

  transition: var(--transition);
}

.carousel-btn:hover {
  background: var(--teal);

  color: white;

  transform: translateY(-50%) scale(1.05);
}

.carousel-btn--left {
  left: 0;
}

.carousel-btn--right {
  right: 0;
}

/* ESQUERDA */
#prevBtn {
  left: 0;
}

/* DIREITA */
#nextBtn {
  right: 0;
}

.carousel-btn--prev {
  transform: translateX(-30px);
}

.carousel-btn--next {
  transform: translateX(30px);
}

.carousel-btn--prev:hover {
  transform: translateX(-30px) scale(1.08);
}

.carousel-btn--next:hover {
  transform: translateX(30px) scale(1.08);
}

/* ========================================
   CAROUSEL
======================================== */
.locais__carousel {
  position: relative;

  overflow: hidden;

  width: 100%;

  padding: 40px 100px;
}

.locais__grid {
  display: flex;

  gap: 28px;

  transition: transform 0.5s ease;
}

.local-card {
  min-width: calc(33.333% - 19px);

  flex: 0 0 calc(33.333% - 19px);

  background: white;

  border-radius: 32px;

  overflow: hidden;

  box-shadow: 15px 15px 10px rgba(0, 0, 0, 0.13);

  transition: var(--transition);
}

.local-card:hover {
  transform: translateY(-10px);
}

.local-card__image {
  position: relative;

  height: 250px;

  overflow: hidden;
}

.local-card__image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: 0.4s ease;
}

.local-card:hover .local-card__image img {
  transform: scale(1.05);
}

.local-card__badge {
  position: absolute;

  top: 18px;
  left: 18px;

  padding: 10px 16px;

  border-radius: 999px;

  background: var(--teal);

  color: white;

  font-size: 0.82rem;
  font-weight: 600;

  display: flex;
  align-items: center;
  gap: 8px;
}

.badge--green {
  background: var(--green);
}

.badge--dark {
  background: var(--navy);
}

.badge--blue {
  background: #0088cc;
}

.local-card__content {
  padding: 20px;
}

.local-card__content h3 {
  font-size: 1.2rem;

  margin-bottom: 14px;
}

.local-card__content p {
  color: var(--muted);

  font-size: 0.85rem;

  line-height: 1.8;

  margin-bottom: 24px;
}

.local-card__content p i {
  color: var(--teal);
}

.local-card__info {
  width: fit-content;

  padding: 8px 18px;

  border-radius: 999px;

  background: rgba(35, 176, 176, 0.1);

  color: var(--teal);

  font-size: 0.7rem;
  font-weight: 600;

  display: flex;
  align-items: center;
  gap: 10px;
}

/* ========================================
   INFO SECTION
======================================== */
.info-section {
  padding: 0 7% 80px;

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));

  gap: 30px;
}

.info-box {
  padding: 34px;

  border-radius: 32px;

  background: white;

  display: flex;

  gap: 8px;

  box-shadow: 15px 15px 10px rgba(0, 0, 0, 0.13);

  transition: var(--transition);
}

.info-box:hover {
  transform: translateY(-8px);
}

.info-box i {
  width: 55px;
  height: 55px;

  border-radius: 20px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(35, 176, 176, 0.12);

  color: var(--teal);

  font-size: 1.3rem;

  flex-shrink: 0;
}

.info-box i.fa-triangle-exclamation {
  background: #fce7cf;
  color: #ff9822;
}

.info-box h3 {
  font-size: 1rem;

  margin-bottom: 10px;
}

.info-box p {
  color: var(--muted);

  font-size: 0.85rem;
  line-height: 1.8;
}

/* ========================================
   FOOTER
======================================== */
.footer {
  padding: 40px 20px;

  background: var(--navy);

  text-align: center;
}

.footer h3 {
  color: white;

  font-size: 1.5rem;

  margin-bottom: 10px;
}

.footer p {
  color: rgba(255, 255, 255, 0.7);

  margin-bottom: 10px;
}

.footer span {
  color: rgba(255, 255, 255, 0.5);

  font-size: 0.9rem;
}

/* ========================================
   RESPONSIVE
======================================== */
/* =========================================
   NOTEBOOK / TABLET
========================================= */
@media (max-width: 1024px) {
  .navbar {
    padding: 18px 5%;
  }

  /* HERO */
  .top-section {
    grid-template-columns: 1fr;

    gap: 50px;

    padding: 130px 5% 80px;

    text-align: center;
  }

  .top-section__content {
    display: flex;
    flex-direction: column;
    align-items: center;

    order: 2;
  }

  .top-section__content::after {
    left: 10%;
    right: 10%;

    bottom: -30px;
  }

  .section-tag {
    margin: 0 0 18px;
  }

  .top-section__content h1 {
    font-size: clamp(3rem, 5vw, 4.2rem);

    line-height: 1.1;
  }

  .top-section__content p {
    max-width: 760px;

    margin-inline: auto;
  }

  .top-section__cards {
    justify-content: center;
  }

  .mini-card {
    min-width: 260px;
  }

  /* IMAGE */
  .top-section__image {
    width: 100%;

    margin: 0 auto;

    order: 1;
  }

  .top-section__image img {
    width: 100%;
    height: 420px;

    object-fit: cover;

    border-radius: 40px;
  }

  .section-tag {
    text-align: center;
    margin: auto;
    margin-bottom: 18px;
  }

  .image-circle--1,
  .image-circle--2 {
    display: none;
  }

  .floating-box {
    left: 50%;

    bottom: -30px;

    transform: translateX(-50%);
  }

  /* LOCAIS */
  .locais {
    padding: 40px 5% 100px;
  }

  .locais__carousel {
    padding: 30px 0 90px;
  }

  .local-card {
    min-width: calc(50% - 14px);
    flex: 0 0 calc(50% - 14px);
  }

  .carousel-btn {
    top: unset;
    bottom: 0;

    transform: none !important;
  }

  .carousel-btn--left,
  #prevBtn {
    left: calc(50% - 80px);
  }

  .carousel-btn--right,
  #nextBtn {
    right: calc(50% - 80px);
  }

  /* INFO */
  .info-section {
    grid-template-columns: 1fr;

    gap: 22px;

    padding: 0 5% 90px;
  }

  .info-box {
    padding: 28px;
  }
}

/* =========================================
   TABLET PEQUENO
========================================= */
@media (max-width: 768px) {
  .navbar {
    padding: 16px 5%;
  }

  .navbar__brand img {
    width: 48px;
  }

  .navbar__brand h2 {
    font-size: 1rem;
  }

  .navbar__brand span {
    font-size: 0.72rem;
  }

  .btn-nav {
    height: 46px;

    padding: 0 18px;

    font-size: 0.9rem;
  }

  /* HERO */
  .top-section {
    padding: 100px 5% 60px;
  }

  .top-section__image img {
    width: 100vw;
    max-width: 100vw;

    height: 300px;

    filter: brightness(0.8);

    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);

    border-radius: 0 0 30px 30px;

    margin-top: -40px;
  }

  .top-section__content h1 {
    font-size: 2.8rem;
  }

  .top-section__content p {
    font-size: 0.95rem;
  }

  .top-section__cards {
    flex-direction: column;

    align-items: center;

    width: 100%;
  }

  .top-section__content::after {
    bottom: -45px;
  }

  .section-tag {
    text-align: center;

    margin: auto;

    margin-bottom: 15px;
  }

  .mini-card {
    width: 100%;
    max-width: 800px;
  }

  .floating-box {
    position: relative;

    left: unset;
    bottom: unset;

    transform: none;

    width: 65%;

    margin: 0 auto;

    margin-top: -30px;

    justify-content: center;
  }

  /* LOCAIS */
  .local-card {
    min-width: 100%;
    flex: 0 0 100%;
  }

  .local-card__image {
    height: 220px;
  }

  .locais__top p {
    margin-bottom: 10px;
  }

  .locais__carousel {
    margin-top: -50px;
  }

  .carousel-btn--left,
  #prevBtn {
    left: calc(50% - 100px);
  }

  .carousel-btn--right,
  #nextBtn {
    right: calc(50% - 100px);
  }

  /* INFO */
  .info-box {
    padding: 24px;

    border-radius: 22px;
  }

  .locais {
    position: relative;
    padding: 50px 5% 80px;
  }

  .locais::after {
    content: "";

    position: absolute;

    left: 7%;
    right: 7%;

    margin-top: 30px;

    height: 3px;

    background: repeating-linear-gradient(90deg,
        #0000001a 0px,
        #0000001a 10px,
        transparent 10px,
        transparent 18px);
  }
}

/* =========================================
   MOBILE
========================================= */
@media (max-width: 480px) {
  .navbar {
    padding: 14px 5%;
  }

  .navbar__brand {
    gap: 10px;
  }

  .navbar__brand img {
    width: 42px;
  }

  .navbar__brand h2 {
    font-size: 0.95rem;
  }

  .navbar__brand span {
    font-size: 0.68rem;
  }

  .btn-nav {
    padding: 10px 14px;
    font-size: 0.8rem;
  }

  /* HERO */
  .top-section {
    padding: 100px 5% 40px;
  }

  .top-section__image img {
    height: 200px;

    border-radius: 0 0 24px 24px;

    object-fit: cover;

    filter: brightness(0.75);

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  }

  .floating-box {
    padding: 14px 18px;

    width: 85%;

    margin-top: -50px;
  }

  .section-tag {
    font-size: 0.72rem;

    padding: 8px 14px;

    align-self: center;

    margin: 0 auto;

    margin-bottom: 10px;
  }

  .top-section__content h1 {
    font-size: 2.2rem;

    line-height: 1.1;
  }

  .top-section__content p {
    font-size: 0.9rem;

    line-height: 1.7;
  }

  .top-section__content::after {
    bottom: -50px;
  }

  .mini-card {
    padding: 16px;

    border-radius: 20px;
  }

  .mini-card i {
    width: 48px;
    height: 48px;
  }

  /* LOCAIS */
  .locais {
    position: relative;
    padding: 50px 5% 80px;
  }

  .locais::after {
    content: "";

    position: absolute;

    left: 7%;
    right: 7%;

    margin-top: 30px;

    height: 3px;

    background: repeating-linear-gradient(90deg,
        #0000001a 0px,
        #0000001a 10px,
        transparent 10px,
        transparent 18px);
  }

  .locais__top {
    margin: 0 auto 15px;
  }

  .locais__top h2 {
    font-size: 1.9rem;
    margin-bottom: 10px;
  }

  .locais__top p {
    font-size: 0.88rem;
  }

  .local-card {
    border-radius: 24px;
  }

  .local-card__image {
    height: 200px;
  }

  .local-card__content {
    padding: 20px;
  }

  .local-card__content h3 {
    font-size: 1.25rem;
  }

  .local-card__content p {
    font-size: 0.88rem;
  }

  .local-card__info {
    width: 100%;

    justify-content: center;
  }

  .locais__carousel {
    margin: 0 auto;
  }

  .carousel-btn {
    width: 46px;
    height: 46px;
  }

  /* INFO */
  .info-section {
    padding: 0 5% 70px;

    gap: 16px;
  }

  .info-box {
    flex-direction: row;

    align-items: flex-start;

    padding: 22px 18px;

    border-radius: 20px;
  }

  .info-box i {
    width: 48px;
    height: 48px;

    font-size: 1rem;
  }

  .info-box h3 {
    font-size: 1.1rem;
  }

  .info-box p {
    font-size: 0.88rem;

    line-height: 1.7;
  }

  /* FOOTER */
  .footer {
    padding: 30px 20px;
  }

  .footer h3 {
    font-size: 1.3rem;
  }

  .footer p {
    font-size: 0.85rem;
  }

  .footer span {
    font-size: 0.72rem;
  }
}