/* ==========================================================================
   COLACOR COMUNICAÇÃO VISUAL - STYLESHEET PRINCIPAL DE ALTA FIDELIDADE
   100% Fiel aos Prints do Site Oficial, Ultra-Leve e Moderno
   ========================================================================== */

:root {
  --primary-red: #E41E25;
  --primary-red-hover: #c4181e;
  --primary-orange: #F76F15;
  --primary-orange-light: #F79021;
  --primary-blue: #00579D;
  --primary-blue-hover: #00457c;
  --primary-yellow: #FFBD00;
  --dark: #1C1D1E;
  --text-dark: #222222;
  --text-muted: #54595F;
  --text-light: #7A7A7A;
  --bg-white: #FFFFFF;
  --bg-light: #F8F9FA;
  --radius-colacor: 20px 0px 20px 0px;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --container-max: 1140px;
}

/* Reset e Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted);
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--bg-white);
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

ul, ol {
  list-style: none;
}

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* Botões Colacor */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 34px;
  font-size: 0.88rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: var(--radius-colacor);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  white-space: nowrap;
}

.btn-red {
  background-color: var(--primary-red);
  color: #ffffff !important;
}

.btn-red:hover {
  background-color: var(--primary-red-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(228, 30, 37, 0.35);
}

.btn-blue {
  background-color: var(--primary-blue);
  color: #ffffff !important;
}

.btn-blue:hover {
  background-color: var(--primary-blue-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 87, 157, 0.35);
}

.btn-block {
  width: 100%;
}

/* ==========================================================================
   HEADER COM LOGO CENTRAL E LINHAS LARANJAS
   ========================================================================== */
.site-header {
  background-color: #ffffff;
  padding-top: 15px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  position: relative;
  z-index: 1000;
}

.header-top {
  text-align: center;
  padding-bottom: 12px;
}

.header-top .brand-logo {
  display: inline-block;
}

.header-top .brand-logo img {
  height: 55px;
  width: auto;
  margin: 0 auto;
}

.header-nav-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding-bottom: 15px;
}

.header-line {
  flex: 1;
  height: 3px;
  background-color: var(--primary-orange);
}

.header-nav-container {
  padding: 0 30px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 500;
  color: #333333;
  text-decoration: none;
  transition: var(--transition);
  position: relative;
  padding: 3px 0;
}

.nav-link:hover {
  color: var(--primary-red);
}

.nav-link.active {
  color: var(--primary-red);
  font-weight: 700;
  border-bottom: 2px solid var(--primary-red);
  padding-bottom: 2px;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--dark);
  cursor: pointer;
  padding: 8px;
}

.mobile-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  margin: 5px auto;
  background-color: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* ==========================================================================
   HERO SLIDER (HOME)
   ========================================================================== */
.hero-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #111;
  aspect-ratio: 1920 / 650;
  min-height: 260px;
  max-height: 650px;
}

.slider-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease-in-out;
}

.slide-item {
  min-width: 100%;
  height: 100%;
  position: relative;
  display: block;
}

.slide-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 40px;
  height: 40px;
  background-color: rgba(0, 0, 0, 0.4);
  color: #ffffff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  font-size: 1.2rem;
}

.slider-arrow:hover {
  background-color: var(--primary-red);
}

.slider-arrow.prev { left: 20px; }
.slider-arrow.next { right: 20px; }

.slider-dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.slider-dot.active {
  background-color: var(--primary-red);
  width: 24px;
  border-radius: 10px;
}

/* ==========================================================================
   PÁGINA INÍCIO - SEÇÕES
   ========================================================================== */
.section-about-home {
  padding: 60px 0 45px 0;
  background-color: #ffffff;
}

.about-home-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 50px;
  align-items: center;
}

.about-home-image {
  text-align: center;
}

.about-home-image img {
  max-height: 420px;
  margin: 0 auto;
}

.about-tag-center {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  display: block;
  margin-bottom: 6px;
}

.about-tag-red {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-red);
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.about-title {
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--primary-red);
  line-height: 1.25;
  margin-bottom: 18px;
}

.about-title-center {
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--primary-red);
  line-height: 1.3;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 20px auto;
}

.about-desc {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.about-features-list {
  margin: 25px 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.about-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.about-feature-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.about-feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.about-feature-info h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-yellow);
  margin-bottom: 3px;
}

.about-feature-info p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 0;
}

.about-buttons-row {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 25px;
}

/* DESTAQUE NÁUTICO FULL-BLEED */
.section-nautico-full {
  display: flex;
  width: 100%;
  min-height: 480px;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}

.nautico-left-bg {
  width: 50%;
  background-image: url('../images/adesivagem-nautica.png');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 440px;
}

.nautico-right-content {
  width: 50%;
  position: relative;
  background-image: url('../images/colacor-laranja.png');
  background-position: bottom right 40px;
  background-repeat: no-repeat;
  background-size: 80% auto;
  padding: 50px 60px 180px 60px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.nautico-accent-icon {
  width: 16px;
  height: auto;
  max-height: 45px;
  margin-bottom: 18px;
  display: block;
}

.nautico-main-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.nautico-text-block h2 {
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--primary-red);
  line-height: 1.25;
  margin: 0;
}

.nautico-btn-block {
  flex-shrink: 0;
}

.nautico-btn-block .btn {
  padding: 16px 36px;
  font-size: 0.9rem;
  font-weight: 600;
}

/* TECNOLOGIA EM IMPRESSÃO (FUNDO LARANJA) */
.section-tech-orange {
  background-image: url('../images/fundo-laranja-1.png');
  background-color: var(--primary-orange);
  background-size: cover;
  background-position: center;
  padding: 75px 20px;
  text-align: center;
  color: #ffffff;
  width: 100%;
}

.tech-orange-tag {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #ffffff;
  display: inline-block;
  margin-bottom: 12px;
}

.tech-orange-title {
  font-size: 2.1rem;
  font-weight: 800;
  color: #ffffff;
  max-width: 900px;
  margin: 0 auto 30px auto;
  line-height: 1.3;
}

/* SERVIÇOS (FUNDO AZUL ONDULADO NA HOME) */
.section-services-blue {
  background-image: url('../images/fundo-azul.png');
  background-color: #0b4f8a;
  background-size: cover;
  background-position: center top;
  padding: 80px 0;
  text-align: center;
  color: #ffffff;
}

.services-blue-tag {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #ffffff;
  margin-bottom: 10px;
  display: inline-block;
}

.services-blue-title {
  font-size: 1.45rem;
  font-weight: 700;
  color: #ffffff;
  max-width: 950px;
  margin: 0 auto 40px auto;
  line-height: 1.4;
}

.services-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-bottom: 40px;
  text-align: center;
}

.service-white-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 35px 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: var(--transition);
}

.service-white-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.service-card-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
}

.service-card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-card-heading {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary-yellow);
  margin-bottom: 12px;
}

.service-card-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 0;
}

/* BANNER CTA LONAS (FUNDO AMARELO/DOURADO) */
.section-cta-yellow {
  background-image: url('../images/fundo-home-detalhe.png');
  background-color: var(--primary-orange-light);
  background-size: cover;
  background-position: center;
  padding: 55px 0;
  width: 100%;
}

.cta-yellow-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.cta-yellow-text {
  font-size: 2.1rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  max-width: 650px;
}

/* CLIENTES / PORTFÓLIO (HOME) - CARDS AMPLIADOS E INTERATIVOS */
.section-clients {
  padding: 65px 0 60px 0;
  background-color: #fcfcfc;
  text-align: center;
  border-top: 1px solid #f0f0f0;
}

.clients-tag {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary-red);
  margin-bottom: 10px;
  display: inline-block;
}

.clients-title {
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--primary-red);
  margin-bottom: 35px;
  line-height: 1.3;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  max-width: 1140px;
  margin: 0 auto;
  align-items: stretch;
}

.client-item {
  position: relative;
  width: 100%;
  aspect-ratio: 350 / 400;
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.06);
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.client-item:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
}

.client-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.client-item:hover img {
  transform: scale(1.08);
}

.client-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(228, 30, 37, 0.82);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #ffffff;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  padding: 15px;
  text-align: center;
}

.client-item:hover .client-item-overlay {
  opacity: 1;
}

.client-item-overlay svg {
  width: 36px;
  height: 36px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.client-item-overlay span {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ==========================================================================
   LIGHTBOX MODAL GLOBAL (AMPLIAÇÃO DE IMAGENS)
   ========================================================================== */
.lightbox-modal {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.94);
  backdrop-filter: blur(10px);
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 20px;
}

.lightbox-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox-dialog {
  position: relative;
  max-width: 92vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: lightboxPop 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes lightboxPop {
  0% {
    transform: scale(0.85);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.lightbox-image {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
  user-select: none;
}

.lightbox-close-btn {
  position: absolute;
  top: 25px;
  right: 25px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 100010;
}

.lightbox-close-btn:hover {
  background: var(--primary-red);
  border-color: var(--primary-red);
  transform: rotate(90deg) scale(1.1);
}

.lightbox-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 100005;
}

.lightbox-nav-btn:hover {
  background: var(--primary-red);
  border-color: var(--primary-red);
  transform: translateY(-50%) scale(1.15);
}

.lightbox-nav-btn.prev {
  left: 30px;
}

.lightbox-nav-btn.next {
  right: 30px;
}

.lightbox-counter {
  position: absolute;
  bottom: 25px;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 6px 18px;
  border-radius: 20px;
  letter-spacing: 1px;
}

@media (max-width: 992px) {
  .clients-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
  }
}

@media (max-width: 768px) {
  .clients-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }
  .lightbox-nav-btn {
    width: 42px;
    height: 42px;
  }
  .lightbox-nav-btn.prev {
    left: 10px;
  }
  .lightbox-nav-btn.next {
    right: 10px;
  }
  .lightbox-close-btn {
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

/* ==========================================================================
   PÁGINA QUEM SOMOS (MISSÃO, VISÃO, VALORES 01, 02, 03)
   ========================================================================== */
.section-quem-somos-content {
  padding: 40px 0 60px 0;
  background-color: #ffffff;
}

.pillars-numbered-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  margin-top: 45px;
}

.pillar-numbered-card {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.pillar-num-circle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-color: var(--primary-orange-light);
  color: #ffffff;
  font-weight: 800;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pillar-num-body h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-orange-light);
  margin-bottom: 6px;
}

.pillar-num-body p {
  font-size: 0.86rem;
  line-height: 1.6;
  color: var(--text-light);
}

/* ==========================================================================
   PÁGINA SERVIÇOS (CATÁLOGO EM CARDS COM BORDA COLACOR)
   ========================================================================== */
.section-services-page {
  padding: 40px 0 50px 0;
  background-color: #ffffff;
}

.services-catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 35px;
  margin-bottom: 45px;
}

.service-box-card {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-colacor);
  box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.12);
  padding: 22px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: var(--transition);
}

.service-box-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary-red);
  box-shadow: 0px 4px 12px rgba(228, 30, 37, 0.2);
}

.service-box-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-box-icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.service-box-card:hover .service-box-icon img {
  transform: scale(1.1);
}

.service-box-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary-red);
  line-height: 1.3;
}

.services-page-bottom-cta {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary-red);
  text-align: center;
  margin-top: 30px;
  margin-bottom: 10px;
}

/* ==========================================================================
   PÁGINA CONTATO
   ========================================================================== */
.section-contact-page {
  padding: 40px 0 60px 0;
  background-color: #ffffff;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 45px;
  align-items: start;
}

.contact-page-form-col {
  display: flex;
  flex-direction: column;
}

.contact-page-form-col .about-title-center {
  margin-bottom: 15px;
  font-size: 1.35rem;
}

.contact-input-field {
  width: 100%;
  padding: 11px 14px;
  font-size: 0.9rem;
  border: 1px solid #d5d5d5;
  border-radius: 4px;
  background-color: #ffffff;
  color: #333333;
  margin-bottom: 12px;
}

.contact-input-field:focus {
  outline: none;
  border-color: var(--primary-red);
  box-shadow: 0 0 0 2px rgba(228, 30, 37, 0.15);
}

.contact-textarea-field {
  width: 100%;
  padding: 11px 14px;
  font-size: 0.9rem;
  border: 1px solid #d5d5d5;
  border-radius: 4px;
  background-color: #ffffff;
  color: #333333;
  min-height: 100px;
  margin-bottom: 14px;
  resize: vertical;
}

.contact-textarea-field:focus {
  outline: none;
  border-color: var(--primary-red);
  box-shadow: 0 0 0 2px rgba(228, 30, 37, 0.15);
}

.contact-submit-btn {
  width: 100%;
  padding: 14px;
  background-color: var(--primary-red);
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius-colacor);
  cursor: pointer;
  transition: var(--transition);
  margin-bottom: 25px;
}

.contact-submit-btn:hover {
  background-color: var(--primary-red-hover);
  transform: translateY(-2px);
}

.contact-page-info-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-page-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--text-dark);
}

.contact-page-icon-round {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--primary-orange);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-page-map-frame {
  width: 100%;
  height: 440px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.contact-page-map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ==========================================================================
   RODAPÉ OFICIAL SPLIT 50/50 (100% FIEL AO PRINT)
   Lado Esquerdo: Fundo Laranja Sangrado com Foto da Fachada
   Lado Direito: Fundo Branco com Informações e Formulário
   ========================================================================== */
.site-footer-split {
  display: flex;
  width: 100%;
  background-color: #ffffff;
  margin-top: auto;
  border-top: 1px solid #eeeeee;
}

.footer-split-left {
  width: 50%;
  background-image: url('../images/fundo-laranja-1.png');
  background-color: var(--primary-orange);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 30px;
}

.footer-facade-img {
  width: 100%;
  max-width: 520px;
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  border: 3px solid rgba(255,255,255,0.2);
}

.footer-split-right {
  width: 50%;
  background-color: #ffffff;
  padding: 50px 60px 40px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.footer-right-content-wrap {
  max-width: 480px;
  width: 100%;
}

.footer-info-heading {
  color: var(--primary-red);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.footer-split-contact-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-split-contact-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.footer-split-icon-circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: var(--primary-orange);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-split-address {
  font-size: 0.86rem;
  color: var(--text-muted);
  margin: 12px 0 14px 0;
  line-height: 1.5;
}

.footer-split-social-row {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.footer-split-social-btn {
  width: 32px;
  height: 32px;
  background-color: var(--primary-orange);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.footer-split-social-btn:hover {
  background-color: var(--primary-red);
  transform: translateY(-2px);
}

.footer-split-form-heading {
  color: var(--primary-red);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.footer-split-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 10px;
}

.footer-split-input {
  width: 100%;
  padding: 9px 12px;
  font-size: 0.88rem;
  border: 1px solid #d5d5d5;
  border-radius: 4px;
  background-color: #ffffff;
  color: #333333;
}

.footer-split-input:focus {
  outline: none;
  border-color: var(--primary-red);
}

.footer-split-textarea {
  width: 100%;
  padding: 9px 12px;
  font-size: 0.88rem;
  border: 1px solid #d5d5d5;
  border-radius: 4px;
  background-color: #ffffff;
  color: #333333;
  min-height: 75px;
  margin-bottom: 12px;
  resize: vertical;
}

.footer-split-textarea:focus {
  outline: none;
  border-color: var(--primary-red);
}

.footer-split-submit-btn {
  width: 100%;
  padding: 12px;
  background-color: var(--primary-red);
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 700;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius-colacor);
  cursor: pointer;
  transition: var(--transition);
}

.footer-split-submit-btn:hover {
  background-color: var(--primary-red-hover);
  transform: translateY(-2px);
}

/* ==========================================================================
   BOTÃO FLUTUANTE WHATSAPP OFICIAL (5511999155359)
   ========================================================================== */
.whatsapp-floating-button {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 62px;
  height: 62px;
  background-color: #25D366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.5);
  cursor: pointer;
  z-index: 99999;
  transition: var(--transition);
  text-decoration: none;
}

.whatsapp-floating-button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.7);
  background-color: #22bf5b;
}

.whatsapp-floating-button svg {
  width: 36px;
  height: 36px;
  fill: #ffffff;
}

.scroll-top-btn {
  position: fixed;
  bottom: 25px;
  left: 25px;
  width: 42px;
  height: 42px;
  background-color: var(--dark);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  border: none;
  z-index: 990;
}

.scroll-top-btn.is-visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top-btn:hover {
  background-color: var(--primary-red);
}

/* ==========================================================================
   RESPONSIVIDADE
   ========================================================================== */
@media (max-width: 991px) {
  .about-home-grid,
  .contact-page-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .site-footer-split {
    flex-direction: column;
  }

  .footer-split-left,
  .footer-split-right {
    width: 100%;
  }

  .footer-split-right {
    padding: 40px 25px;
  }

  .section-nautico-full {
    flex-direction: column;
  }

  .nautico-left-bg {
    width: 100%;
    min-height: 280px;
  }

  .nautico-right-content {
    width: 100%;
    padding: 35px 20px 140px 20px;
    background-size: 90% auto;
    background-position: bottom center;
  }

  .nautico-main-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .services-cards-grid,
  .pillars-numbered-grid {
    grid-template-columns: 1fr;
  }

  .services-catalog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-yellow-inner {
    flex-direction: column;
    text-align: center;
  }

  .header-nav-bar {
    position: relative;
  }

  .header-line {
    display: none;
  }

  .nav-menu {
    position: fixed;
    top: 90px;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    flex-direction: column;
    padding: 25px 0;
    gap: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transform: translateY(-150%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
  }

  .nav-menu.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .mobile-toggle {
    display: block;
    position: absolute;
    right: 20px;
    top: 25px;
  }
}

@media (max-width: 600px) {
  .footer-split-form-grid {
    grid-template-columns: 1fr;
  }
  .services-catalog-grid {
    grid-template-columns: 1fr;
  }
  .tech-orange-title {
    font-size: 1.6rem;
  }
  .cta-yellow-text {
    font-size: 1.6rem;
  }
}

/* ==========================================================================
   MODAL DE CONFIRMAÇÃO DE ENVIO DE FORMULÁRIO (SUCESSO)
   ========================================================================== */
.form-success-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(6px);
  z-index: 100020;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.form-success-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.form-success-card {
  background: #ffffff;
  width: 100%;
  max-width: 480px;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
  position: relative;
  animation: successPop 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes successPop {
  0% {
    transform: scale(0.85);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.form-success-icon-wrap {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: #e8f8ed;
  color: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px auto;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.2);
}

.form-success-icon-wrap svg {
  width: 40px;
  height: 40px;
}

.form-success-title {
  font-size: 1.45rem;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 12px;
  line-height: 1.3;
}

.form-success-desc {
  font-size: 0.96rem;
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 28px;
}

.form-success-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-success-btn-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: #25D366;
  color: #ffffff;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 24px;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
  border: none;
  cursor: pointer;
}

.form-success-btn-wa:hover {
  background-color: #1eb956;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
  color: #ffffff;
}

.form-success-btn-wa svg {
  width: 20px;
  height: 20px;
}

.form-success-btn-close {
  background: transparent;
  border: 1px solid #d1d5db;
  color: #6b7280;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.form-success-btn-close:hover {
  background: #f3f4f6;
  color: #111827;
  border-color: #9ca3af;
}

.form-success-close-x {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f3f4f6;
  border: none;
  color: #6b7280;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.form-success-close-x:hover {
  background: #e5e7eb;
  color: #111827;
}
