*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy: #0d1e3d;
  --blue: #1a4fa0;
  --sky: #2d8bdb;
  --ice: #e8f4fc;
  --white: #ffffff;
  --gray: #6b7c93;
  --light: #f4f8fd;
  --accent: #1e5fbf;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Barlow", sans-serif;
  color: var(--navy);
  background: var(--white);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 76px;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.07);
}

.logo {
  width: 250px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--navy);
  text-decoration: none;
  text-transform: uppercase;
  padding-bottom: 4px;
  position: relative;
  transition: color 0.2s;
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--sky);
  border-radius: 2px;
}

.nav-links a:hover {
  color: var(--sky);
}

.btn-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 6px;
  background: var(--blue);
  color: white;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition:
    background 0.2s,
    transform 0.15s;
}

.btn-cta:hover {
  background: var(--accent);
  transform: translateY(-1px);
}

.btn-cta svg {
  width: 16px;
  height: 16px;
}

/* ── HERO ── */
#inicio {
  min-height: 100vh;
  padding-top: 76px;
  display: grid;
  position: relative;
  overflow: hidden;
}

.home{
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  padding: 380px ;
  z-index: 2;
  opacity: 0.9;
}

.hero-logo {
  width: 500px;
}

.hero-content {
  background-image: url("img/abs_light_clean_background.png");
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px 80px 80px;
  z-index: 2;
}

.hero-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(52px, 7vw, 88px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -1px;
  margin-bottom: 8px;
}

.hero-title .abs {
  color: var(--navy);
}

.hero-title .light {
  color: var(--sky);
}

.hero-subtitle {
  font-size: 11px;
  letter-spacing: 6px;
  color: var(--gray);
  text-transform: uppercase;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-subtitle::before,
.hero-subtitle::after {
  content: "";
  flex: 1;
  max-width: 40px;
  height: 1px;
  background: var(--gray);
}

.hero-desc {
  font-size: 17px;
  line-height: 1.7;
  color: #3a4f6a;
  max-width: 480px;
  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 6px;
  background: var(--navy);
  color: white;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.15s;
  text-decoration: none;
}

.btn-primary:hover {
  background: var(--blue);
  transform: translateY(-2px);
}

.btn-outline {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 6px;
  background: transparent;
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 2px solid var(--navy);
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

.btn-outline:hover {
  background: var(--navy);
  color: white;
}

/* ── FEATURE CARDS ── */
.features-bar {
  background: white;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 4px solid var(--ice);
}

.feature-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 28px 24px;
  border-right: 1px solid var(--ice);
  transition: background 0.2s;
}

.feature-card:last-child {
  border-right: none;
}

.feature-card:hover {
  background: var(--ice);
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon svg {
  width: 22px;
  height: 22px;
  fill: white;
}

.feature-text h3 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 6px;
}

.feature-text p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.5;
}

/* ── STATS BAR ── */
.stats-bar {
  background: var(--navy);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 36px 40px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item:last-child {
  border-right: none;
}

.stat-icon {
  width: 48px;
  height: 48px;
  background: rgba(45, 139, 219, 0.25);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--sky);
}


.stat-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 4px;
}

.stat-text h3{
  color: white;
  margin-bottom: 10px;
}

/* ── SECTION HEADER ── */
.section-header {
  text-align: center;
  padding: 80px 48px 48px;
}

.section-tag {
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--sky);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 12px;
}

.section-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 44px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1.1;
}

/* ── SOBRE NÓS ── */
#sobre {
  background: var(--white);
  padding: 80px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.sobre-image {
  width: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sobre-content .section-tag {
  text-align: left;
}

.sobre-content .section-title {
  text-align: left;
  margin-bottom: 20px;
}

.sobre-content p {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 16px;
}

.sobre-list {
  list-style: none;
  margin: 24px 0;
}

.sobre-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 12px;
}

.sobre-list li::before {
  content: "✓";
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--sky);
  color: white;
  font-size: 12px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ── SERVICES ── */
#servicos {
  background: transparent;
  padding-bottom: 80px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 0 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: white;
  border-radius: 12px;
  padding: 36px 32px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(26, 79, 160, 0.12);
}

.service-card .icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-card .icon-wrap svg {
  width: 24px;
  height: 24px;
  fill: white;
}

.service-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
}

/* ── PROJETOS ── */
#projetos {
  background: var(--white);
  padding-bottom: 80px;
}

.projetos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 0 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.projeto-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.projeto-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(26, 79, 160, 0.15);
}
.projeto-img1 {
  height: 200px;
  background-image: url("img/maquinas/WhatsApp Image 2026-05-12 at 17.43.27 (1).jpeg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.projeto-img2 {
  height: 200px;
  background-image: url("img/maquinas/WhatsApp Image 2026-05-12 at 17.43.27.jpeg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.projeto-img3 {
  height: 200px;
  background-image: url("img/maquinas/WhatsApp Image 2026-05-12 at 17.43.28.jpeg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.projeto-body {
  padding: 24px;
  background: white;
}

.projeto-tag {
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--sky);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 8px;
}

.projeto-body h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.projeto-body p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
}

/* ── CONTATO ── */
#contato {
  background: var(--navy);
  padding: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contato-info .section-tag {
  text-align: left;
}

.contato-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 44px;
  font-weight: 900;
  color: white;
  line-height: 1.1;
  margin-bottom: 20px;
}

.contato-info p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  margin-bottom: 32px;
}

.contato-detail {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
}

.contato-detail .icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(45, 139, 219, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contato-detail .icon svg {
  width: 18px;
  height: 18px;
  fill: var(--sky);
}

.contato-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 12px;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 14px 16px;
  color: white;
  font-family: "Barlow", sans-serif;
  font-size: 15px;
  transition: border-color 0.2s;
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--sky);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.btn-submit {
  padding: 16px 32px;
  border-radius: 8px;
  background: var(--sky);
  color: white;
  font-family: "Barlow", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.15s;
  align-self: flex-start;
}

.btn-submit:hover {
  background: #2178c4;
  transform: translateY(-2px);
}

/* ── FOOTER ── */
footer {
  background: #07122a;
  padding: 60px 80px 32px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .brand {
  width: 300px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  margin-top: 16px;
}

.footer-col h4 {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: white;
  font-weight: 700;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--sky);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  font-size: 13px;
  text-align: center;
}

.certificado{
  width: 130px;
  margin-top: 10px;
}

.whatsapp-btn {
    position: fixed;
    width: 90px;
    bottom: 3rem;
    left: 3rem;
    border-radius: 50%;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
    transition: all 0.3s;
    z-index: 1000;
}

@media (max-width: 900px) {
  nav {
    padding: 0 24px;
  }

  .nav-links {
    display: none;
  }

  #inicio {
    grid-template-columns: 1fr;
  }

  .hero-image {
    display: none;
  }

  .hero-content {
    padding: 60px 32px;
  }

  .features-bar,
  .stats-bar {
    grid-template-columns: 1fr 1fr;
  }

  .services-grid,
  .projetos-grid {
    grid-template-columns: 1fr;
    padding: 0 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  #sobre,
  #contato {
    grid-template-columns: 1fr;
    padding: 60px 32px;
    gap: 40px;
  }
}

/* ══════════════════════════════════════════════════════
   ABS LIGHT — RESPONSIVO COMPLETO
   Adicionar ao final do style.css existente
   ══════════════════════════════════════════════════════ */

/* ── TABLET (≤ 1024px) ── */
@media (max-width: 1024px) {
  nav {
    padding: 0 32px;
  }

  .nav-links {
    gap: 20px;
  }

  .hero-content {
    padding: 80px 48px;
  }

  .hero-logo {
    width: 380px;
  }

  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item:nth-child(2) {
    border-right: none;
  }

  .stat-item:nth-child(1),
  .stat-item:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  #sobre {
    gap: 48px;
    padding: 64px 48px;
  }

  .sobre-image {
    width: 100%;
  }

  .services-grid,
  .projetos-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  #contato {
    padding: 64px 48px;
    gap: 48px;
  }

  footer {
    padding: 48px 48px 28px;
  }
}

/* ── MOBILE (≤ 768px) ── */
@media (max-width: 768px) {
    

  body {
    background-attachment: scroll;
    background-size: cover;
    background-position: left center;
    
  }

  .home {
    padding: 300px 24px;
  }

  /* NAV */
  nav {
    padding: 0 20px;
    height: 68px;
    position: relative;
  }

  .logo {
    width: 180px;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    padding: 12px 0;
    z-index: 200;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links li a {
    display: block;
    padding: 14px 24px;
    font-size: 14px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  .nav-links li:last-child a {
    border-bottom: none;
  }

  .nav-links a.active::after {
    display: none;
  }

  .btn-cta {
    display: none;
  }

  /* HAMBURGUER */
  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px;
    z-index: 201;
  }

  .hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: all 0.3s;
    transform-origin: center;
  }

  .hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }

  .hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* HERO */
  #inicio {
    padding-top: 68px;
    min-height: 100svh;
  }

  .hero-content {
    padding: 48px 24px 60px;
    background-position: left center;
  }

  .hero-logo {
    width: 260px;
    margin-bottom: 8px;
  }

  .hero-desc {
    font-size: 15px;
    max-width: 100%;
    margin-bottom: 32px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .btn-primary,
  .btn-outline {
    justify-content: center;
    padding: 14px 24px;
    font-size: 12px;
  }

  /* STATS BAR */
  .stats-bar {
    grid-template-columns: 1fr;
  }

  .stat-item {
    padding: 24px 24px;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .stat-item:last-child {
    border-bottom: none;
  }

  /* SECTION HEADER */
  .section-header {
    padding: 56px 24px 36px;
  }

  .section-title {
    font-size: 34px;
  }

  /* SOBRE NÓS */
  #sobre {
    grid-template-columns: 1fr;
    padding: 56px 24px;
    gap: 32px;
  }

  .sobre-image {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 10px;
  }

  .sobre-content .section-title {
    font-size: 30px;
  }

  .sobre-content p {
    font-size: 15px;
  }

  /* SERVIÇOS */
  #servicos {
    padding-bottom: 56px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    padding: 0 20px;
    gap: 16px;
  }

  .service-card {
    padding: 28px 24px;
  }

  /* PROJETOS */
  #projetos {
    padding-bottom: 56px;
  }

  .projetos-grid {
    grid-template-columns: 1fr;
    padding: 0 20px;
    gap: 20px;
  }

  /* CONTATO */
  #contato {
    grid-template-columns: 1fr;
    padding: 56px 24px;
    gap: 40px;
  }

  .contato-title {
    font-size: 32px;
  }

  .contato-info p {
    font-size: 15px;
  }

  #contato iframe {
    width: 100%;
    height: 280px;
    border-radius: 10px;
  }

  /* FOOTER */
  footer {
    padding: 48px 24px 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 32px;
  }

  .footer-brand .brand {
    width: 220px;
  }

  .footer-brand p {
    font-size: 13px;
  }

  /* WHATSAPP BTN */
  .btn-whatsapp {
    width: 64px;
    bottom: 20px;
    left: 20px;
  }

  .whatsapp-btn {
    width: 64px;
  }
}

/* ── MOBILE PEQUENO (≤ 400px) ── */
@media (max-width: 400px) {
    
    .home {
  padding: 80px 16px;
}
  .hero-logo {
    width: 220px;
  }

  .hero-desc {
    font-size: 14px;
  }

  .contato-title {
    font-size: 28px;
  }

  .section-title {
    font-size: 28px;
  }
}