:root {
  --navy: #0d1b3d;
  --navy-dark: #081127;
  --red: #e63328;
  --white: #ffffff;
  --gray-light: #f5f6fa;
  --gray-text: #5a6072;
  --max-width: 1180px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--navy);
  background: var(--white);
  line-height: 1.5;
}

h1, h2, h3, h4 {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

img {
  max-width: 100%;
  display: block;
}

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

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

.icon-svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  vertical-align: -3px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  border: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(230, 51, 40, 0.35);
}

.btn-primary:hover {
  box-shadow: 0 6px 20px rgba(230, 51, 40, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
  border-color: var(--white);
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: 0 1px 0 rgba(13, 27, 61, 0.08);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 18px;
  color: var(--navy);
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
}

.nav-links {
  display: flex;
  gap: 32px;
  font-weight: 500;
  font-size: 15px;
}

.nav-links a {
  color: var(--navy);
  opacity: 0.8;
}

.nav-links a:hover {
  opacity: 1;
  color: var(--red);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-cta .btn {
  padding: 10px 20px;
  font-size: 14px;
  background: var(--navy);
  color: var(--white);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 26px;
  cursor: pointer;
  color: var(--navy);
}

/* Hero */
.hero {
  background: linear-gradient(155deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--white);
  padding: 88px 0 72px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 40px solid rgba(230, 51, 40, 0.12);
  animation: floatBlob 9s ease-in-out infinite;
}

.hero::before {
  content: "";
  position: absolute;
  left: -100px;
  bottom: -140px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 28px solid rgba(255, 255, 255, 0.05);
  animation: floatBlob 11s ease-in-out infinite reverse;
}

@keyframes floatBlob {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-18px, 22px) scale(1.06); }
}

@media (prefers-reduced-motion: reduce) {
  .hero::after, .hero::before { animation: none; }
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.hero-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero-content {
  text-align: left;
}

.hero-visual {
  position: relative;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
  animation-delay: 0.15s;
  display: flex;
  justify-content: center;
  align-self: end;
  margin-bottom: -72px;
}

.hero-visual img {
  width: 100%;
  max-width: 520px;
  height: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 20px 24px rgba(0, 0, 0, 0.4));
}

@media (max-width: 900px) {
  .hero-split {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .hero-content {
    text-align: center;
  }
  .hero-visual {
    margin-bottom: -48px;
  }
  .hero-visual img {
    max-width: 300px;
  }
}

.hero-eyebrow {
  display: inline-block;
  background: rgba(230, 51, 40, 0.15);
  color: #ff8a80;
  border: 1px solid rgba(230, 51, 40, 0.4);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards;
}

.hero h1 {
  font-size: 44px;
  max-width: 620px;
  margin: 0 0 20px;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards;
  animation-delay: 0.1s;
}

.hero h1 span {
  color: var(--red);
}

.hero p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 520px;
  margin: 0 0 36px;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards;
  animation-delay: 0.2s;
}

.hero-actions {
  display: flex;
  justify-content: flex-start;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards;
  animation-delay: 0.3s;
}

@media (max-width: 900px) {
  .hero h1, .hero p {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-actions {
    justify-content: center;
  }
}

.hero-trust {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards, glowPulse 3s ease-in-out 1.2s infinite;
  animation-delay: 0.4s, 1.2s;
}

.hero-trust .stars {
  color: #ffc107;
  letter-spacing: 2px;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 193, 7, 0); }
  50% { box-shadow: 0 0 0 6px rgba(255, 193, 7, 0.08); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-eyebrow, .hero h1, .hero p, .hero-actions, .hero-trust {
    opacity: 1;
    animation: none;
  }
}

/* Marquee ticker */
.marquee {
  background: var(--red);
  overflow: hidden;
  white-space: nowrap;
  padding: 12px 0;
}

.marquee-track {
  display: inline-flex;
  gap: 14px;
  animation: marquee 22s linear infinite;
  will-change: transform;
}

.marquee-track span {
  color: var(--white);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.grid-diferenciais .reveal:nth-child(1) { transition-delay: 0s; }
.grid-diferenciais .reveal:nth-child(2) { transition-delay: 0.08s; }
.grid-diferenciais .reveal:nth-child(3) { transition-delay: 0.16s; }
.grid-diferenciais .reveal:nth-child(4) { transition-delay: 0.24s; }
.grid-diferenciais .reveal:nth-child(5) { transition-delay: 0.32s; }
.grid-diferenciais .reveal:nth-child(6) { transition-delay: 0.4s; }

.grid-trabalhos .reveal:nth-child(1) { transition-delay: 0s; }
.grid-trabalhos .reveal:nth-child(2) { transition-delay: 0.1s; }
.grid-trabalhos .reveal:nth-child(3) { transition-delay: 0.2s; }

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Section generic */
.section {
  padding: 80px 0;
}

.section-alt {
  background: var(--gray-light);
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

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

.section-head h2 {
  font-size: 34px;
  margin-bottom: 14px;
}

.section-head p {
  color: var(--gray-text);
  font-size: 16px;
}

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

.card {
  background: var(--white);
  border: 1px solid rgba(13, 27, 61, 0.08);
  border-radius: 14px;
  padding: 32px 24px;
  text-align: left;
}

.card .icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(230, 51, 40, 0.1);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
  transition: transform 0.25s ease, background 0.25s ease;
}

.card .icon svg {
  width: 24px;
  height: 24px;
}

.card {
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(13, 27, 61, 0.1);
  border-color: rgba(230, 51, 40, 0.25);
}

.card:hover .icon {
  transform: scale(1.1) rotate(-4deg);
  background: var(--red);
  color: var(--white);
}

.card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.card p {
  color: var(--gray-text);
  font-size: 14px;
}

/* Produtos */
.grid-produtos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.produto-card-simple p {
  margin-bottom: 16px;
}

.produto-card {
  background: var(--navy);
  color: var(--white);
  border-radius: 16px;
  padding: 36px;
}

.produto-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.produto-card p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  margin-bottom: 18px;
}

.produto-card-wide {
  grid-column: 1 / -1;
}

.malha-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}

.malha-item {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 16px 18px;
}

.malha-item h4 {
  font-size: 15px;
  color: var(--white);
  margin-bottom: 10px;
}

.checklist-mini {
  list-style: none;
}

.checklist-mini li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 6px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
}

.checklist-mini li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--red);
  font-weight: 700;
  font-size: 12px;
}

@media (max-width: 560px) {
  .malha-grid {
    grid-template-columns: 1fr;
  }
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  background: rgba(255, 255, 255, 0.1);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
}

.segmentos-title {
  text-align: center;
  font-weight: 600;
  margin-bottom: 18px;
  color: var(--gray-text);
}

.segmentos-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.segmentos-list .tag {
  background: var(--white);
  border: 1px solid rgba(13, 27, 61, 0.12);
  color: var(--navy);
}

/* Trabalhos / Portfolio */
.grid-trabalhos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.trabalho-card {
  border-radius: 14px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(13, 27, 61, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.trabalho-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 36px rgba(13, 27, 61, 0.14);
}

.trabalho-card .img-wrap {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #eee;
}

.trabalho-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.trabalho-card:hover img {
  transform: scale(1.08);
}

.trabalho-card .img-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  background: linear-gradient(to top, rgba(8, 17, 39, 0.92) 0%, rgba(8, 17, 39, 0.35) 45%, rgba(8, 17, 39, 0) 75%);
  color: var(--white);
  opacity: 0.85;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.trabalho-card:hover .img-overlay {
  opacity: 1;
  transform: translateY(0);
}

.trabalho-card .img-overlay strong {
  display: block;
  font-size: 15px;
}

.trabalho-card .img-overlay span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
}

/* Showcase carousel (Trabalhos) */
.showcase {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}

.showcase-track {
  flex: 1;
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(13, 27, 61, 0.08);
  background: var(--white);
  min-height: 460px;
}

.showcase-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  opacity: 0;
  visibility: hidden;
  transform: translateX(24px);
  transition: opacity 0.45s ease, transform 0.45s ease, visibility 0.45s;
}

.showcase-slide.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  position: relative;
}

.showcase-info {
  padding: 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.showcase-info h3 {
  font-size: 28px;
  margin: 10px 0 6px;
}

.showcase-info > p {
  color: var(--gray-text);
  margin-bottom: 20px;
}

.checklist {
  list-style: none;
  margin-bottom: 24px;
}

.checklist li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  font-size: 14px;
  color: var(--navy);
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background: var(--red);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.showcase-info .btn {
  align-self: flex-start;
}

.showcase-image {
  background: var(--gray-light);
  overflow: hidden;
}

.showcase-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase-arrow {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(13, 27, 61, 0.15);
  background: var(--white);
  color: var(--navy);
  font-size: 20px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.showcase-arrow:hover {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  transform: scale(1.08);
}

.showcase-dots {
  position: absolute;
  bottom: 20px;
  left: 44px;
  display: flex;
  gap: 8px;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  background: rgba(13, 27, 61, 0.18);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}

.dot.active {
  background: var(--red);
  transform: scale(1.2);
}

@media (max-width: 900px) {
  .showcase-track { min-height: 0; }
  .showcase-slide { position: relative; display: none; grid-template-columns: 1fr; }
  .showcase-slide.active { display: grid; }
  .showcase-image { aspect-ratio: 4 / 3; }
  .showcase-info { padding: 28px; }
  .showcase-dots { position: static; justify-content: center; margin-top: 16px; }
  .showcase { flex-wrap: wrap; }
}

/* Orçamento form */
.orcamento-section .section-head h2 {
  max-width: 720px;
}

.hl-red {
  color: var(--red);
}

.orcamento-form {
  max-width: 560px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid rgba(13, 27, 61, 0.1);
  border-radius: 18px;
  padding: 36px;
  box-shadow: 0 20px 50px rgba(13, 27, 61, 0.08);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.orcamento-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 14px;
}

.orcamento-form input,
.orcamento-form select {
  font-family: inherit;
  font-size: 14px;
  font-weight: 400;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid rgba(13, 27, 61, 0.15);
  background: var(--gray-light);
  color: var(--navy);
}

.orcamento-form input:focus,
.orcamento-form select:focus {
  outline: none;
  border-color: var(--red);
  background: var(--white);
}

.order-item {
  position: relative;
  padding: 16px;
  border: 1px dashed rgba(13, 27, 61, 0.15);
  border-radius: 12px;
  margin-bottom: 14px;
}

.order-item .remove-item {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: none;
  background: var(--gray-light);
  color: var(--red);
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
}

.order-item .remove-item:hover {
  background: var(--red);
  color: var(--white);
}

.add-item-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: 1px dashed rgba(230, 51, 40, 0.4);
  color: var(--red);
  font-weight: 600;
  font-size: 13px;
  padding: 10px 18px;
  border-radius: 8px;
  cursor: pointer;
  margin-bottom: 20px;
  width: 100%;
  justify-content: center;
}

.add-item-btn:hover {
  background: rgba(230, 51, 40, 0.06);
}

.file-label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}

.file-label input[type="file"] {
  font-size: 13px;
  font-weight: 400;
  padding: 10px;
  border: 1px dashed rgba(13, 27, 61, 0.2);
  border-radius: 8px;
  background: var(--gray-light);
}

.file-hint {
  display: block;
  font-size: 12px;
  color: var(--gray-text);
  margin-bottom: 20px;
}

.btn-enviar {
  width: 100%;
  justify-content: center;
  font-size: 16px;
}

@media (max-width: 560px) {
  .form-row {
    grid-template-columns: 1fr;
  }
  .orcamento-form {
    padding: 24px;
  }
}

/* Testimonials */
.testimonials {
  background: var(--red);
  padding: 72px 0;
  text-align: center;
}

.testimonials .section-head h2 {
  color: var(--navy);
  font-size: 36px;
}

.testimonials .section-head h2 span {
  display: block;
  color: var(--white);
  font-style: italic;
}

.testimonials-sub {
  color: rgba(13, 27, 61, 0.75);
  font-weight: 500;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 40px 0 32px;
}

.testimonial-card {
  background: var(--white);
  border-radius: 14px;
  padding: 24px;
  text-align: left;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(8, 17, 39, 0.2);
}

.testimonial-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.testimonial-top .stars {
  color: #ffc107;
  letter-spacing: 2px;
}

.google-badge {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid rgba(13, 27, 61, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
  color: #4285F4;
}

.testimonial-card p {
  font-size: 14px;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.5;
}

.testimonial-source {
  font-size: 12px;
  color: var(--gray-text);
}

.testimonials-cta {
  display: inline-block;
  background: var(--navy-dark);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
}

.testimonials-cta:hover {
  background: var(--navy);
}

@media (max-width: 900px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

/* Sobre — dark variant */
.sobre-dark {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: rgba(255, 255, 255, 0.82);
  position: relative;
  overflow: hidden;
}

.sobre-dark::after {
  content: "";
  position: absolute;
  right: -140px;
  bottom: -140px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  border: 36px solid rgba(230, 51, 40, 0.1);
}

.sobre-dark .sobre-wrap { position: relative; z-index: 1; }

.section-eyebrow-light {
  color: #ff8a80;
}

.sobre-title {
  color: var(--white);
}

.sobre-dark p {
  color: rgba(255, 255, 255, 0.72);
}

.sobre-dark .hl {
  color: var(--white);
  font-weight: 700;
}

.sobre-dark .hl::selection {
  background: var(--red);
}

.sobre-dark .stat-box {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.sobre-dark .stat-box strong {
  color: var(--white);
}

.sobre-dark .stat-box span {
  color: rgba(255, 255, 255, 0.6);
}

.sobre-dark .sobre-map {
  border-color: rgba(255, 255, 255, 0.12);
}

.valores-wrap {
  margin-top: 72px;
  padding-top: 56px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.valores-head {
  text-align: center;
  margin-bottom: 40px;
}

.valores-head .sobre-title {
  font-size: 28px;
}

.valores-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.valor-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.valor-item:last-child {
  border-bottom: none;
}

.valor-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--red);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.valor-icon svg {
  width: 22px;
  height: 22px;
}

.valor-item h4 {
  color: var(--white);
  font-size: 17px;
  margin-bottom: 4px;
}

.valor-item p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  margin: 0;
}

/* Sobre */
.sobre-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.sobre-wrap h2 {
  font-size: 32px;
  margin-bottom: 18px;
}

.sobre-wrap p {
  color: var(--gray-text);
  margin-bottom: 16px;
  font-size: 15px;
}

.sobre-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 28px;
}

.stat-box {
  background: var(--gray-light);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
}

.stat-box strong {
  display: block;
  font-size: 26px;
  color: var(--navy);
}

.stat-box span {
  font-size: 13px;
  color: var(--gray-text);
}

.sobre-map {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(13, 27, 61, 0.1);
  min-height: 340px;
}

.sobre-map iframe {
  width: 100%;
  height: 100%;
  min-height: 340px;
  border: 0;
}

/* FAQ accordion */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid rgba(13, 27, 61, 0.1);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border: none;
  padding: 18px 22px;
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  color: var(--navy);
  cursor: pointer;
  text-align: left;
}

.faq-toggle {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gray-light);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.faq-item.open .faq-toggle {
  transform: rotate(45deg);
  background: var(--red);
  color: var(--white);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  padding: 0 22px 20px;
  color: var(--gray-text);
  font-size: 14px;
}

.faq-item.open .faq-answer {
  max-height: 200px;
}

/* CTA banda */
.cta-banda {
  background: var(--red);
  color: var(--white);
  text-align: center;
  padding: 56px 24px;
}

.cta-banda h2 {
  font-size: 28px;
  margin-bottom: 12px;
}

.cta-banda p {
  margin-bottom: 24px;
  opacity: 0.9;
}

.cta-banda .btn-primary {
  background: var(--white);
  color: var(--red);
  box-shadow: none;
}

/* Contato */
.contato-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contato-info h2 {
  font-size: 30px;
  margin-bottom: 16px;
}

.contato-info p {
  color: var(--gray-text);
  margin-bottom: 24px;
}

.contato-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.contato-item .icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--gray-light);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contato-item .icon svg {
  width: 20px;
  height: 20px;
}

.social-row a svg {
  width: 20px;
  height: 20px;
}

.contato-item strong {
  display: block;
  font-size: 14px;
}

.contato-item span, .contato-item a {
  font-size: 14px;
  color: var(--gray-text);
}

.contato-item a:hover {
  color: var(--red);
}

.social-row {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.social-row a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.social-row a:hover {
  background: var(--red);
}

.contato-map {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(13, 27, 61, 0.1);
}

.contato-map iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: 0;
}

/* Footer */
.footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 40px 0 24px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 20px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 600;
}

.footer-brand img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
}

.footer-links {
  display: flex;
  gap: 24px;
  font-size: 14px;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
}

.footer-bottom a {
  opacity: 0.7;
}

.footer-bottom a:hover {
  opacity: 1;
}

/* WhatsApp float button */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
  z-index: 90;
  transition: transform 0.15s ease;
  animation: pulseRing 2.4s ease-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.08);
}

@keyframes pulseRing {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55), 0 6px 20px rgba(37, 211, 102, 0.5); }
  70% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0), 0 6px 20px rgba(37, 211, 102, 0.5); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0), 0 6px 20px rgba(37, 211, 102, 0.5); }
}

@media (prefers-reduced-motion: reduce) {
  .whatsapp-float { animation: none; }
}

/* Responsive */
@media (max-width: 900px) {
  .nav-links {
    display: none;
  }
  .nav-toggle {
    display: block;
  }
  .grid-diferenciais {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-produtos {
    grid-template-columns: 1fr;
  }
  .grid-trabalhos {
    grid-template-columns: repeat(2, 1fr);
  }
  .sobre-wrap, .contato-wrap {
    grid-template-columns: 1fr;
  }
  .hero h1 {
    font-size: 34px;
  }
}

@media (max-width: 560px) {
  .grid-diferenciais {
    grid-template-columns: 1fr;
  }
  .grid-trabalhos {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero {
    padding: 64px 0 48px;
  }
  .hero h1 {
    font-size: 28px;
  }
  .section {
    padding: 56px 0;
  }
}

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--white);
  padding: 16px 24px 24px;
  border-top: 1px solid rgba(13, 27, 61, 0.08);
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  padding: 12px 0;
  font-weight: 500;
  border-bottom: 1px solid rgba(13, 27, 61, 0.06);
}
