:root {
  --blue: #061f45;
  --blue-2: #0b2f66;
  --red: #ed2f35;
  --green: #1fad45;
  --text: #1f2933;
  --muted: #657485;
  --soft: #f4f7fb;
  --white: #ffffff;
  --border: #e5eaf0;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Arimo", Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
}
/* FONTES */

h1 {
  font-family: "Racing Sans One", sans-serif;
  letter-spacing: .01em;
}

h2,
.card h3,
.blog-card h3,
.article-container h2 {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: .03em;
}

p,
li,
nav a,
.btn,
.btn-outline,
.article-container p {
  font-family: "Arimo", Arial, sans-serif;
}
.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(6, 31, 69, 0.96);
  backdrop-filter: blur(10px);
}

.nav {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  width: 220px;
  max-width: 45vw;
}

nav {
  display: flex;
  gap: 18px;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
}

.btn,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
}

.btn {
  background: var(--green);
  color: white;
}

.btn-outline {
  background: white;
  color: var(--blue);
}

.btn-small {
  min-height: 40px;
  padding: 0 18px;
  font-size: 14px;
}

.hero {
  padding: 90px 0;
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
}

.hero-grid,
.two-columns,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 46px;
  align-items: center;
}

.tag,
.eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.light { color: #ff7377; }

h1 {
  margin: 0 0 24px;
  font-size: clamp(40px, 6vw, 70px);
  line-height: .98;
}

h2 {
  margin: 0 0 20px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  color: var(--blue);
}

p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--muted);
}

.hero p { color: rgba(255,255,255,.82); }

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.hero-image img,
.rounded-img {
  width: 100%;
  border-radius: 28px;
  object-fit: cover;
  box-shadow: 0 24px 70px rgba(0,0,0,.22);
}

.hero-image img {
  aspect-ratio: 4 / 5;
}

.product-carousel{
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0,0,0,.22);
}

.carousel-image{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .8s ease;
}

.carousel-image.active{
  opacity: 1;
}

.section {
  padding: 86px 0;
}

.dark {
  background: var(--blue);
  color: white;
}

.dark h2,
.dark h3 { color: white; }

.dark p { color: rgba(255,255,255,.78); }

.soft { background: var(--soft); }

.services-bg {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(6, 31, 69, 0.92), rgba(6, 31, 69, 0.92)),
    url("./background.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.services-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(6, 31, 69, 0.18);
  z-index: 0;
}

.services-bg .container {
  position: relative;
  z-index: 2;
}

.cards-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 34px;
}

.card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 26px;
}

.dark-card {
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.18);
  backdrop-filter: blur(8px);
}

.card span {
  color: var(--red);
  font-size: 42px;
  font-weight: 900;
}

.card h3 {
  font-size: 21px;
  margin: 12px 0;
  color: var(--blue);
}

.dark-card h3 {
  color: white;
}

.card p {
  font-size: 15px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 34px;
}

.gallery img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 24px;
}

.check-list {
  padding-left: 20px;
  color: var(--blue);
  font-weight: 800;
  line-height: 2;
}

.centered {
  text-align: center;
  max-width: 820px;
}
#parceiros {
  background: transparent;
  padding-bottom: 40px;
}

.contact {
  background: transparent;
  padding-top: 40px;
}

#parceiros,
.contact {
  position: relative;
  z-index: 1;
}

#parceiros::before {
  content: "";

  position: absolute;

  inset: 0 0 -100%;

  z-index: -1;

  background:
    linear-gradient(
      rgba(244,247,251,.80),
      rgba(244,247,251,.80)
    ),
    url("./parceria-bg.webp");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.contact-card {
  background: var(--blue);
  color: white;
  border-radius: 26px;
  padding: 34px;
}

.contact-card p {
  color: rgba(255,255,255,.86);
  margin: 0 0 14px;
}

footer {
  background: #04152f;
  color: rgba(255,255,255,.7);
  text-align: center;
  padding: 38px 20px;
}

.footer-logo {
  width: 260px;
  max-width: 80%;
  margin-bottom: 18px;
}

@media (max-width: 900px) {
  .hero-grid,
  .two-columns,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .cards-4,
  .gallery {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 64px 0;
  }

  .section {
    padding: 62px 0;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn,
  .btn-outline {
    width: 100%;
  }

  .logo {
    width: 180px;
  }

  h1 {
    font-size: 42px;
  }

  .services-bg {
    background-position: center;
  }
}
/* WHATSAPP FLUTUANTE */

.floating-whatsapp{
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9999;

  display: flex;
  flex-direction: column;
  gap: 10px;
}

.seller-btn{
  width: 52px;
  height: 52px;

  border-radius: 50%;

  background: #25D366;

  display: flex;
  align-items: center;
  justify-content: center;

  position: relative;

  box-shadow: 0 10px 25px rgba(0,0,0,.22);

  transition: .25s ease;

  text-decoration: none;
}

.seller-btn::before{
  content: "";

  width: 24px;
  height: 24px;

  background-image: url("https://cdn.jsdelivr.net/gh/simple-icons/simple-icons/icons/whatsapp.svg");

  background-size: contain;
  background-repeat: no-repeat;

  filter: brightness(0) invert(1);
}

.seller-btn:hover{
  transform: translateY(-4px) scale(1.05);
  background: #1ebe5d;
}

.seller-tooltip{
  position: absolute;

  right: 68px;

  background: #061f45;
  color: white;

  padding: 10px 14px;

  border-radius: 12px;

  font-size: 13px;
  font-weight: 700;

  white-space: nowrap;

  opacity: 0;
  visibility: hidden;

  transform: translateX(10px);

  transition: .25s ease;
}

.seller-btn:hover .seller-tooltip{
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

@media (max-width: 768px){

  .floating-whatsapp{
    right: 12px;
    bottom: 12px;
    gap: 8px;
  }

  .seller-btn{
    width: 46px;
    height: 46px;
  }

  .seller-tooltip{
    display: none;
  }

}
/* CARROSSEL DE MARCAS */

.brand-carousel {
  background: #061f45;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
  overflow: hidden;
  padding: 18px 0;
}

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

.brand-track:hover {
  animation-play-state: paused;
}

.brand-track img {
  height: 46px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  filter: grayscale(1) brightness(0) invert(1);
  opacity: .78;
  transition: .25s ease;
}

.brand-track img:hover {
  filter: none;
  opacity: 1;
  transform: scale(1.08);
}

@keyframes scrollBrands {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .brand-carousel {
    padding: 14px 0;
  }

  .brand-track {
    gap: 30px;
    animation-duration: 20s;
  }

  .brand-track img {
    height: 34px;
    max-width: 110px;
  }
}
/* BLOG INTERNO */

.blog-preview h1 {
  color: var(--blue);
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1.05;
}

.blog-intro {
  max-width: 760px;
  margin-bottom: 36px;
}

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

.blog-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(6,31,69,.08);
}

.blog-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.blog-card div {
  padding: 24px;
}

.blog-card span {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.blog-card h3 {
  color: var(--blue);
  font-size: 20px;
  line-height: 1.25;
  margin: 14px 0 22px;
}

.blog-card a {
  color: var(--green);
  font-weight: 900;
  text-decoration: none;
}

/* PÁGINA DO ARTIGO */

.article-page {
  padding: 90px 0;
  background: #ffffff;
}

.article-container {
  max-width: 860px;
}

.article-container h1 {
  color: var(--blue);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
}

.article-author {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 28px;
}

.article-cover {
  width: 100%;
  border-radius: 28px;
  margin: 30px 0;
  box-shadow: 0 22px 60px rgba(6,31,69,.14);
}

.article-container h2 {
  margin-top: 44px;
  font-size: 32px;
}

.article-container p {
  font-size: 18px;
  line-height: 1.85;
}

@media (max-width: 900px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .article-page {
    padding: 60px 0;
  }
}
.menu-toggle,
.menu-icon {
  display: none;
}

@media (max-width: 900px) {
  .menu-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    cursor: pointer;
    z-index: 1001;
  }

  .menu {
    position: absolute;
    top: 84px;
    left: 0;
    width: 100%;
    background: #061f45;
    display: none;
    flex-direction: column;
    padding: 24px 20px;
    gap: 18px;
    border-top: 1px solid rgba(255,255,255,.1);
  }

  .menu a {
    font-size: 18px;
  }

  .menu-toggle:checked ~ .menu {
    display: flex;
  }

  .btn-small {
    display: none;
  }
}
/* MENU MOBILE */

.menu-toggle,
.menu-icon {
  display: none;
}

@media (max-width: 900px) {

  .nav {
    position: relative;
  }

  .menu-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 34px;
    cursor: pointer;
    z-index: 1001;
  }

  .menu {
    position: absolute;
    top: 84px;
    left: 0;
    width: 100%;
    background: #061f45;
    display: none;
    flex-direction: column;
    padding: 24px 20px;
    gap: 18px;
    border-top: 1px solid rgba(255,255,255,.12);
    box-shadow: 0 18px 40px rgba(0,0,0,.25);
  }

  .menu a {
    color: white;
    font-size: 18px;
    text-decoration: none;
    font-weight: 700;
  }

  .menu-toggle:checked ~ .menu {
    display: flex;
  }

  .btn-small {
    display: none;
  }
}
