/*!
 * Bootstrap v4.2.1 (https://getbootstrap.com/) - com melhorias de responsividade
 * Responsividade aprimorada para todos os tamanhos de tela
 */

/* ============================================================
   CSS CUSTOM PROPERTIES (VARIÁVEIS)
   ============================================================ */
:root {
  --blue: #007bff;
  --indigo: #6610f2;
  --purple: #6f42c1;
  --pink: #e83e8c;
  --red: #dc3545;
  --orange: #fd7e14;
  --yellow: #ffc107;
  --green: #ff6624;
  --teal: #20c997;
  --cyan: #17a2b8;
  --white: #fff;
  --gray: #6c757d;
  --gray-dark: #343a40;
  --secondary: #6c757d;
  --success: #ff6624;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #dc3545;
  --light: #f8f9fa;
  --dark: #343a40;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --primary: #ff6624;
  --primary-hover: #ff320d;
  --primary-active: #ff0901;
  --primary-dark: #025D35;
  --accent: #A70459;
  --accent-hover: #C9065F;
  --background: #F8F9FA;
  --background-card: #FFFFFF;
  --text-primary: #212529;
  --text-secondary: #6C757D;
  --border: #E9ECEF;

  /* Variáveis de responsividade */
  --container-max-sm: 540px;
  --container-max-md: 720px;
  --container-max-lg: 960px;
  --container-max-xl: 1140px;
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 6rem;
}

/* ============================================================
   RESET E BASE
   ============================================================ */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  color: #666666;
  background-color: #fff;
  text-align: left;
  overflow-x: hidden;
  /* Previne scroll horizontal */
}

body.menu-show {
  overflow: hidden;
  position: fixed;
  height: 100%;
  width: 100%;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border-style: none;
}

svg {
  overflow: hidden;
  vertical-align: middle;
}

/* ============================================================
   TIPOGRAFIA RESPONSIVA
   ============================================================ */
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  margin-bottom: 0.5rem;
  font-family: inherit;
  font-weight: 500;
  line-height: 1.2;
  color: inherit;
}

h1,
.h1 {
  font-size: clamp(1.8rem, 5vw, 2.5rem);
}

h2,
.h2 {
  font-size: clamp(1.5rem, 4vw, 2rem);
}

h3,
.h3 {
  font-size: clamp(1.3rem, 3.5vw, 1.75rem);
}

h4,
.h4 {
  font-size: clamp(1.1rem, 3vw, 1.5rem);
}

h5,
.h5 {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
}

h6,
.h6 {
  font-size: 1rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

a {
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
  color: #ff320d;
  text-decoration: none;
  background-color: transparent;
}

a:hover,
a:focus {
  text-decoration: none;
  color: #ff320d;
  outline: none !important;
}

/* ============================================================
   GRID SYSTEM - RESPONSIVO
   ============================================================ */
.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  max-width: var(--container-max-xl);
}

.container-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.row1 {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}

.no-gutters>.col,
.no-gutters>[class*="col-"] {
  padding-right: 0;
  padding-left: 0;
}

/* Colunas base */
.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12,
.col,
.col-auto,
.col-sm-1,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm,
.col-sm-auto,
.col-md-1,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md,
.col-md-auto,
.col-lg-1,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg,
.col-lg-auto,
.col-xl-1,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl,
.col-xl-auto {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

.col {
  flex-basis: 0;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}

.col-auto {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

.col-1 {
  flex: 0 0 8.33333%;
  max-width: 8.33333%;
}

.col-2 {
  flex: 0 0 16.66667%;
  max-width: 16.66667%;
}

.col-3 {
  flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  flex: 0 0 33.33333%;
  max-width: 33.33333%;
}

.col-5 {
  flex: 0 0 41.66667%;
  max-width: 41.66667%;
}

.col-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  flex: 0 0 58.33333%;
  max-width: 58.33333%;
}

.col-8 {
  flex: 0 0 66.66667%;
  max-width: 66.66667%;
}

.col-9 {
  flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  flex: 0 0 83.33333%;
  max-width: 83.33333%;
}

.col-11 {
  flex: 0 0 91.66667%;
  max-width: 91.66667%;
}

.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

/* ============================================================
   NAVBAR RESPONSIVA
   ============================================================ */
.navbar {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1rem;
}

.navbar-brand {
  display: inline-block;
  padding-top: 0.3125rem;
  padding-bottom: 0.3125rem;
  margin-right: 1rem;
  font-size: 1.25rem;
  line-height: inherit;
  white-space: nowrap;
  font-weight: 800;
  text-transform: uppercase;
}

.navbar-nav {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.navbar-collapse {
  flex-basis: 100%;
  flex-grow: 1;
  align-items: center;
}

.navbar-toggler {
  padding: 0.25rem 0.75rem;
  font-size: 1.25rem;
  line-height: 1;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 0.25rem;
  cursor: pointer;
}

.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  background: no-repeat center center;
  background-size: 100% 100%;
}

.ftco-navbar-light {
  background: transparent !important;
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  z-index: 3;
}

.ftco-navbar-light .navbar-brand {
  color: #fff;
}

.ftco-navbar-light .navbar-brand span {
  color: #f7b71d;
}

.ftco-navbar-light .navbar-nav>.nav-item>.nav-link {
  font-size: 15px;
  padding: .9rem 20px;
  color: #fff;
  font-weight: 400;
  opacity: 1 !important;
  display: block;
}

.ftco-navbar-light .navbar-nav>.nav-item>.nav-link:hover {
  color: #f7b71d;
}

.ftco-navbar-light .navbar-nav>.nav-item .dropdown-menu {
  border: none;
  background: #fff;
  box-shadow: 0px 10px 34px -20px rgba(0, 0, 0, 0.41);
}

.ftco-navbar-light .navbar-nav>.nav-item.cta>a {
  color: #fff;
  border: 1px solid #ff320d;
  padding: .5rem 18px;
  margin-top: 4px;
  background: #ff320d;
  border-radius: 2px;
}

.ftco-navbar-light .navbar-nav>.nav-item.active>a {
  color: #f7b71d;
}

.ftco-navbar-light .navbar-toggler {
  border: none;
  color: rgba(255, 255, 255, 0.5) !important;
  cursor: pointer;
  padding-right: 0;
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: .1em;
}

.ftco-navbar-light.scrolled {
  position: fixed;
  right: 0;
  left: 0;
  top: 0;
  margin-top: -130px;
  background: #fff !important;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}

.ftco-navbar-light.scrolled .nav-item.active>a {
  color: #ff320d !important;
}

.ftco-navbar-light.scrolled .nav-item.cta>a {
  color: #fff !important;
  background: #ff320d;
  border: none !important;
  padding: 0.5rem 20px !important;
  margin-top: 6px !important;
  border-radius: 5px;
}

.ftco-navbar-light.scrolled .navbar-toggler {
  border: none;
  color: rgba(0, 0, 0, 0.5) !important;
  border-color: rgba(0, 0, 0, 0.5) !important;
}

.ftco-navbar-light.scrolled .nav-link {
  padding-top: 0.9rem !important;
  padding-bottom: 0.9rem !important;
  color: #000000 !important;
}

.ftco-navbar-light.scrolled .nav-link.active {
  color: #ff320d !important;
}

.ftco-navbar-light.scrolled.awake {
  margin-top: 0px;
  transition: .3s all ease-out;
}

.ftco-navbar-light.scrolled .navbar-brand {
  color: #000000;
}

/* ============================================================
   HERO / BANNER
   ============================================================ */
.hero-wrap {
  width: 100%;
  height: 100vh;
  min-height: 600px;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
}

.hero-wrap .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

#hero {
  position: relative;
  z-index: 2;
  height: 100%;
}

#HeroLogo {
  max-width: 100%;
  height: auto;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 3;
  display: block;
}

#heroText {
  position: relative;
  z-index: 3;
}

.slider-text {
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.slider-text h1 {
  font-size: clamp(2rem, 5vw, 60px);
  color: #fff;
  line-height: 1.1;
  font-weight: 200;
}

.slider-text h1 span {
  display: block;
}

.slider-text p {
  line-height: 1.5;
  color: white;
}

.slider-text .breadcrumbs {
  font-size: 14px;
  margin-bottom: 20px;
  z-index: 99;
  text-transform: uppercase;
  font-weight: 500;
}

.slider-text .breadcrumbs span {
  color: rgba(255, 255, 255, 0.7);
}

.slider-text .breadcrumbs span i {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
}

.slider-text .breadcrumbs span a {
  color: rgba(255, 255, 255, 0.7);
}

.hero-wrap.hero-wrap-2 {
  height: 700px !important;
  position: relative;
}

.hero-wrap.hero-wrap-2 .overlay {
  width: 100%;
  opacity: .05;
  height: 700px;
}

.hero-wrap.hero-wrap-2 .slider-text {
  height: 700px !important;
}

/* ============================================================
   REQUEST FORM (FORMULÁRIO HERO)
   ============================================================ */
.request-form {
  background: #fff;
  padding: clamp(15px, 3vw, 30px);
  border-radius: 5px;
  box-shadow: 0px 10px 31px -21px rgba(0, 0, 0, 0.33);
  position: relative;
  z-index: 3;
}

.request-form h2 {
  color: #000000;
  font-size: clamp(16px, 2.5vw, 22px);
  font-weight: 600;
}

.request-form p {
  color: rgba(0, 0, 0, 0.5);
}

.request-form .form-group {
  position: relative;
  width: 100%;
  display: block;
}

.request-form .form-group .btn {
  width: 100%;
  display: block !important;
  border-radius: 0;
}

.request-form label.label {
  color: #000000;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 600;
}

.request-form .form-control {
  border: transparent !important;
  border: 1px solid rgba(0, 0, 0, 0.05) !important;
  height: 40px !important;
  background: transparent !important;
  color: rgba(0, 0, 0, 0.4) !important;
  font-size: 12px;
  border-radius: 0px;
  box-shadow: none !important;
}

.request-form textarea.form-control {
  height: inherit !important;
}

/* ============================================================
   SERVICES SECTION - CORRIGIDO PARA CENTRALIZAÇÃO
   ============================================================ */
.services-section {
  position: relative;
  background-image: url('https://images.unsplash.com/photo-1441974231531-c6227db76b6e?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
  background-size: cover;
  background-position: center;
  padding: clamp(40px, 8vw, 80px) 0;
  min-height: 10vh;
}

.services-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: '';
  opacity: .7;
  background: #000000;
}

.Servicesclass {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap; /* Alterado de nowrap para wrap */
  justify-content: center; /* Alterado de space-between para center */
  align-items: stretch;
  gap: 20px;
  margin: 0 auto; /* Garante centralização */
  padding: 0 15px; /* Padding nas laterais */
}

/* Container para cada card */
.services-column {
  display: flex;
  justify-content: center;
  flex: 0 0 calc(25% - 20px); /* 4 colunas em desktop */
  max-width: calc(25% - 20px);
}

.services {
  transition: all 0.3s ease;
  height: 100%;
  width: 100%;
}

.services.services-2 {
  background: rgba(251, 215, 343, 0.1);
  border-radius: 15px;
  padding: clamp(15px, 3vw, 30px) clamp(10px, 2vw, 20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transform: translateY(0);
  height: 100%;
  display: flex;
  flex-direction: column;
  max-width: 350px; /* Largura máxima para os cards */
  margin: 0 auto; /* Centraliza individualmente */
  width: 100%;
}

.services.services-2:hover {
  transform: translateY(-8px);
  background: rgba(255, 102, 36, 0.15);
  border-color: #ff320d;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.services.services-2 .icon {
  border: 2px solid #ff320d;
  width: 80px;
  height: 80px;
  margin: 0 auto;
  margin-bottom: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ff320d;
  transition: all 0.3s ease;
}

.services.services-2:hover .icon {
  transform: scale(1.1);
}

#iconimg {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.services.services-2 h3 {
  color: #fff;
  font-size: clamp(15px, 2vw, 18px);
  font-weight: 600;
  margin-bottom: 15px;
  transition: all 0.3s ease;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.services.services-2:hover h3 {
  color: #ff320d;
}

.services.services-2 .media-body {
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.services.services-2 .media-body p {
  margin: 0;
  line-height: 1.6;
  font-size: clamp(13px, 1.5vw, 14px);
  flex-grow: 1;
}

/* ============================================================
   HEADING SECTIONS
   ============================================================ */
.heading-section .subheading {
  font-size: 12px;
  display: block;
  margin-bottom: 5px;
  color: #ff320d;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.heading-section h2 {
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 600;
}

.heading-section.heading-section-white .subheading {
  color: rgba(255, 255, 255, 0.9);
}

.heading-section.heading-section-white h2 {
  font-size: clamp(24px, 4vw, 40px);
  color: #fff;
}

.heading-section.heading-section-white p {
  color: rgba(255, 255, 255, 0.9);
}

.heading-section-white .subheading {
  color: #ff320d;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 10px;
}

.heading-section-white h2 {
  color: #fff;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  margin: 0;
  text-align: center;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  cursor: pointer;
  border-radius: 3px;
  box-shadow: none !important;
  font-size: 14px;
  display: inline-block;
  font-weight: 400;
  text-align: center;
  vertical-align: middle;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  line-height: 1.5;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}

.btn:hover,
.btn:active,
.btn:focus {
  outline: none;
}

.btn.btn-primary {
  background: #ff320d !important;
  border: 1px solid #ff320d !important;
  color: #fff !important;
}

.btn.btn-primary:hover {
  border: 1px solid #ff320d;
  background: transparent;
  color: #ff320d;
}

.btn-block {
  display: block;
  width: 100%;
}

.btn-lg {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}

.btn-sm {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}

/* ============================================================
   FORM CONTROLS
   ============================================================ */
.form-control {
  display: block;
  width: 100%;
  height: calc(2.25rem + 2px);
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control:focus {
  color: #495057;
  background-color: #fff;
  border-color: #80bdff;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

textarea.form-control {
  height: auto;
}

.form-group {
  margin-bottom: 1rem;
}

/* ============================================================
   CARDS
   ============================================================ */
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 0.25rem;
}

.card-body {
  flex: 1 1 auto;
  padding: clamp(0.75rem, 2vw, 1.25rem);
}

.card-title {
  margin-bottom: 0.75rem;
}

/* ============================================================
   CAR WRAP
   ============================================================ */
.car-wrap {
  margin-bottom: 40px;
}

.car-wrap .img {
  width: 100%;
  height: clamp(150px, 20vw, 200px);
}

.car-wrap .price-wrap {
  padding: 10px;
  position: relative;
  display: inline-block;
  background: #fff;
  box-shadow: -10px 10px 25px -15px rgba(0, 0, 0, 0.17);
}

.car-wrap .price-wrap .rate {
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 300;
  color: #ff320d;
  line-height: 1.1;
}

.car-wrap .text {
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-top: none;
}

.car-wrap .text h2 {
  font-size: clamp(15px, 2.5vw, 18px);
}

/* ============================================================
   FOOTER
   ============================================================ */
.ftco-footer {
  font-size: 16px;
  background: #000;
}

.ftco-footer .ftco-footer-widget h2 {
  color: #fff;
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 400;
}

.ftco-footer .ftco-footer-widget ul li a {
  color: rgba(255, 255, 255, 0.8);
}

.ftco-footer p {
  color: rgba(255, 255, 255, 0.7);
}

.ftco-footer a {
  color: rgba(255, 255, 255, 0.7);
}

.ftco-footer a:hover {
  color: #fff;
}

.ftco-footer-social li {
  list-style: none;
  margin: 0 10px 0 0;
  display: inline-block;
}

.ftco-footer-social li a {
  height: 50px;
  width: 50px;
  display: block;
  float: left;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  position: relative;
}

/* ============================================================
   SECTION SPACING
   ============================================================ */
.ftco-section {
  padding: clamp(3rem, 6vw, 6rem) 0;
  position: relative;
}

.ftco-no-pt {
  padding-top: 0;
}

.ftco-no-pb {
  padding-bottom: 0;
}

/* ============================================================
   COUNTER
   ============================================================ */
.ftco-counter .text strong.number {
  font-weight: 600;
  font-size: clamp(20px, 3vw, 28px);
  color: #fff;
}

.ftco-counter .text span {
  display: block;
  font-size: clamp(13px, 1.8vw, 16px);
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 10px;
}

/* ============================================================
   CONTATO SOCIAL
   ============================================================ */
#contato0,
#contato1,
#contato2 {
  background: #fff;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  transition: all 0.9s ease;
}

#contato0:hover {
  background: #1A73E9;
  color: #fff;
}

#contato1:hover {
  background: #24CC63;
  color: #fff;
}

#contato2:hover {
  background: #E54033;
  color: #fff;
}

/* ============================================================
   UTILITÁRIOS FLEXBOX
   ============================================================ */
.d-flex {
  display: flex !important;
}

.d-block {
  display: block !important;
}

.d-none {
  display: none !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

.justify-content-start {
  justify-content: flex-start !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.justify-content-around {
  justify-content: space-around !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.align-items-end {
  align-items: flex-end !important;
}

.align-items-center {
  align-items: center !important;
}

.align-items-stretch {
  align-items: stretch !important;
}

.align-self-stretch {
  align-self: stretch;
}

.flex-column {
  flex-direction: column !important;
}

.flex-row {
  flex-direction: row !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-nowrap {
  flex-wrap: nowrap !important;
}

.text-center {
  text-align: center !important;
}

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

/* ============================================================
   POSIÇÃO E OVERFLOW
   ============================================================ */
.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.position-fixed {
  position: fixed !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.overflow-auto {
  overflow: auto !important;
}

/* ============================================================
   MARGENS E PADDINGS (UTILITÁRIOS)
   ============================================================ */
.m-0 {
  margin: 0 !important;
}

.mt-0,
.my-0 {
  margin-top: 0 !important;
}

.mb-0,
.my-0 {
  margin-bottom: 0 !important;
}

.ml-0,
.mx-0 {
  margin-left: 0 !important;
}

.mr-0,
.mx-0 {
  margin-right: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.mt-1,
.my-1 {
  margin-top: 0.25rem !important;
}

.mt-2,
.my-2 {
  margin-top: 0.5rem !important;
}

.mt-3,
.my-3 {
  margin-top: 1rem !important;
}

.mt-4,
.my-4 {
  margin-top: 1.5rem !important;
}

.mt-5,
.my-5 {
  margin-top: 3rem !important;
}

.mb-1,
.my-1 {
  margin-bottom: 0.25rem !important;
}

.mb-2,
.my-2 {
  margin-bottom: 0.5rem !important;
}

.mb-3,
.my-3 {
  margin-bottom: 1rem !important;
}

.mb-4,
.my-4 {
  margin-bottom: 1.5rem !important;
}

.mb-5,
.my-5 {
  margin-bottom: 3rem !important;
}

.ml-auto,
.mx-auto {
  margin-left: auto !important;
}

.mr-auto,
.mx-auto {
  margin-right: auto !important;
}

.m-auto {
  margin: auto !important;
}

.p-0 {
  padding: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}

.py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.py-3 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.py-4 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.px-1 {
  padding-left: 0.25rem !important;
  padding-right: 0.25rem !important;
}

.px-2 {
  padding-left: 0.5rem !important;
  padding-right: 0.5rem !important;
}

.px-3 {
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}

.px-4 {
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
}

.px-5 {
  padding-left: 3rem !important;
  padding-right: 3rem !important;
}

/* ============================================================
   WIDTHS E HEIGHTS
   ============================================================ */
.w-25 {
  width: 25% !important;
}

.w-50 {
  width: 50% !important;
}

.w-75 {
  width: 75% !important;
}

.w-100 {
  width: 100% !important;
}

.w-auto {
  width: auto !important;
}

.mw-100 {
  max-width: 100% !important;
}

.h-100 {
  height: 100% !important;
}

.h-auto {
  height: auto !important;
}

.min-vh-100 {
  min-height: 100vh !important;
}

/* ============================================================
   BACKGROUND COLORS
   ============================================================ */
.bg-primary {
  background: #ff6624 !important;
}

.bg-light {
  background: #f8f9fa !important;
}

.bg-dark {
  background: #343a40 !important;
}

.bg-white {
  background-color: #fff !important;
}

.bg-transparent {
  background-color: transparent !important;
}

.bg-black {
  background: #000000;
}

/* ============================================================
   TEXT COLORS
   ============================================================ */
.text-white {
  color: #fff !important;
}

.text-primary {
  color: #ff320d !important;
}

.text-secondary {
  color: #6c757d !important;
}

.text-muted {
  color: #6c757d !important;
}

.text-dark {
  color: #343a40 !important;
}

.text-success {
  color: #ff6624 !important;
}

/* ============================================================
   SHADOWS E BORDERS
   ============================================================ */
.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.shadow {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.shadow-lg {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

.shadow-none {
  box-shadow: none !important;
}

.rounded {
  border-radius: 0.25rem !important;
}

.rounded-circle {
  border-radius: 50% !important;
}

.rounded-0 {
  border-radius: 0 !important;
}

.border {
  border: 1px solid #dee2e6 !important;
}

.border-0 {
  border: 0 !important;
}


/* ============================================================
   =============================================================
   MEDIA QUERIES - BREAKPOINTS RESPONSIVOS
   =============================================================
   ============================================================ */

/* ── Extra Small (xs): até 575px ── */
@media (max-width: 575.98px) {

  /* Container */
  .container {
    padding-right: 12px;
    padding-left: 12px;
  }

  /* Navbar */
  .ftco-navbar-light {
    background: rgba(0, 0, 0, 0.85) !important;
    position: relative;
    top: 0;
  }

  .ftco-navbar-light .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding-left: 12px;
    padding-right: 12px;
  }

  .ftco-navbar-light .navbar-nav {
    padding-bottom: 10px;
    width: 100%;
  }

  .ftco-navbar-light .navbar-nav>.nav-item>.nav-link {
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 0;
    color: #fff;
    font-size: 14px;
  }

  .ftco-navbar-light.scrolled .nav-item>.nav-link {
    padding-left: 0 !important;
    padding-right: 0 !important;
    padding-bottom: 0 !important;
  }

  #MenuLogo {
    width: 100%;
    max-width: 150px;
  }

  /* Hero */
  .hero-wrap {
    height: auto;
    min-height: 100vh;
    padding-top: 80px;
    padding-bottom: 40px;
  }

  .slider-text {
    height: auto;
    min-height: unset;
    padding: 2rem 0;
  }

  .slider-text h1 {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
    text-align: center;
  }

  .slider-text p {
    text-align: center;
  }

  #HeroLogo {
    max-width: 75%;
    margin: 0 auto 1.5rem auto;
  }

  /* Request form - vira coluna completa */
  .request-form {
    padding: 15px;
    margin-top: 20px;
  }

  /* Grid - todas as colunas viram full width */
  [class*="col-"] {
    flex: 0 0 100%;
    max-width: 100%;
  }

  /* Services - CORRIGIDO PARA CENTRALIZAÇÃO */
  .Servicesclass {
    flex-direction: column;
    gap: 15px;
    padding: 0 10px;
    justify-content: center;
  }

  .services-column {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .services.services-2 {
    max-width: 100%;
    margin: 0 auto;
    width: 100%;
  }

  .services.services-2 h3 {
    font-size: 16px;
    min-height: auto;
  }

  .services.services-2 .media-body p {
    font-size: 14px;
  }

  .heading-section-white h2 {
    font-size: 1.6rem;
  }

  /* Sections */
  .ftco-section {
    padding: 3rem 0;
  }

  /* Footer */
  .ftco-footer .col-md-3,
  .ftco-footer .col-md-4 {
    margin-bottom: 2rem;
  }

  /* Counter */
  .ftco-counter .counter-wrap {
    margin-bottom: 20px;
  }

  /* Tables responsivas */
  .table-responsive {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  /* Blog */
  .block-20 {
    height: 200px;
  }

  /* Flexbox helpers xs */
  .d-xs-none {
    display: none !important;
  }

  .d-xs-block {
    display: block !important;
  }

  .d-xs-flex {
    display: flex !important;
  }

  .text-xs-center {
    text-align: center !important;
  }

  .text-xs-left {
    text-align: left !important;
  }
}

/* ── Small (sm): 576px – 767px ── */
@media (min-width: 576px) {

  .container {
    max-width: var(--container-max-sm);
  }

  /* Grid sm */
  .col-sm {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

  .col-sm-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }

  .col-sm-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }

  .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-sm-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }

  .col-sm-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }

  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-sm-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }

  .col-sm-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }

  .col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-sm-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }

  .col-sm-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }

  .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  /* Navbar sm */
  .navbar-expand-sm {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }

  .navbar-expand-sm .navbar-nav {
    flex-direction: row;
  }

  .navbar-expand-sm .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }

  .navbar-expand-sm .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }

  .navbar-expand-sm .navbar-toggler {
    display: none;
  }

  /* Services sm - 2 colunas centralizadas */
  .Servicesclass {
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
  }

  .services-column {
    flex: 0 0 calc(50% - 15px);
    max-width: calc(50% - 15px);
  }

  .services.services-2 {
    max-width: 100%;
  }

  /* Utilitários sm */
  .d-sm-none {
    display: none !important;
  }

  .d-sm-block {
    display: block !important;
  }

  .d-sm-flex {
    display: flex !important;
  }

  .d-sm-inline-block {
    display: inline-block !important;
  }

  .text-sm-center {
    text-align: center !important;
  }

  .text-sm-left {
    text-align: left !important;
  }

  .text-sm-right {
    text-align: right !important;
  }

  .justify-content-sm-center {
    justify-content: center !important;
  }

  .justify-content-sm-between {
    justify-content: space-between !important;
  }

  .align-items-sm-center {
    align-items: center !important;
  }

  .m-sm-0 {
    margin: 0 !important;
  }

  .m-sm-3 {
    margin: 1rem !important;
  }

  .mt-sm-0,
  .my-sm-0 {
    margin-top: 0 !important;
  }

  .mb-sm-3,
  .my-sm-3 {
    margin-bottom: 1rem !important;
  }

  .ml-sm-auto,
  .mx-sm-auto {
    margin-left: auto !important;
  }

  .mr-sm-auto,
  .mx-sm-auto {
    margin-right: auto !important;
  }
}

/* ── Medium (md): 768px – 991px ── */
@media (min-width: 768px) {

  .container {
    max-width: var(--container-max-md);
  }

  /* Grid md */
  .col-md {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

  .col-md-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }

  .col-md-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }

  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-md-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }

  .col-md-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }

  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-md-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }

  .col-md-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }

  .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-md-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }

  .col-md-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }

  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  /* Navbar md */
  .navbar-expand-md {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }

  .navbar-expand-md .navbar-nav {
    flex-direction: row;
  }

  .navbar-expand-md .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }

  .navbar-expand-md .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }

  .navbar-expand-md .navbar-toggler {
    display: none;
  }

  /* Services md - 2 colunas */
  .Servicesclass {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }

  .services-column {
    flex: 0 0 calc(50% - 20px);
    max-width: calc(50% - 20px);
  }

  .services.services-2 {
    max-width: 100%;
  }

  /* Utilitários md */
  .d-md-none {
    display: none !important;
  }

  .d-md-block {
    display: block !important;
  }

  .d-md-flex {
    display: flex !important;
  }

  .d-md-inline-block {
    display: inline-block !important;
  }

  .text-md-center {
    text-align: center !important;
  }

  .text-md-left {
    text-align: left !important;
  }

  .text-md-right {
    text-align: right !important;
  }

  .justify-content-md-center {
    justify-content: center !important;
  }

  .justify-content-md-between {
    justify-content: space-between !important;
  }

  .align-items-md-center {
    align-items: center !important;
  }

  .m-md-0 {
    margin: 0 !important;
  }

  .m-md-3 {
    margin: 1rem !important;
  }

  .mt-md-0,
  .my-md-0 {
    margin-top: 0 !important;
  }

  .mb-md-3,
  .my-md-3 {
    margin-bottom: 1rem !important;
  }

  .mb-md-5,
  .my-md-5 {
    margin-bottom: 3rem !important;
  }

  .ml-md-auto,
  .mx-md-auto {
    margin-left: auto !important;
  }

  .mr-md-auto,
  .mx-md-auto {
    margin-right: auto !important;
  }

  .py-md-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  /* Hero md */
  .hero-wrap {
    height: 100vh;
    min-height: 700px;
  }

  #HeroLogo {
    max-width: 80%;
  }

  .img-2 {
    height: 600px;
  }
}

@media (max-width: 767.98px) {

  /* Navbar mobile */
  .ftco-navbar-light {
    background: rgba(0, 0, 0, 0.9) !important;
    position: relative;
    top: 0;
  }

  .ftco-navbar-light .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }

  .ftco-navbar-light .navbar-nav {
    padding-bottom: 10px;
    width: 100%;
  }

  .ftco-navbar-light .navbar-nav>.nav-item>.nav-link {
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 0;
    color: #fff;
  }

  #MenuLogo {
    width: 100%;
    max-width: 160px;
  }

  /* Hero */
  .hero-wrap {
    height: auto;
    min-height: 100vh;
    padding-top: 80px;
    padding-bottom: 30px;
  }

  .slider-text {
    height: auto;
    min-height: unset;
    padding: 2rem 0;
    align-items: flex-start;
  }

  .slider-text h1 {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  #HeroLogo {
    max-width: 70%;
    margin: 0 auto 1.5rem auto;
  }

  /* Services - CORRIGIDO PARA CENTRALIZAÇÃO */
  .services-section {
    padding: 3.5rem 0;
  }

  .Servicesclass {
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    padding: 0 20px;
  }

  .services-column {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .services.services-2 {
    max-width: 100%;
    margin: 0 auto;
    width: 100%;
  }

  .services.services-2 h3 {
    font-size: 18px;
    min-height: auto;
  }

  .services.services-2 .media-body p {
    font-size: 15px;
  }

  .heading-section-white h2 {
    font-size: 2rem;
  }

  .heading-section h2 {
    font-size: 1.8rem;
  }

  /* Footer */
  .ftco-footer [class*="col-"] {
    margin-bottom: 2rem;
  }

  /* Contact */
  .contact-section .contact-info {
    margin-bottom: 1.5rem;
  }

  /* About */
  .about-image {
    height: 300px;
    margin-bottom: 30px;
  }

  /* Map */
  #map {
    height: 300px;
  }

  /* Table responsive */
  .table {
    min-width: 800px !important;
  }

  /* Img-2 */
  .img-2 {
    height: 400px;
  }
}

/* ── Large (lg): 992px – 1199px ── */
@media (min-width: 992px) {

  .container {
    max-width: var(--container-max-lg);
  }

  /* Grid lg */
  .col-lg {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

  .col-lg-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }

  .col-lg-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }

  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-lg-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }

  .col-lg-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }

  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-lg-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }

  .col-lg-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }

  .col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-lg-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }

  .col-lg-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }

  .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  /* Navbar lg - expande */
  .ftco-navbar-light {
    background: transparent !important;
    position: absolute;
    top: 20px;
  }

  .ftco-navbar-light .navbar-nav {
    flex-direction: row;
  }

  .ftco-navbar-light .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }

  .ftco-navbar-light .navbar-toggler {
    display: none;
  }

  /* Services lg - 4 colunas */
  .Servicesclass {
    flex-wrap: nowrap;
    gap: 20px;
    justify-content: center;
  }

  .services-column {
    flex: 1;
    max-width: calc(25% - 20px);
  }

  .services.services-2 {
    max-width: 350px;
  }

  /* Contact */
  .contact-section .contact-info .border-height {
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    border-right: 1px solid rgba(0, 0, 0, 0.1);
  }

  /* Modal lg */
  .modal-lg,
  .modal-xl {
    max-width: 800px;
  }

  /* Utilitários lg */
  .d-lg-none {
    display: none !important;
  }

  .d-lg-block {
    display: block !important;
  }

  .d-lg-flex {
    display: flex !important;
  }

  .text-lg-center {
    text-align: center !important;
  }

  .text-lg-left {
    text-align: left !important;
  }

  .text-lg-right {
    text-align: right !important;
  }

  .justify-content-lg-center {
    justify-content: center !important;
  }

  .justify-content-lg-between {
    justify-content: space-between !important;
  }

  .align-items-lg-center {
    align-items: center !important;
  }

  .m-lg-0 {
    margin: 0 !important;
  }

  .m-lg-3 {
    margin: 1rem !important;
  }

  .mt-lg-0,
  .my-lg-0 {
    margin-top: 0 !important;
  }

  .mb-lg-3,
  .my-lg-3 {
    margin-bottom: 1rem !important;
  }

  .ml-lg-auto,
  .mx-lg-auto {
    margin-left: auto !important;
  }

  .mr-lg-auto,
  .mx-lg-auto {
    margin-right: auto !important;
  }
}

@media (max-width: 991.98px) {

  /* Navbar mobile/tablet */
  .ftco-navbar-light {
    background: rgba(0, 0, 0, 0.85) !important;
    color: #000000 !important;
    position: relative;
    top: 0;
  }

  .ftco-navbar-light .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }

  .ftco-navbar-light .navbar-brand {
    margin-right: 0;
  }

  .ftco-navbar-light .navbar-toggler {
    margin-left: auto;
    padding: 10px;
  }

  .ftco-navbar-light .navbar-nav {
    padding-bottom: 10px;
  }

  .ftco-navbar-light .navbar-nav>.nav-item>.nav-link {
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 0;
    color: #fff;
  }

  .ftco-navbar-light.scrolled .nav-item>.nav-link {
    padding-left: 0 !important;
    padding-right: 0 !important;
    padding-bottom: 0 !important;
  }

  .ftco-navbar-light.scrolled .navbar-nav {
    background: none;
    border-radius: 0px;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .ftco-navbar-light.scrolled .nav-item.active>a {
    color: #ff320d !important;
  }

  #MenuLogo {
    width: 100%;
    max-width: 180px;
  }

  /* Hero */
  .hero-wrap {
    height: auto;
    min-height: 100vh;
  }

  .slider-text {
    height: auto;
    min-height: 100vh;
    padding-top: 80px;
    padding-bottom: 40px;
    flex-direction: column;
    justify-content: center;
  }

  #HeroLogo {
    max-width: 80%;
    margin: 0 auto 1.5rem auto;
  }

  /* Services tablet */
  .Servicesclass {
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
  }

  .services-column {
    flex: 0 0 calc(50% - 15px);
    max-width: calc(50% - 15px);
  }

  /* Counter */
  .ftco-counter {
    background-position: center center !important;
  }

  .ftco-counter .img {
    height: 400px;
    background-position: top center !important;
  }

  /* Aside stretch */
  .aside-stretch {
    background: transparent;
  }

  .aside-stretch:after {
    background: transparent;
    display: none;
  }

  /* VH */
  .ftco-vh-100 {
    height: inherit;
    padding-top: 5em;
    padding-bottom: 5em;
  }

  /* Map */
  #map {
    height: 300px;
  }
}

/* ── Extra Large (xl): 1200px+ ── */
@media (min-width: 1200px) {

  .container {
    max-width: var(--container-max-xl);
  }

  /* Grid xl */
  .col-xl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

  .col-xl-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }

  .col-xl-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }

  .col-xl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-xl-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }

  .col-xl-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }

  .col-xl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-xl-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }

  .col-xl-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }

  .col-xl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-xl-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }

  .col-xl-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }

  .col-xl-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  /* Services xl - 4 colunas lado a lado */
  .Servicesclass {
    flex-wrap: nowrap;
    gap: 20px;
    justify-content: center;
  }

  .services-column {
    flex: 1;
    max-width: calc(25% - 20px);
  }

  .services.services-2 {
    max-width: 350px;
  }

  /* Modal xl */
  .modal-xl {
    max-width: 1140px;
  }

  /* Utilitários xl */
  .d-xl-none {
    display: none !important;
  }

  .d-xl-block {
    display: block !important;
  }

  .d-xl-flex {
    display: flex !important;
  }

  .text-xl-center {
    text-align: center !important;
  }

  .text-xl-left {
    text-align: left !important;
  }

  .text-xl-right {
    text-align: right !important;
  }

  .justify-content-xl-center {
    justify-content: center !important;
  }

  .justify-content-xl-between {
    justify-content: space-between !important;
  }

  .align-items-xl-center {
    align-items: center !important;
  }

  .m-xl-0 {
    margin: 0 !important;
  }

  .m-xl-3 {
    margin: 1rem !important;
  }

  .mt-xl-0,
  .my-xl-0 {
    margin-top: 0 !important;
  }

  .mb-xl-3,
  .my-xl-3 {
    margin-bottom: 1rem !important;
  }

  .ml-xl-auto,
  .mx-xl-auto {
    margin-left: auto !important;
  }

  .mr-xl-auto,
  .mx-xl-auto {
    margin-right: auto !important;
  }
}

/* ── 2XL: 1400px+ (telas muito grandes) ── */
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }

  .hero-wrap {
    height: 100vh;
  }

  .Servicesclass {
    gap: 25px;
  }

  .services-column {
    max-width: calc(25% - 25px);
  }

  .services.services-2 h3 {
    font-size: 20px;
  }

  .services.services-2 .media-body p {
    font-size: 15px;
  }
}

/* ── Ultra Wide: 1920px+ ── */
@media (min-width: 1920px) {
  .container {
    max-width: 1600px;
  }

  body {
    font-size: 18px;
  }

  .heading-section-white h2 {
    font-size: 3.5rem;
  }

  .heading-section h2 {
    font-size: 3rem;
  }

  .slider-text h1 {
    font-size: 80px;
  }

  .services.services-2 .icon {
    width: 100px;
    height: 100px;
  }

  #iconimg {
    width: 50px;
    height: 50px;
  }
}

/* ============================================================
   PRINT
   ============================================================ */
@media print {

  *,
  *::before,
  *::after {
    text-shadow: none !important;
    box-shadow: none !important;
  }

  a:not(.btn) {
    text-decoration: underline;
  }

  thead {
    display: table-header-group;
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }

  @page {
    size: a4;
  }

  body {
    min-width: 992px !important;
  }

  .container {
    min-width: 992px !important;
  }

  .navbar {
    display: none;
  }

  .ftco-footer {
    display: none;
  }
}

/* ============================================================
   ACESSIBILIDADE E REDUÇÃO DE MOVIMENTO
   ============================================================ */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .btn,
  .services.services-2,
  a {
    transition: none !important;
  }
}

/* ============================================================
   MODO ESCURO (dark mode nativo do sistema)
   ============================================================ */
@media (prefers-color-scheme: dark) {

  /* Apenas ajustes sutis para não quebrar o design existente */
  .request-form {
    background: #1a1a1a;
    color: #e0e0e0;
  }

  .request-form h2 {
    color: #fff;
  }

  .request-form label.label {
    color: #e0e0e0;
  }
}