/* ===== Pescamais — Landing Page ===== */

:root {
  --navy: #14335c;
  --navy-dark: #0d2340;
  --orange: #f2701c;
  --orange-dark: #d9600a;
  --sunset-1: #ff8a3d;
  --sunset-2: #ffcf5c;
  --sky: #eef5fc;
  --white: #ffffff;
  --gray-900: #1c2733;
  --gray-600: #5b6b7c;
  --gray-200: #e3e9f0;
  --radius: 14px;
  --shadow: 0 12px 30px rgba(13, 35, 64, 0.12);
  --container: 1140px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, Arial, sans-serif;
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
}
.skip-link:focus {
  left: 12px;
  top: 12px;
  background: var(--white);
  padding: 8px 12px;
  border-radius: 8px;
  z-index: 999;
}

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--gray-200);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
}

.brand-logo { height: 68px; }

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-weight: 600;
  font-size: 15px;
}

.nav a { color: var(--navy); transition: color 0.2s; }
.nav a:hover { color: var(--orange); }

.nav-cta {
  background: var(--orange);
  color: var(--white) !important;
  padding: 10px 18px;
  border-radius: 999px;
}
.nav-cta:hover { background: var(--orange-dark); color: var(--white) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  width: 100%;
  height: 3px;
  background: var(--navy);
  border-radius: 2px;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  filter: saturate(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 35, 64, 0.88) 0%, rgba(13, 35, 64, 0.82) 40%, rgba(13, 35, 64, 0.94) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 720px;
  padding-top: 80px;
  padding-bottom: 80px;
}

.badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--sunset-2);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(34px, 5.5vw, 56px);
  line-height: 1.1;
  margin-bottom: 18px;
  font-weight: 800;
}

.hero-lead {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
  max-width: 620px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 22px;
}

.hero-note {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  max-width: 560px;
}
.hero-note.light { color: var(--gray-600); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  transition: transform 0.15s, background 0.2s, box-shadow 0.2s;
}
.btn .icon { width: 20px; height: 20px; fill: currentColor; }

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(242, 112, 28, 0.35);
}
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.5);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.12); transform: translateY(-2px); }

.btn-on-dark { border-color: rgba(255,255,255,0.4); }

/* ===== Sections ===== */
.section { padding: 90px 0; }
.section-alt { background: var(--sky); }

.eyebrow {
  display: inline-block;
  color: var(--orange);
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 12px;
}

.section h2 {
  font-size: clamp(26px, 3.6vw, 38px);
  color: var(--navy-dark);
  font-weight: 800;
  margin-bottom: 16px;
  max-width: 720px;
}

.section-lead {
  color: var(--gray-600);
  font-size: 17px;
  max-width: 680px;
  margin-bottom: 44px;
}

.disclaimer-inline {
  margin-top: 34px;
  font-size: 13px;
  color: var(--gray-600);
  background: var(--sky);
  border-left: 3px solid var(--orange);
  padding: 14px 18px;
  border-radius: 0 10px 10px 0;
  max-width: 780px;
}
.section-alt .disclaimer-inline { background: var(--white); }

/* ===== Cards ===== */
.grid-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.card-icon { font-size: 28px; margin-bottom: 14px; }

.card h3 { font-size: 18px; color: var(--navy-dark); margin-bottom: 8px; }
.card p { color: var(--gray-600); font-size: 15px; }

/* ===== Como funciona ===== */
.grid-two {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.method-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
}
.method-card h3 { color: var(--navy-dark); margin-bottom: 18px; font-size: 19px; }

.check-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--gray-900);
  font-size: 15px;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--orange);
  font-weight: 800;
}

/* ===== Gallery ===== */
.gallery { padding: 0 0 90px; }
.gallery-grid, .funcionalidades-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-grid img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: var(--radius);
}

.funcionalidades-grid img{
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: var(--radius);
}

/* ===== CTA box ===== */
.cta-box {
  margin-top: 20px;
  background: linear-gradient(120deg, var(--navy) 0%, var(--navy-dark) 100%);
  border-radius: var(--radius);
  padding: 34px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  color: var(--white);
}
.cta-box h3 { font-size: 20px; margin-bottom: 6px; }
.cta-box p { color: rgba(255, 255, 255, 0.75); font-size: 14px; }

/* ===== Download ===== */
.section-download {
  background: radial-gradient(circle at top, var(--navy) 0%, var(--navy-dark) 60%);
  color: var(--white);
  text-align: center;
}
.download-inner { display: flex; flex-direction: column; align-items: center; }
.download-logo { height: 117px; margin-bottom: 20px; }
.section-download h2 { color: var(--white); }
.section-download .section-lead { color: rgba(255, 255, 255, 0.75); margin: 0 auto 36px; text-align: center; }

.store-buttons { margin-bottom: 20px; }
.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  padding: 12px 22px;
  color: var(--white);
}
.store-btn .icon { width: 26px; height: 26px; fill: var(--sunset-2); }
.store-btn small { display: block; font-size: 11px; opacity: 0.75; }
.store-btn strong { display: block; font-size: 17px; }
.store-btn-disabled { opacity: 0.85; cursor: default; }

.section-download .hero-note { margin: 0 auto 24px; text-align: center; }

/* ===== Footer ===== */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 60px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.footer-logo { height: 57px; margin-bottom: 14px; filter: brightness(1.1); }
.footer-brand p { font-size: 14px; color: rgba(255, 255, 255, 0.6); max-width: 260px; }

.footer-col h4 {
  color: var(--white);
  font-size: 14px;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 10px;
}
.footer-col a:hover { color: var(--sunset-2); }

.footer-legal {
  padding: 26px 24px 30px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}
.footer-legal p { margin-bottom: 8px; max-width: 900px; }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .grid-cards { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid img:nth-child(3) { display: none; }
}

@media (max-width: 720px) {
  .nav-toggle { display: flex; }
  .nav {
    position: absolute;
    top: 88px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 16px 24px 24px;
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow);
    display: none;
  }
  .nav.open { display: flex; }
  .nav a { width: 100%; padding: 10px 0; }
  .nav-cta { display: inline-block; margin-top: 8px; text-align: center; }

  .grid-cards { grid-template-columns: 1fr; }
  .grid-two { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid img:nth-child(3) { display: block; }
  .funcionalidades-grid { grid-template-columns: 1fr; }

  .cta-box { flex-direction: column; align-items: flex-start; }
  .footer-inner { grid-template-columns: 1fr; }
}
