/* ================================
   LUREGI SOLUÇÕES — style.css
   ================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Inter:wght@400;500;600&display=swap');

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', sans-serif;
  color: #1a2d42;
  background: #fff;
  line-height: 1.65;
  overflow-x: hidden;
}

/* ── CSS VARIABLES ── */
:root {
  --cyan:      #7cd3db;
  --navy:      #243c5b;
  --light-bg:  #edf9fa;
  --muted:     #6e8094;
  --green-wa:  #25D366;
  --white:     #ffffff;
  --shadow:    0 4px 20px rgba(36,60,91,.10);
  --shadow-md: 0 8px 32px rgba(36,60,91,.14);
  --radius:    12px;
  --radius-sm: 8px;
  --max-w:     1200px;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 { font-family: 'Plus Jakarta Sans', sans-serif; line-height: 1.2; }
h1 { font-size: clamp(32px, 5vw, 42px); font-weight: 700; }
h2 { font-size: clamp(24px, 3.5vw, 30px); font-weight: 600; }
h3 { font-size: clamp(18px, 2.5vw, 21px); font-weight: 600; }
p  { font-size: 16px; color: #3a4e65; }

a { text-decoration: none; color: inherit; }

img { max-width: 100%; display: block; }
.logo img, .footer-brand img { max-width: none; }

/* ── LAYOUT HELPERS ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 80px 0; }

.section-title {
  text-align: center;
  margin-bottom: 48px;
  color: var(--navy);
}

.section-title span {
  display: inline-block;
  width: 48px; height: 4px;
  background: var(--cyan);
  border-radius: 2px;
  margin-top: 10px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: transform .18s, box-shadow .18s, background .18s, opacity .18s;
  border: none;
  text-align: center;
}

.btn:hover  { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0);    box-shadow: var(--shadow); }

.btn-wa {
  background: var(--green-wa);
  color: #fff;
}
.btn-wa:hover { background: #1ebe5d; }

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline:hover { background: var(--navy); color: #fff; }

.btn-primary {
  background: var(--navy);
  color: #fff;
}
.btn-primary:hover { background: #1a2d42; }

.btn-light {
  background: #fff;
  color: var(--navy);
}
.btn-light:hover { background: var(--light-bg); }

/* ── HEADER ── */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(36,60,91,.10);
  transition: box-shadow .3s;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 96px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.logo img { height: 68px !important; width: auto !important; max-width: none !important; display: block; }

nav { display: flex; align-items: center; gap: 4px; }

nav a {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  padding: 6px 10px;
  border-radius: 6px;
  transition: color .2s, background .2s;
  white-space: nowrap;
}
nav a:hover { color: var(--navy); background: var(--light-bg); }

.header-wa {
  background: var(--green-wa);
  color: #fff !important;
  padding: 8px 16px !important;
  border-radius: var(--radius-sm) !important;
  font-weight: 600 !important;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: 8px;
  transition: background .2s, transform .2s !important;
}
.header-wa:hover { background: #1ebe5d !important; transform: translateY(-1px); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border: none;
  background: none;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--white);
  padding: 12px 24px 20px;
  border-top: 1px solid #e8f4f6;
  gap: 2px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 17px;
  font-weight: 500;
  color: var(--navy);
  padding: 13px 0;
  border-bottom: 1px solid #e8f4f6;
  display: flex;
  align-items: center;
  gap: 8px;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav .mobile-wa {
  margin-top: 12px;
  background: var(--green-wa);
  color: #fff;
  border-radius: var(--radius-sm);
  justify-content: center;
  padding: 16px;
  border-bottom: none;
}

/* ── HERO ── */
#inicio {
  padding-top: 110px;
  padding-bottom: 80px;
  background: linear-gradient(135deg, var(--light-bg) 0%, #fff 60%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.hero-text h1 { color: var(--navy); margin-bottom: 20px; }
.hero-text p  { font-size: 18px; color: var(--muted); margin-bottom: 36px; max-width: 480px; }

.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-image-wrap { position: relative; }
.hero-image-wrap img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  width: 100%;
  object-fit: cover;
  max-height: 440px;
}

.hero-caption {
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy);
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 30px;
  white-space: nowrap;
  box-shadow: var(--shadow);
}

/* ── SOBRE ── */
#sobre {
  background: #fff;
}

.sobre-card {
  background: var(--light-bg);
  border-radius: var(--radius);
  padding: 48px;
  max-width: 820px;
  margin: 0 auto;
  box-shadow: var(--shadow);
  border-left: 5px solid var(--cyan);
}
.sobre-card p {
  font-size: 17px;
  line-height: 1.8;
  color: #3a4e65;
}

/* ── SERVIÇOS ── */
#servicos { background: var(--light-bg); }

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 44px;
}

.card {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s;
  text-align: left;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.card-icon {
  width: 52px; height: 52px;
  background: var(--light-bg);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--navy);
}

.card h3 { color: var(--navy); margin-bottom: 10px; }
.card p  { font-size: 15px; color: var(--muted); }

.cards-cta { text-align: center; }

/* ── DIFERENCIAIS ── */
#diferenciais { background: var(--navy); }
#diferenciais .section-title { color: #fff; }
#diferenciais .section-title span { background: var(--cyan); }

.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.diferencial-item {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(124,211,219,.2);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: background .2s;
}
.diferencial-item:hover { background: rgba(255,255,255,.12); }

.diferencial-icon {
  width: 48px; height: 48px;
  min-width: 48px;
  background: var(--cyan);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
}

.diferencial-item h3 { color: #fff; margin-bottom: 6px; }
.diferencial-item p  { color: rgba(255,255,255,.75); font-size: 15px; }

/* ── SEGURANÇA ── */
#seguranca { background: #fff; }

.seguranca-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.seguranca-text h2 { color: var(--navy); margin-bottom: 20px; }
.seguranca-text p  { font-size: 16px; color: var(--muted); line-height: 1.8; }

.seguranca-badges {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.badge {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--light-bg);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  border-left: 4px solid var(--cyan);
}
.badge-icon { color: var(--navy); }
.badge span {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--navy);
}

/* ── CERTIFICAÇÕES ── */
#certificacoes { background: var(--light-bg); }

.cert-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 44px;
}

.cert-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  text-align: center;
  border-top: 4px solid var(--cyan);
  transition: transform .2s, box-shadow .2s;
}
.cert-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.cert-badge {
  width: 64px; height: 64px;
  background: var(--light-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--navy);
}

.cert-card h3 { color: var(--navy); margin-bottom: 10px; }
.cert-card p  { font-size: 15px; color: var(--muted); }

.cert-cta { text-align: center; }

/* ── ATENDIMENTO ── */
#atendimento {
  background: var(--navy);
  text-align: center;
}
#atendimento h2 { color: #fff; margin-bottom: 16px; }
#atendimento p  { color: rgba(255,255,255,.8); font-size: 17px; margin-bottom: 36px; max-width: 560px; margin-left: auto; margin-right: auto; }

/* ── CTA FINAL ── */
#cta {
  background: linear-gradient(135deg, var(--cyan) 0%, #5bc8d2 100%);
  text-align: center;
  padding: 72px 0;
}
#cta h2 { color: var(--navy); margin-bottom: 32px; }

/* ── FOOTER ── */
footer {
  background: #243c5b;
  color: rgba(255,255,255,.75);
  padding: 48px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 32px;
}

.footer-brand img { height: 160px; margin-bottom: 16px; max-width: none; border-radius: 12px; }
.footer-brand p { font-size: 14px; line-height: 1.7; max-width: 280px; color: rgba(255,255,255,.85) !important; }

.footer-col h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-col p, .footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,.75);
  line-height: 1.7;
}
.footer-col a { display: block; margin-bottom: 6px; transition: color .2s; }
.footer-col a:hover { color: var(--cyan); }

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.social-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  font-size: 16px;
  transition: background .2s, color .2s;
}
.social-icon:hover { background: var(--cyan); color: var(--navy); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 24px 0;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,.5);
  transition: color .2s;
}
.footer-links a:hover { color: var(--cyan); }

.footer-legal {
  font-size: 12px;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
  max-width: 860px;
  margin: 0 auto 16px;
}

.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,.4);
}

/* ── COOKIES BANNER ── */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: var(--navy);
  color: #fff;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-shadow: 0 -4px 24px rgba(0,0,0,.2);
  transform: translateY(100%);
  transition: transform .4s ease;
}
#cookie-banner.visible { transform: translateY(0); }

.cookie-text { font-size: 14px; color: rgba(255,255,255,.85); max-width: 680px; line-height: 1.6; }

.cookie-buttons { display: flex; gap: 12px; flex-shrink: 0; }

.cookie-accept {
  background: var(--cyan);
  color: var(--navy);
  border: none;
  padding: 10px 22px;
  border-radius: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: background .2s;
}
.cookie-accept:hover { background: #5bc8d2; }

.cookie-more {
  background: transparent;
  color: rgba(255,255,255,.7);
  border: 1px solid rgba(255,255,255,.25);
  padding: 10px 22px;
  border-radius: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  cursor: pointer;
  transition: border-color .2s, color .2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.cookie-more:hover { border-color: var(--cyan); color: var(--cyan); }

/* ── LEGAL PAGES ── */
.legal-wrapper {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 24px;
}

.legal-header {
  padding-top: 140px;
  padding-bottom: 48px;
  background: var(--light-bg);
  text-align: center;
}
.legal-header h1 { color: var(--navy); margin-bottom: 10px; }
.legal-header p  { color: var(--muted); }

.legal-content { padding: 60px 0 80px; }

.legal-section { margin-bottom: 40px; }
.legal-section h2 {
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--light-bg);
}
.legal-section p  { font-size: 16px; color: #3a4e65; margin-bottom: 10px; line-height: 1.8; }
.legal-section ul { margin: 10px 0 10px 24px; }
.legal-section ul li { font-size: 16px; color: #3a4e65; margin-bottom: 6px; line-height: 1.7; }

.legal-updated {
  font-size: 14px;
  color: var(--muted);
  font-style: italic;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #e8f4f6;
}

/* ── BACK TO TOP / FLOATING WA ── */
.fab-wa {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  background: var(--green-wa);
  color: #fff;
  border-radius: 50%;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.45);
  transition: transform .2s, box-shadow .2s;
}
.fab-wa:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(37,211,102,.6); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1/-1; }
}

@media (max-width: 768px) {
  section { padding: 60px 0; }
  h1 { font-size: 30px; }
  h2 { font-size: 24px; }

  nav { display: none; }
  .hamburger { display: flex; }

  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-text p { font-size: 17px; }
  .hero-image-wrap img { max-height: 300px; }
  .hero-caption { font-size: 13px; }

  .cards-grid { grid-template-columns: 1fr; }
  .diferenciais-grid { grid-template-columns: 1fr; }
  .seguranca-inner { grid-template-columns: 1fr; gap: 36px; }
  .cert-grid { grid-template-columns: 1fr; }

  .sobre-card { padding: 28px 24px; }
  .sobre-card p { font-size: 16px; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }

  #cookie-banner { flex-direction: column; align-items: flex-start; padding: 20px; }
  .cookie-buttons { width: 100%; justify-content: flex-start; }

  .btn { font-size: 16px; padding: 16px 24px; }
  .hero-buttons { flex-direction: column; gap: 14px; }
  .hero-buttons .btn { justify-content: center; width: 100%; }

  .fab-wa { bottom: 20px; right: 20px; width: 54px; height: 54px; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  h2 { font-size: 22px; }
  .sobre-card { padding: 22px 18px; }
  .cert-card, .card { padding: 26px 20px; }
  .diferencial-item { flex-direction: column; gap: 14px; }
  .footer-links { gap: 14px; }
}
