/* ===========================
   Concepa — Rodovia Osório–Porto Alegre
   Font: Manrope | Colors: #163048 + #06b6d4 (cyan)
   =========================== */

:root {
  --dark: #163048;
  --dark2: #0d1f30;
  --cyan: #06b6d4;
  --cyan-light: #38d6f0;
  --bg: #f8fafc;
  --white: #ffffff;
  --text: #1e293b;
  --muted: #64748b;
  --border: #e2e8f0;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,0.09);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Manrope', sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
}
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
a { color: inherit; text-decoration: none; }

/* ===========================
   Cookie Banner
   =========================== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #0d1f30;
  color: #fff;
  z-index: 9999;
  padding: 14px 24px;
  display: none;
}
.cookie-banner.show { display: block; }
.cookie-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.cookie-inner p { font-size: 0.875rem; flex: 1; min-width: 200px; }
.cookie-inner a { color: var(--cyan); text-decoration: underline; }
.cookie-btns { display: flex; gap: 8px; }
.btn-ck-accept {
  background: var(--cyan); color: #fff; border: none;
  padding: 8px 18px; border-radius: 6px;
  font-family: 'Manrope', sans-serif; font-weight: 700;
  cursor: pointer; font-size: 0.85rem;
}
.btn-ck-reject {
  background: transparent; color: #aaa;
  border: 1px solid #555; padding: 8px 18px;
  border-radius: 6px; font-family: 'Manrope', sans-serif;
  font-weight: 700; cursor: pointer; font-size: 0.85rem;
}

/* ===========================
   Header
   =========================== */
.header {
  position: sticky; top: 0;
  background: var(--dark2);
  z-index: 1000;
  box-shadow: 0 1px 10px rgba(0,0,0,0.25);
}
.header-inner {
  display: flex; align-items: center;
  gap: 28px; height: 66px;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo-info { display: flex; flex-direction: column; }
.logo-main {
  color: #fff; font-size: 1rem;
  font-weight: 800; line-height: 1.2;
  letter-spacing: 0.02em;
}
.logo-road {
  color: rgba(255,255,255,0.48);
  font-size: 0.7rem; font-weight: 500;
}
.nav {
  display: flex; gap: 26px; margin-left: auto;
}
.nav a {
  color: rgba(255,255,255,0.75);
  font-weight: 600; font-size: 0.875rem;
  transition: color 0.2s;
}
.nav a:hover { color: var(--cyan); }
.header-phone {
  display: flex; align-items: center; gap: 6px;
  background: var(--cyan); color: var(--dark2);
  font-weight: 800; font-size: 0.875rem;
  padding: 8px 16px; border-radius: 7px;
  white-space: nowrap; transition: background 0.2s;
}
.header-phone:hover { background: var(--cyan-light); }
.menu-btn {
  display: none; flex-direction: column;
  gap: 5px; background: none; border: none;
  cursor: pointer; padding: 4px; margin-left: auto;
}
.menu-btn span {
  display: block; width: 22px; height: 2px;
  background: #fff; border-radius: 2px; transition: 0.3s;
}

/* ===========================
   Hero
   =========================== */
.hero {
  position: relative;
  background: linear-gradient(135deg, #0d1f30 0%, #163048 50%, #1a3f5c 100%);
  padding: 88px 0 96px;
  text-align: center;
  overflow: hidden;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(6,182,212,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; }
.hero-tag-line {
  display: inline-block;
  background: rgba(6,182,212,0.15);
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  border: 1px solid rgba(6,182,212,0.3);
  margin-bottom: 22px;
}
.hero h1 {
  color: #fff;
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.2;
  max-width: 720px;
  margin: 0 auto 18px;
}
.hero-desc {
  color: rgba(255,255,255,0.68);
  font-size: 1.1rem;
  max-width: 580px;
  margin: 0 auto 32px;
}
.hero-ctas {
  display: flex; align-items: center;
  justify-content: center; gap: 14px;
  flex-wrap: wrap; margin-bottom: 32px;
}
.btn-cyan {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--cyan); color: var(--dark2);
  font-weight: 800; font-size: 0.95rem;
  padding: 13px 28px; border-radius: 8px;
  transition: background 0.2s;
}
.btn-cyan:hover { background: var(--cyan-light); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  border: 2px solid rgba(255,255,255,0.35); color: #fff;
  font-weight: 700; font-size: 0.95rem;
  padding: 11px 24px; border-radius: 8px;
  transition: border-color 0.2s, color 0.2s;
}
.btn-outline:hover { border-color: var(--cyan); color: var(--cyan); }
.hero-badges {
  display: flex; justify-content: center;
  gap: 24px; flex-wrap: wrap;
}
.hero-badges span {
  color: rgba(255,255,255,0.45);
  font-size: 0.8rem; font-weight: 600;
  padding: 0 12px;
  border-right: 1px solid rgba(255,255,255,0.15);
}
.hero-badges span:last-child { border-right: none; }

/* ===========================
   Form Section
   =========================== */
.form-section {
  padding: 80px 0;
  background: var(--white);
}
.form-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.form-left h2 {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 14px;
}
.form-left > p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 28px;
}
.form-contacts { display: flex; flex-direction: column; gap: 14px; }
.fc-item {
  display: flex; align-items: flex-start;
  gap: 10px; font-size: 0.9rem; color: var(--muted);
}
.fc-item a { color: var(--dark); font-weight: 600; }
.fc-item a:hover { color: var(--cyan); }
.form-right {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
}
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.fg { margin-bottom: 14px; }
.fg label {
  display: block; font-size: 0.78rem;
  font-weight: 700; color: var(--dark);
  text-transform: uppercase; letter-spacing: 0.05em;
  margin-bottom: 5px;
}
.fg input, .fg select, .fg textarea {
  width: 100%; padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: 'Manrope', sans-serif;
  font-size: 0.9rem; color: var(--text);
  background: var(--white); outline: none;
  transition: border-color 0.2s;
}
.fg input:focus, .fg select:focus, .fg textarea:focus {
  border-color: var(--cyan);
}
.fg textarea { resize: vertical; min-height: 80px; }
.consent-row {
  display: flex; gap: 10px;
  align-items: flex-start;
  font-size: 0.8rem; color: var(--muted);
  line-height: 1.5; margin-bottom: 16px;
}
.consent-row input[type="checkbox"] {
  width: 15px; height: 15px;
  margin-top: 2px; flex-shrink: 0;
  accent-color: var(--cyan);
}
.consent-row a { color: var(--cyan); text-decoration: underline; }
.btn-submit {
  width: 100%; padding: 13px;
  background: var(--dark); color: #fff;
  border: none; border-radius: 8px;
  font-family: 'Manrope', sans-serif;
  font-size: 0.95rem; font-weight: 800;
  cursor: pointer; transition: background 0.2s;
}
.btn-submit:hover { background: var(--cyan); color: var(--dark2); }
.success-msg {
  display: none; align-items: flex-start;
  gap: 10px; margin-top: 14px;
  padding: 14px; background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 8px; font-size: 0.875rem; color: #166534;
}
.success-msg.show { display: flex; }

/* ===========================
   Services
   =========================== */
.services {
  padding: 80px 0;
  background: var(--bg);
}
.sec-header {
  text-align: center;
  margin-bottom: 48px;
}
.sec-header h2 {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 10px;
}
.sec-header p { color: var(--muted); font-size: 1rem; }
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.svc-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 26px 22px;
  box-shadow: var(--shadow);
  border-bottom: 3px solid var(--cyan);
  transition: transform 0.2s;
}
.svc-card:hover { transform: translateY(-4px); }
.svc-card svg { margin-bottom: 14px; }
.svc-card h3 {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 8px;
}
.svc-card p { font-size: 0.875rem; color: var(--muted); }

/* ===========================
   TAG Section
   =========================== */
.tag-section {
  padding: 80px 0;
  background: var(--dark);
}
.tag-section .sec-header h2 { color: #fff; }
.tag-section .sec-header p { color: rgba(255,255,255,0.6); }
.tag-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.tag-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(6,182,212,0.2);
  border-radius: var(--radius);
  padding: 24px 20px;
}
.tag-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--cyan);
  margin-bottom: 12px;
  line-height: 1;
}
.tag-card h4 {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.tag-card p { color: rgba(255,255,255,0.6); font-size: 0.85rem; }
.tag-cta {
  text-align: center;
  padding-top: 8px;
}
.tag-cta p {
  color: rgba(255,255,255,0.65);
  margin-bottom: 16px;
  font-size: 0.95rem;
}

/* ===========================
   About
   =========================== */
.about {
  padding: 80px 0;
  background: var(--white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.about-text h2 {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 16px;
}
.about-text p {
  color: var(--muted);
  margin-bottom: 14px;
  line-height: 1.7;
}
.about-info { display: flex; flex-direction: column; gap: 0; }
.info-block {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.info-block:last-child { border-bottom: none; }
.info-label {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--cyan);
}
.info-val {
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 500;
  line-height: 1.5;
}
.info-val a { color: var(--dark); font-weight: 600; }
.info-val a:hover { color: var(--cyan); }

/* ===========================
   Contact
   =========================== */
.contact {
  padding: 80px 0;
  background: var(--bg);
}
.sec-header-light h2 { color: var(--dark); }
.contact-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.ct-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 22px;
  box-shadow: var(--shadow);
  text-align: center;
}
.ct-card svg { margin: 0 auto 12px; }
.ct-card h4 {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 8px;
}
.ct-card a, .ct-card p {
  display: block;
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.6;
}
.ct-card a:hover { color: var(--cyan); }

/* ===========================
   Footer
   =========================== */
.footer { background: var(--dark2); padding: 28px 0 20px; }
.footer-top {
  display: flex; align-items: center;
  justify-content: space-between;
  flex-wrap: wrap; gap: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand { display: flex; align-items: center; gap: 12px; }
.ft-name {
  display: block; color: #fff;
  font-weight: 700; font-size: 0.95rem;
}
.ft-cnpj {
  display: block; color: rgba(255,255,255,0.38);
  font-size: 0.75rem;
}
.footer-links {
  display: flex; gap: 22px; flex-wrap: wrap;
}
.footer-links a {
  color: rgba(255,255,255,0.55);
  font-size: 0.875rem; font-weight: 500;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--cyan); }
.footer-bottom { padding-top: 14px; text-align: center; }
.footer-bottom p {
  color: rgba(255,255,255,0.3);
  font-size: 0.78rem; line-height: 1.6;
}

/* ===========================
   Float Button
   =========================== */
.float-btn {
  position: fixed; bottom: 28px; right: 28px;
  width: 54px; height: 54px;
  background: var(--cyan); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(6,182,212,0.45);
  z-index: 990; transition: background 0.2s, transform 0.2s;
}
.float-btn:hover { background: var(--cyan-light); transform: scale(1.08); }

/* ===========================
   Responsive
   =========================== */
@media (max-width: 1024px) {
  .tag-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .form-wrap { grid-template-columns: 1fr; }
  .form-right { order: -1; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-row { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav {
    display: none; flex-direction: column;
    position: absolute; top: 66px; left: 0; right: 0;
    background: var(--dark2); padding: 18px 24px; gap: 14px;
  }
  .nav.open { display: flex; }
  .nav a { font-size: 1rem; padding: 4px 0; }
  .menu-btn { display: flex; }
  .header-phone { display: none; }
  .header-inner { position: relative; }
  .hero { padding: 60px 0 72px; }
  .hero h1 { font-size: 1.9rem; }
  .hero-badges { display: none; }
}
@media (max-width: 600px) {
  .svc-grid { grid-template-columns: 1fr; }
  .contact-row { grid-template-columns: 1fr; }
  .tag-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { flex-direction: column; }
  .footer-links { justify-content: center; }
}
