/* =========================================================
   S.S Mariscos — Estilos
   Paleta: Azul Marinho + Branco + Azul Claro + Laranja
   ========================================================= */

:root {
  --navy:        #0B2545;
  --navy-deep:   #06182F;
  --navy-soft:   #13345c;
  --sky:         #5AA9D6;
  --sky-light:   #A9D6EF;
  --sky-bg:      #EAF4FB;
  --orange:      #FF7A18;
  --orange-dark: #E86A00;
  --white:       #FFFFFF;
  --ink:         #0B2545;
  --muted:       #5B6B7D;
  --line:        #E4EAF0;

  --radius:      18px;
  --radius-sm:   12px;
  --shadow-sm:   0 6px 20px rgba(11, 37, 69, .08);
  --shadow-md:   0 14px 40px rgba(11, 37, 69, .12);
  --shadow-lg:   0 24px 60px rgba(11, 37, 69, .18);
  --maxw:        1180px;
  --ease:        cubic-bezier(.2, .7, .2, 1);
}

/* ---------- Reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: 'Poppins', sans-serif; line-height: 1.15; color: var(--navy); }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

/* ---------- Tipografia de seção ---------- */
.section { padding: 92px 0; position: relative; }
.section--soft { background: var(--sky-bg); }
.section--navy { background: var(--navy); }
.section__head { text-align: center; max-width: 720px; margin: 0 auto 54px; }
.section__head h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); }
.section__lead { color: var(--muted); margin-top: 12px; font-size: 1.05rem; }

.kicker {
  display: inline-block; font-family: 'Poppins', sans-serif; font-weight: 700;
  font-size: .78rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 12px;
}
.kicker--light { color: var(--sky-light); }

/* ---------- Botões ---------- */
.btn {
  --btn-bg: var(--orange); --btn-fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  background: var(--btn-bg); color: var(--btn-fg);
  font-family: 'Poppins', sans-serif; font-weight: 600; font-size: .98rem;
  padding: 14px 26px; border-radius: 999px; border: 0; cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s;
  box-shadow: 0 8px 22px rgba(255, 122, 24, .28);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(255, 122, 24, .38); }
.btn:active { transform: translateY(-1px); }
.btn--orange { --btn-bg: var(--orange); }
.btn--orange:hover { background: var(--orange-dark); }
.btn--navy { --btn-bg: var(--navy); box-shadow: 0 8px 22px rgba(11, 37, 69, .25); }
.btn--navy:hover { background: var(--navy-deep); box-shadow: 0 14px 30px rgba(11, 37, 69, .35); }
.btn--white { --btn-bg: #fff; --btn-fg: var(--navy); box-shadow: 0 8px 22px rgba(0,0,0,.15); }
.btn--ghost {
  background: rgba(255,255,255,.12); color: #fff; backdrop-filter: blur(4px);
  border: 1.5px solid rgba(255,255,255,.55); box-shadow: none;
}
.btn--ghost:hover { background: rgba(255,255,255,.22); box-shadow: none; }
.btn--lg { padding: 17px 34px; font-size: 1.05rem; }
.btn--sm { padding: 10px 18px; font-size: .9rem; }
.btn--block { width: 100%; }

/* =========================================================
   HEADER
   ========================================================= */
.header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 100;
  background: rgba(255,255,255,.85); backdrop-filter: blur(10px);
  transition: box-shadow .3s, background .3s, padding .3s;
}
.header.scrolled { box-shadow: var(--shadow-sm); background: rgba(255,255,255,.95); }
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }

.brand { display: flex; align-items: center; gap: 10px; font-family: 'Poppins', sans-serif; }
.brand__logo { display: none; height: 46px; width: auto; }
.brand.has-logo .brand__logo { display: block; }
.brand.has-logo .brand__mark, .brand.has-logo .brand__text { display: none; }
.footer__logo { display: none; height: 116px; width: auto; margin-bottom: 10px; }
.footer__brand.has-logo .footer__logo { display: block; }
.footer__brand.has-logo .brand__text--light { display: none; }
.brand__mark {
  display: grid; place-items: center; width: 40px; height: 40px; border-radius: 12px;
  background: linear-gradient(135deg, var(--navy), var(--sky)); color: #fff;
}
.brand__text { font-size: 1.28rem; font-weight: 600; color: var(--navy); letter-spacing: .3px; }
.brand__text strong { color: var(--orange); font-weight: 800; }
.brand__text--light { color: #fff; }
.brand__text--light strong { color: var(--sky-light); }

.nav { display: flex; align-items: center; gap: 26px; }
.nav a {
  font-weight: 500; font-size: .98rem; color: var(--navy); position: relative;
  transition: color .2s;
}
.nav a:not(.nav__cta)::after {
  content: ''; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px;
  background: var(--orange); transition: width .25s var(--ease);
}
.nav a:not(.nav__cta):hover { color: var(--orange); }
.nav a:not(.nav__cta):hover::after { width: 100%; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px;
}
.nav-toggle span { width: 26px; height: 2.5px; background: var(--navy); border-radius: 3px; transition: .3s var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* =========================================================
   HERO
   ========================================================= */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; color: #fff; overflow: hidden; }
.hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(90,169,214,.35), transparent 60%),
    linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 45%, var(--navy-soft) 100%);
}
/* Textura sutil de "água"/imagem opcional: coloque assets/img/hero.jpg */
.hero__overlay {
  position: absolute; inset: 0;
  background-image: url('../assets/img/hero.jpg');
  background-size: cover; background-position: center;
  opacity: .32; mix-blend-mode: luminosity;
}
.hero__grid {
  position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr;
  gap: 50px; align-items: center; padding-top: 96px; padding-bottom: 118px;
}
.hero__content { max-width: 620px; }

/* ---- Arte do hero (medalhão + camarão transparente) ---- */
.hero__art { position: relative; display: grid; place-items: center; min-height: 380px; }
.hero__glow {
  position: absolute; width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle at 50% 45%, rgba(90,169,214,.55), rgba(255,122,24,.18) 55%, transparent 70%);
  filter: blur(10px); z-index: 0;
  animation: glow-pulse 7s ease-in-out infinite;
}
@keyframes glow-pulse { 0%,100% { transform: scale(1); opacity: .9; } 50% { transform: scale(1.08); opacity: 1; } }

/* Medalhão (fallback elegante enquanto não há ilustração) */
.hero__medallion {
  position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center;
  gap: 8px; padding: 54px 46px; border-radius: 26px;
  background: linear-gradient(160deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
  border: 1px solid rgba(169,214,239,.28); backdrop-filter: blur(6px);
  box-shadow: 0 20px 50px rgba(0,0,0,.28); text-align: center;
  animation: float-soft 6s ease-in-out infinite;
}
.hero__medallion svg { color: var(--sky-light); }
.hero__medallion-title { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1.9rem; color: #fff; letter-spacing: .5px; }
.hero__medallion-title strong { color: var(--orange); font-weight: 800; }
.hero__medallion-sub { font-size: .8rem; letter-spacing: .16em; text-transform: uppercase; color: var(--sky-light); }
@keyframes float-soft { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* Camarão transparente (sem moldura, fundido no azul com brilho por trás) */
.hero__shrimp {
  position: relative; z-index: 1; max-width: 100%; width: 520px;
  filter: drop-shadow(0 20px 34px rgba(0,0,0,.45));
  animation: float-soft 6s ease-in-out infinite;
}
.hero__art.has-art .hero__medallion { display: none; }
.hero__art.has-art { min-height: auto; }
.hero__eyebrow {
  font-family: 'Poppins', sans-serif; font-weight: 600; letter-spacing: .18em;
  text-transform: uppercase; font-size: .82rem; color: var(--sky-light); margin-bottom: 18px;
}
.hero__title { font-size: clamp(2.1rem, 5.5vw, 3.7rem); font-weight: 800; color: #fff; }
.hero__title span { color: var(--orange); }
.hero__sub { font-size: clamp(1.02rem, 2vw, 1.2rem); color: rgba(255,255,255,.85); margin: 22px 0 34px; max-width: 620px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; }
.hero__badges { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 38px; }
.hero__badges li { font-size: .95rem; color: rgba(255,255,255,.9); font-weight: 500; }

.wave-divider { position: absolute; bottom: -1px; left: 0; width: 100%; height: 90px; display: block; }

/* =========================================================
   SOBRE
   ========================================================= */
.about { display: grid; grid-template-columns: 1fr 1.05fr; gap: 56px; align-items: center; }
.about__text h2 { font-size: clamp(1.7rem, 3.5vw, 2.5rem); margin-bottom: 18px; }
.about__text p { color: var(--muted); margin-bottom: 16px; }
.about__list { margin: 22px 0 30px; display: grid; gap: 12px; }
.about__list li { position: relative; padding-left: 30px; font-weight: 500; }
.about__list li::before {
  content: '✓'; position: absolute; left: 0; top: 0;
  width: 20px; height: 20px; border-radius: 50%; background: var(--orange); color: #fff;
  display: grid; place-items: center; font-size: .72rem; font-weight: 700;
}

/* ---------- Cartão de visita (showcase) ---------- */
.card-show { position: relative; }
.card-show img {
  width: 100%; border-radius: 16px; box-shadow: var(--shadow-lg);
  transform: rotate(2.5deg); transition: transform .5s var(--ease);
}
.card-show img:hover { transform: rotate(0deg) scale(1.02); }
.card-show::before {
  content: ''; position: absolute; inset: -14px -14px 14px 14px; z-index: -1;
  background: linear-gradient(135deg, var(--sky-light), var(--orange));
  border-radius: 20px; opacity: .25; filter: blur(6px);
}

/* ---------- Image slots (placeholders elegantes) ---------- */
.img-slot {
  position: relative; border-radius: var(--radius); overflow: hidden;
  background: linear-gradient(135deg, var(--sky-bg), #dcebf7);
  box-shadow: var(--shadow-md); min-height: 320px;
}
.img-slot img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.img-slot--about { aspect-ratio: 4/3.4; }
.img-slot--empty::after {
  content: attr(data-emoji); position: absolute; inset: 0; display: grid; place-items: center;
  font-size: 4.5rem; opacity: .5;
}
.img-slot--empty[data-label]::before {
  content: attr(data-label); position: absolute; bottom: 16px; left: 0; right: 0; text-align: center;
  font-size: .82rem; color: var(--navy); opacity: .55; padding: 0 12px;
}
.img-slot--round { border-radius: 50%; aspect-ratio: 1; max-width: 320px; margin: 0 auto; min-height: 0; }

/* =========================================================
   PRODUTOS
   ========================================================= */
.products { display: flex; flex-wrap: wrap; justify-content: center; gap: 26px; }
.product {
  flex: 1 1 300px; max-width: 350px;
  background: #fff; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  display: flex; flex-direction: column;
}
.product:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.product__media { min-height: 210px; border-radius: 0; }
.product__media.img-slot { box-shadow: none; }
.product:hover .product__media img { transform: scale(1.06); }
.product__media img { transition: transform .5s var(--ease); }
.product__body { padding: 22px 22px 26px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.product__body h3 { font-size: 1.3rem; }
.product__body p { color: var(--muted); font-size: .95rem; flex: 1; }
.product__body .btn { margin-top: 6px; }

/* =========================================================
   PROMO
   ========================================================= */
.promo { background: linear-gradient(120deg, var(--orange), var(--orange-dark)); color: #fff; padding: 54px 0; }
.promo__inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.promo__tag { background: rgba(255,255,255,.25); padding: 5px 14px; border-radius: 999px; font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; }
.promo__title { color: #fff; font-size: 1.9rem; margin: 12px 0 6px; }

/* =========================================================
   DIFERENCIAIS
   ========================================================= */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 28px; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.feature__ico { font-size: 2.2rem; display: block; margin-bottom: 14px; }
.feature h3 { font-size: 1.18rem; margin-bottom: 8px; }
.feature p { color: var(--muted); font-size: .95rem; }

/* =========================================================
   CONSULTORA
   ========================================================= */
.consultant { display: grid; grid-template-columns: .8fr 1.1fr; gap: 56px; align-items: center; }
.consultant__info h2 { color: #fff; font-size: clamp(1.7rem, 3.5vw, 2.4rem); margin-bottom: 14px; }
.consultant__name { font-family: 'Poppins', sans-serif; font-size: 1.5rem; font-weight: 700; color: #fff; margin-top: 8px; }
.consultant__role { color: var(--sky-light); font-weight: 500; margin-bottom: 16px; }
.consultant__text { color: rgba(255,255,255,.82); margin-bottom: 26px; max-width: 520px; }
.consultant__photo .img-slot { background: linear-gradient(135deg, var(--navy-soft), var(--sky)); }

/* =========================================================
   DEPOIMENTOS
   ========================================================= */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial { background: #fff; border-radius: var(--radius); padding: 30px 28px; box-shadow: var(--shadow-sm); }
.testimonial .stars { color: #FFB800; letter-spacing: 3px; margin-bottom: 12px; }
.testimonial p { font-style: italic; color: var(--ink); margin-bottom: 16px; }
.testimonial footer { color: var(--muted); font-weight: 600; font-size: .92rem; }

/* =========================================================
   LOCALIZAÇÃO
   ========================================================= */
.location { display: grid; grid-template-columns: 1fr 1.15fr; gap: 48px; align-items: center; }
.location__list { display: grid; gap: 14px; margin: 22px 0 28px; }
.location__list li { padding-left: 4px; color: var(--muted); }
.location__list strong { color: var(--navy); }
.location__map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
.location__map iframe { width: 100%; height: 380px; border: 0; display: block; }

/* =========================================================
   RODAPÉ
   ========================================================= */
.footer { background: var(--navy-deep); color: rgba(255,255,255,.75); }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; padding: 64px 22px 40px; }
.footer__brand p { margin-top: 14px; max-width: 340px; font-size: .95rem; }
.footer__col h4 { color: #fff; margin-bottom: 16px; font-size: 1.05rem; }
.footer__col ul { display: grid; gap: 10px; }
.footer__col a { transition: color .2s; }
.footer__col a:hover { color: var(--orange); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0; font-size: .88rem; text-align: center; }

/* =========================================================
   WHATSAPP FLUTUANTE
   ========================================================= */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 200;
  width: 62px; height: 62px; border-radius: 50%;
  background: #25D366; color: #fff; display: grid; place-items: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, .45); cursor: pointer;
  transition: transform .25s var(--ease); animation: wa-in .4s var(--ease) .8s both;
}
.wa-float:hover { transform: scale(1.1); }
.wa-float__pulse {
  position: absolute; inset: 0; border-radius: 50%; background: #25D366;
  z-index: -1; animation: wa-pulse 2.4s ease-out infinite;
}
@keyframes wa-pulse { 0% { transform: scale(1); opacity: .6; } 100% { transform: scale(1.8); opacity: 0; } }
@keyframes wa-in { from { transform: scale(0); } to { transform: scale(1); } }

/* =========================================================
   ANIMAÇÕES AO ROLAR
   ========================================================= */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in-view { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .wa-float, .wa-float__pulse { animation: none; }
  html { scroll-behavior: auto; }
}

/* =========================================================
   RESPONSIVO
   ========================================================= */
@media (max-width: 980px) {
  .products { grid-template-columns: repeat(2, 1fr); }
  .features, .testimonials { grid-template-columns: repeat(2, 1fr); }
  .about, .consultant, .location { grid-template-columns: 1fr; gap: 36px; }
  .consultant__photo { order: -1; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .hero { min-height: auto; }
  .hero__grid { grid-template-columns: 1fr; gap: 40px; text-align: center; padding-top: 120px; padding-bottom: 130px; }
  .hero__content { max-width: 640px; margin: 0 auto; }
  .hero__actions, .hero__badges { justify-content: center; }
  .hero__card { max-width: 520px; margin: 0 auto; }
  .card-show img { transform: rotate(0deg); }
}

@media (max-width: 720px) {
  .section { padding: 66px 0; }
  .nav {
    position: fixed; top: 72px; right: 0; width: min(78vw, 320px); height: calc(100vh - 72px);
    background: #fff; flex-direction: column; align-items: flex-start; gap: 4px;
    padding: 26px; box-shadow: var(--shadow-lg); transform: translateX(105%);
    transition: transform .35s var(--ease);
  }
  .nav.open { transform: translateX(0); }
  .nav a { width: 100%; padding: 12px 4px; border-bottom: 1px solid var(--line); }
  .nav a:not(.nav__cta)::after { display: none; }
  .nav__cta { margin-top: 12px; border-bottom: 0 !important; }
  .nav-toggle { display: flex; }
  .hero { min-height: 92vh; }
  .hero__badges { gap: 14px; }
  .footer__grid { grid-template-columns: 1fr; gap: 30px; text-align: left; }
}

@media (max-width: 480px) {
  .products, .features, .testimonials { grid-template-columns: 1fr; }
  .btn--lg { padding: 15px 26px; }
  .hero__actions .btn { width: 100%; }
}
