/* =========================================================================
   Organiza Representa — folha de estilos principal
   Paleta extraída da logomarca:
     --navy       #0E366F  (azul-marinho, textos fortes / rodapé)
     --blue       #1E63A8  (azul principal, ações)
     --blue-light #3B90D5  (azul claro, detalhes)
     --sky        #EAF4FC  (fundo suave)
     --orange     #FD7B2D  (cor de destaque / CTA)
   ========================================================================= */

:root {
  --navy: #0e366f;
  --navy-dark: #0a2a56;
  --blue: #1e63a8;
  --blue-light: #3b90d5;
  --blue-pale: #8bbfeb;
  --sky: #eef6fd;
  --orange: #fd7b2d;
  --orange-dark: #e3620f;
  --ink: #142433;
  --ink-soft: #4d5c6b;
  --line: #e1e9f2;
  --white: #ffffff;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 10px 30px rgba(14, 54, 111, 0.12);
  --shadow-sm: 0 4px 14px rgba(14, 54, 111, 0.08);
  --container: 1180px;
  --font: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { margin: 0 0 .5em; color: var(--navy); line-height: 1.2; }
p { margin: 0 0 1em; color: var(--ink-soft); }

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

.section { padding: 72px 0; }
.section--tight { padding: 48px 0; }
.section--sky { background: var(--sky); }
.section--navy { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%); color: var(--white); }
.section--navy p { color: rgba(255,255,255,.82); }
.section--navy h2 { color: var(--white); }

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}

.section-head { max-width: 640px; margin: 0 auto 40px; text-align: center; }
.section-head h2 { font-size: clamp(24px, 3vw, 34px); }
.section-head p { font-size: 16px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--orange { background: var(--orange); color: var(--white); box-shadow: 0 8px 20px rgba(253,123,45,.35); }
.btn--orange:hover { background: var(--orange-dark); }
.btn--outline { border-color: rgba(255,255,255,.55); color: var(--white); }
.btn--outline:hover { background: rgba(255,255,255,.12); }
.btn--navy { background: var(--navy); color: var(--white); }
.btn--navy:hover { background: var(--navy-dark); }
.btn--ghost { border-color: var(--line); color: var(--navy); background: var(--white); }
.btn--ghost:hover { border-color: var(--blue-light); }
.btn--sm { padding: 8px 16px; font-size: 13px; }
.btn--block { width: 100%; justify-content: center; }
.btn svg { width: 18px; height: 18px; flex: none; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}
.brand { display: flex; align-items: center; gap: 10px; min-width: 0; flex: 1 1 auto; }
.brand img { height: 48px; width: auto; flex: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; min-width: 0; overflow: hidden; }
.brand-text strong { color: var(--navy); font-size: 17px; letter-spacing: .01em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.brand-text span { color: var(--blue-light); font-size: 12px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.nav { display: flex; align-items: center; gap: 30px; }
.nav-links { display: flex; gap: 26px; }
.nav-links a {
  font-weight: 600;
  font-size: 15px;
  color: var(--navy);
  position: relative;
  padding: 6px 0;
}
.nav-links a::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px; background: var(--orange);
  transform: scaleX(0); transform-origin: left;
  transition: transform .2s ease;
}
.nav-links a:hover::after { transform: scaleX(1); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-social { display: flex; gap: 10px; }
.nav-social a {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--sky); color: var(--navy);
  transition: background .15s ease, color .15s ease;
}
.nav-social a:hover { background: var(--orange); color: var(--white); }
.nav-social svg { width: 18px; height: 18px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--navy); border-radius: 2px; }

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 120%);
  color: var(--white);
  position: relative;
  overflow: hidden;
  padding: 70px 0 0;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.14) 2px, transparent 2px);
  background-size: 26px 26px;
  opacity: .35;
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center; padding-bottom: 56px; }
.hero-kicker {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.3);
  padding: 7px 14px; border-radius: 999px; font-size: 13px; font-weight: 700;
  margin-bottom: 20px;
}
.hero-kicker .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); }
.hero h1 { color: var(--white); font-size: clamp(30px, 4.2vw, 46px); margin-bottom: 18px; }
.hero h1 span { color: var(--orange); }
.hero p.lead { color: rgba(255,255,255,.86); font-size: 17px; max-width: 480px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.hero-stats { display: flex; gap: 28px; margin-top: 44px; flex-wrap: wrap; }
.hero-stats div strong { display: block; font-size: 26px; color: var(--white); }
.hero-stats div span { font-size: 13px; color: rgba(255,255,255,.7); }
.hero-art {
  background: var(--white);
  border-radius: 20px;
  padding: 26px;
  box-shadow: var(--shadow);
}
.hero-art img { border-radius: 12px; width: 100%; }

/* ---------- Carousel ---------- */
.carousel-wrap { background: var(--white); }
.carousel {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 2.5 / 1;
  background: var(--sky);
}
.carousel-track { position: absolute; inset: 0; }
.carousel-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity .6s ease;
}
.carousel-slide.is-active { opacity: 1; }
.carousel-slide img { width: 100%; height: 100%; object-fit: cover; }
.carousel-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(14,54,111,.55); color: var(--white);
  border: none; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background .15s ease;
  z-index: 2;
}
.carousel-btn:hover { background: var(--orange); }
.carousel-btn.prev { left: 16px; }
.carousel-btn.next { right: 16px; }
.carousel-btn svg { width: 20px; height: 20px; }
.carousel-dots {
  position: absolute; bottom: 16px; left: 0; right: 0;
  display: flex; justify-content: center; gap: 8px; z-index: 2;
}
.carousel-dots button {
  width: 9px; height: 9px; border-radius: 50%;
  background: rgba(255,255,255,.55); border: none; cursor: pointer; padding: 0;
}
.carousel-dots button.is-active { background: var(--orange); width: 22px; border-radius: 5px; }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 24px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease;
  display: flex;
  flex-direction: column;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card-img { aspect-ratio: 4/3; overflow: hidden; background: var(--sky); }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.card:hover .card-img img { transform: scale(1.06); }
.card-body { padding: 18px 20px 22px; flex: 1; display: flex; flex-direction: column; }
.card-body h3 { font-size: 17px; margin-bottom: 6px; }
.card-body p { font-size: 14px; margin-bottom: 14px; flex: 1; }
.card-tag {
  display: inline-block; align-self: flex-start;
  background: var(--sky); color: var(--blue);
  font-size: 12px; font-weight: 700; padding: 4px 10px; border-radius: 999px;
  margin-bottom: 10px;
}

.cat-card { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); aspect-ratio: 4/3; }
.cat-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.cat-card:hover img { transform: scale(1.08); }
.cat-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(10,32,64,.82) 0%, rgba(10,32,64,.15) 55%, rgba(10,32,64,0) 100%);
}
.cat-card-label {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 1;
  padding: 18px;
  color: var(--white);
}
.cat-card-label h3 { color: var(--white); font-size: 17px; margin-bottom: 2px; }
.cat-card-label span { font-size: 12.5px; color: rgba(255,255,255,.82); }

/* ---------- About / diferenciais ---------- */
.about-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 48px; align-items: center; }
.feature-list { display: grid; gap: 18px; margin-top: 26px; }
.feature {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 16px 18px;
}
.feature .ico {
  flex: none; width: 42px; height: 42px; border-radius: 10px;
  background: var(--sky); color: var(--blue); display: flex; align-items: center; justify-content: center;
}
.feature .ico svg { width: 22px; height: 22px; }
.feature h4 { margin: 0 0 4px; font-size: 15.5px; color: var(--navy); }
.feature p { margin: 0; font-size: 13.5px; }
.about-photo { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }

/* ---------- Catalog filter (catalogo.html) ---------- */
.catalog-hero {
  background: linear-gradient(120deg, var(--navy), var(--blue));
  color: var(--white);
  padding: 54px 0 40px;
}
.catalog-hero h1 { color: var(--white); font-size: clamp(26px,3.6vw,38px); }
.catalog-hero p { color: rgba(255,255,255,.85); max-width: 560px; }

.filter-bar {
  display: flex; flex-wrap: wrap; gap: 10px;
  padding: 22px 0; position: sticky; top: 78px; background: var(--white);
  z-index: 100; border-bottom: 1px solid var(--line);
}
.filter-chip {
  border: 1.5px solid var(--line);
  background: var(--white);
  color: var(--navy);
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
  transition: all .15s ease;
}
.filter-chip:hover { border-color: var(--blue-light); }
.filter-chip.is-active { background: var(--navy); border-color: var(--navy); color: var(--white); }

.cat-block { padding: 46px 0; border-bottom: 1px solid var(--line); }
.cat-block:last-child { border-bottom: none; }
.cat-block-head { display: flex; align-items: center; gap: 16px; margin-bottom: 26px; }
.cat-block-head img { width: 64px; height: 64px; object-fit: cover; border-radius: 12px; }
.cat-block-head h2 { margin: 0; font-size: 22px; }
.cat-block-head p { margin: 2px 0 0; font-size: 13.5px; }

.product-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; box-shadow: var(--shadow-sm); }
.product-card .card-img { aspect-ratio: 1/1; }
.product-card .card-body { padding: 14px 16px 16px; }
.product-card h3 { font-size: 14.5px; }
.product-card p { font-size: 12.5px; margin-bottom: 0; }

/* ---------- Bebidas strip ---------- */
.bebidas-strip { padding-bottom: 60px; }

/* ---------- Pedido / order callout ---------- */
.order-box {
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  background: var(--white); border: 1px dashed var(--blue-light);
  border-radius: var(--radius); padding: 26px 28px; margin-top: 40px;
}
.order-box h3 { margin-bottom: 4px; }
.order-box p { margin: 0; font-size: 13.5px; max-width: 480px; }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: var(--orange);
  border-radius: var(--radius);
  padding: 42px 40px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  color: var(--white);
}
.cta-banner h2 { color: var(--white); margin-bottom: 6px; font-size: 24px; }
.cta-banner p { color: rgba(255,255,255,.9); margin: 0; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; }
.contact-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius);
  padding: 26px;
  text-align: center;
  transition: background .15s ease, transform .15s ease;
}
.contact-card:hover { background: rgba(255,255,255,.12); transform: translateY(-3px); }
.contact-card .ico {
  width: 54px; height: 54px; border-radius: 50%; margin: 0 auto 14px;
  background: var(--orange); display: flex; align-items: center; justify-content: center;
}
.contact-card .ico svg { width: 26px; height: 26px; color: var(--white); }
.contact-card h4 { color: var(--white); margin-bottom: 4px; }
.contact-card p { color: rgba(255,255,255,.75); font-size: 13.5px; margin-bottom: 14px; }

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 900;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366; color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 26px rgba(37,211,102,.45);
  transition: transform .15s ease;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-dark); color: rgba(255,255,255,.75); padding: 54px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 36px; padding-bottom: 36px; }
.footer-brand img { height: 44px; margin-bottom: 12px; }
.footer-brand p { color: rgba(255,255,255,.65); font-size: 13.5px; max-width: 260px; }
.footer-social { display: flex; gap: 10px; margin-top: 14px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center; color: var(--white);
  transition: background .15s ease;
}
.footer-social a:hover { background: var(--orange); }
.footer-social svg { width: 17px; height: 17px; }
.footer-col h5 { color: var(--white); font-size: 13.5px; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 16px; }
.footer-col ul { display: grid; gap: 10px; }
.footer-col a { font-size: 14px; color: rgba(255,255,255,.72); }
.footer-col a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 20px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  font-size: 12.5px; color: rgba(255,255,255,.55);
}
.footer-bottom a { color: rgba(255,255,255,.55); }
.footer-bottom a:hover { color: var(--orange); }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.empty-note {
  text-align: center; padding: 30px; color: var(--ink-soft);
  border: 1px dashed var(--line); border-radius: var(--radius-sm);
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-art { order: -1; }
  .about-grid { grid-template-columns: 1fr; }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .nav-links, .nav-social { display: none; }
  .nav-toggle { display: flex; flex: none; }
  .nav-actions { flex: none; }
  .site-header.is-open .nav-links {
    display: flex; flex-direction: column; gap: 4px;
    position: absolute; top: 78px; left: 0; right: 0;
    background: var(--white); padding: 16px 24px; border-bottom: 1px solid var(--line);
  }
  .site-header.is-open .nav-social {
    display: flex; position: absolute; top: 100%; left: 24px; margin-top: 220px;
  }
  .grid--4, .grid--3 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 26px; }
  .cta-banner, .order-box { flex-direction: column; align-items: flex-start; text-align: left; }
  .filter-bar { top: 0; overflow-x: auto; flex-wrap: nowrap; }
}

@media (max-width: 480px) {
  .grid--4, .grid--3 { grid-template-columns: 1fr 1fr; }
  .hero { padding-top: 40px; }
  .section { padding: 52px 0; }
  .brand-text span { display: none; }
  .brand-text strong { max-width: 34vw; }
  .btn--header-wa .btn-label { display: none; }
  .btn--header-wa { padding: 10px 12px; }
}
