@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Manrope", "Segoe UI", sans-serif;
}

html {
  background: rgba(0, 0, 0, 0.6);
}

body {
  background: linear-gradient(135deg, #204758, #102531, #01090c);
  color: #fff;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  flex: 1;
  width: 100%;
  max-width: none;
  overflow: hidden;
  position: relative;
}

.hero .logo {
  width: min(380px, 100%);
  height: auto;
  display: block;
  margin: 0;
  flex-shrink: 0;
  opacity: 0;
  transform: translateY(-16px);
  animation: fadeInUp 0.9s ease forwards 0.15s;
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-size: 2.4rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 60px;
  padding: 20px 0 40px;
  color: #204758;
  position: relative;
}

/* LINHAS DO TÍTULO */
.section-title::before,
.section-title::after {
  content: "";
  height: 2px;
  width: 90px;
  background: linear-gradient(90deg, transparent, #204758);
}

.section-title::after {
  background: linear-gradient(90deg, #204758, transparent);
}

/* SEÇÃO COM FUNDO ESCURO (como SERVIÇOS) */
.section-dark .section-title {
  color: white;
}

.section-dark .section-title::before {
  background: linear-gradient(90deg, transparent, #5493ab);
}

.section-dark .section-title::after {
  background: linear-gradient(90deg, #5493ab, transparent);
}

/* SEÇÃO COM FUNDO CLARO (como MARCAS) */
.section-light .section-title {
  color: #204758;
}

.section-light .section-title::before {
  background: linear-gradient(90deg, transparent, #5493ab);
}

.section-light .section-title::after {
  background: linear-gradient(90deg, #5493ab, transparent);
}

/* VERSÃO ESPECIAL LARANJA (se quiser destacar alguma seção) */
.section-orange .section-title {
  color: #5493ab;
}

.section-orange .section-title::before {
  background: linear-gradient(90deg, transparent, #5493ab);
}

.section-orange .section-title::after {
  background: linear-gradient(90deg, #5493ab, transparent);
}

.hero {
  position: relative;
  min-height: 0;
  padding: 36px max(24px, (100% - 1280px) / 2) 40px;
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(420px, 1.2fr);
  align-items: start;
  gap: 24px 40px;
  color: #ffffff;
  text-align: left;
  overflow: hidden;
  isolation: isolate;
  background: radial-gradient(circle at 82% 42%, rgba(83, 163, 195, 0.22), transparent 28%), radial-gradient(circle at 92% 15%, rgba(255, 142, 0, 0.18), transparent 20%), linear-gradient(115deg, #102f3e 0%, #163d4e 55%, #0c2634 100%);
}
.hero::before, .hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
}
.hero::before {
  width: 330px;
  height: 330px;
  right: 10%;
  top: 80px;
  border: 55px solid rgba(255, 255, 255, 0.045);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1), 0 30px 80px rgba(0, 0, 0, 0.25);
}
.hero::after {
  width: 160px;
  height: 160px;
  right: 4%;
  bottom: -40px;
  background: rgba(255, 142, 0, 0.08);
  border: 1px solid rgba(255, 142, 0, 0.3);
}

.hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  text-align: right;
  max-width: none;
  justify-self: stretch;
  width: 100%;
  padding-top: 0;
}
.hero__content h1 {
  max-width: none;
  width: 100%;
  margin: 0 0 12px;
  font-family: "Poppins", sans-serif;
  font-size: clamp(38px, 4vw, 56px);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -1.5px;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(-18px);
  animation: fadeInUp 0.9s ease forwards 0.35s;
}
.hero__content p {
  margin: 0 0 14px;
  color: #65b3d0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(20px, 2.1vw, 26px);
  font-weight: 700;
  opacity: 0;
  transform: translateY(-18px);
  animation: fadeInUp 0.9s ease forwards 0.55s;
}
.hero__content span {
  display: block;
  max-width: 580px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(-18px);
  animation: fadeInUp 0.9s ease forwards 0.75s;
}
.hero__content .cta-btn {
  opacity: 0;
  transform: translateY(-18px);
  animation: fadeInUp 0.9s ease forwards 0.95s;
}

.floating-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(16, 47, 62, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
  transform: translateY(-110%);
  transition: transform 0.35s ease;
  pointer-events: none;
  overflow: hidden;
}
.floating-header::before {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  right: -48px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  background: rgba(255, 142, 0, 0.08);
  border: 1px solid rgba(255, 142, 0, 0.35);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.04), 0 0 28px rgba(255, 142, 0, 0.12);
  pointer-events: none;
  z-index: 0;
}
.floating-header::after {
  content: "";
  position: absolute;
  width: 72px;
  height: 72px;
  left: -28px;
  bottom: -36px;
  border-radius: 50%;
  border: 18px solid rgba(255, 255, 255, 0.045);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
  pointer-events: none;
  z-index: 0;
}

.floating-header.is-visible {
  transform: translateY(0);
  pointer-events: auto;
}

.floating-header__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 10px 24px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  box-sizing: border-box;
}

.floating-header__logo {
  display: inline-flex;
  align-items: center;
  justify-self: start;
}
.floating-header__logo img {
  height: 48px;
  width: auto;
  display: block;
}

.floating-header__tagline {
  margin: 0;
  justify-self: center;
  text-align: center;
  color: rgba(255, 255, 255, 0.88);
  font-family: "Manrope", sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.floating-header__tagline strong {
  color: #65b3d0;
  font-weight: 700;
}

.floating-header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
  min-height: 44px;
  padding: 10px 18px;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, #ff9800, #f27d00);
  color: #fff;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(242, 125, 0, 0.28);
  transition: transform 0.2s ease, filter 0.2s ease;
}
.floating-header__cta:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

.cta-btn {
  min-height: 54px;
  padding: 0 28px;
  border: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, #ff9800, #f27d00);
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 14px 35px rgba(242, 125, 0, 0.28);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}
.cta-btn:hover {
  transform: translateY(-3px);
  filter: brightness(1.06);
  box-shadow: 0 18px 42px rgba(242, 125, 0, 0.38);
}

.home-banner {
  margin: 0;
  padding: 24px 0;
  background: #ffc947;
}

.home-banner__content {
  width: min(100%, 1200px);
  margin: 0 auto;
}

.home-banner img {
  display: block;
  width: 100%;
  height: auto;
}

.promo-banner {
  position: relative;
  width: 100%;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.promo-banner__content {
  width: 100%;
  max-width: 1400px;
  height: 100%;
  display: flex;
  align-items: center;
  background-image: url("../images/banner_rosto.png");
  background-size: cover;
  background-position: right;
  background-repeat: no-repeat;
}
.promo-banner__content .banner-text {
  font-family: "Poppins", sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: #fff !important;
  margin-left: 40px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}
.promo-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to right, rgb(84, 147, 171) 0%, rgb(84, 147, 171) 10%, rgba(1, 9, 12, 0) 85%, rgb(1, 9, 12) 100%);
}

.about-section {
  padding: 90px 20px;
  background: #f8f9fb;
  text-align: center;
}

.about-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.about-card {
  background: white;
  padding: 32px;
  border: 1px solid #eaeaea;
  border-radius: 0;
  text-align: left;
  transition: all 0.25s ease;
  position: relative;
}

.about-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: #5493ab;
  transition: width 0.3s ease;
}

.about-card:hover::before {
  width: 100%;
}

.about-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.about-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  font-weight: 600;
  color: #f08b01;
}

.about-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

.popup-overlay {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.65);
  z-index: 1000;
}

.popup-content {
  position: relative;
  width: min(100%, 560px);
  background: #ffffff;
  color: #01090c;
  border-radius: 18px;
  padding: 32px 28px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
}
.popup-content h3 {
  margin-bottom: 12px;
  color: #204758;
}
.popup-content p {
  line-height: 1.7;
  color: #555;
}

.close-popup {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 30px;
  line-height: 1;
  color: #204758;
  cursor: pointer;
}

.features {
  padding: 100px 20px;
  text-align: center;
}

.features-container {
  max-width: 1100px;
  margin: 60px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARDS */
.feature-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 35px;
  border-radius: 12px;
  transition: 0.3s;
}

.feature-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.08);
}

.feature-card h3 {
  margin-bottom: 10px;
}

.feature-card p {
  opacity: 0.8;
  line-height: 1.5;
}

.brands {
  background: white;
  padding: 90px 20px;
  text-align: center;
}

.brands .section-title {
  color: #204758;
}

.brands-slider {
  overflow: hidden;
  width: 100%;
}

.brands-track {
  display: flex;
  gap: 60px;
  animation: scrollBrands 28s linear infinite;
  align-items: center;
  width: max-content;
}

.brands-slider:hover .brands-track,
.brands-slider:focus-within .brands-track {
  animation-play-state: paused;
}

.brands-track img {
  height: 60px;
  opacity: 0.8;
  transition: 0.3s;
  flex-shrink: 0;
}

.brands-track img:hover {
  opacity: 1;
  transform: scale(1.05);
}

@keyframes scrollBrands {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .brands-track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }
}
.contact-section {
  padding: 56px 20px 72px;
  background: linear-gradient(160deg, #061a33 0%, #0a3558 50%, #0873c5 160%);
  color: #fff;
}
.contact-section .section-title {
  color: #9ec9e8;
  margin-bottom: 20px;
  padding: 0 0 8px;
  font-size: 1.5rem;
}
.contact-section .section-title::before, .contact-section .section-title::after {
  width: 56px;
  background: linear-gradient(90deg, transparent, #5493ab);
}
.contact-section .section-title::after {
  background: linear-gradient(90deg, #5493ab, transparent);
}

.stores-intro {
  max-width: 720px;
  margin: 0 auto 28px;
  text-align: center;
}
.stores-intro h3 {
  font-size: clamp(1.45rem, 2.6vw, 1.9rem);
  margin-bottom: 8px;
}
.stores-intro p {
  opacity: 0.85;
  line-height: 1.55;
  font-size: 0.98rem;
}

.stores-showcase {
  max-width: 1100px;
  margin: 0 auto 36px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.store-card {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0;
}

.store-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.store-card.active {
  border-color: #f5a623;
  box-shadow: 0 0 0 1px rgba(245, 166, 35, 0.35), 0 18px 40px rgba(0, 0, 0, 0.28);
}

.store-card__media {
  position: relative;
  aspect-ratio: 16/11;
  overflow: hidden;
}
.store-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.store-card:hover .store-card__media img,
.store-card.active .store-card__media img {
  transform: scale(1.04);
}

.store-card__badge {
  position: absolute;
  left: 14px;
  bottom: 14px;
  background: rgba(6, 26, 51, 0.88);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.store-card.active .store-card__badge {
  background: #f5a623;
  color: #061a33;
  border-color: transparent;
}

.store-card__body {
  padding: 22px 22px 24px;
}

.store-card h4 {
  margin-bottom: 8px;
  font-size: 1.25rem;
}

.store-card__address {
  font-size: 0.92rem;
  opacity: 0.75;
  line-height: 1.5;
  margin-bottom: 0;
}

.title-row {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 4px;
}
.title-row h4 {
  margin-bottom: 0;
}
.title-row h5 {
  margin: 0;
  font-size: 0.78rem;
  color: #f08b01;
  font-weight: 600;
}

.store-hours {
  list-style: none;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.store-hours li {
  font-size: 0.88rem;
  color: #f5a623;
  font-weight: 500;
}

.stores-map-panel {
  max-width: 1100px;
  margin: 0 auto;
}

.stores-map-hint {
  margin: 16px 0 14px;
  text-align: center;
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.78);
}

.contact-map {
  position: relative;
}

.map {
  display: none;
  animation: fade 0.4s ease;
}

.map.active {
  display: block;
}

.contact-map iframe {
  width: 100%;
  height: 360px;
  border-radius: 16px;
  border: none;
}

.btn-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 52px;
  margin-top: 0;
  margin-bottom: 0;
  padding: 14px 26px;
  border: 0;
  background: #25d366;
  border-radius: 14px;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.35);
}

.btn-primary {
  background: #2ecc71;
  border: none;
  padding: 14px 26px;
  border-radius: 30px;
  color: white;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s;
}
.btn-primary:hover {
  transform: translateY(-2px);
}

@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 900px) {
  .stores-showcase {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .contact-map iframe {
    height: 280px;
  }
}
.footer {
  background: #000000;
  color: #ddd;
  padding: 20px 40px 0;
}

.footer-container {
  display: grid;
  grid-template-columns: 1.35fr 1.05fr 0.9fr 1fr 1.2fr;
  gap: 32px;
  max-width: 1300px;
  margin: auto;
  align-items: start;
}

.footer-col {
  min-width: 0;
}

.footer-logo {
  width: 350px;
  max-width: 100%;
  height: auto;
  margin-bottom: 0;
  display: block;
}

.footer-col h3 {
  font-size: 16px;
  margin-bottom: 15px;
  color: #5493ab;
  letter-spacing: 0.5px;
}

.footer-col p {
  font-size: 13px;
  color: #aaa;
}

.btn-garantia {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 14px;
  background: rgba(84, 147, 171, 0.5843137255);
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-size: 13px;
  transition: 0.3s;
}
.btn-garantia:hover {
  background: rgba(107, 169, 192, 0.4392156863);
}

.produtos-lista {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.produtos-lista span,
.produtos-lista a {
  font-size: 13px;
  color: #888;
  position: relative;
  padding-left: 10px;
  text-decoration: none;
  display: block;
}
.produtos-lista span::before,
.produtos-lista a::before {
  content: "";
  width: 4px;
  height: 4px;
  background: #5493ab;
  position: absolute;
  left: 0;
  top: 8px;
  border-radius: 50%;
}
.produtos-lista a:hover {
  color: #fff;
}

.social-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.social-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 100px;
}
.social-group strong {
  font-size: 13px;
  color: #f08b01;
}
.social-group a {
  font-size: 13px;
  color: #aaa;
  text-decoration: none;
  transition: 0.3s;
}
.social-group a:hover {
  color: #fff;
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid #222;
  margin-top: 0;
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  font-size: 13px;
  color: rgba(245, 240, 230, 0.6);
}

.footer-bottom__logo {
  display: inline-flex;
  align-items: center;
}
.footer-bottom__logo img {
  height: 40px;
  width: auto;
  display: block;
}

.footer-bottom__text a {
  color: rgba(245, 240, 230, 0.8);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-bottom__text a:hover {
  color: #f08b01;
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
    text-align: left;
    gap: 12px;
  }
}
.floating-contact {
  position: fixed;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  background: #25d366;
  color: white;
  padding: 14px 18px;
  border-radius: 40px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  z-index: 999;
  transition: 0.25s;
}

.floating-contact:hover {
  transform: translateY(-50%) translateX(-5px);
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 900px) {
  .contact-container {
    grid-template-columns: 1fr;
  }
  .features {
    flex-direction: column;
    align-items: center;
  }
  .feature-card {
    width: 100%;
    max-width: 400px;
  }
}
@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 28px 24px 36px;
    grid-template-columns: 1fr;
    gap: 18px;
    text-align: center;
  }
  .hero .logo {
    width: min(220px, 62%);
    margin: 0 auto;
    justify-self: center;
  }
  .hero::before {
    width: 220px;
    height: 220px;
    right: -100px;
    top: 55px;
    border-width: 38px;
  }
  .hero__content {
    align-items: center;
    text-align: center;
    justify-self: center;
    max-width: 420px;
    padding-top: 0;
  }
  .hero__content h1 {
    font-size: clamp(26px, 7vw, 34px);
    letter-spacing: -1px;
    white-space: normal;
  }
  .hero__content p {
    font-size: 18px;
  }
  .hero__content span {
    max-width: 390px;
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 18px;
  }
  .floating-header__inner {
    padding: 8px 16px;
    grid-template-columns: auto 1fr auto;
    gap: 10px;
  }
  .floating-header__logo img {
    height: 40px;
  }
  .floating-header__tagline {
    font-size: 0.9rem;
    white-space: normal;
    line-height: 1.25;
  }
  .floating-header__cta {
    font-size: 0.75rem;
    padding: 10px 10px;
    min-height: 40px;
  }
  .cta-btn {
    width: 100%;
    max-width: 390px;
  }
  .home-banner {
    padding: 12px 0;
  }
  .floating-contact {
    right: 16px;
    padding: 12px 16px;
    font-size: 14px;
  }
}
@media (max-width: 600px) {
  .section-title {
    font-size: 1.8rem;
  }
}
.banner-carousel {
  position: relative;
  width: 100%;
  background: #fff;
  padding: 40px 20px 28px;
  margin-top: 0;
}

.banner-carousel__viewport {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.banner-carousel__track {
  position: relative;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(6, 26, 51, 0.12);
}

.banner-slide {
  display: none;
  width: 100%;
}

.banner-slide.is-active {
  display: block;
  animation: bannerFade 0.45s ease;
}

.banner-slide a {
  display: block;
}

.banner-slide img {
  display: block;
  width: 100%;
  height: auto;
}

.banner-carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: rgba(6, 26, 51, 0.75);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  z-index: 3;
  transition: 0.2s;
}

.banner-carousel__btn:hover {
  background: #061a33;
}

.banner-carousel__btn--prev {
  left: max(12px, 50% - 560px);
}

.banner-carousel__btn--next {
  right: max(12px, 50% - 560px);
}

.banner-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding-top: 16px;
}

.banner-carousel__dots button {
  width: 10px;
  height: 10px;
  border: none;
  border-radius: 50%;
  background: #c7d5dc;
  cursor: pointer;
  padding: 0;
}

.banner-carousel__dots button.is-active {
  background: #5493ab;
}

@keyframes bannerFade {
  from {
    opacity: 0.35;
  }
  to {
    opacity: 1;
  }
}
.solutions-section {
  background: #f7f8fb;
  padding: 48px 20px 64px;
}

.solutions-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.highlights-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(16, 40, 56, 0.06);
  padding: 18px 10px;
  margin-bottom: 22px;
}

.highlight-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #204758;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 8px 12px;
  border-right: 1px solid #e6ebef;
}
.highlight-item:last-child {
  border-right: none;
}
.highlight-item svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: #5493ab;
}

.own-brand-offer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
  margin: 0 0 36px;
  padding: 24px 28px;
  border: 1px solid rgba(84, 147, 171, 0.18);
  border-radius: 14px;
  background: linear-gradient(135deg, #ffffff 0%, #f3f8fb 100%);
  box-shadow: 0 10px 28px rgba(16, 40, 56, 0.08);
}

.own-brand-offer__icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(84, 147, 171, 0.14);
  color: #5493ab;
  flex-shrink: 0;
}
.own-brand-offer__icon svg {
  width: 28px;
  height: 28px;
}

.own-brand-offer__eyebrow {
  display: inline-block;
  margin-bottom: 8px;
  color: #5493ab;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.own-brand-offer__content {
  min-width: 0;
}
.own-brand-offer__content h2 {
  margin: 0 0 8px;
  color: #17384a;
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-weight: 700;
  line-height: 1.2;
}
.own-brand-offer__content h2 strong {
  display: inline;
  font-weight: 700;
  font-size: 1em;
}
.own-brand-offer__content p {
  margin: 0;
  color: #5a6f7a;
  font-size: 0.95rem;
  line-height: 1.5;
}

.own-brand-offer__price {
  display: inline;
  margin-left: 0.12em;
  color: #f08b01;
  font-size: clamp(1.65rem, 3.6vw, 2.35rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  white-space: nowrap;
  vertical-align: baseline;
}

.own-brand-offer__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 0;
  border-radius: 12px;
  background: #f08b01;
  color: #fff;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(240, 139, 1, 0.28);
  transition: transform 0.2s ease, filter 0.2s ease;
}
.own-brand-offer__cta:hover {
  filter: brightness(1.05);
  transform: translateY(-2px);
}
.own-brand-offer__cta:focus-visible {
  outline: 3px solid rgba(84, 147, 171, 0.45);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .own-brand-offer__cta {
    transition: none;
  }
  .own-brand-offer__cta:hover {
    transform: none;
  }
}
.store-picker-modal {
  width: min(640px, 100% - 32px);
  max-height: min(720px, 100vh - 32px);
  margin: auto;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 22px;
  background: #fff;
  color: #183444;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.35);
}
.store-picker-modal::backdrop {
  background: rgba(5, 23, 32, 0.78);
  backdrop-filter: blur(6px);
}

.store-picker-modal__content {
  position: relative;
  padding: 42px 28px 28px;
  overflow-y: auto;
  max-height: min(720px, 100vh - 32px);
}

.store-picker-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(21, 55, 71, 0.1);
  border-radius: 50%;
  color: #153747;
  background: #f2f5f7;
  font-size: 25px;
  line-height: 1;
  cursor: pointer;
}
.store-picker-modal__close:focus-visible {
  outline: 3px solid rgba(84, 147, 171, 0.45);
  outline-offset: 2px;
}

.store-picker-modal h2 {
  margin: 0 0 10px;
  padding-right: 40px;
  color: #17384a;
  font-size: 1.45rem;
  line-height: 1.3;
}

.store-picker-modal__lead {
  margin: 0 0 22px;
  color: #5a6f7a;
  font-size: 0.98rem;
  line-height: 1.55;
}

.store-picker-modal__list {
  display: grid;
  gap: 14px;
}

.store-picker-card {
  display: grid;
  gap: 16px;
  padding: 18px;
  border: 1px solid #e6edf1;
  border-radius: 14px;
  background: #fafcfd;
}

.store-picker-card h3 {
  margin: 0 0 6px;
  color: #17384a;
  font-size: 1.1rem;
}

.store-picker-card__place,
.store-picker-card__hours {
  margin: 0;
  color: #5a6f7a;
  font-size: 0.92rem;
  line-height: 1.45;
}

.store-picker-card__hours {
  margin-top: 6px;
}

.store-picker-card__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.store-picker-card__wa,
.store-picker-card__maps {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 12px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
}

.store-picker-card__wa {
  background: #f08b01;
  color: #fff;
}

.store-picker-card__maps {
  background: #fff;
  color: #5493ab;
  border: 1px solid rgba(84, 147, 171, 0.35);
}

.store-picker-card__wa:focus-visible,
.store-picker-card__maps:focus-visible {
  outline: 3px solid rgba(84, 147, 171, 0.45);
  outline-offset: 2px;
}

.solutions-intro {
  text-align: center;
  margin-bottom: 36px;
}
.solutions-intro h2 {
  color: #17384a;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 12px;
}
.solutions-intro h2 span {
  color: #5493ab;
}
.solutions-intro p {
  color: #4d6572;
  font-size: 1rem;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.6;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  max-width: 760px;
  margin: 0 auto;
}

.service-card {
  background: #fff;
  border-radius: 14px;
  padding: 28px 24px;
  box-shadow: 0 8px 24px rgba(16, 40, 56, 0.06);
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(16, 40, 56, 0.1);
}
.service-card h3 {
  color: #17384a;
  font-size: 1.15rem;
  margin-bottom: 10px;
}
.service-card p {
  color: #5a6f7a;
  font-size: 0.95rem;
  line-height: 1.55;
  margin-bottom: 18px;
}
.service-card .service-card__open {
  margin-top: auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: #5493ab;
  font: inherit;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
}
.service-card .service-card__open:hover {
  color: #f08b01;
}

.service-card__icon {
  width: 40px;
  height: 40px;
  color: #5493ab;
  margin-bottom: 14px;
}
.service-card__icon svg {
  width: 100%;
  height: 100%;
}

.service-modal {
  width: min(940px, 100% - 32px);
  max-height: min(740px, 100vh - 32px);
  margin: auto;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.35);
  color: #183444;
}
.service-modal::backdrop {
  background: rgba(5, 23, 32, 0.78);
  backdrop-filter: blur(6px);
}

.service-modal__layout {
  min-height: 570px;
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(400px, 1.1fr);
}

.service-modal__media {
  position: relative;
  min-height: 570px;
  overflow: hidden;
  background: #0b2635;
}
.service-modal__media img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: center;
}
.service-modal__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(4, 23, 34, 0.86));
}

.service-modal__badge {
  position: absolute;
  z-index: 2;
  left: 24px;
  bottom: 24px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: #fff;
  background: rgba(6, 32, 45, 0.58);
  backdrop-filter: blur(8px);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.service-modal__content {
  position: relative;
  padding: 54px 48px 42px;
  overflow-y: auto;
}

.service-modal__close {
  position: absolute;
  top: 17px;
  right: 17px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(21, 55, 71, 0.1);
  border-radius: 50%;
  color: #153747;
  background: #f2f5f7;
  font-size: 25px;
  line-height: 1;
  cursor: pointer;
}

.service-modal__eyebrow {
  margin-bottom: 12px;
  color: #ff8a00;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.service-modal h2 {
  margin: 0 0 16px;
  color: #0b2635;
  font-size: clamp(30px, 4vw, 43px);
  line-height: 1.06;
  letter-spacing: -1.4px;
}

.service-modal__lead {
  margin: 0 0 22px;
  color: #587080;
  font-size: 16px;
  line-height: 1.7;
}

.service-modal__list {
  margin: 0 0 28px;
  padding: 0;
  display: grid;
  gap: 12px;
  list-style: none;
}
.service-modal__list li {
  position: relative;
  padding-left: 30px;
  color: #183444;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}
.service-modal__list li::before {
  content: "✓";
  position: absolute;
  top: -1px;
  left: 0;
  width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #5493ab;
  font-size: 12px;
}

.service-modal__cta {
  min-height: 54px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  color: #fff;
  background: linear-gradient(135deg, #ff9800, #ef7600);
  box-shadow: 0 14px 32px rgba(239, 118, 0, 0.25);
  font-weight: 900;
  text-decoration: none;
}

.service-modal__note {
  margin: 16px 0 0;
  color: #77909d;
  font-size: 12px;
  line-height: 1.5;
}

@media (max-width: 780px) {
  .service-modal {
    width: min(100% - 20px, 560px);
    max-height: calc(100vh - 20px);
    border-radius: 18px;
  }
  .service-modal__layout {
    min-height: 0;
    display: block;
  }
  .service-modal__media {
    min-height: 250px;
    max-height: 34vh;
  }
  .service-modal__content {
    padding: 38px 24px 28px;
  }
  .service-modal h2 {
    padding-right: 35px;
    font-size: 31px;
  }
  .service-modal__cta {
    width: 100%;
    text-align: center;
  }
}
.about-section {
  padding: 20px 20px 56px;
  background: #f7f8fb;
  text-align: left;
}

.about-panel {
  max-width: 1100px;
  margin: 0 auto;
  background: #eef2f5;
  border-radius: 18px;
  padding: 36px 28px;
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 0.9fr 0.9fr;
  gap: 0;
}

.about-intro,
.about-item {
  padding: 8px 22px;
}

.about-item {
  border-left: 1px solid #d5dee5;
  cursor: pointer;
  transition: background 0.2s ease;
}
.about-item:hover {
  background: rgba(255, 255, 255, 0.45);
}

.about-label {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  font-weight: 700;
  color: #5493ab;
  margin-bottom: 12px;
}

.about-intro h2 {
  color: #17384a;
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  line-height: 1.3;
  margin-bottom: 14px;
}
.about-intro h2 span {
  color: #5493ab;
}

.about-intro p {
  color: #445965;
  font-size: 0.95rem;
  line-height: 1.65;
}

.about-item__icon {
  width: 34px;
  height: 34px;
  color: #5493ab;
  margin-bottom: 12px;
}
.about-item__icon svg {
  width: 100%;
  height: 100%;
}

.about-item h3 {
  color: #17384a;
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.about-item p,
.about-item li {
  color: #516774;
  font-size: 0.88rem;
  line-height: 1.55;
}

.about-item ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.products-section {
  background: #f7f8fb;
  padding: 0 20px 56px;
}

.products-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(16, 40, 56, 0.06);
}

.product-card {
  background: #fff;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  transition: background 0.25s ease;
  display: flex;
  flex-direction: column;
}
.product-card:not(:last-child) {
  border-right: 1px solid #eef1f4;
}
.product-card:hover {
  background: #fafbfc;
}

.product-card__media {
  width: 100%;
  height: 180px;
  overflow: hidden;
  background: #e8eef2;
  flex-shrink: 0;
}
.product-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.product-card h3 {
  color: #17384a;
  font-size: 1.2rem;
  margin: 0 0 10px;
  line-height: 1.3;
}
.product-card p {
  color: #667985;
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 0 0 18px;
}
.product-card a {
  color: #5493ab;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  margin-top: 4px;
}
.product-card a:hover {
  opacity: 0.85;
}
.product-card:first-child a {
  color: #f08b01;
}

.product-card__body {
  padding: 28px 28px 32px;
}

.brands-panel-section {
  background: #f7f8fb;
  padding: 0 20px 64px;
}

.brands.brands-panel-section {
  background: #f7f8fb;
  padding: 0 20px 64px;
  text-align: left;
}

.brands-panel {
  max-width: 1100px;
  margin: 0 auto;
  background: #fff;
  border-radius: 16px;
  padding: 28px 32px 32px;
  box-shadow: 0 8px 24px rgba(16, 40, 56, 0.06);
}
.brands-panel h2 {
  text-transform: uppercase;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  margin-bottom: 22px;
  color: #9aa8b2;
  font-weight: 600;
}
.brands-panel h2 span {
  color: #5493ab;
  font-weight: 700;
}

.loja2-cta {
  width: 100%;
  background: #061a33;
  color: #fff;
}

.loja2-cta__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 24px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.3fr auto;
  gap: 28px 32px;
  align-items: center;
}

.loja2-cta__block--highlight {
  text-align: left;
  padding: 0 8px;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.loja2-cta__block--action {
  justify-self: end;
}

.loja2-cta__eyebrow {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 8px;
  opacity: 0.95;
}

.loja2-cta__subtitle {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.35;
  padding-bottom: 10px;
  border-bottom: 2px solid #ff6a00;
  display: inline-block;
}
.loja2-cta__subtitle span {
  color: #ff6a00;
}

.loja2-cta__title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  line-height: 1.05;
  text-transform: uppercase;
  margin: 0;
}
.loja2-cta__title span {
  color: #ff6a00;
}

.loja2-cta__text {
  font-size: 1rem;
  opacity: 0.92;
  margin-bottom: 10px;
  line-height: 1.45;
}

.loja2-cta__place {
  font-size: 0.85rem;
  opacity: 0.8;
  padding-left: 10px;
  border-left: 3px solid #ff6a00;
  margin: 0;
  line-height: 1.4;
}

.loja2-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 22px;
  background: #ff6a00;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  border-radius: 10px;
  white-space: nowrap;
  transition: 0.2s;
}
.loja2-cta__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 106, 0, 0.35);
}

@media (max-width: 900px) {
  .loja2-cta__inner {
    grid-template-columns: 1fr 1fr;
  }
  .loja2-cta__block--highlight {
    border-right: none;
  }
  .loja2-cta__block--action {
    justify-self: start;
  }
}
@media (max-width: 900px) {
  .own-brand-offer {
    grid-template-columns: auto 1fr;
  }
  .own-brand-offer__cta {
    grid-column: 1/-1;
    width: 100%;
    white-space: normal;
  }
}
@media (max-width: 768px) {
  .loja2-cta__inner {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 32px 20px;
  }
  .loja2-cta__block--highlight {
    border-left: none;
    border-right: none;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding: 16px 0;
  }
  .banner-carousel {
    padding: 28px 16px 20px;
  }
  .banner-carousel__btn {
    width: 36px;
    height: 36px;
    font-size: 22px;
  }
  .banner-carousel__btn--prev {
    left: 8px;
  }
  .banner-carousel__btn--next {
    right: 8px;
  }
  .highlights-bar {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .highlight-item {
    border-right: none;
    justify-content: flex-start;
    font-size: 0.88rem;
  }
  .own-brand-offer {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 16px;
    padding: 20px 18px;
  }
  .own-brand-offer__cta {
    width: 100%;
    white-space: normal;
  }
  .store-picker-card__actions {
    grid-template-columns: 1fr;
  }
  .service-cards,
  .products-grid {
    grid-template-columns: 1fr;
  }
  .product-card:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid #eef1f4;
  }
  .about-panel {
    grid-template-columns: 1fr;
    padding: 24px 16px;
    gap: 12px;
  }
  .about-item {
    border-left: none;
    border-top: 1px solid #d5dee5;
  }
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
}
@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
}

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