:root {
  --blue: #0087f0;
  --blue-d: #0069e1;
  --blue-l: #0096ff;
  --teal: #0069e1;
  --teal-l: #1ec3ff;
  --sand: #f0f8ff;
  --sand-d: #d0e8ff;
  --white: #fafcff;
  --dark: #060c18;
  --dark2: #0a1220;
  --gray: #6b7a99;
  --accent: #1ec3ff;
  --grad: linear-gradient(135deg, #1ec3ff 0%, #0069e1 100%);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Space Grotesk", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
}

a,
button,
.lang-btn,
.nav-mobile-toggle,
.nav-links a {
  -webkit-tap-highlight-color: transparent;
  tap-highlight-color: transparent;
}

a:focus:not(:focus-visible),
button:focus:not(:focus-visible),
.lang-btn:focus:not(:focus-visible),
.nav-mobile-toggle:focus:not(:focus-visible),
.nav-links a:focus:not(:focus-visible) {
  outline: none;
  box-shadow: none;
}

.nav-links a:active,
.lang-btn:active,
.nav-mobile-toggle:active,
.nav-cta:active,
.btn-primary:active,
.btn-ghost:active {
  background-color: transparent;
}

.hero-content,
.stats-bar,
section,
footer {
  transition:
    opacity 0.22s ease,
    filter 0.22s ease;
}

body.lang-switching .hero-content,
body.lang-switching .stats-bar,
body.lang-switching section,
body.lang-switching footer {
  opacity: 0.58;
  filter: blur(1px);
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.2rem 4vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  backdrop-filter: blur(18px);
  background: rgba(6, 12, 24, 0.75);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.3s;
}

.nav-logo img {
  width: 60px;
  height: 60px;
  object-fit: cover;
}
.nav-logo span {
  color: var(--teal-l);
}
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--teal-l);
}
.nav-cta {
  background: linear-gradient(135deg, #1ec3ff, #0069e1);
  color: var(--white);

  font-size: 0.85rem;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  padding: 0.6rem 1.4rem;
  transition:
    opacity 0.2s,
    transform 0.15s;
  text-decoration: none;
}
.nav-cta:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

.nav-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.lang-switcher {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 0.2rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  min-width: 122px;
}
.lang-switcher::before {
  content: "";
  position: absolute;
  top: 0.2rem;
  bottom: 0.2rem;
  left: 0.2rem;
  width: calc((100% - 0.4rem) / 3);
  border-radius: 999px;
  background: linear-gradient(135deg, #1ec3ff, #0069e1);
  box-shadow:
    0 6px 16px rgba(0, 105, 225, 0.35),
    inset 0 1px 2px rgba(255, 255, 255, 0.35);
  transform: translateX(0%);
  transition:
    transform 0.42s cubic-bezier(0.22, 1.1, 0.36, 1),
    border-radius 0.3s ease;
  z-index: 0;
}
.lang-switcher[data-active="en"]::before {
  transform: translateX(100%);
}
.lang-switcher[data-active="es"]::before {
  transform: translateX(200%);
}
.lang-btn {
  position: relative;
  z-index: 1;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.82);
  min-width: 0;
  padding: 0.38rem 0.55rem;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition:
    color 0.24s ease,
    transform 0.15s;
}
.lang-btn:hover {
  color: #fff;
}
.lang-btn.is-active {
  color: #fff;
}

.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
  border-radius: 2px;
  transition: 0.3s;
}

/* ── HERO ── */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 9.25rem 4vw 5rem;
}

/* animated ocean gradient background */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(135deg, #04090f 0%, #001a4a 50%, #003a8c 100%);
}
.hero-bg::before,
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-bg::before {
  background: url("./assets/img/decalque.svg") center/cover no-repeat;
  opacity: 0.4;
}

.hero-bg::after {
  background: radial-gradient(
    ellipse 80% 60% at 60% 40%,
    rgba(14, 168, 168, 0.25) 0%,
    transparent 70%
  );
  animation: pulse 6s ease-in-out infinite alternate;
}

@keyframes pulse {
  from {
    opacity: 0.5;
    transform: scale(1);
  }
  to {
    opacity: 1;
    transform: scale(1.08);
  }
}

/* wave SVG at bottom of hero */
.hero-wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  z-index: 4;
}

/* floating orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  pointer-events: none;
  animation: drift 10s ease-in-out infinite alternate;
}
.orb-1 {
  width: 500px;
  height: 500px;
  background: #0069e1;
  top: -100px;
  right: -100px;
}
.orb-2 {
  width: 350px;
  height: 350px;
  background: #1ec3ff;
  bottom: 10%;
  left: -80px;
  animation-delay: 3s;
}
.orb-3 {
  width: 200px;
  height: 200px;
  background: #0087f0;
  top: 40%;
  right: 20%;
  animation-delay: 6s;
  opacity: 0.2;
}
@keyframes drift {
  from {
    transform: translate(0, 0) scale(1);
  }
  to {
    transform: translate(30px, 20px) scale(1.1);
  }
}

/* grain texture */
.grain {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  opacity: 0.04;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 740px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(30, 195, 255, 0.1);
  border: 1px solid rgba(30, 195, 255, 0.3);
  border-radius: 50px;
  padding: 0.4rem 1rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--teal-l);
  text-transform: uppercase;
  margin-bottom: 1.8rem;
  animation: fadeUp 0.8s ease both;
}
.hero-badge .dot {
  width: 6px;
  height: 6px;
  background: #1ec3ff;
  border-radius: 50%;
  animation: blink 2s infinite;
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

.hero h1 {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s 0.1s ease both;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, #1ec3ff, #0069e1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero h1 .stroke {
  background: linear-gradient(135deg, #1ec3ff, #0069e1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  max-width: 520px;
  margin-bottom: 2.5rem;
  animation: fadeUp 0.8s 0.2s ease both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  animation: fadeUp 0.8s 0.3s ease both;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, #1ec3ff, #0069e1);
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  padding: 0.9rem 2rem;
  text-decoration: none;
  box-shadow: 0 8px 32px rgba(0, 105, 225, 0.5);
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    opacity 0.2s;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(30, 195, 255, 0.45);
  opacity: 0.88;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  font-weight: 400;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50px;
  cursor: pointer;
  padding: 0.9rem 2rem;
  text-decoration: none;
  transition:
    border-color 0.2s,
    color 0.2s,
    transform 0.2s;
}
.btn-ghost:hover {
  border-color: var(--teal-l);
  color: var(--teal-l);
  transform: translateY(-2px);
}

.hero-stores {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  margin-top: 0.25rem;
  flex-wrap: wrap;
}
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  padding: 0.5rem 0.9rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: background 0.2s;
}
.store-badge:hover {
  background: rgba(255, 255, 255, 0.14);
}
.store-badge svg {
  flex-shrink: 0;
}

/* hero artwork area */
.hero-visual {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: clamp(500px, 58vw, 980px);
  height: clamp(300px, 56vh, 600px);
  pointer-events: none;
  animation:
    floatPhone 5s ease-in-out infinite alternate,
    fadeUp 0.8s 0.4s ease both;
}

@keyframes floatPhone {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-20px);
  }
}
.hero-mobiles,
.hero-mascote {
  position: absolute;
  display: block;
  filter: drop-shadow(0 0 14px rgba(255, 255, 255, 0.18));
}

.hero-mobiles {
  left: 0;
  bottom: 0.5rem;
  width: clamp(680px, 25vw, 900px);
  z-index: 2;
  filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.16));
}

.hero-mascote {
  right: -24%;
  bottom: -28%;
  width: clamp(500px, 60vw, 720px);
  z-index: 1;
  filter: drop-shadow(0 0 18px rgba(255, 255, 255, 0.2));
}

/* phone frame */
.phone-frame {
  width: clamp(200px, 26vw, 340px);
  aspect-ratio: 9/19;
  background: var(--dark2);
  border-radius: 36px;
  border: 3px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  overflow: hidden;
  position: relative;
  margin: 0 auto;
}
.phone-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #001a4a 0%, #04090f 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.5rem 1rem;
}
.phone-app-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, #1ec3ff, #0069e1);
  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 1.4rem;
  font-weight: 800;
  color: white;
  box-shadow: 0 8px 24px rgba(14, 168, 168, 0.5);
}
.phone-ui-row {
  width: 100%;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  height: 40px;
  animation: shimmer 2s ease infinite alternate;
}
.phone-ui-row.tall {
  height: 80px;
}
.phone-ui-row.half {
  width: 60%;
}
@keyframes shimmer {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 0.9;
  }
}
.phone-map-preview {
  width: 100%;
  height: 120px;
  border-radius: 12px;
  background: linear-gradient(135deg, #001a4a, #0069e1);
  position: relative;
  overflow: hidden;
}
.phone-map-preview::after {
  content: "🗺️";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}
/* pin dots on map */
.map-pin {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 6px var(--accent);
}
.map-pin:nth-child(1) {
  top: 30%;
  left: 25%;
}
.map-pin:nth-child(2) {
  top: 55%;
  left: 60%;
}
.map-pin:nth-child(3) {
  top: 20%;
  left: 70%;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── STATS BAR ── */
.stats-bar {
  background: rgba(255, 255, 255, 0.04);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 2rem 4vw;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
}
.stat {
  text-align: center;
}
.stat-num {
  font-size: 2.2rem;
  font-weight: 800;
  background: linear-gradient(135deg, #1ec3ff, #0087f0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.stat-label {
  font-size: 0.8rem;
  color: var(--gray);
  margin-top: 0.3rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ── SECTIONS SHARED ── */
section {
  padding: 7rem 4vw;
}
.section-tag {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1ec3ff;
  margin-bottom: 1rem;
  display: block;
}
.section-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.2rem;
}
.section-title em {
  font-style: normal;
  background: linear-gradient(135deg, #1ec3ff, #0069e1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  max-width: 520px;
}

/* ── ABOUT ── */
#sobre {
  background: var(--dark2);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
/* .about-text {
} */
.about-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-card-stack {
  position: relative;
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
}

.acard {
  border-radius: 20px;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
}
.acard-main {
  background: linear-gradient(
    135deg,
    rgba(30, 195, 255, 0.15),
    rgba(0, 105, 225, 0.2)
  );
  border-color: rgba(30, 195, 255, 0.3);
}
.acard-float {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 70%;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
  transform: rotate(3deg);
}
.acard-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}
.acard-icon svg {
  width: 2rem;
  height: 2rem;
  stroke: #1ec3ff;
  stroke-width: 2;
}
.acard-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.inline-icon {
  width: 0.95rem;
  height: 0.95rem;
  vertical-align: -0.15em;
  margin-right: 0.3rem;
  stroke: #1ec3ff;
  stroke-width: 2.1;
}
.acard-body {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

.about-points {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.about-point {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}
.about-point-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(30, 195, 255, 0.12);
  border: 1px solid rgba(30, 195, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  margin-top: 0.1rem;
}
.about-point-icon svg {
  width: 1.05rem;
  height: 1.05rem;
  stroke: #1ec3ff;
  stroke-width: 2.1;
}

/* ── FEATURES ── */
#funcionalidades {
  background: var(--dark);
}
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.feat-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 20px;
  padding: 2rem;
  transition:
    transform 0.25s,
    border-color 0.25s,
    box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}
.feat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #1ec3ff, #0069e1);
  opacity: 0;
  transition: opacity 0.25s;
}
.feat-card:hover {
  transform: translateY(-6px);
  border-color: rgba(30, 195, 255, 0.3);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}
.feat-card:hover::before {
  opacity: 1;
}
.feat-card-icon {
  font-size: 2rem;
  margin-bottom: 1.2rem;
}
.feat-card-icon svg {
  width: 2rem;
  height: 2rem;
  stroke: #1ec3ff;
  stroke-width: 2;
}
.feat-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}
.feat-card-body {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.65;
}

/* featured card */
.feat-card.featured {
  background: linear-gradient(
    135deg,
    rgba(30, 195, 255, 0.1),
    rgba(0, 105, 225, 0.15)
  );
  border-color: rgba(30, 195, 255, 0.3);
  grid-column: span 2;
}
.feat-card.featured::before {
  opacity: 1;
}
.feat-card.featured .feat-card-title {
  font-size: 1.4rem;
}

/* ── PONTOS TURÍSTICOS ── */
#pontos {
  background: var(--dark2);
}
.pontos-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.pontos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.ponto-card {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/5;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition:
    transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.32s ease,
    border-color 0.32s ease;
}
.ponto-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 65%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(255, 255, 255, 0.18) 48%,
    transparent 100%
  );
  transform: skewX(-18deg);
  transition: left 0.55s ease;
  z-index: 2;
  pointer-events: none;
}
.ponto-card:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: rgba(30, 195, 255, 0.34);
  box-shadow:
    0 22px 52px rgba(0, 70, 200, 0.28),
    0 0 0 1px rgba(30, 195, 255, 0.18) inset;
}
.ponto-card:hover::before {
  left: 155%;
}
.ponto-card-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.ponto-card:hover .ponto-card-bg {
  transform: scale(1.07);
}

/* image placeholders with gradient colors */
.ponto-img {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, var(--c1, #0a4f7a), var(--c2, #0a7a7a));
  display: flex;
  align-items: flex-end;
  padding: 1.2rem;
  font-size: 3rem;
}
.ponto-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 15, 30, 0.9) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.4rem;
  transition: background 0.3s ease;
}
.ponto-card:hover .ponto-overlay {
  background: linear-gradient(
    to top,
    rgba(5, 15, 30, 0.96) 0%,
    transparent 62%
  );
}
.ponto-name {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
  transition: transform 0.28s ease;
}
.ponto-cat {
  font-size: 0.75rem;
  color: var(--teal-l);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 0.25rem;
  transition: color 0.28s ease;
}
.ponto-img-real {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.55s ease,
    filter 0.4s ease;
}
.ponto-card:hover .ponto-img-real {
  transform: scale(1.06);
  filter: saturate(1.08);
}
.ponto-card:hover .ponto-name {
  transform: translateY(-2px);
}
.ponto-card:hover .ponto-cat {
  color: #53d4ff;
}

/* ── EVENTOS ── */
#eventos {
  background: var(--dark);
}
.eventos-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 900px;
  margin: 3rem auto 0;
}
.evento-item {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  padding: 1.5rem;
  transition:
    transform 0.2s,
    border-color 0.2s;
}
.evento-item:hover {
  transform: translateX(6px);
  border-color: rgba(30, 195, 255, 0.3);
}
.evento-emoji {
  font-size: 2.5rem;
  flex-shrink: 0;
  width: 60px;
  text-align: center;
}
.evento-emoji svg {
  width: 2rem;
  height: 2rem;
  stroke: #1ec3ff;
  stroke-width: 2;
}
.evento-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}
.evento-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}
.evento-video-btn {
  margin-top: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(30, 195, 255, 0.4);
  background: linear-gradient(135deg, #0c5f95, #0069b8);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.65rem 1.05rem;
  border-radius: 10px;
  cursor: pointer;
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    opacity 0.2s;
}
.evento-video-btn svg {
  width: 1rem;
  height: 1rem;
  stroke: #bfefff;
  stroke-width: 2.2;
}
.evento-video-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 26px rgba(30, 195, 255, 0.28);
  opacity: 0.95;
}
.evento-tag {
  margin-left: auto;
  flex-shrink: 0;
  background: rgba(30, 195, 255, 0.12);
  border: 1px solid rgba(30, 195, 255, 0.25);
  color: var(--teal-l);
  font-size: 0.75rem;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  white-space: nowrap;
}

.video-modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 300;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease;
}
.video-modal.is-open {
  opacity: 1;
  visibility: visible;
}
.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 10, 24, 0.72);
  backdrop-filter: blur(5px);
}
.video-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(92vw, 360px);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  padding: 8px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.48);
}
.video-modal-player {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border-radius: 14px;
  background: #000;
}
.video-modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 5;
  pointer-events: auto;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(10, 18, 32, 0.8);
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
}

/* ── FOR WHOM ── */
#publico {
  background: var(--dark2);
}
.publico-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1000px;
  margin: 3rem auto 0;
}
.publico-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 24px;
  padding: 2.5rem;
  transition: transform 0.25s;
}
.publico-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 100, 225, 0.2);
}
.publico-card.accent-teal {
  border-color: rgba(30, 195, 255, 0.3);
  background: rgba(30, 195, 255, 0.06);
}
.publico-card.accent-blue {
  border-color: rgba(0, 105, 225, 0.3);
  background: rgba(0, 105, 225, 0.06);
}
.publico-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.publico-card-emoji {
  font-size: 2.2rem;
}
.publico-card-emoji svg {
  width: 2rem;
  height: 2rem;
  stroke: #1ec3ff;
  stroke-width: 2;
}
.publico-card-title {
  font-size: 1.35rem;
  font-weight: 800;
}
.publico-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.publico-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}
.publico-features li::before {
  content: "✓";
  color: var(--teal-l);
  font-weight: 700;
  flex-shrink: 0;
}

/* ── EQUIPE ── */
#equipe {
  background: var(--dark);
}
.equipe-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 3rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.membro-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  padding: 1.5rem 1.8rem;
  text-align: center;
  min-width: 160px;
  transition:
    transform 0.2s,
    border-color 0.2s;
}
.membro-card:hover {
  transform: translateY(-4px);
  border-color: rgba(30, 195, 255, 0.3);
}
.membro-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 1.3rem;
  font-weight: 800;
  color: white;
  background: linear-gradient(135deg, #1ec3ff, #0069e1);
}
.membro-name {
  font-size: 0.95rem;
  font-weight: 700;
}
.membro-role {
  font-size: 0.78rem;
  color: var(--teal-l);
  margin-top: 0.2rem;
}
.membro-univ {
  font-size: 0.72rem;
  color: var(--gray);
  margin-top: 0.15rem;
}

/* ── CTA FINAL ── */
#download {
  background: linear-gradient(135deg, #001a4a 0%, #0069e1 60%, #0087f0 100%);
  text-align: center;
  padding: 8rem 4vw;
  position: relative;
  overflow: hidden;
}
#download::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  opacity: 0.05;
}
#download .section-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: white;
}
#download .section-sub {
  color: rgba(255, 255, 255, 0.8);
  margin: 0 auto 3rem;
  text-align: center;
}
.cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.btn-white {
  background: white;
  color: var(--blue-d);

  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  padding: 1rem 2.2rem;
  text-decoration: none;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.3);
}

/* ── CONTATO ── */
#contato {
  background: var(--dark2);
}
.contato-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.contato-inner .section-title {
  margin: 0 auto 1rem;
}
.contato-inner .section-sub {
  margin: 0 auto 2.5rem;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
}
.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.cf-field label {
  display: block;
  font-size: 0.8rem;
  color: var(--gray);
  margin-bottom: 0.4rem;
  letter-spacing: 0.04em;
}
.cf-error {
  display: block;
  min-height: 1rem;
  margin-top: 0.38rem;
  font-size: 0.76rem;
  color: #ff8f9b;
  letter-spacing: 0.01em;
}
.cf-field input,
.cf-field textarea,
.cf-field select {
  width: 100%;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: var(--white);

  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
  resize: vertical;
}
.cf-field input:focus,
.cf-field textarea:focus,
.cf-field select:focus {
  border-color: #1ec3ff;
  box-shadow: 0 0 0 3px rgba(30, 195, 255, 0.1);
}
.cf-field select option {
  background: var(--dark2);
}
.cf-field.has-error input,
.cf-field.has-error textarea,
.cf-field.has-error select {
  border-color: rgba(255, 93, 110, 0.8);
  box-shadow: 0 0 0 3px rgba(255, 93, 110, 0.12);
}
.cf-field.has-success input,
.cf-field.has-success textarea,
.cf-field.has-success select {
  border-color: rgba(30, 195, 255, 0.45);
}
.cf-submit {
  background: var(--teal);
  color: white;

  font-size: 1rem;
  font-weight: 500;
  border: none;
  border-radius: 50px;
  padding: 1rem 2rem;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.15s;
}
.cf-submit:hover {
  background: var(--teal-l);
  transform: translateY(-1px);
}

/* ── FOOTER ── */
footer {
  background: #050d1a;
  padding: 3rem 4vw 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-brand .nav-logo {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
}
.footer-brand p {
  font-size: 0.85rem;
  color: var(--gray);
  max-width: 260px;
  line-height: 1.6;
}
.footer-links h4 {
  font-size: 0.85rem;
  margin-bottom: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-links a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--teal-l);
}
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--gray);
}
.footer-bottom a {
  color: var(--gray);
  text-decoration: none;
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ── RESPONSIVE ── */
@media (max-width: 1620px) {
  .hero-mobiles {
    display: none;
  }
}

@media (max-width: 1320px) {
  .hero-visual {
    overflow: hidden;
  }
  .hero-mascote {
    bottom: -40%;
    clip-path: inset(0 0 10% 0);
  }
}

@media (max-width: 1220px) {
  .hero-mascote {
    display: none;
  }
}

@media (max-width: 1024px) {
  nav {
    justify-content: flex-start;
  }
  .nav-links {
    display: none;
  }
  .nav-actions {
    margin-left: auto;
  }
  .nav-mobile-toggle {
    display: block;
    margin-left: 0.65rem;
  }
}

@media (max-width: 900px) {
  .hero-visual {
    display: none;
  }
  .about-grid,
  .publico-grid {
    grid-template-columns: 1fr;
  }
  .feat-grid {
    grid-template-columns: 1fr 1fr;
  }
  .feat-card.featured {
    grid-column: span 2;
  }
  .pontos-grid {
    grid-template-columns: 1fr 1fr;
  }
  .cf-row {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .nav-actions {
    display: none;
  }
  .nav-mobile-toggle {
    display: block;
    margin-left: auto;
  }
  .feat-grid {
    grid-template-columns: 1fr;
  }
  .feat-card.featured {
    grid-column: span 1;
  }
  .pontos-grid {
    grid-template-columns: 1fr;
  }
  section {
    padding: 5rem 5vw;
  }
  .pontos-header {
    margin-bottom: 2rem;
  }
  .evento-item {
    flex-direction: column;
    align-items: flex-start;
  }
  .evento-tag {
    margin-left: 0;
  }
  .equipe-grid {
    gap: 1rem;
  }
}
