@charset "UTF-8";
:root {
  --azul-topo: #032b69;
  --azul-escuro: #042a66;
  --azul-banner: #062f73;
  --azul-titulo: #133d7a;
  --laranja: #f7931e;
  --laranja-forte: #ff6f0f;
  --verde: #7cc242;
  --texto: #222222;
  --borda: #d9d9d9;
  --branco: #ffffff;
  --gap-boxes: 26px;
  --cards-per-view: 4;
  --font-principal: "Montserrat", sans-serif;
  --font-secundario: "Nunito Sans", sans-serif;
  --font-terceario: "Roboto Condensed", sans-serif;
}

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

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #ffffff;
  color: var(--texto);
}

.container-site {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 12px;
  padding-right: 12px;
}

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

/* =========================
   BARRA SUPERIOR
========================= */
.topbar {
  background: var(--azul-topo);
}

.topbar-inner {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.top-social {
  color: var(--verde);
  font-size: 21px;
  line-height: 1;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s ease;
}

.top-social:hover {
  color: #ffffff;
}

.btn-top-whatsapp {
  background: var(--verde);
  color: #111111;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  height: 38px;
  min-width: 170px;
  padding: 0 24px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s ease;
}

.btn-top-whatsapp:hover {
  background: #6ab53a;
  color: #111111;
}

/* =========================
   NAVBAR
========================= */
.main-navbar {
  background: #ffffff;
  border-bottom: 2px solid var(--borda);
  padding: 14px 0;
  position: relative;
  z-index: 20;
}

.navbar-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}

.navbar-brand {
  margin: 0;
  padding: 0;
}

.navbar-brand img {
  width: 290px;
  max-width: 100%;
  height: auto;
  display: block;
}

.navbar-collapse {
  flex-grow: 1;
}

.navbar-nav {
  gap: 8px;
}

.navbar-nav .nav-link {
  color: var(--texto);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 10px 7px !important;
  white-space: nowrap;
  font-family: var(--font-principal);
}

.navbar-nav .nav-link:hover {
  color: var(--laranja);
}

.navbar-nav .nav-link.active {
  color: var(--laranja);
}

.navbar-toggler {
  border: 1px solid #d8d8d8;
  border-radius: 6px;
  padding: 8px 10px;
  background: #ffffff;
  display: none;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  background-image: none;
  width: 24px;
  height: 18px;
  position: relative;
  display: inline-block;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after,
.navbar-toggler-icon span {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #333333;
  border-radius: 2px;
}

.navbar-toggler-icon::before {
  top: 0;
}

.navbar-toggler-icon span {
  top: 8px;
}

.navbar-toggler-icon::after {
  bottom: 0;
}

/* =========================
   BANNER PRINCIPAL
========================= */
.hero-banner {
  position: relative;
  overflow: hidden;
  background: var(--azul-banner);
}

.hero-banner .carousel-item {
  height: 470px;
  position: relative;
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transform: scale(1.01);
}

.hero-slide-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  /*
  background: linear-gradient(90deg, rgba(2, 23, 63, 0.92) 0%, rgba(3, 30, 83, 0.82) 28%, rgba(3, 31, 89, 0.68) 48%, rgba(3, 34, 96, 0.35) 67%, rgba(3, 34, 96, 0.12) 100%);
  */
}

.hero-slide-1 .hero-slide-bg {
  background-image: url("assets/img/banner-01.jpg");
}

.hero-slide-2 .hero-slide-bg {
  background-image: url("assets/img/banner-02.jpg");
}

.hero-content-wrap {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 560px;
  color: #ffffff;
  padding: 20px 0;
}

.hero-kicker {
  display: block;
  font-size: 20px;
  line-height: 1.1;
  font-weight: 500;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.hero-title {
  font-size: 56px;
  line-height: 0.95;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.hero-title .text-green {
  color: var(--verde);
}

.hero-title .text-orange {
  color: var(--laranja);
}

.hero-subtitle {
  font-size: 19px;
  line-height: 1.15;
  font-weight: 700;
  margin-bottom: 8px;
  text-transform: uppercase;
  color: #ffffff;
}

.hero-desc {
  font-size: 14px;
  line-height: 1.45;
  color: #d8e2f3;
  margin-bottom: 22px;
  max-width: 470px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-hero-primary,
.btn-hero-secondary {
  min-height: 46px;
  padding: 0 22px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  transition: 0.2s ease;
}

.btn-hero-primary {
  background: var(--laranja);
  color: #ffffff;
  border: 2px solid var(--laranja);
}

.btn-hero-primary:hover {
  background: #df7f12;
  border-color: #df7f12;
  color: #ffffff;
}

.btn-hero-secondary {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.65);
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.hero-content-right {
  margin-left: auto;
  text-align: right;
  max-width: 560px;
}

.hero-content-right .hero-desc {
  margin-left: auto;
}

.hero-banner .carousel-indicators {
  margin-bottom: 18px;
  z-index: 5;
}

.hero-banner .carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  margin: 0 5px;
  background-color: rgba(255, 255, 255, 0.45);
  opacity: 1;
}

.hero-banner .carousel-indicators .active {
  background-color: var(--laranja);
}

.hero-banner .carousel-control-prev,
.hero-banner .carousel-control-next {
  width: 60px;
  opacity: 0.95;
  z-index: 5;
}

.hero-banner .carousel-control-prev-icon,
.hero-banner .carousel-control-next-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.14);
  background-size: 45% 45%;
}

/* =========================
   TAMANHOS DE BOXES
========================= */
.boxes-section {
  background: #ffffff;
  padding: 52px 0 34px;
  font-family: var(--font-principal);
}

.boxes-header {
  text-align: center;
  margin-bottom: 34px;
}

.boxes-title {
  font-size: 34px;
  line-height: 1.1;
  font-weight: 800;
  color: var(--azul-titulo);
  margin-bottom: 2px;
}

.boxes-subtitle {
  font-size: 17px;
  line-height: 1.35;
  color: #353535;
  margin-bottom: 2px;
  font-family: var(--font-secundario);
}

.boxes-caption {
  font-size: 17px;
  line-height: 1.2;
  font-weight: 700;
  color: var(--laranja);
  font-family: var(--font-secundario);
}

.boxes-slider-area {
  position: relative;
  padding: 0 54px;
}

.boxes-viewport {
  overflow: hidden;
  width: 100%;
}

.boxes-track {
  display: flex;
  gap: var(--gap-boxes);
  transition: transform 0.45s ease;
  will-change: transform;
}

.box-card {
  flex: 0 0 calc((100% - var(--gap-boxes) * (var(--cards-per-view) - 1)) / var(--cards-per-view));
  text-align: center;
}

.box-card a {
  text-decoration: none;
}

.box-card a:hover {
  opacity: 0.82;
  transition: all 0.2s ease;
}

.box-card-image {
  width: 100%;
  height: 280px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: 12px;
}

.box-card-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

.box-card-title {
  font-size: 16px;
  line-height: 1.2;
  font-weight: 800;
  color: var(--azul-titulo);
  margin-bottom: 0;
}

.box-card-metragem {
  font-size: 15px;
  line-height: 1.15;
  font-weight: 800;
  color: var(--laranja);
  margin-bottom: 8px;
  font-family: var(--font-secundario);
}

.box-card-text {
  max-width: 230px;
  margin: 0 auto;
  font-size: 13px;
  line-height: 1.35;
  color: #3a3a3a;
  font-family: var(--font-secundario);
}

.boxes-arrow {
  position: absolute;
  top: 38%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border: none;
  background: transparent;
  color: var(--laranja);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
  line-height: 1;
  cursor: pointer;
  z-index: 5;
  transition: 0.2s ease;
}

.boxes-arrow:hover {
  color: #dc7a11;
}

.boxes-arrow.prev {
  left: 0;
}

.boxes-arrow.next {
  right: 0;
}

/* =========================
   SOBRE A EMPRESA
========================= */
.about-company-section {
  position: relative;
  background: radial-gradient(circle at left center, rgba(0, 0, 0, 0.38) 0%, rgba(0, 0, 0, 0) 28%), linear-gradient(90deg, #001f56 0%, #032a67 35%, #06357e 60%, #052f72 100%);
  padding: 54px 0;
  /*overflow: hidden;*/
  font-family: var(--font-terceario);
}

.about-company-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) 180px minmax(0, 1fr);
  align-items: start;
  gap: 34px;
}

.about-company-content {
  color: #ffffff;
  padding-top: 12px;
}

.about-company-kicker {
  display: block;
  font-size: 18px;
  line-height: 1.2;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 2px;
  font-family: var(--font-principal);
}

.about-company-title {
  font-size: 58px;
  line-height: 0.95;
  font-weight: 800;
  margin-bottom: 6px;
  color: #ffffff;
  letter-spacing: -1px;
}

.about-company-title .text-green {
  color: var(--verde);
}

.about-company-subtitle {
  font-size: 20px;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 34px;
  font-family: var(--font-principal);
}

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

.about-feature-item + .about-feature-item {
  margin-top: 28px;
}

.about-feature-icon {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  border-radius: 12px;
  border: 2px solid var(--verde);
  color: var(--verde);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  background: rgba(124, 194, 66, 0.08);
  box-shadow: inset 0 0 0 1px rgba(124, 194, 66, 0.12);
}

.about-feature-title {
  font-size: 24px;
  line-height: 1.1;
  font-weight: 800;
  color: var(--verde);
  margin-bottom: 8px;
}

.about-feature-text {
  margin: 0;
  font-size: 15px;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.92);
  max-width: 640px;
  font-family: var(--font-principal);
}

.about-company-badge {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 0;
}

.about-company-badge img {
  width: 180px;
  max-width: 100%;
  height: auto;
  display: block;
  margin-top: -85px;
}
@media (max-width: 991.98px) {
  .about-company-badge img {
    margin-top: 0px;
  }
}

.about-company-image {
  width: 100%;
}

.about-company-image img {
  width: 100%;
  height: 440px;
  object-fit: contain;
  display: block;
  border-radius: 26px;
  /*box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);*/
}

/* =========================
   SOLUÇÕES SELF STORAGE
========================= */
.solutions-section {
  background: #f3f3f3;
  padding: 52px 0 48px;
}

.solutions-header {
  text-align: center;
  margin-bottom: 34px;
}

.solutions-title {
  font-size: 34px;
  line-height: 1.08;
  font-weight: 800;
  color: var(--azul-titulo);
  margin-bottom: 2px;
}

.solutions-subtitle {
  font-size: 18px;
  line-height: 1.25;
  color: #2f2f2f;
  margin: 0;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 300px));
  justify-content: center;
  gap: 24px;
}

.solution-card {
  background: #ffffff;
  border-left: 3px solid var(--azul-titulo);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.solution-card-image {
  padding: 16px 16px 0;
}

.solution-card-image img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
  border: 1px solid #e7e7e7;
}

.solution-card-body {
  padding: 14px 22px 20px;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}

.solution-card-title {
  font-size: 17px;
  line-height: 1.15;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--laranja);
  margin-bottom: 14px;
  min-height: 42px;
}

.solution-card-text {
  font-size: 14px;
  line-height: 1.4;
  color: #6a6a6a;
  margin-bottom: 22px;
  flex: 1 1 auto;
}

.solution-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  min-width: 106px;
  height: 34px;
  padding: 0 16px;
  background: var(--azul-topo);
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: 0.2s ease;
}

.solution-card-btn:hover {
  background: #0a3b86;
  color: #ffffff;
}

/* =========================
   COMO ALUGAR
========================= */
.rent-steps-section {
  background: #ffffff;
  padding: 52px 0 48px;
}

.rent-steps-header {
  text-align: center;
  margin-bottom: 26px;
  position: relative;
  padding-bottom: 26px;
}

.rent-steps-header::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 8px;
  transform: translateX(-50%);
  width: min(820px, 88%);
  height: 2px;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.05) 18%, rgba(0, 0, 0, 0.08) 50%, rgba(0, 0, 0, 0.05) 82%, rgba(0, 0, 0, 0) 100%);
  border-radius: 999px;
  pointer-events: none;
}

.rent-steps-header::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: min(860px, 92%);
  height: 18px;
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.07) 28%, rgba(0, 0, 0, 0.035) 52%, rgba(0, 0, 0, 0.015) 68%, rgba(0, 0, 0, 0) 82%);
  filter: blur(2px);
  opacity: 0.65;
  pointer-events: none;
}

.rent-steps-title {
  font-size: 34px;
  line-height: 1.08;
  font-weight: 800;
  color: var(--azul-titulo);
  margin-bottom: 2px;
}

.rent-steps-subtitle {
  font-size: 17px;
  line-height: 1.25;
  color: #2e2e2e;
  margin: 0;
}

.rent-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  max-width: 980px;
  margin: 0 auto;
  padding-top: 10px;
}

.rent-step-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.rent-step-title {
  font-size: 19px;
  line-height: 1.05;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--laranja);
  margin-bottom: 18px;
  min-height: 48px;
}

.rent-step-icon {
  width: 128px;
  height: 96px;
  color: var(--azul-topo);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.rent-step-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.rent-step-text {
  font-size: 14px;
  line-height: 1.35;
  color: #34507d;
  max-width: 210px;
  margin: 0 auto 20px;
  min-height: 76px;
}

.rent-step-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 168px;
  height: 34px;
  padding: 0 18px;
  border-radius: 7px;
  background: var(--laranja-forte);
  color: #ffffff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.08);
  transition: 0.2s ease;
}

.rent-step-btn:hover {
  background: #eb6206;
  color: #ffffff;
}

/* placeholder */
.page-placeholder {
  min-height: 120px;
  background: #f7f7f7;
}

/* =========================
   RESPONSIVO
========================= */
@media (max-width: 1199.98px) {
  .navbar-brand img {
    width: 250px;
  }
  .navbar-nav .nav-link {
    font-size: 14px;
    padding: 10px 8px !important;
  }
  .hero-banner .carousel-item {
    height: 430px;
  }
  .hero-title {
    font-size: 48px;
  }
  .box-card-image {
    height: 250px;
  }
  .about-company-grid {
    grid-template-columns: minmax(0, 1.1fr) 150px minmax(0, 1fr);
    gap: 26px;
  }
  .about-company-title {
    font-size: 48px;
  }
  .about-company-subtitle {
    font-size: 20px;
  }
  .about-company-image img {
    height: 400px;
  }
  .about-company-badge img {
    width: 150px;
  }
  .solutions-grid {
    gap: 20px;
  }
  .solution-card-body {
    padding: 14px 18px 18px;
  }
  .solution-card-image img {
    height: 145px;
  }
  .rent-steps-grid {
    gap: 22px;
  }
  .rent-step-title {
    font-size: 18px;
  }
  .rent-step-text {
    font-size: 13px;
    max-width: 200px;
  }
}
@media (max-width: 991.98px) {
  :root {
    --cards-per-view: 2;
  }
  .navbar-wrapper {
    display: block;
  }
  .nav-top {
    width: 100%;
  }
  .navbar-toggler {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .navbar-brand img {
    width: 220px;
  }
  .navbar-collapse {
    margin-top: 14px;
    padding-top: 8px;
    border-top: 1px solid #ececec;
  }
  .navbar-nav {
    gap: 0;
    align-items: flex-start;
  }
  .navbar-nav .nav-link {
    display: block;
    padding: 12px 0 !important;
  }
  .top-social {
    font-size: 18px;
  }
  .btn-top-whatsapp {
    min-width: 170px;
    height: 36px;
    font-size: 15px;
    padding: 0 20px;
  }
  .hero-banner .carousel-item {
    height: 390px;
  }
  .hero-slide-bg::before {
    /*
    background: linear-gradient(90deg, rgba(2, 23, 63, 0.9) 0%, rgba(3, 30, 83, 0.78) 45%, rgba(3, 31, 89, 0.55) 75%, rgba(3, 34, 96, 0.18) 100%);
    */
  }
  .hero-content,
  .hero-content-right {
    max-width: 100%;
    text-align: left;
    margin-left: 0;
  }
  .hero-content-right .hero-desc {
    margin-left: 0;
  }
  .hero-kicker {
    font-size: 17px;
  }
  .hero-title {
    font-size: 40px;
  }
  .hero-subtitle {
    font-size: 17px;
  }
  .hero-desc {
    font-size: 13px;
    margin-bottom: 18px;
  }
  .boxes-section {
    padding: 46px 0 28px;
    font-family: var(--font-principal);
  }
  .boxes-title {
    font-size: 30px;
  }
  .boxes-subtitle,
  .boxes-caption {
    font-size: 15px;
  }
  .boxes-slider-area {
    padding: 0 42px;
  }
  .box-card-image {
    height: 240px;
  }
  .boxes-arrow {
    font-size: 34px;
    width: 34px;
    height: 34px;
  }
  .about-company-section {
    padding: 44px 0;
  }
  .about-company-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .about-company-content {
    padding-top: 0;
  }
  .about-company-badge {
    order: 2;
    justify-content: center;
  }
  .about-company-image {
    order: 3;
  }
  .about-company-title {
    font-size: 40px;
  }
  .about-company-subtitle {
    font-size: 18px;
    margin-bottom: 26px;
  }
  .about-feature-title {
    font-size: 22px;
  }
  .about-feature-text {
    font-size: 15px;
  }
  .about-company-image img {
    height: 360px;
  }
  .solutions-section {
    padding: 44px 0 40px;
  }
  .solutions-title {
    font-size: 30px;
  }
  .solutions-subtitle {
    font-size: 16px;
  }
  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .solution-card-image img {
    height: 180px;
  }
  .rent-steps-section {
    padding: 44px 0 40px;
  }
  .rent-steps-title {
    font-size: 30px;
  }
  .rent-steps-subtitle {
    font-size: 16px;
  }
  .rent-steps-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 700px;
    gap: 28px 20px;
  }
  .rent-step-text {
    min-height: auto;
  }
}
@media (max-width: 575.98px) {
  :root {
    --cards-per-view: 1;
    --gap-boxes: 18px;
  }
  .topbar-inner {
    gap: 8px;
  }
  .top-social {
    font-size: 16px;
  }
  .btn-top-whatsapp {
    min-width: 150px;
    height: 34px;
    font-size: 14px;
    padding: 0 16px;
  }
  .navbar-brand img {
    width: 190px;
  }
  .hero-banner .carousel-item {
    height: 340px;
  }
  .hero-content-wrap {
    align-items: center;
  }
  .hero-kicker {
    font-size: 14px;
  }
  .hero-title {
    font-size: 30px;
    letter-spacing: -0.5px;
    margin-bottom: 10px;
  }
  .hero-subtitle {
    font-size: 14px;
    margin-bottom: 6px;
  }
  .hero-desc {
    font-size: 12px;
    line-height: 1.35;
    margin-bottom: 14px;
  }
  .hero-actions {
    gap: 8px;
  }
  .btn-hero-primary,
  .btn-hero-secondary {
    min-height: 40px;
    padding: 0 14px;
    font-size: 12px;
  }
  .hero-banner .carousel-control-prev,
  .hero-banner .carousel-control-next {
    width: 42px;
  }
  .hero-banner .carousel-control-prev-icon,
  .hero-banner .carousel-control-next-icon {
    width: 34px;
    height: 34px;
  }
  .boxes-section {
    padding: 38px 0 22px;
  }
  .boxes-header {
    margin-bottom: 24px;
  }
  .boxes-title {
    font-size: 24px;
  }
  .boxes-subtitle,
  .boxes-caption {
    font-size: 14px;
  }
  .boxes-slider-area {
    padding: 0 32px;
  }
  .box-card-image {
    height: 220px;
  }
  .box-card-title {
    font-size: 18px;
  }
  .box-card-metragem {
    font-size: 16px;
  }
  .box-card-text {
    font-size: 13px;
    max-width: 250px;
  }
  .boxes-arrow {
    font-size: 28px;
    width: 28px;
    height: 28px;
  }
  .about-company-section {
    padding: 36px 0;
  }
  .about-company-kicker {
    font-size: 15px;
  }
  .about-company-title {
    font-size: 31px;
    line-height: 1;
    letter-spacing: -0.4px;
  }
  .about-company-subtitle {
    font-size: 16px;
    margin-bottom: 22px;
  }
  .about-feature-item {
    gap: 12px;
  }
  .about-feature-icon {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    font-size: 22px;
    border-radius: 10px;
  }
  .about-feature-title {
    font-size: 20px;
    margin-bottom: 6px;
  }
  .about-feature-text {
    font-size: 14px;
    line-height: 1.5;
  }
  .about-company-badge img {
    width: 130px;
  }
  .about-company-image img {
    height: 270px;
    border-radius: 18px;
  }
  .solutions-section {
    padding: 36px 0 34px;
  }
  .solutions-header {
    margin-bottom: 24px;
  }
  .solutions-title {
    font-size: 24px;
  }
  .solutions-subtitle {
    font-size: 14px;
  }
  .solutions-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .solution-card-image {
    padding: 12px 12px 0;
  }
  .solution-card-image img {
    height: 190px;
  }
  .solution-card-body {
    padding: 12px 16px 18px;
  }
  .solution-card-title {
    font-size: 16px;
    min-height: auto;
    margin-bottom: 12px;
  }
  .solution-card-text {
    font-size: 14px;
    margin-bottom: 18px;
  }
  .rent-steps-section {
    padding: 36px 0 34px;
  }
  .rent-steps-header {
    margin-bottom: 22px;
    padding-bottom: 22px;
  }
  .rent-steps-title {
    font-size: 24px;
  }
  .rent-steps-subtitle {
    font-size: 14px;
  }
  .rent-steps-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
    gap: 26px;
  }
  .rent-step-title {
    font-size: 17px;
    min-height: auto;
    margin-bottom: 14px;
  }
  .rent-step-icon {
    width: 112px;
    height: 84px;
    margin-bottom: 12px;
  }
  .rent-step-text {
    font-size: 14px;
    max-width: 240px;
    margin-bottom: 16px;
  }
  .rent-step-btn {
    min-width: 150px;
    height: 32px;
    font-size: 12px;
  }
}
/* =========================
   DÚVIDAS FREQUENTES
========================= */
.faq-section {
  background: #ffffff;
  padding: 42px 0 52px;
}

.faq-header {
  text-align: center;
  margin-bottom: 22px;
}

.faq-title {
  font-size: 34px;
  line-height: 1.05;
  font-weight: 900;
  color: #0b1f3f;
  margin-bottom: 0;
}

.faq-subtitle {
  font-size: 19px;
  line-height: 1.1;
  font-weight: 800;
  color: var(--verde);
  margin-top: -2px;
}

.faq-wrapper {
  max-width: 1080px;
  margin: 0 auto;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: none;
  border-radius: 14px !important;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  background: #ffffff;
}

.faq-button {
  background: #ffffff;
  color: #1f1f1f;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.35;
  padding: 18px 24px;
  border: none;
  box-shadow: none !important;
}

.faq-button:not(.collapsed) {
  background: #ffffff;
  color: #1f1f1f;
  box-shadow: none;
}

.faq-button:focus {
  box-shadow: none;
}

.faq-button::after {
  background-image: none !important;
  width: 12px;
  height: 12px;
  border-right: 2px solid #79c141;
  border-bottom: 2px solid #79c141;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
  margin-left: 18px;
}

.faq-button:not(.collapsed)::after {
  transform: rotate(-135deg);
}

.faq-body {
  padding: 0 24px 20px;
  font-size: 15px;
  line-height: 1.55;
  color: #5a5a5a;
  background: #ffffff;
}

/* RESPONSIVO */
@media (max-width: 991.98px) {
  .faq-section {
    padding: 38px 0 46px;
  }
  .faq-title {
    font-size: 30px;
  }
  .faq-subtitle {
    font-size: 17px;
  }
  .faq-button {
    font-size: 16px;
    padding: 16px 20px;
  }
  .faq-body {
    padding: 0 20px 18px;
    font-size: 14px;
  }
}
@media (max-width: 575.98px) {
  .faq-section {
    padding: 32px 0 38px;
  }
  .faq-header {
    margin-bottom: 18px;
  }
  .faq-title {
    font-size: 24px;
  }
  .faq-subtitle {
    font-size: 15px;
  }
  .faq-accordion {
    gap: 10px;
  }
  .faq-item {
    border-radius: 12px !important;
  }
  .faq-button {
    font-size: 14px;
    padding: 15px 16px;
  }
  .faq-button::after {
    width: 10px;
    height: 10px;
    margin-left: 12px;
  }
  .faq-body {
    padding: 0 16px 16px;
    font-size: 13px;
    line-height: 1.5;
  }
}
/* =========================
   RODAPÉ
========================= */
.site-footer {
  margin-top: 0;
  font-family: var(--font-secundario);
}

.footer-main {
  background: #042c6d;
  padding: 30px 0 34px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.9fr 1fr;
  gap: 56px;
  align-items: start;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 10px;
}

.footer-logo img {
  width: 285px;
  max-width: 100%;
  height: auto;
  display: block;
}

.footer-description {
  max-width: 430px;
  margin: 0;
  font-size: 16px;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.9);
}

.footer-title {
  font-size: 18px;
  line-height: 1.1;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--laranja);
  margin: 8px 0 14px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li + li {
  margin-top: 6px;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.25;
  text-transform: uppercase;
  transition: 0.2s ease;
}

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

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.footer-contact-icon {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  background: rgba(0, 0, 0, 0.28);
  border-radius: 4px;
  color: var(--laranja);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.footer-contact-text {
  display: flex;
  flex-direction: column;
}

.footer-contact-text strong {
  font-size: 15px;
  line-height: 1.1;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--laranja);
  margin-bottom: 2px;
}

.footer-contact-text span {
  font-size: 16px;
  line-height: 1.25;
  color: rgba(255, 255, 255, 0.9);
}

.footer-bottom {
  background: #021331;
}

.footer-bottom-inner {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-copy {
  margin: 0;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 700;
  text-transform: uppercase;
  color: #6eb83e;
}

.footer-agency {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
}

.footer-agency img {
  width: 165px;
  max-width: 100%;
  height: auto;
  display: block;
}

/* RESPONSIVO */
@media (max-width: 1199.98px) {
  .footer-grid {
    gap: 34px;
  }
  .footer-logo img {
    width: 250px;
  }
  .footer-description,
  .footer-links a,
  .footer-contact-text span {
    font-size: 15px;
  }
}
@media (max-width: 991.98px) {
  .footer-main {
    padding: 34px 0 30px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 34px 26px;
  }
  .footer-brand-col {
    grid-column: 1/-1;
  }
  .footer-description {
    max-width: 100%;
  }
  .footer-bottom-inner {
    min-height: auto;
    padding: 12px 0;
    flex-direction: column;
    text-align: center;
  }
  .footer-copy {
    font-size: 14px;
  }
}
@media (max-width: 575.98px) {
  .footer-main {
    padding: 28px 0 24px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .footer-logo img {
    width: 220px;
  }
  .footer-title {
    font-size: 17px;
    margin: 4px 0 12px;
  }
  .footer-description {
    font-size: 14px;
    line-height: 1.45;
  }
  .footer-links a {
    font-size: 14px;
  }
  .footer-contact-icon {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    font-size: 18px;
  }
  .footer-contact-text strong {
    font-size: 14px;
  }
  .footer-contact-text span {
    font-size: 14px;
    line-height: 1.35;
  }
  .footer-copy {
    font-size: 12px;
    line-height: 1.35;
  }
  .footer-agency img {
    width: 135px;
  }
}
.whatsapp {
  position: fixed;
  top: 92%;
  right: 1%;
  padding: 10px;
  z-index: 10000000;
}

@media screen and (max-width: 479px) {
  .whatsapp {
    top: 82%;
  }
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 15px;
}

.titulo {
  margin: 0 0 30px 0;
  padding-bottom: 12px;
  border-bottom: 2px solid #e9ecef;
  font-size: 2rem;
  font-weight: 700;
  color: #1f2937;
}

.txtCorpo {
  font-size: 1rem;
  line-height: 1.8;
  color: #4b5563;
}

.txtCorpo p {
  margin-bottom: 18px;
  text-align: justify;
}

/* BLOCO PRINCIPAL */
.bloco-principal {
  display: block;
  margin-bottom: 35px;
}

/* FOTO PRINCIPAL À ESQUERDA */
.fotoPrincipal {
  float: left;
  display: block;
  width: 340px;
  max-width: 45%;
  margin: 0 25px 20px 0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  background: #fff;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.fotoPrincipal:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
}

.fotoPrincipal img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* limpa o float após a área principal */
.bloco-principal::after {
  content: "";
  display: block;
  clear: both;
}

/* GALERIA */
.maisFotos {
  list-style: none;
  padding: 0;
  margin: 10px 0 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}

/* remove comportamento antigo do bootstrap na ul/li */
.maisFotos li {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* card da galeria */
.foto-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* link/imagem da galeria */
.foto-thumb {
  display: block;
  width: 100%;
  height: 180px;
  border-radius: 12px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  background-color: #f3f4f6;
}

.foto-thumb:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
}

/* descrição opcional sem quebrar estrutura */
.foto-legenda {
  margin-top: 10px;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #4b5563;
  word-wrap: break-word;
  overflow-wrap: break-word;
  min-height: 44px; /* mantém alinhamento visual quando algumas têm texto e outras não */
}

/* caso queira esconder legenda vazia */
.foto-legenda:empty {
  display: none;
}

/* responsivo */
@media (max-width: 991px) {
  .fotoPrincipal {
    width: 300px;
    max-width: 48%;
    margin-right: 20px;
  }
  .foto-thumb {
    height: 170px;
  }
}
@media (max-width: 767px) {
  .titulo {
    font-size: 1.7rem;
  }
  .fotoPrincipal {
    float: none;
    width: 100%;
    max-width: 100%;
    margin: 0 0 20px 0;
  }
  .txtCorpo {
    text-align: left;
  }
  .maisFotos {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
  }
  .foto-thumb {
    height: 150px;
  }
}
@media (max-width: 480px) {
  .container {
    padding: 20px 12px;
  }
  .maisFotos {
    grid-template-columns: 1fr 1fr;
  }
  .foto-thumb {
    height: 130px;
  }
}
.contato-box {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px 40px 15px;
}

.contato-titulo {
  margin: 0 0 30px 0;
  padding-bottom: 12px;
  border-bottom: 2px solid #e9ecef;
  font-size: 2rem;
  font-weight: 700;
  color: #1f2937;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 28px;
  align-items: start;
}

.contato-card,
.contato-mapa {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
}

.contato-card {
  padding: 28px;
}

.contato-subtitulo {
  margin: 0 0 22px 0;
  font-size: 1.15rem;
  font-weight: 600;
  color: #1f2937;
}

.contato-nome {
  margin-bottom: 20px;
  font-size: 1.05rem;
  font-weight: 700;
  color: #111827;
}

.contato-lista {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contato-item {
  padding-bottom: 16px;
  border-bottom: 1px solid #f0f0f0;
}

.contato-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.contato-label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.contato-valor,
.contato-valor a {
  font-size: 1rem;
  line-height: 1.7;
  color: #374151;
  text-decoration: none;
  word-break: break-word;
}

.contato-valor a:hover {
  color: #111827;
  text-decoration: underline;
}

.contato-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contato-acoes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.contato-botao {
  display: inline-block;
  padding: 11px 18px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  background: #fff;
  color: #1f2937;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.2s ease;
}

.contato-botao:hover {
  background: #f9fafb;
  border-color: #9ca3af;
  color: #111827;
}

.contato-redes {
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid #f0f0f0;
}

.contato-redes-lista {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contato-mapa {
  overflow: hidden;
}

.contato-mapa-topo {
  padding: 20px 24px;
  border-bottom: 1px solid #e5e7eb;
  font-size: 1.15rem;
  font-weight: 600;
  color: #1f2937;
}

.contato-mapa-conteudo {
  min-height: 460px;
  background: #f8f9fa;
}

.contato-mapa-conteudo iframe {
  display: block;
  width: 100%;
  height: 460px;
  border: 0;
}

.contato-mapa-vazio {
  padding: 24px;
  color: #6b7280;
  font-size: 0.95rem;
  line-height: 1.7;
}

@media (max-width: 991px) {
  .contato-grid {
    grid-template-columns: 1fr;
  }
  .contato-mapa-conteudo,
  .contato-mapa-conteudo iframe {
    min-height: 380px;
    height: 380px;
  }
}
@media (max-width: 767px) {
  .contato-titulo {
    font-size: 1.7rem;
  }
  .contato-card {
    padding: 22px;
  }
  .contato-acoes {
    flex-direction: column;
  }
  .contato-botao {
    width: 100%;
    text-align: center;
  }
}
.contato-valor i {
  margin-right: 8px;
  color: #6b7280;
  width: 16px;
  text-align: center;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  background: #25d366;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.2s;
}

.btn-whatsapp:hover {
  background: #1ebe5d;
}

.btn-email {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  background: #f3f4f6;
  color: #1f2937;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.2s;
}

.btn-email:hover {
  background: #e5e7eb;
}

.rede-link {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f3f4f6;
  color: #374151;
  text-decoration: none;
  transition: 0.2s;
  font-size: 18px;
}

.rede-link:hover {
  background: #111827;
  color: #fff;
}

.blog-section {
  padding: 60px 0;
  background: #ffffff;
}

.container-site {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.blog-header {
  text-align: center;
  margin-bottom: 40px;
}

.blog-title {
  margin: 0 0 12px 0;
  padding-bottom: 12px;
  border-bottom: 2px solid #e9ecef;
  font-size: 2rem;
  font-weight: 700;
  color: #1f2937;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-block;
}

.blog-subtitle {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.8;
  color: #6b7280;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  border-color: #d1d5db;
}

.blog-image-link {
  display: block;
  width: 100%;
  height: 230px;
  overflow: hidden;
  background: #f3f4f6;
}

.blog-image-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.blog-card:hover .blog-image-link img {
  transform: scale(1.04);
}

.blog-content {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-post-title {
  margin: 0 0 14px 0;
  font-size: 1.25rem;
  line-height: 1.4;
  font-weight: 700;
  color: #1f2937;
}

.blog-post-title a {
  color: inherit;
  text-decoration: none;
}

.blog-post-title a:hover {
  color: #111827;
}

.blog-previa {
  font-size: 0.98rem;
  line-height: 1.8;
  color: #4b5563;
  margin-bottom: 20px;
  flex: 1;
}

.blog-footer {
  margin-top: auto;
}

.blog-btn {
  display: inline-block;
  padding: 11px 18px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  background: #fff;
  color: #1f2937;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.2s ease;
}

.blog-btn:hover {
  background: #f9fafb;
  border-color: #9ca3af;
  color: #111827;
  text-decoration: none;
}

.blog-empty {
  text-align: center;
  font-size: 1rem;
  color: #6b7280;
  padding: 30px 0;
}

@media (max-width: 991px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .blog-section {
    padding: 40px 0;
  }
  .blog-title {
    font-size: 1.7rem;
  }
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .blog-image-link {
    height: 220px;
  }
  .blog-content {
    padding: 18px;
  }
  .blog-post-title {
    font-size: 1.15rem;
  }
}


/*# sourceMappingURL=estilo.css.map */
