/* ====== RESET ====== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
  scroll-behavior: smooth;
}

body {
  background: #f4f4f4;
  color: #333;
  line-height: 1.5;
}

header {
  position: fixed;
  top: 0;
  z-index: 50;
  width: 100vw;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

header .container {
  width: 100%;
  padding: 0 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Hamburger button (hidden desktop, shown on breakpoints) */
.hamburger {
  display: none;
  appearance: none;
  border: none;
  background: transparent;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 6px;
}

.hamburger-box {
  display: inline-block;
  position: relative;
  width: 24px;
  height: 16px;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #0a3b5e;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.hamburger-inner {
  top: 50%;
  transform: translateY(-50%);
}

.hamburger-inner::before {
  content: "";
  top: -7px;
}

.hamburger-inner::after {
  content: "";
  top: 7px;
}

.hamburger.open .hamburger-inner {
  transform: rotate(45deg);
}

.hamburger.open .hamburger-inner::before {
  transform: rotate(90deg) translateX(-0.5px);
  top: 0;
}

.hamburger.open .hamburger-inner::after {
  opacity: 0;
}

/* ====== LOGO ====== */
.logo {
  height: 56px;
  width: auto;
  transition: transform 0.3s ease;
  border-radius: 10px;
}

.logo:hover {
  transform: scale(1.03);
}

/* ====== MENU ====== */
.menu-principal {
  display: flex;
  list-style: none;
  gap: 32px;
}

.menu-principal a {
  text-decoration: none;
  color: #333;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s;
}

.menu-principal a:hover {
  transform: scale(1.05);
}

/* ====== BOTÕES HEADER ====== */
.header-btns {
  display: flex;
  align-items: center;
  gap: 14px;
}

.btn-primary {
  padding: 10px 18px;
  border-radius: 8px;
  background: #1a73e8;
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 15px;
  transition: 0.3s;
  text-decoration: none;
}

.btn-primary:hover {
  transform: scale(1.05);
  background-color: #1669c1;
}

/* ====== HERO / BANNER ====== */
.hero {
  width: 100%;
  margin-top: 80px;
  padding: 67px 0;
  background: radial-gradient(
      ellipse at left,
      rgba(255, 255, 255, 0.02) 0%,
      rgba(255, 255, 255, 0) 20%
    ),
  linear-gradient(180deg, #003366 0%, #0f4b78 35%, #133e63 100%);
  color: #fff;
}

.hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 80px;
}

.hero-left {
  width: 58%;
}

.hero-right {
  width: 38%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mini-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.06);
  color: #dbeffd;
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 14px;
  margin-top: 18px;
}

.hero-title {
  font-weight: 800;
  line-height: 0.95;
  margin: 6px 0 20px 0;
}

.hero-title .big-white {
  color: #ffffff;
  font-size: 75px;
  letter-spacing: 2px;
}
.hero-title .big-orange {
  color: #f07b20;
  font-size: 65px;
}
.hero-title .big-yellow {
  color: #ffd400;
  font-size: 65px;
}

.hero-desc {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  margin: 18px 0 26px 0;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 22px;
}

.btn-cta {
  display: inline-block;
  padding: 14px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
}

.btn-cta-primary {
  background: #f07b20;
  color: #fff;
  box-shadow: 0 6px 18px rgba(240, 123, 32, 0.18);
}

.btn-cta-primary:hover {
  background: #d96a0f;
  transform: scale(1.05);
}

.btn-cta-primary:active {
  transform: scale(0.98);
}

.btn-cta-outline {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  padding: 12px 20px;
}

.btn-cta-outline:hover {
  background: #fff;
  color: #0a3b5e;
  transform: scale(1.05);
}

.hero-badges {
  display: flex;
  gap: 14px;
  margin-top: 8px;
}

.badge {
  background: rgba(255, 255, 255, 0.04);
  color: #e7f6ff;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.badge:hover {
  background: rgba(255, 255, 255, 0.1);
}

.logo-panel {
  width: 520px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-panel img {
  max-width: 88%;
  height: auto;
  display: block;
  border-radius: 10px;
}

.svg-button {
  color: #f1c40f;
}

/* ====== SESSÃO SOBRE ====== */
.section-default {
  padding: 80px 20px;
  max-width: 800px;
  margin: 0 auto;
}

.section-default h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 10px;
  margin-top: 50px;
  font-weight: 700;
}

.section-default p,
li {
  max-width: 800px;
  margin: 0 auto;
  font-size: 18px;
}

/* ====== GALERIA ====== */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.gallery img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* ====== FORMULÁRIO ====== */
.form-section form {
  max-width: 600px;
  margin: 0 auto;
}

/* Nav (links no header) - underline laranja animado da esquerda para direita */
.menu-principal a {
  position: relative;
  text-decoration: none;
  color: #333;
  font-size: 16px;
  font-weight: 500;
  display: inline-block;
}

.menu-principal a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  height: 4px;
  width: 100%;
  background: #f07b20; /* mesmo tom laranja do site */
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.34s cubic-bezier(0.2, 0.9, 0.2, 1);
  border-radius: 4px;
  pointer-events: none;
}

.menu-principal a:hover::after,
.menu-principal a:focus::after,
.menu-principal a:focus-visible::after {
  transform: scaleX(1);
}

.menu-principal a:hover {
  color: #0a3b5e;
}

.form-section input,
.form-section textarea {
  padding: 12px 14px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  outline: none;
  transition: 0.3s;
}

.form-section input:focus,
.form-section textarea:focus {
  border-color: #1a73e8;
}

.form-section button {
  background: #1a73e8;
  border: none;
  padding: 14px;
  color: #fff;
  font-size: 17px;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.form-section button:hover {
  opacity: 0.85;
}

/* ====== SERVIÇOS ====== */

.section-subtitle {
  text-align: center;
  color: #5b6f7b;
  font-size: 16px;
  margin-top: 8px;
}

.servicos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 34px;
}

.servicos-grid .card {
  background: #fff;
  border: 2px solid rgba(240, 123, 32, 0.12);
  border-radius: 12px;
  padding: 28px 26px;
  transition: transform 0.28s ease, box-shadow 0.28s ease,
    border-color 0.28s ease;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.servicos-grid .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(3, 46, 84, 0.08);
  border-color: #f07b20;
}

.servicos-grid .card .icon {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    180deg,
    rgba(240, 200, 160, 0.18),
    rgba(240, 200, 160, 0.08)
  );
}

.servicos-grid .card .icon svg {
  width: 28px;
  height: 28px;
  color: #e67e22; /* cor laranja inicial */
  stroke: currentColor;
  transition: color 0.28s ease, transform 0.28s ease;
}

.servicos-grid .card:hover .icon svg {
  color: #003366; /* azul escuro no hover */
  transform: translateY(-2px);
}

.servicos-grid .card h3 {
  color: #0a3b5e;
  margin-top: 6px;
}

.servicos-grid .card p {
  color: #5b6f7b;
  line-height: 1.8;
  font-size: 15px;
}

#servicos .container {
  padding: 40px 80px;
  background-color: #f4f4f4;
}

@media (max-width: 980px) {
  .servicos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .servicos-grid {
    grid-template-columns: 1fr;
  }
}

/* Cookie consent banner */
.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 18px;
  background: rgba(10, 58, 86, 0.98);
  color: #fff;
  padding: 14px 16px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(3, 46, 84, 0.18);
  z-index: 110;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  width: 90%;
}

.cookie-banner .cookie-text {
  flex: 1;
  font-size: 14px;
  color: #e9f6ff;
  margin-right: 12px;
}

.cookie-banner .cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-btn {
  padding: 10px 14px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-weight: 700;
}

.cookie-btn.accept {
  background: #f07b20;
  color: #fff;
}

.cookie-btn.manage {
  background: transparent;
  color: #dfeffb;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 480px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
  }
  .cookie-banner .cookie-actions {
    width: 100%;
    justify-content: flex-end;
  }
}

/* ====== MODAL DE IMAGEM (GALERIA) ====== */
.image-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 120;
}

.image-modal.open {
  display: flex;
}

.image-modal .modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(4, 20, 34, 0.7);
  backdrop-filter: blur(2px);
}

.image-modal .modal-content {
  position: relative;
  max-width: 1100px;
  width: calc(100% - 40px);
  margin: 0 20px;
  z-index: 121;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}


/* ====== MODO ESPECIAL PARA PEÇAS ====== */
.modal-content.pecas-mode {
  padding: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
  max-width: fit-content !important;
}

.modal-content.pecas-mode img {
  display: block;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 auto !important;
}

/* Botão de fechar */

.modal-img {
  width: 70%;
  height: auto;
  max-height: 75vh;
  border-radius: 20px;
  box-shadow: 0 18px 48px rgba(3, 46, 84, 0.18);
  object-fit: cover;
  display: block;
}

.modal-caption {
    color: #e9f6ff;
    background: rgba(0, 0, 0, 0.25);
    padding: 8px 21px;
    border-radius: 8px;
    align-self: stretch;
    text-align: left;
    font-size: 14px;
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.modal-caption ul, p, li {  
  margin: 6px 0;
  font-size: 14px;
}

.modal-close {
  display: none;
}

@media (max-width: 1000px) {
  .modal-content {
    max-width: 90%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }

  .image-modal .modal-content img {
    max-width: 55%;
  }

  .modal-caption {
    width: 45%;
  }

  .modal-caption ul, p, li {
    font-size: 12px;
  }
}

@media (max-width: 800px){
  .modal-content {
    max-width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .modal-caption {
    width: 90%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }

  .image-modal .modal-content img {
    max-width: 80%;
  }
}

@media (min-width: 300px ) and (max-width: 799px){
  .modal-caption {
    font-size: 13px;
  }
    .modal-content {
    max-width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-wrap: wrap;
  }

  .modal-caption {
  width: 90%;
  height: 250px;
  max-height: 250px;
  display: block;
  overflow-y: auto;
  padding: 10px;
  font-size: 13px;
  }

  .image-modal .modal-content img {
    position: relative;
    max-width: 300px;
    width: calc(100% - 40px);
    margin: 0 20px;
    z-index: 121;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
    .modal-close {
    position: absolute;
    top: 8px;
    right: 8px;
    display: block;
    width: 36px;
    height: 36px;

    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;

    font-size: 24px;
    font-weight: bold;
    line-height: 36px;
    text-align: center;

    cursor: pointer;
    z-index: 130;
  }

  .modal-close:hover {
    background: rgba(0, 0, 0, 0.8);
  }
}

@media (min-height: 1080px) {
  .modal-content {
  max-width: 90%;
  display: flex;
  align-items: center;
  }
}

/* ====== FOOTER ====== */
footer {
  background: #111;
  color: #fff;
  padding: 40px 20px;
  text-align: center;
  margin-top: 60px;
}

footer p {
  opacity: 0.8;
  font-size: 15px;
}

.footer-contact a {
  color: inherit;
  text-decoration: none;
  font-weight: 600;
}
.footer-contact .footer-map {
  margin-top: 12px;
  border-radius: 8px;
  overflow: hidden;
}
.footer-contact .footer-map iframe {
  display: block;
  width: 100%;
  height: 180px;
  border: 0;
}

@media (max-width: 900px) {
  .footer-map iframe {
    height: 150px;
  }
}

/* ====== SITE FOOTER (layout do print) ====== */
.site-footer {
  background: linear-gradient(180deg, #052b52 0%, #083a61 100%);
  color: #dfeffb;
  padding: 0px 80px;
}

.site-footer .footer-top {
  padding-bottom: 36px;
}

.footer-grid {
    display: flex;
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    padding-top: 50px;
}

.footer-brand {
  justify-self: center;
}

.footer-brand img {
  height: 46px;
  margin-bottom: 14px;
  border-radius: 10px;
}

.footer-brand p {
  max-width: 320px;
  color: rgba(233, 246, 255, 0.9);
  margin-bottom: 12px;
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 8px;
  justify-content: center;
}

.social {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}

.e-font-icon-svg {
  fill: #fff;
}

.e-font-icon-svg:hover {
  fill: #ffd54a;
}

.footer-links h5,
.footer-services h5,
.footer-contact h5 {
  color: #ffd54a;
  margin-bottom: 12px;
  font-size: 16px;
}

.footer-links ul,
.footer-services ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li,
.footer-services ul li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(233, 246, 255, 0.9);
  text-decoration: none;
}

.footer-links a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-contact p {
  margin-bottom: 10px;
  color: rgba(233, 246, 255, 0.9);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  padding: 18px 0;
  margin-top: 18px;
}

.footer-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(233, 246, 255, 0.7);
  font-size: 14px;
}

.footer-bottom-row a {
  color: rgba(233, 246, 255, 0.7);
  text-decoration: none;
}

.footer-links-small a {
  color: rgba(233, 246, 255, 0.7);
  margin-left: 18px;
  text-decoration: none;
}

@media (max-width: 1000px) {
  .footer-grid {        
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer-brand p {
    max-width: 100%;
  }
  .footer-bottom-row {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .footer-links-small a {
    margin-left: 12px;
  }
}

/* ====== RESPONSIVE ====== */
@media (max-width: 768px) {
  nav ul {
    display: none;
  }

  .hero h1 {
    font-size: 32px;
  }

  header .container {
    height: 70px;
  }
}

/* ====== ANIMAÇÕES DE REVELAÇÃO ====== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left.show {
  opacity: 1;
  transform: translateX(0);
  padding-top: 20px;
}

.reveal-right.show {
  opacity: 1;
  transform: translateX(0);
}

/* ====== ABOUT / SOBRE ====== */
.about-section {
  padding: 80px 80px;
  background: #fff;
  color: #16324a;
}

.section-header {
  text-align: center;
  margin-bottom: 36px;
}

.section-header .mini-tag {
  display: inline-block;
  background: #fff4ea;
  color: #f07b20;
  padding: 8px 14px;
  border-radius: 20px;
  font-weight: 600;
}

.about-title {
  font-size: 40px;
  color: #0a3b5e;
  margin: 14px 0 6px;
}

.accent-bar {
  width: 80px;
  height: 6px;
  background: #f07b20;
  margin: 8px auto 0;
  border-radius: 4px;
}

.about-grid {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  max-width: 1180px;
  margin: 0 auto 28px;
}

.about-text {
  flex: 1;
  color: #3b5566;
  font-size: 16px;
  line-height: 1.9;
}

.about-text p {
  margin-bottom: 18px;
}

.about-media {
  width: 46%;
  display: flex;
  justify-content: center;
}

.about-image {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(3, 46, 84, 0.12);
  display: block;
}

.about-cards {
  max-width: 1180px;
  margin: 28px auto 0;
  display: flex;
  gap: 18px;
}

.about-card {
  flex: 1;
  display: flex;
  gap: 12px;
  align-items: center;
  background: #fff;
  border-radius: 12px;
  padding: 18px;
  box-shadow: 0 6px 18px rgba(3, 46, 84, 0.06);
  border: 1px solid rgba(10, 58, 86, 0.03);
}

.card-icon {
  font-size: 24px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: linear-gradient(180deg, #fffaf5, #fff2e6);
  color: #f07b20;
}

.card-body h4 {
  margin: 0 0 6px 0;
  font-size: 16px;
  color: #0a3b5e;
}

.card-body p {
  margin: 0;
  color: #5b6f7b;
  font-size: 14px;
}

@media (max-width: 900px) {
  .about-grid {
    flex-direction: column-reverse;
  }

  .about-media {
    width: 100%;
  }

  .about-image {
    max-height: 420px;
    object-fit: cover;
  }
}

@media (max-width: 480px) {
  .about-title {
    font-size: 28px;
  }

  .about-text {
    font-size: 15px;
  }

  .about-cards {
    flex-direction: column;
  }
}

/* ====== GALLERY ====== */
.gallery-section {
  padding: 80px 80px 100px;
  background: #f7f9fb;
}

.gallery-filters {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin: 24px 0 14px;
}

.filter-btn {
  background: #fff;
  border: 1px solid rgba(10, 58, 86, 0.06);
  padding: 10px 16px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  color: #1a3b56;
}

.filter-btn.active {
  background: #f07b20;
  color: #fff;
  box-shadow: 0 8px 20px rgba(240, 123, 32, 0.14);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 20px;
}

.gallery-item {
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 26px rgba(3, 46, 84, 0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

/* Mostrar borda laranja ao passar o mouse */
.gallery-item {
  box-sizing: border-box;
  border: 4px solid transparent; /* borda inicial invisível para não alterar layout ao ativar */
  transition: transform .28s ease, box-shadow .28s ease, border-color .24s ease;
}
.gallery-item:hover {
  border-color: #f07b20;
}

.gallery-item img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  border-radius:10px;
}

.gallery-item img:hover {
  box-shadow: 0 22px 50px rgba(3, 46, 84, 0.12);
  border: 1px solid rgba(240, 123, 32, 0.12);
}

@media (max-width: 1000px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item img {
    height: 300px;
  }
}

@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item img {
    height: 220px;
  }
}

/* ====== CONTACT (SEÇÃO CONTATO) ====== */
.contato-section {
  padding: 80px 80px 120px;
  background: #f7f9fb;
}

.contact-grid {
  display: flex;
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: flex-start;
}

.contact-info {
  flex: 1;
  background: linear-gradient(180deg, #073b5a, #0a4b6b);
  color: #fff;
  border-radius: 18px;
  padding: 32px;
}

.contact-info h3 {
  margin: 0 0 18px;
  color: #fff;
  font-size: 20px;
}

.contact-info ul {
  list-style: none;
  margin-top: 10px;
  padding: 0;
}

.contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 18px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  color: #f07b20;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 18px;
  height: 18px;
  color: inherit;
  stroke: currentColor;
}

.contact-text {
  font-size: 15px;
  color: #e9f6ff;
  line-height: 1.4;
}

.contact-text a {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.map-wrap {
  margin-top: 20px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(3, 46, 84, 0.12);
}

.map-wrap iframe {
  width: 100%;
  height: 220px;
  border: 0;
  display: block;
}

.contact-form {
  flex: 1;
  background: #fff;
  border-radius: 14px;
  padding: 32px;
  box-shadow: 0 18px 40px rgba(3, 46, 84, 0.08);
  border: 1px solid rgba(10, 58, 86, 0.04);
}

.contact-form h3 {
  margin: 0 0 14px;
  color: #0a3b5e;
  font-size: 20px;
}

.contact-form .form-row {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #e6eaee;
  outline: none;
  font-size: 15px;
  background: #fbfdff;
}

.contact-form textarea {
  resize: none;
  margin-top: 20px;
}

.contact-form .btn-cta {
  width: 100%;
  display: inline-block;
  text-align: center;
  padding: 14px 18px;
  border-radius: 8px;
  background: #f07b20;
  color: #fff;
  border: none;
  font-weight: 700;
}

.contact-form .btn-cta:hover {
  background: #d96a0f;
}

@media (max-width: 1000px) {
  .contact-grid {
    flex-direction: column;
  }

  .map-wrap iframe {
    height: 180px;
  }
}

/* ====== RESPONSIVIDADE ADICIONAL: TABLET (<=1000px) e CELULAR (<=600px) ====== */
@media (max-width: 1000px) {
  header .container {
    padding: 0 32px;
    height: 72px;
  }
  .logo {
    height: 48px;
  }

  /* mostrar hamburger em tablet */
  .hamburger {
    display: inline-flex;
  }

  /* esconder botão principal (ex: orçamento) para ganhar espaço */
  .btn-primary {
    display: none;
  }

  /* menu móvel: escondido por padrão e mostrado quando .open */
  .menu-principal {
    display: none;
  }
  .menu-principal.open {
    display: flex;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    gap: 12px;
    padding: 12px 20px 18px;
    box-shadow: 0 10px 30px rgba(3, 46, 84, 0.12);
    z-index: 60;
  }
  .menu-principal.open a {
    color: #0a3b5e;
    padding: 10px 8px;
    border-radius: 8px;
  }

  /* HERO: empilha colunas e reduz tamanhos */
  .hero-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 0 32px;
  }
  .hero-left,
  .hero-right {
    width: 100%;
  }
  .logo-panel {
    width: 100%;
    height: 200px;
    display: flex;
    justify-content: center;
  }
  .logo-panel img {
    max-width: 72%;
  }
  .hero-title .big-white {
    font-size: 48px;
  }
  .hero-title .big-orange,
  .hero-title .big-yellow {
    font-size: 44px;
  }
  .hero-desc {
    font-size: 16px;
    max-width: 100%;
  }
  .hero-ctas {
    flex-wrap: wrap;
  }
  .btn-cta {
    padding: 12px 18px;
  }

  /* Nav compacto */
  .menu-principal {
    gap: 18px;
  }
  .menu-principal a {
    font-size: 15px;
  }

  /* Serviços: 2 colunas (já adequado) e cards com menos padding */
  .servicos-grid .card {
    padding: 22px;
  }

  /* Galeria */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-item img {
    height: 300px;
  }
  .gallery-filters {
    gap: 10px;
    flex-wrap: wrap;
  }

  /* Contato formularios */
  .contact-form .form-row {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
  }

  /* Footer: duas colunas já aplicado, só diminui paddings */
  .site-footer {
    padding-top: 36px;
  }
  .footer-brand img {
    height: 44px;
  }
}

@media (max-width: 600px) {
  header .container {
    padding: 0 18px;
    height: 66px;
  }
  .logo {
    height: 44px;
  }

  /* HERO mobile: títulos menores e CTAs empilhados */
  .hero {
    padding: 36px 0;
  }
  .hero-inner {
    padding: 0 18px;
  }
  .hero-title .big-white {
    font-size: 32px;
  }
  .hero-title .big-orange,
  .hero-title .big-yellow {
    font-size: 30px;
  }
  .hero-desc {
    font-size: 14px;
  }
  .hero-ctas {
    flex-direction: column;
    width: 100%;
  }
  .hero-badges {
    flex-direction: column;
  }
  .btn-cta {
    width: 100%;
    padding: 12px 14px;
    font-size: 15px;
  }

  /* Logo panel menor */
  .logo-panel {
    height: 140px;
  }
  .logo-panel img {
    max-width: 60%;
  }

  /* Serviços: 1 coluna (já aplicado), reduzir gaps */
  .servicos-grid {
    gap: 18px;
  }
  .servicos-grid .card {
    padding: 18px;
    min-height: auto;
  }

  /* Galeria: 1 coluna */
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-item img {
    height: 220px;
  }

  /* Contato: empilhar e reduzir paddings */
  .contact-grid {
    flex-direction: column;
    gap: 18px;
    padding: 0 18px;
    display: flex;
    align-content: center;
    flex-wrap: wrap;
  }
  .contact-info,
  .contact-form {
    padding: 20px;
  }
  .map-wrap iframe {
    height: 160px;
  }

    /* Contato formularios */
  .contact-form .form-row {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
    flex-direction: column;
  }

  /* Footer: 1 coluna (já aplicado), tornar textos menores */
  .footer-brand img {
    height: 38px;
  }
  .footer-links h5,
  .footer-services h5,
  .footer-contact h5 {
    font-size: 15px;
  }
  .footer-bottom-row {
    font-size: 13px;
  }

  /* Simplificar header layout */
  .header-btns {
    display: none;
  }
  .menu-principal {
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
  }
  .menu-principal a {
    font-size: 14px;
  }
}




