@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(
    90deg,
    #000000 0%,
    #061a25 50%,
    #000102 100%
  );
  color: #fff;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  flex: 1;
}

.logo {
  width: 420px;
  margin: 40px auto 20px;
  display: block;
}

.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 {
  height: 55vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(-20px);
  animation: fadeInUp 1s forwards 0.5s;
}
.hero p {
  font-size: 1.5rem;
  margin-bottom: 10px;
  font-weight: 600;
  opacity: 0;
  transform: translateY(-20px);
  animation: fadeInUp 1s forwards 1s;
  max-width: 80vw;
  color: #5493ab;
}
.hero span {
  font-size: 1.2rem;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
  transform: translateY(-20px);
  animation: fadeInUp 1s forwards 1.5s;
}

.cta-btn {
  padding: 18px 80px;
  background: #f08b01;
  color: #fff;
  font-weight: bold;
  border: none;
  border-radius: 40px;
  cursor: pointer;
  font-size: 1.1rem;
  transition: 0.3s;
}
.cta-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px #5493ab;
}

.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;
  position: relative;
  z-index: 1;
}
.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);
  position: relative;
  z-index: 2;
}
.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%);
  z-index: 0;
}

.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 25s linear infinite;
  align-items: center;
}

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

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

@keyframes scrollBrands {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.contact-section {
  padding: 100px 0;
  background: linear-gradient(120deg, #061c2b, #0b2f44);
  color: #fff;
}

/* CONTAINER */
.contact-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

/* TEXTO */
.contact-left h3 {
  font-size: 26px;
  margin-bottom: 15px;
}

.contact-left p {
  opacity: 0.85;
  line-height: 1.6;
  margin-bottom: 35px;
}

/* LISTA DE LOJAS */
.stores-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin: 80px 0 0;
}

.store-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 18px 20px;
  cursor: pointer;
  transition: 0.3s;
  border: 1px solid transparent;
}

.store-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(5px);
}

.store-card.active {
  border: 1px solid #f5a623;
  background: rgba(245, 166, 35, 0.1);
}

.store-card h4 {
  margin-bottom: 5px;
}

.store-card span {
  font-size: 14px;
  opacity: 0.7;
}

.title-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.title-row h5 {
  margin: 0;
  padding-bottom: 5px;
  font-size: 12px;
  color: #f08b01;
}

/* MAPA */
.contact-map {
  position: relative;
}

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

.map button {
  margin-top: 10px;
  width: 100%;
}

.map.active {
  display: block;
}

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

/* BOTÃO */
.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);
}

/* ANIMAÇÃO */
@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* RESPONSIVO */
@media (max-width: 900px) {
  .contact-container {
    grid-template-columns: 1fr;
  }
  .contact-map iframe {
    height: 300px;
  }
}

.footer {
  background: #0a0a0a;
  color: #ddd;
  padding: 60px 40px 20px;
}

.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: 180px;
  margin-bottom: 10px;
}

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

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

/* GARANTIA */
.garantia-box {
  background: rgba(255,255,255,0.03);
  border: 1px solid #222;
  padding: 15px;
  border-radius: 10px;
}

.btn-garantia {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 14px;
  background: #5493ab95;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-size: 13px;
  transition: 0.3s;
}

.btn-garantia:hover {
  background: #6ba9c070;
}

/* PRODUTOS */
.produtos-lista {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.produtos-lista span {
  font-size: 13px;
  color: #888;
  position: relative;
  padding-left: 10px;
}

.produtos-lista span::before {
  content: "";
  width: 4px;
  height: 4px;
  background: #5493ab;
  position: absolute;
  left: 0;
  top: 8px;
  border-radius: 50%;
}

/* REDES SOCIAIS */
.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;
}

/* RODAPÉ FINAL */
.footer-bottom {
  border-top: 1px solid #222;
  margin-top: 50px;
  padding-top: 20px;
  text-align: center;
  font-size: 13px;
  color: #666;
}

.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;
  }
  .logo {
    width: 280px;
  }
}
@media (max-width: 768px) {
  .promo-banner {
    height: 210px;
  }

  .promo-banner__content {
    background-size: cover;
    background-position: calc(100% + 36px) center;
  }

  .promo-banner__content .banner-text {
    max-width: 52%;
    margin-left: 24px;
    font-size: 22px;
    line-height: 1.25;
  }

  .promo-banner::before {
    background: linear-gradient(to right, rgb(84, 147, 171) 0%, rgb(84, 147, 171) 6%, rgba(1, 9, 12, 0) 62%, rgb(1, 9, 12) 100%);
  }

  .floating-contact {
    right: 16px;
    bottom: 20px;
    top: auto;
    transform: none;
    padding: 12px;
    border-radius: 999px;
  }

  .floating-contact:hover {
    transform: none;
  }

  .floating-contact span {
    display: none;
  }

  .hero,
  .about-section,
  .features,
  .brands,
  .contact-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero {
    height: auto;
    min-height: 65vh;
    padding-top: 24px;
    padding-bottom: 40px;
  }

  .hero span {
    display: block;
    max-width: 100%;
    line-height: 1.5;
  }

  .cta-btn {
    width: 100%;
    max-width: 100%;
    padding: 18px 24px;
  }

  .section-title {
    gap: 12px;
    margin-bottom: 40px;
    text-align: center;
  }

  .section-title::before,
  .section-title::after {
    width: 48px;
  }

  .about-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .about-cards,
  .features-container {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .feature-card {
    width: 100%;
    max-width: none;
    padding: 28px 22px;
  }

  .feature-card h3,
  .feature-card p,
  .store-card span,
  .popup-content p {
    overflow-wrap: anywhere;
  }

  .brands {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .brands-track {
    gap: 32px;
  }

  .brands-track img {
    height: 48px;
  }

  .contact-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .contact-container {
    gap: 32px;
  }

  .contact-left h3 {
    font-size: 2rem;
  }

  .stores-list {
    margin-top: 40px;
    gap: 16px;
  }

  .title-row {
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .contact-map iframe {
    height: 260px;
  }

  .popup-overlay {
    padding: 16px;
  }

  .popup-content {
    width: 100%;
    padding: 28px 20px;
  }

  .footer {
    padding: 40px 20px 20px;
    text-align: center;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-logo {
    margin: 0 auto 10px;
  }

  .footer-col {
    align-items: center;
  }

  .footer-col h3 {
    font-size: 15px;
  }

  .footer-col p {
    font-size: 12px;
    padding-left: 0;
  }

  /* GARANTIA */
  .garantia-box {
    text-align: center;
  }

  .btn-garantia {
    width: 100%;
    text-align: center;
  }

  /* PRODUTOS */
  .produtos-lista {
    align-items: center;
  }

  /* REDES SOCIAIS */
  .social-row {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .social-group {
    align-items: center;
    gap: 8px;
  }

  .social-group a {
    font-size: 14px;
    display: block;
    padding: 8px 0;
    min-height: 44px;
    line-height: 28px;
  }

  /* LINHA FINAL */
  .footer-bottom {
    font-size: 12px;
    padding-top: 15px;
  }
}
@media (max-width: 600px) {
  .promo-banner {
    height: 180px;
  }

  .promo-banner__content {
    background-size: cover;
    background-position: calc(100% + 56px) center;
  }

  .promo-banner__content .banner-text {
    max-width: 50%;
    margin-left: 18px;
    font-size: 18px;
    line-height: 1.3;
  }

  .promo-banner::before {
    background: linear-gradient(to right, rgb(84, 147, 171) 0%, rgb(84, 147, 171) 4%, rgba(1, 9, 12, 0) 55%, rgb(1, 9, 12) 100%);
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1.15rem;
    max-width: 100%;
  }

  .hero span {
    font-size: 1.05rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .contact-left h3 {
    font-size: 1.75rem;
  }
}

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