:root {
  --green: #63ea24;
  --dark-green: #3ca312;
  --blue: #0810a3;
  --light: #f2f6e8;
  --dark: #000000;
  --white: #ffffff;
  --radius: 22px;
}

h1,
h2,
h3,
h4,
h5,
h6,
.brand,
.btn,
.section-title h2 {
  font-family: "Alexandria", sans-serif;
  letter-spacing: -0.02em;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-weight: 300;
  line-height: 1.7;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 80px;
  display: flex;
  align-items: center;
  background: url("../assets/hero-banner.png") center/cover no-repeat;
  border-radius: 0 0 28px 28px;
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.35));
}
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.24;
  background-image:
    radial-gradient(circle, #ffffff 1.5px, transparent 2px),
    radial-gradient(circle, #63ea24 2px, transparent 3px);
  background-size:
    120px 120px,
    180px 180px;
  animation: particlesMove 18s linear infinite;
}
.hero-glow {
  position: absolute;
  left: 18%;
  top: 50%;
  width: 460px;
  height: 460px;
  transform: translateY(-50%);
  background: radial-gradient(circle, rgba(99, 234, 36, 0.28), transparent 68%);
  filter: blur(8px);
  z-index: 1;
  pointer-events: none;
}
@keyframes particlesMove {
  from {
    background-position:
      0 0,
      0 0;
  }
  to {
    background-position:
      120px 120px,
      -180px 180px;
  }
}
.hero-content {
  position: relative;
  z-index: 2;
  min-height: 470px;
  display: flex;
  align-items: center;
  gap: 36px;
  color: var(--white);
}
.hero-content::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(rgba(99, 234, 36, 0.15), transparent 70%);
  top: 50%;
  left: 40%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.hero-symbol {
  width: 180px;
  max-width: 28vw;
  opacity: 0.95;
}
.hero-text {
  position: relative;
  z-index: 2;
}
.welcome {
  font-size: 32px;
  font-weight: 800;
  margin: 0 0 8px;
}
h1 {
  text-transform: uppercase;
  font-size: clamp(42px, 7vw, 78px);
  line-height: 0.9;
  margin: 0;
}
h1 span {
  color: var(--green);
  display: block;
}
.tagline {
  font-size: 22px;
  margin: 10px 0 22px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.hero-stats {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 38px;
  align-items: stretch;
}
.hero-stats div {
  min-width: 150px;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.18);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-stats strong {
  display: block;
  color: #84d64d;
  font-size: 32px;
  line-height: 1;
  margin-bottom: 8px;
}
.hero-stats span {
  color: #f2f7ef;
  font-size: 14px;
  line-height: 1.4;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--green);
  color: var(--dark);
  padding: 13px 28px;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 13px;
  border: 0;
  transition: 0.3s ease;
}
.btn:hover {
  background: var(--dark-green);
  color: white;
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(99, 234, 36, 0.4);
}
.btn.small {
  padding: 10px 22px;
  font-size: 12px;
}
.btn.secondary {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(8px);
}
.btn.secondary:hover {
  background: #fff;
  color: #2f3b2f;
}

.section-pad {
  padding: 70px 0;
}
.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  text-align: center;
  margin-bottom: 34px;
}
.section-title span {
  height: 3px;
  width: 180px;
  background: currentColor;
}
.section-title h2 {
  margin: 0;
  color: currentColor;
  text-transform: uppercase;
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.2;
}
.section-title.blue {
  color: var(--blue);
}
.section-title.green {
  color: var(--green);
}
.about,
.why,
.clients,
.products,
.faq,
.contact {
  position: relative;
  overflow: hidden;
}
.about .container,
.why .container,
.clients .container,
.products .container,
.faq .container,
.contact .container {
  position: relative;
  z-index: 2;
}
.molecule-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.055;
  background-image:
    radial-gradient(circle, #63ea24 2px, transparent 3px),
    linear-gradient(
      60deg,
      transparent 47%,
      #63ea24 48%,
      #63ea24 52%,
      transparent 53%
    );
  background-size:
    90px 90px,
    150px 150px;
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 18%,
    #000 82%,
    transparent
  );
}

.about {
  background: #fff;
}
.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 38px;
  align-items: center;
}
.about-image {
  border: 8px solid var(--green);
  border-radius: 18px;
  overflow: hidden;
  background: var(--light);
  box-shadow: 0 20px 45px rgba(60, 163, 18, 0.12);
}

.about-visual {
  width: 100%;
}

.about-world-card {
  background: linear-gradient(
    145deg,
    #050d44 0%,
    #081b7a 50%,
    #0c3822 100%
  ) !important;
  border: 1px solid rgba(89, 213, 43, 0.28) !important;
  box-shadow: 0 24px 60px rgba(7, 28, 134, 0.22) !important;
  border-radius: 28px !important;
}

.about-world-card .hero-structure-card {
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
}

.about-world-card .hero-quality-strip {
  background: rgba(255, 255, 255, 0.07) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
}
.about-text {
  font-size: 18px;
  line-height: 1.6;
}
.features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
  margin: 24px 0;
  font-size: 15px;
  font-weight: 700;
  color: var(--dark-green);
}
.features span::before {
  content: "◆";
  color: var(--green);
  margin-right: 8px;
}

.why {
  background:
    radial-gradient(
      circle at 15% 20%,
      rgba(99, 234, 36, 0.12),
      transparent 28%
    ),
    radial-gradient(circle at 85% 70%, rgba(8, 16, 163, 0.08), transparent 30%),
    #fff;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.why-card {
  position: relative;
  overflow: hidden;
  padding: 30px 24px;
  min-height: 260px;
  background: #f8fbf0;
  border: 1px solid rgba(99, 234, 36, 0.18);
  border-radius: 28px;
  box-shadow: 0 16px 38px rgba(38, 53, 38, 0.07);
  transition: 0.35s ease;
}
.why-card::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 130px;
  height: 130px;
  background: rgba(99, 234, 36, 0.12);
  border-radius: 50%;
}
.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 55px rgba(60, 163, 18, 0.14);
}
.why-card strong {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--green);
  font-size: 34px;
  font-weight: 900;
}
.why-card h3 {
  margin: 0 0 12px;
  color: var(--blue);
  text-transform: uppercase;
  font-size: 17px;
}
.why-card p {
  margin: 0;
  color: #5f665c;
  line-height: 1.6;
}

.clients {
  background: linear-gradient(135deg, #f8fbf0, #fff);
}
.clients-card {
  padding: 42px;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(99, 234, 36, 0.18);
  box-shadow: 0 24px 60px rgba(38, 53, 38, 0.08);
  text-align: center;
}
.clients-card p {
  max-width: 680px;
  margin: 0 auto 30px;
  font-size: 18px;
  line-height: 1.7;
  color: #5f665c;
}
.clients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.clients-grid div {
  padding: 26px 18px;
  border-radius: 22px;
  background: #f2f6e8;
  color: var(--blue);
  font-weight: 900;
  text-transform: uppercase;
  border: 1px dashed rgba(99, 234, 36, 0.35);
}

.products {
  background:
    radial-gradient(
      circle at top left,
      rgba(99, 234, 36, 0.12),
      transparent 35%
    ),
    #fafcf4;
}
.products-box {
  position: relative;
  background: linear-gradient(135deg, #eef6df, #f8fbf0);
  border: 1px solid rgba(99, 234, 36, 0.16);
  border-radius: 34px;
  padding: 48px 34px;
  text-align: center;
  box-shadow: 0 24px 60px rgba(60, 163, 18, 0.08);
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 32px;
}
.product-card {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(99, 234, 36, 0.16);
  border-radius: 28px;
  min-height: 420px;
  box-shadow: 0 16px 38px rgba(38, 53, 38, 0.08);
  transition: 0.35s ease;
}
.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 2px solid transparent;
  pointer-events: none;
  transition: 0.35s ease;
}
.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 26px 60px rgba(60, 163, 18, 0.18);
}
.product-card:hover::before {
  border-color: rgba(99, 234, 36, 0.7);
}
.product-image {
  height: 230px;
  display: grid;
  place-items: center;
  padding: 28px;
  background:
    radial-gradient(circle, rgba(99, 234, 36, 0.12), transparent 58%),
    linear-gradient(180deg, #fff, #f3f8ea);
}
.product-image img {
  max-height: 185px;
  object-fit: contain;
  transition: 0.35s ease;
}
.product-card:hover .product-image img {
  transform: scale(1.06) rotate(-1deg);
}
.product-info {
  padding: 24px 24px 28px;
  text-align: left;
}
.product-tag {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(99, 234, 36, 0.12);
  color: var(--dark-green);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
.product-info h3 {
  color: var(--blue);
  font-size: 19px;
  text-transform: uppercase;
  margin: 0 0 12px;
}
.product-info p {
  margin: 0 0 18px;
  color: #5f665c;
  line-height: 1.55;
  font-size: 15px;
}
.product-link {
  color: var(--green);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 13px;
}
.product-link:hover {
  color: var(--dark-green);
}

.faq {
  background: #fff;
}
.faq-list {
  max-width: 850px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
}
.faq-item {
  background: #f8fbf0;
  border: 1px solid rgba(99, 234, 36, 0.18);
  border-radius: 22px;
  padding: 0 22px;
  box-shadow: 0 14px 35px rgba(38, 53, 38, 0.06);
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  padding: 22px 0;
  color: var(--blue);
  font-weight: 900;
  list-style: none;
  text-transform: uppercase;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--green);
  font-size: 26px;
  line-height: 1;
}
.faq-item[open] summary::after {
  content: "−";
}
.faq-item p {
  margin: 0;
  padding: 0 0 22px;
  color: #5f665c;
  line-height: 1.7;
}

.whatsapp-btn {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 10000;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #128c4a);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 30px;
  box-shadow: 0 14px 35px rgba(37, 211, 102, 0.38);
  transition: 0.3s ease;
  animation: whatsappPulse 2s infinite;
}
.whatsapp-btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 18px 45px rgba(37, 211, 102, 0.5);
}
@keyframes whatsappPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.45);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.site-footer {
  position: relative;
  width: 100%;
  margin: 0;
  background:
    radial-gradient(
      circle at 12% 20%,
      rgba(99, 234, 36, 0.14),
      transparent 28%
    ),
    linear-gradient(135deg, #0810a3, #000000);
  color: #fff;
  overflow: hidden;
  border-radius: 40px 40px 0 0;
}
.footer-wave {
  display: none;
}
.footer-content {
  display: grid;
  grid-template-columns: 1.35fr 0.8fr 1fr;
  gap: 70px;
  padding: 58px 0 48px;
}
.footer-logo {
  width: 220px;
  margin-bottom: 18px;
}
.footer-brand p {
  max-width: 380px;
  line-height: 1.8;
  color: #e6f0df;
}
.site-footer h3 {
  color: #75d343;
  margin: 0 0 20px;
  font-size: 20px;
}
.footer-links a,
.footer-contact p {
  display: block;
  color: #eef5e8;
  margin-bottom: 12px;
  transition: 0.25s ease;
}
.footer-links a:hover {
  color: #75d343;
  transform: translateX(5px);
}
.footer-btn {
  display: inline-flex;
  margin-top: 12px;
  padding: 13px 26px;
  background: #5bbd2a;
  color: #fff;
  border-radius: 999px;
  font-weight: 800;
  transition: 0.25s ease;
}
.footer-btn:hover {
  background: #4aa51f;
  transform: translateY(-2px);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
  padding: 20px;
  color: #dce8d2;
}
.footer-bottom strong {
  color: #75d343;
}

@media (max-width: 980px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .product-grid {
    grid-template-columns: 1fr;
  }
  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  .footer-logo,
  .footer-brand p {
    margin-inline: auto;
  }
}
@media (max-width: 820px) {
  .hero {
    padding-top: 120px;
  }
  .hero-content {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 14px;
  }
  .hero-symbol {
    width: 230px;
    max-width: 80%;
  }
  .welcome {
    font-size: 25px;
  }
  .hero-actions,
  .hero-stats {
    justify-content: center;
  }
  .hero-stats div {
    width: 100%;
    max-width: 260px;
    text-align: center;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .features {
    grid-template-columns: 1fr;
  }
  .section-title span {
    width: 70px;
  }
  .clients-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 620px) {
  .section-pad {
    padding: 54px 0;
  }
  .why-grid,
  .clients-grid {
    grid-template-columns: 1fr;
  }
  .section-title {
    gap: 12px;
  }
  .section-title span {
    width: 42px;
  }
  .footer-content {
    padding: 46px 0 38px;
  }
  .whatsapp-btn {
    width: 54px;
    height: 54px;
    right: 18px;
    bottom: 18px;
  }
}
.timeline-section {
  position: relative;
  overflow: hidden;
  background: #ffffff;
}

.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 26px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(var(--green), var(--blue));
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  width: calc(50% - 34px);
  padding: 28px;
  border-radius: 28px;
  background: #f8fbf0;
  border: 1px solid rgba(99, 234, 36, 0.18);
  box-shadow: 0 18px 45px rgba(38, 53, 38, 0.08);
}

.timeline-item:nth-child(odd) {
  justify-self: start;
}

.timeline-item:nth-child(even) {
  justify-self: end;
}

.timeline-item strong {
  display: inline-block;
  color: var(--green);
  font-size: 34px;
  margin-bottom: 12px;
}

.timeline-item h3 {
  margin: 0 0 10px;
  color: var(--blue);
  text-transform: uppercase;
}

.timeline-item p {
  margin: 0;
  line-height: 1.6;
  color: #5f665c;
}

@media (max-width: 768px) {
  .timeline::before {
    left: 12px;
  }

  .timeline-item {
    width: calc(100% - 34px);
    justify-self: end !important;
  }
}
.contact {
  background: linear-gradient(135deg, #ffffff, #f8fbf0);
}

.contact-box {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  padding: 44px;
  border-radius: 34px;
  background: #fff;
  border: 1px solid rgba(99, 234, 36, 0.18);
  box-shadow: 0 24px 60px rgba(38, 53, 38, 0.08);
}

.contact-box h3 {
  color: var(--blue);
  font-size: 28px;
  margin: 0 0 14px;
}

.contact-box p {
  line-height: 1.7;
}

.contact-info {
  display: grid;
  gap: 14px;
  margin-top: 26px;
  color: var(--dark-green);
  font-weight: 800;
}

.contact-info i {
  margin-right: 8px;
  color: var(--green);
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(99, 234, 36, 0.25);
  background: #f8fbf0;
  border-radius: 18px;
  padding: 16px 18px;
  font: inherit;
  outline: none;
}

.contact-form textarea {
  min-height: 130px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(99, 234, 36, 0.12);
}

@media (max-width: 820px) {
  .contact-box {
    grid-template-columns: 1fr;
    padding: 30px 22px;
  }
}
.testimonials {
  background:
    radial-gradient(
      circle at top right,
      rgba(99, 234, 36, 0.1),
      transparent 30%
    ),
    #fff;
}

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

.testimonial-card {
  background: #fff;
  padding: 32px;
  border-radius: 28px;
  border: 1px solid rgba(99, 234, 36, 0.15);
  box-shadow: 0 18px 45px rgba(38, 53, 38, 0.08);
  transition: 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
}

.stars {
  color: #ffb400;
  font-size: 22px;
  margin-bottom: 18px;
}

.testimonial-card p {
  line-height: 1.8;
  color: #5f665c;
  margin-bottom: 20px;
}

.testimonial-card strong {
  color: var(--blue);
}

@media (max-width: 980px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}
.numbers-section {
  background: #ffffff;
}

.numbers-box {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  padding: 46px;
  border-radius: 36px;
  background:
    radial-gradient(
      circle at top left,
      rgba(99, 234, 36, 0.18),
      transparent 35%
    ),
    linear-gradient(135deg, #233423, #3f513d);
  box-shadow: 0 28px 70px rgba(35, 52, 35, 0.18);
}

.numbers-box div {
  text-align: center;
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.numbers-box strong {
  display: block;
  color: #75d343;
  font-size: clamp(34px, 4vw, 54px);
  margin-bottom: 10px;
}

.numbers-box span {
  color: #eef5e8;
  font-weight: 700;
}

@media (max-width: 900px) {
  .numbers-box {
    grid-template-columns: repeat(2, 1fr);
    padding: 30px;
  }
}

@media (max-width: 520px) {
  .numbers-box {
    grid-template-columns: 1fr;
  }
}
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: grid;
  place-items: center;
  background: #ffffff;
  transition:
    opacity 0.5s ease,
    visibility 0.5s ease;
}

.page-loader-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.page-loader img {
  width: min(80vw, 240px);
  height: auto;
  object-fit: contain;
  animation: loaderPulse 1.8s ease infinite;
}

.page-loader-bar {
  width: 140px;
  height: 3px;
  background: rgba(7, 28, 134, 0.08);
  border-radius: 99px;
  overflow: hidden;
  position: relative;
}

.page-loader-bar span {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  width: 45%;
  background: linear-gradient(90deg, #0810a3, #43c020);
  border-radius: 99px;
  animation: loaderBarMove 1.2s ease-in-out infinite alternate;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

@keyframes loaderPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.7;
  }

  50% {
    transform: scale(1.06);
    opacity: 1;
  }
}
.cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;

  border-radius: 50%;

  pointer-events: none;

  background: radial-gradient(circle, rgba(99, 234, 36, 0.12), transparent 70%);

  transform: translate(-50%, -50%);

  z-index: 0;

  transition:
    left 0.15s linear,
    top 0.15s linear;
}
@media (max-width: 768px) {
  .cursor-glow {
    display: none;
  }
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.hero-badge i {
  color: #84d64d;
}

.hero-segments {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.hero-segments span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  backdrop-filter: blur(10px);
}

.hero-segments i {
  color: #84d64d;
}
@media (max-width: 620px) {
  .hero {
    min-height: auto;
    padding: 120px 0 70px;
    border-radius: 0 0 24px 24px;
  }

  .hero-content {
    min-height: auto;
  }

  .hero-symbol {
    width: 150px;
  }

  .hero-badge {
    font-size: 11px;
    padding: 9px 12px;
  }

  h1 {
    font-size: 48px;
  }

  .tagline {
    font-size: 18px;
  }

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

  .hero-actions .btn {
    width: 100%;
  }

  .hero-segments {
    justify-content: center;
  }

  .products-box,
  .clients-card,
  .contact-box {
    padding: 30px 18px;
    border-radius: 26px;
  }

  .section-title {
    flex-direction: column;
  }

  .section-title span {
    width: 70px;
  }

  .footer-content {
    padding: 44px 0 34px;
  }
}
.product-card {
  transform-style: preserve-3d;
}

.product-card:hover {
  transform: translateY(-12px) scale(1.015);
}

.product-card::after {
  content: "";
  position: absolute;
  inset: -80px;
  background: radial-gradient(circle, rgba(99, 234, 36, 0.18), transparent 55%);
  opacity: 0;
  transition: 0.35s ease;
  pointer-events: none;
}

.product-card:hover::after {
  opacity: 1;
}

.product-image {
  position: relative;
  z-index: 2;
}

.product-info {
  position: relative;
  z-index: 2;
}

.product-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: 0.25s ease;
}

.product-link:hover {
  transform: translateX(5px);
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(99, 234, 36, 0.45);
  outline-offset: 4px;
}

::selection {
  background: #63ea24;
  color: #fff;
}

.btn,
.footer-btn,
.product-link,
.main-nav a {
  cursor: pointer;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
/* Atualizações institucionais - agosto/2026 */
.timeline-intro {
  max-width: 860px;
  margin: 0 auto 48px;
  text-align: center;
  line-height: 1.8;
  color: #536171;
  font-size: 1.05rem;
}

.featured-tag {
  background: rgba(99, 234, 36, 0.14);
  color: #2f7d12;
  border: 1px solid rgba(99, 234, 36, 0.35);
}

.clients-grid-segments div {
  font-weight: 700;
}

.contact-details {
  min-width: 0;
}

.contact-info a,
.contact-info span {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: inherit;
  text-decoration: none;
  line-height: 1.55;
}

.contact-info a:hover {
  color: #4fb823;
}

.contact-map {
  min-height: 360px;
  overflow: hidden;
  border-radius: 22px;
  box-shadow: 0 18px 45px rgba(15, 44, 68, 0.12);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
  display: block;
}

@media (max-width: 760px) {
  .timeline-intro {
    margin-bottom: 32px;
    text-align: left;
  }

  .contact-map,
  .contact-map iframe {
    min-height: 300px;
  }
}
.segmentos-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-top: 42px;
}

.segmento-card {
  min-height: 330px;
  padding: 32px 24px;
  border: 1px solid rgba(39, 174, 96, 0.18);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 15px 40px rgba(25, 72, 58, 0.07);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.segmento-card:hover {
  transform: translateY(-8px);
  border-color: rgba(39, 174, 96, 0.4);
  box-shadow: 0 22px 50px rgba(25, 72, 58, 0.14);
}

.segmento-icone {
  width: 92px;
  height: 92px;
  margin-bottom: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.segmento-card:hover .segmento-icone {
  transform: scale(1.08) rotate(-3deg);
}

.segmento-icone-industria {
  color: #2f9d50;
  background: linear-gradient(145deg, #e7f8e9, #ccefd2);
  box-shadow: 0 12px 28px rgba(47, 157, 80, 0.18);
}

.segmento-icone-agro {
  color: #ed7d31;
  background: linear-gradient(145deg, #fff1e5, #ffe0c7);
  box-shadow: 0 12px 28px rgba(237, 125, 49, 0.18);
}

.segmento-icone-agua {
  color: #3972df;
  background: linear-gradient(145deg, #e9f0ff, #cfddff);
  box-shadow: 0 12px 28px rgba(57, 114, 223, 0.18);
}

.segmento-icone-quimica {
  color: #9852dc;
  background: linear-gradient(145deg, #f3eaff, #e4d0fb);
  box-shadow: 0 12px 28px rgba(152, 82, 220, 0.18);
}

.segmento-card h3 {
  min-height: 54px;
  margin: 0;
  color: #11149e;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.35;
  display: flex;
  align-items: center;
  justify-content: center;
}

.segmento-linha {
  width: 32px;
  height: 3px;
  margin: 18px auto;
  border-radius: 999px;
  background: #31a853;
  transition: width 0.3s ease;
}

.segmento-card:hover .segmento-linha {
  width: 58px;
}

.segmento-card p {
  margin: 0;
  color: #686d68;
  font-size: 16px;
  line-height: 1.75;
}

/* Tablets */
@media (max-width: 1100px) {
  .segmentos-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Celulares */
@media (max-width: 650px) {
  .segmentos-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 30px;
  }

  .segmento-card {
    min-height: auto;
    padding: 28px 22px;
  }

  .segmento-icone {
    width: 82px;
    height: 82px;
    font-size: 35px;
  }

  .segmento-card h3 {
    min-height: auto;
    font-size: 18px;
  }
}

/* =========================================================
   NOVO HEADER LIVITAL
========================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid rgba(56, 170, 35, 0.14);
  box-shadow: 0 10px 35px rgba(23, 55, 34, 0.06);
  transition:
    box-shadow 0.3s ease,
    background-color 0.3s ease;
}

/* Barra superior */

.header-top {
  background: linear-gradient(90deg, #11149e 0%, #171bb8 100%);
  color: #ffffff;
}

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

.header-contact-list {
  display: flex;
  align-items: center;
  gap: 28px;
}

.header-contact-item,
.header-location {
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.header-contact-item {
  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

.header-contact-item:hover {
  color: #91ef61;
  transform: translateY(-1px);
}

.header-contact-item i,
.header-location i {
  color: #69df35;
  font-size: 14px;
}

/* Área principal */

.header-main {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.header-content {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}

.brand {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
}

.brand img {
  display: block;
  width: 205px;
  max-height: 68px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.brand:hover img {
  transform: scale(1.025);
}

/* Navegação */

.main-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link {
  position: relative;
  min-height: 48px;
  padding: 0 15px;
  border-radius: 14px;
  color: #333b34;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition:
    color 0.25s ease,
    background-color 0.25s ease,
    transform 0.25s ease;
}

.nav-link i {
  display: none;
  color: #36a823;
  font-size: 15px;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 7px;
  width: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #38ad25, #64df28);
  transform: translateX(-50%);
  transition: width 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #11149e;
  background: rgba(62, 190, 34, 0.08);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 24px;
}

/* Ícones sociais do header */

.header-social {
  display: flex;
  align-items: center;
  gap: 9px;
  padding-left: 18px;
  border-left: 1px solid rgba(17, 20, 158, 0.12);
}

.header-social a {
  width: 43px;
  height: 43px;
  border: 1px solid rgba(59, 181, 35, 0.18);
  border-radius: 13px;
  background: #f5fbf2;
  color: #32a51e;
  font-size: 18px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    color 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.header-social a:hover {
  color: #ffffff;
  background: linear-gradient(135deg, #32a91d, #59dc25);
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(54, 178, 31, 0.22);
}

/* Botão mobile */

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(48, 165, 30, 0.2);
  border-radius: 14px;
  background: #f5fbf2;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: #11149e;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Header fixo após rolagem */

.site-header.header-fixed {
  animation: headerEntrada 0.35s ease;
}

.site-header.header-fixed .header-top {
  display: none;
}

.site-header.header-fixed .header-content {
  min-height: 76px;
}

.site-header.header-fixed .brand img {
  width: 175px;
}

@keyframes headerEntrada {
  from {
    opacity: 0;
    transform: translateY(-18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================================================
   RESPONSIVO
========================================================= */

@media (max-width: 1150px) {
  .header-content {
    gap: 18px;
  }

  .brand img {
    width: 180px;
  }

  .nav-link {
    padding: 0 10px;
    font-size: 14px;
  }

  .header-social {
    padding-left: 12px;
  }
}

@media (max-width: 950px) {
  .header-top-content {
    min-height: 38px;
  }

  .header-location {
    display: none;
  }

  .header-contact-list {
    width: 100%;
    justify-content: center;
  }

  .header-content {
    min-height: 78px;
    position: relative;
  }

  .brand img {
    width: 170px;
  }

  .menu-toggle {
    display: flex;
    margin-left: auto;
  }

  .header-social {
    display: none;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    margin: 0;
    padding: 14px;
    border: 1px solid rgba(48, 165, 30, 0.18);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 20px 50px rgba(19, 54, 29, 0.16);
    display: grid;
    gap: 6px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition:
      opacity 0.3s ease,
      visibility 0.3s ease,
      transform 0.3s ease;
  }

  .main-nav.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-link {
    width: 100%;
    min-height: 52px;
    padding: 0 16px;
    justify-content: flex-start;
  }

  .nav-link i {
    width: 20px;
    display: inline-block;
    text-align: center;
  }

  .nav-link::after {
    display: none;
  }
}

@media (max-width: 650px) {
  .header-top {
    display: none;
  }

  .header-content {
    min-height: 72px;
  }

  .brand img {
    width: 150px;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
  }

  .main-nav {
    top: calc(100% + 6px);
    border-radius: 16px;
  }
}

/* =========================================================
   ETAPA 1 — HERO PREMIUM LIVITAL
========================================================= */

.hero.hero-premium {
  position: relative;
  isolation: isolate;
  min-height: auto;
  padding: clamp(48px, 6vh, 80px) 0 clamp(40px, 5vh, 64px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: #060f44;
  border-radius: 0 0 40px 40px;
}

.hero-background,
.hero-background > div {
  pointer-events: none;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

/* =========================================================
   SLIDESHOW DE SEGMENTOS NA HERO COM FILTRO AZUL TRANSLÚCIDO
========================================================= */

.hero-bg-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-bg-slide {
  position: absolute;
  inset: 0;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1.3s cubic-bezier(0.4, 0, 0.2, 1), transform 7s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: opacity, transform;
}

.hero-bg-slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.hero-premium .hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    108deg,
    rgba(5, 12, 54, 0.68) 0%,
    rgba(7, 20, 85, 0.58) 45%,
    rgba(10, 48, 55, 0.50) 100%
  );
}

.hero-grid-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.13;
  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.08) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.08) 1px,
      transparent 1px
    );
  background-size: 72px 72px;
  mask-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.3),
    #000,
    rgba(0, 0, 0, 0.35)
  );
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(12px);
}

.hero-glow-one {
  top: -260px;
  right: -180px;
  width: 700px;
  height: 700px;
  background: radial-gradient(
    circle,
    rgba(99, 234, 36, 0.38),
    rgba(99, 234, 36, 0)
  );
  animation: heroGlowMove 8s ease-in-out infinite alternate;
}

.hero-glow-two {
  bottom: -340px;
  left: 22%;
  width: 720px;
  height: 720px;
  background: radial-gradient(
    circle,
    rgba(38, 108, 255, 0.3),
    rgba(38, 108, 255, 0)
  );
  animation: heroGlowMove 10s ease-in-out infinite alternate-reverse;
}

@keyframes heroGlowMove {
  from {
    transform: translate3d(-20px, -10px, 0) scale(0.94);
  }

  to {
    transform: translate3d(30px, 25px, 0) scale(1.08);
  }
}

.hero-premium-content {
  position: relative;
  z-index: 2;
  width: min(1280px, calc(100% - 40px));
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(470px, 0.95fr);
  align-items: center;
  gap: clamp(50px, 7vw, 100px);
}

.hero-premium-content--clean {
  grid-template-columns: minmax(0, 880px) !important;
  justify-content: flex-start;
  padding: 10px 0;
}

.hero-copy {
  min-width: 0;
  color: #ffffff;
}

.hero-eyebrow {
  width: fit-content;
  margin-bottom: 22px;
  padding: 8px 17px 8px 9px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: rgba(255, 255, 255, 0.96);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
}

.hero-eyebrow-icon {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: linear-gradient(135deg, #63ea24, #37aa17);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(99, 234, 36, 0.3);
}

.hero-premium h1 {
  max-width: 680px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(34px, 3.5vw, 54px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  text-transform: none;
  text-wrap: balance;
}

.hero-premium h1.hero-slogan {
  max-width: 820px;
  font-size: clamp(30px, 3.4vw, 48px);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: #ffffff;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.45);
}

.hero-premium h1 span {
  display: block;
  margin-top: 8px;
  color: #72e93b;
}

.hero-description {
  max-width: 680px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(15px, 1.1vw, 17px);
  font-weight: 400;
  line-height: 1.7;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-premium .hero-actions {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-premium .btn {
  min-height: 54px;
  padding: 0 26px;
  gap: 11px;
  border-radius: 16px;
  font-size: 13px;
  letter-spacing: 0.015em;
  text-transform: uppercase;
}

.hero-primary {
  background: linear-gradient(135deg, #63ea24, #3cbb16);
  color: #071237;
  box-shadow:
    0 16px 35px rgba(56, 187, 22, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.hero-primary:hover {
  background: linear-gradient(135deg, #75f23e, #4bcc22);
  color: #071237;
  transform: translateY(-4px);
}

.hero-primary i {
  transition: transform 0.3s ease;
}

.hero-primary:hover i {
  transform: translateX(5px);
}

/* =========================================================
   Pills dos Segmentos Atendidos (Interativas)
========================================================= */

.hero-premium .hero-segments {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-segment-pill {
  appearance: none;
  -webkit-appearance: none;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.92);
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: inherit;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-segment-pill i {
  color: #63ea24;
  font-size: 13px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.hero-segment-pill:hover,
.hero-segment-pill.active {
  background: rgba(99, 234, 36, 0.24);
  border-color: rgba(99, 234, 36, 0.85);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(99, 234, 36, 0.3);
}

.hero-segment-pill.active i {
  color: #ffffff;
  transform: scale(1.15);
}

.hero-segment-pill--tag {
  cursor: default;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}

.hero-segment-pill--tag:hover {
  transform: none;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

.hero-premium .hero-segments span:hover {
  transform: translateY(-3px);
  background: rgba(99, 234, 36, 0.13);
  border-color: rgba(99, 234, 36, 0.38);
}

.hero-premium .hero-segments i {
  color: #75ea40;
  font-size: 14px;
}

/* Card visual Brasil e Ásia */

.hero-visual {
  position: relative;
  min-width: 0;
}

.hero-world-card {
  position: relative;
  overflow: hidden;
  padding: 27px;
  border: 1px solid rgba(255, 255, 255, 0.19);
  border-radius: 34px;
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.14),
      rgba(255, 255, 255, 0.06)
    );
  box-shadow:
    0 35px 90px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
}

.hero-world-card::before {
  content: "";
  position: absolute;
  top: -150px;
  right: -140px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(99, 234, 36, 0.19),
    transparent 69%
  );
}

.world-card-top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.world-status {
  color: rgba(255, 255, 255, 0.82);
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.055em;
}

.world-status > i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #63ea24;
  box-shadow: 0 0 0 6px rgba(99, 234, 36, 0.13);
  animation: statusPulse 1.8s ease infinite;
}

@keyframes statusPulse {
  50% {
    box-shadow: 0 0 0 10px rgba(99, 234, 36, 0);
  }
}

.world-card-tag {
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(99, 234, 36, 0.13);
  border: 1px solid rgba(99, 234, 36, 0.25);
  color: #91f366;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.world-connection {
  position: relative;
  z-index: 2;
  margin: 31px 0 26px;
  padding: 23px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 24px;
  background:
    radial-gradient(
      circle at 10% 50%,
      rgba(99, 234, 36, 0.11),
      transparent 30%
    ),
    radial-gradient(
      circle at 90% 50%,
      rgba(87, 126, 255, 0.18),
      transparent 32%
    ),
    rgba(2, 8, 46, 0.26);
  display: grid;
  grid-template-columns: 1fr 100px 1fr;
  align-items: center;
  gap: 13px;
}

.world-point {
  position: relative;
  display: flex;
  align-items: center;
  gap: 11px;
  color: #ffffff;
}

.world-point > i {
  position: relative;
  z-index: 2;
  width: 39px;
  height: 39px;
  border-radius: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.world-point-brasil > i {
  color: #163e11;
  background: linear-gradient(135deg, #8af05b, #4ac521);
}

.world-point-asia > i {
  color: #ffffff;
  background: linear-gradient(135deg, #5472ff, #2029b8);
}

.world-point div {
  min-width: 0;
}

.world-point strong,
.world-point small {
  display: block;
}

.world-point strong {
  font-size: 14px;
  line-height: 1.2;
}

.world-point small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.61);
  font-size: 10px;
  line-height: 1.35;
}

.connection-route {
  position: relative;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.connection-route span {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background-image: linear-gradient(
    to right,
    rgba(99, 234, 36, 0.7) 50%,
    transparent 50%
  );
  background-size: 9px 1px;
}

.connection-route i {
  position: relative;
  z-index: 2;
  color: #ffffff;
  font-size: 17px;
  filter: drop-shadow(0 5px 12px rgba(0, 0, 0, 0.35));
  animation: planeRoute 4s ease-in-out infinite;
}

@keyframes planeRoute {
  0%,
  100% {
    transform: translateX(-27px) rotate(7deg);
  }

  50% {
    transform: translateX(27px) rotate(7deg);
  }
}

.hero-structure-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 11px;
}

.hero-structure-card {
  min-height: 155px;
  padding: 19px 15px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 20px;
  background: rgba(3, 9, 49, 0.25);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease;
}

.hero-structure-card:hover {
  transform: translateY(-5px);
  border-color: rgba(99, 234, 36, 0.34);
  background: rgba(99, 234, 36, 0.08);
}

.structure-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  color: #79ed45;
  background: rgba(99, 234, 36, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hero-structure-card strong {
  display: block;
  margin-top: 16px;
  color: #83ef51;
  font-family: "Alexandria", sans-serif;
  font-size: 30px;
  line-height: 1;
}

.hero-structure-card span {
  display: block;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.45;
}

.hero-quality-strip {
  position: relative;
  z-index: 2;
  margin-top: 13px;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 19px;
  background: rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  gap: 13px;
}

.quality-strip-icon {
  width: 41px;
  height: 41px;
  border-radius: 14px;
  flex-shrink: 0;
  color: #ffffff;
  background: linear-gradient(135deg, #63ea24, #2fae16);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hero-quality-strip strong,
.hero-quality-strip div > span {
  display: block;
}

.hero-quality-strip strong {
  color: #ffffff;
  font-size: 13px;
}

.hero-quality-strip div > span {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.61);
  font-size: 10px;
  line-height: 1.4;
}

/* Cards flutuantes */

.hero-floating-card {
  position: absolute;
  z-index: 4;
  padding: 12px 15px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: floatingCard 4s ease-in-out infinite;
}

.hero-floating-card > i {
  width: 37px;
  height: 37px;
  border-radius: 12px;
  background: rgba(99, 234, 36, 0.14);
  color: #38a91d;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hero-floating-card strong,
.hero-floating-card span {
  display: block;
}

.hero-floating-card strong {
  color: #10189f;
  font-size: 11px;
  line-height: 1.3;
}

.hero-floating-card span {
  margin-top: 2px;
  color: #697069;
  font-size: 9px;
}

.hero-floating-card-one {
  top: -15px;
  right: -25px;
}

.hero-floating-card-two {
  left: -25px;
  bottom: -15px;
  animation-delay: -2s;
}

@keyframes floatingCard {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-11px);
  }
}

/* Moléculas decorativas */

.hero-molecules {
  position: absolute;
  inset: 0;
}

.molecule {
  position: absolute;
  width: 130px;
  height: 90px;
  opacity: 0.19;
  animation: moleculeFloat 11s ease-in-out infinite;
}

.molecule i {
  position: absolute;
  width: 17px;
  height: 17px;
  border: 3px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
}

.molecule i:nth-child(1) {
  left: 0;
  top: 34px;
}

.molecule i:nth-child(2) {
  left: 55px;
  top: 0;
}

.molecule i:nth-child(3) {
  right: 0;
  bottom: 0;
}

.molecule::before,
.molecule::after {
  content: "";
  position: absolute;
  width: 58px;
  height: 2px;
  background: rgba(255, 255, 255, 0.55);
  transform-origin: left center;
}

.molecule::before {
  left: 15px;
  top: 40px;
  transform: rotate(-30deg);
}

.molecule::after {
  left: 67px;
  top: 14px;
  transform: rotate(42deg);
}

.molecule-one {
  top: 15%;
  left: 4%;
}

.molecule-two {
  right: 9%;
  bottom: 8%;
  transform: scale(0.72);
  animation-delay: -4s;
}

.molecule-three {
  left: 44%;
  bottom: 7%;
  transform: scale(0.55);
  animation-delay: -7s;
}

@keyframes moleculeFloat {
  0%,
  100% {
    translate: 0 0;
    rotate: 0deg;
  }

  50% {
    translate: 20px -25px;
    rotate: 8deg;
  }
}

/* Indicador de rolagem */

.hero-scroll {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.67);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-scroll i {
  width: 29px;
  height: 29px;
  border: 1px solid rgba(255, 255, 255, 0.23);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  animation: scrollArrow 1.8s ease-in-out infinite;
}

@keyframes scrollArrow {
  50% {
    transform: translateY(5px);
  }
}

/* =========================================================
   RESPONSIVIDADE DO HERO PREMIUM
========================================================= */

@media (max-width: 1240px) {
  .hero-premium-content {
    grid-template-columns: minmax(0, 1fr) minmax(430px, 0.9fr);
    gap: 55px;
  }

  .hero-floating-card-one {
    right: -15px;
  }

  .hero-floating-card-two {
    left: -15px;
  }
}

@media (max-width: 1050px) {
  .hero.hero-premium {
    min-height: auto;
    padding: 110px 0 90px;
  }

  .hero-premium-content {
    grid-template-columns: 1fr;
    max-width: 820px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-eyebrow,
  .hero-actions,
  .hero-segments {
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
  }

  .hero-premium h1,
  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-visual {
    max-width: 670px;
    width: 100%;
    margin: 0 auto;
  }
}

@media (max-width: 700px) {
  .hero.hero-premium {
    padding: 95px 0 75px;
    border-radius: 0 0 30px 30px;
  }

  .hero-premium-content {
    width: min(100% - 28px, 620px);
    gap: 42px;
  }

  .hero-eyebrow {
    font-size: 10px;
  }

  .hero-premium h1 {
    font-size: clamp(39px, 12vw, 56px);
    line-height: 1;
  }

  .hero-description {
    margin-top: 22px;
    font-size: 16px;
    line-height: 1.65;
  }

  .hero-premium .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-premium .btn {
    width: 100%;
  }

  .hero-premium .hero-segments {
    align-items: stretch;
  }

  .hero-premium .hero-segments span {
    flex: 1 1 145px;
    justify-content: center;
  }

  .hero-world-card {
    padding: 19px;
    border-radius: 27px;
  }

  .world-card-top {
    align-items: flex-start;
  }

  .world-connection {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .connection-route {
    height: 42px;
    transform: rotate(90deg);
  }

  .hero-structure-grid {
    grid-template-columns: 1fr;
  }

  .hero-structure-card {
    min-height: auto;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
  }

  .hero-structure-card strong {
    margin-top: 0;
  }

  .hero-floating-card {
    display: none;
  }

  .hero-scroll {
    display: none;
  }
}

@media (max-width: 420px) {
  .hero-eyebrow {
    border-radius: 18px;
    text-align: left;
  }

  .world-card-tag {
    display: none;
  }

  .hero-quality-strip {
    align-items: flex-start;
  }
}

/* Evita duplicação visual do hero antigo */
.hero-premium .hero-symbol,
.hero-premium .hero-stats,
.hero-premium .hero-particles {
  display: none;
}


/* =========================================================
   ETAPA 2 — PRODUTOS PREMIUM
========================================================= */

.products-premium {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 8% 12%,
      rgba(99, 234, 36, 0.12),
      transparent 28%
    ),
    radial-gradient(
      circle at 92% 70%,
      rgba(8, 16, 163, 0.08),
      transparent 30%
    ),
    linear-gradient(180deg, #fbfdf8 0%, #f4f9ec 100%);
}

.products-premium .container {
  position: relative;
  z-index: 2;
}

.products-heading {
  margin-bottom: 42px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.products-heading > div {
  max-width: 760px;
}

.section-kicker {
  width: fit-content;
  margin-bottom: 16px;
  padding: 9px 14px;
  border: 1px solid rgba(56, 171, 29, 0.2);
  border-radius: 999px;
  background: rgba(99, 234, 36, 0.1);
  color: #318d19;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.section-kicker i {
  color: #50bd25;
}

.products-heading h2 {
  max-width: 700px;
  margin: 0;
  color: var(--blue);
  font-size: clamp(34px, 4.4vw, 57px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.products-heading p {
  max-width: 700px;
  margin: 20px 0 0;
  color: #68716a;
  font-size: 17px;
  line-height: 1.75;
}

.products-heading-action {
  min-height: 52px;
  padding: 0 20px;
  border: 1px solid rgba(8, 16, 163, 0.14);
  border-radius: 16px;
  background: #ffffff;
  color: var(--blue);
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  box-shadow: 0 14px 32px rgba(25, 40, 80, 0.08);
  transition:
    transform 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.products-heading-action:hover {
  color: #339a18;
  border-color: rgba(99, 234, 36, 0.42);
  transform: translateY(-4px);
  box-shadow: 0 20px 42px rgba(49, 126, 29, 0.12);
}

.products-heading-action i {
  transition: transform 0.3s ease;
}

.products-heading-action:hover i {
  transform: translateX(5px);
}

.product-grid-premium {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  margin: 0;
}

.product-card-premium {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid rgba(49, 145, 25, 0.14);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow:
    0 22px 55px rgba(30, 64, 27, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  display: flex;
  flex-direction: column;
  transform-style: flat;
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease,
    border-color 0.4s ease;
}

.product-card-premium::before {
  content: "";
  position: absolute;
  z-index: 5;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(
    115deg,
    transparent 20%,
    rgba(255, 255, 255, 0.5) 45%,
    transparent 70%
  );
  transform: translateX(-140%);
  transition: transform 0.8s ease;
}

.product-card-premium:hover {
  transform: translateY(-12px);
  border-color: rgba(99, 234, 36, 0.5);
  box-shadow:
    0 32px 75px rgba(39, 112, 24, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.product-card-premium:hover::before {
  transform: translateX(140%);
}

.product-card-top {
  position: absolute;
  z-index: 7;
  top: 18px;
  left: 18px;
  right: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
}

.product-featured-badge {
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(99, 234, 36, 0.31);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.93);
  color: #318d19;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  box-shadow: 0 10px 25px rgba(33, 92, 24, 0.1);
  backdrop-filter: blur(10px);
}

.product-featured-badge i {
  color: #e7a900;
  animation: starTwinkle 2.8s ease-in-out infinite;
}

@keyframes starTwinkle {
  0%, 100% {
    transform: scale(1) rotate(0deg);
    opacity: 0.9;
  }
  50% {
    transform: scale(1.35) rotate(15deg);
    opacity: 1;
    filter: drop-shadow(0 0 6px rgba(231, 169, 0, 0.7));
  }
}

.product-details-trigger {
  width: 39px;
  height: 39px;
  padding: 0;
  border: 1px solid rgba(8, 16, 163, 0.12);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--blue);
  cursor: pointer;
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(20, 35, 85, 0.1);
  transition:
    transform 0.3s ease,
    color 0.3s ease,
    background 0.3s ease;
}

.product-details-trigger:hover {
  color: #ffffff;
  background: var(--blue);
  transform: rotate(6deg) scale(1.06);
}

.product-premium-image {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 2;
  height: auto !important;
  overflow: hidden;
  padding: 0;
  background: #0810a3;
  display: block;
}

.product-premium-image::before,
.product-premium-image::after {
  display: none;
}

.product-premium-image img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: contain !important;
  object-position: center;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s ease;
}

.product-card-premium:hover .product-premium-image img {
  transform: scale(1.06);
  filter: brightness(1.03);
}

.product-code {
  position: absolute;
  z-index: 1;
  right: 15px;
  bottom: -6px;
  color: rgba(8, 16, 163, 0.045);
  font-family: "Alexandria", sans-serif;
  font-size: 72px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.07em;
  white-space: nowrap;
}

.product-image-glow {
  position: absolute;
  z-index: 0;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: rgba(99, 234, 36, 0.18);
  filter: blur(24px);
  transition: transform 0.5s ease;
}

.product-card-premium:hover .product-image-glow {
  transform: scale(1.3);
}

.product-premium-content {
  position: relative;
  z-index: 6;
  padding: 27px 26px 28px;
  display: flex;
  flex: 1;
  flex-direction: column;
}

.product-category {
  width: fit-content;
  min-height: 31px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(8, 16, 163, 0.06);
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.product-category i {
  color: #45ae22;
}

.product-premium-content h3 {
  margin: 18px 0 12px;
  color: var(--blue);
  font-size: 27px;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.035em;
  text-transform: none;
}

.product-premium-content > p {
  margin: 0;
  color: #687069;
  font-size: 14px;
  line-height: 1.72;
}

.product-benefits {
  margin-top: 21px;
  display: grid;
  gap: 10px;
}

.product-benefits span {
  color: #465047;
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  font-weight: 700;
}

.product-benefits i {
  color: #46b221;
  font-size: 14px;
}

.product-actions {
  margin-top: auto;
  padding-top: 25px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.product-action {
  min-height: 48px;
  padding: 0 13px;
  border-radius: 14px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font: inherit;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  transition:
    transform 0.3s ease,
    color 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease;
}

.product-action:hover {
  transform: translateY(-3px);
}

.product-action-details {
  border: 1px solid rgba(8, 16, 163, 0.13);
  background: #f5f7ff;
  color: var(--blue);
}

.product-action-details:hover {
  color: #ffffff;
  background: var(--blue);
  border-color: var(--blue);
}

.product-action-whatsapp {
  border: 1px solid rgba(37, 211, 102, 0.22);
  background: rgba(37, 211, 102, 0.1);
  color: #148a43;
}

.product-action-whatsapp:hover {
  color: #ffffff;
  background: #1fa855;
  border-color: #1fa855;
}

.products-support-strip {
  margin-top: 30px;
  padding: 22px 24px;
  border: 1px solid rgba(8, 16, 163, 0.09);
  border-radius: 23px;
  background:
    linear-gradient(
      105deg,
      rgba(8, 16, 163, 0.97),
      rgba(27, 70, 128, 0.97)
    );
  box-shadow: 0 22px 50px rgba(8, 16, 90, 0.14);
  display: flex;
  align-items: center;
  gap: 17px;
}

.products-support-icon {
  width: 53px;
  height: 53px;
  border-radius: 17px;
  flex-shrink: 0;
  background: linear-gradient(135deg, #63ea24, #37a919);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
  box-shadow: 0 13px 30px rgba(99, 234, 36, 0.2);
}

.products-support-copy {
  min-width: 0;
  flex: 1;
}

.products-support-copy strong,
.products-support-copy span {
  display: block;
}

.products-support-copy strong {
  color: #ffffff;
  font-size: 17px;
}

.products-support-copy span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.5;
}

.products-support-button {
  min-height: 48px;
  padding: 0 18px;
  border-radius: 14px;
  background: #ffffff;
  color: #168a43;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  transition:
    transform 0.3s ease,
    color 0.3s ease,
    background 0.3s ease;
}

.products-support-button:hover {
  color: #ffffff;
  background: #1eaf58;
  transform: translateY(-3px);
}

/* =========================================================
   MODAL DE PRODUTO
========================================================= */

.product-modal {
  position: fixed;
  z-index: 20000;
  inset: 0;
  padding: 25px;
  visibility: hidden;
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.product-modal.open {
  visibility: visible;
  opacity: 1;
}

.product-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 9, 40, 0.72);
  backdrop-filter: blur(13px);
  -webkit-backdrop-filter: blur(13px);
}

.product-modal-dialog {
  position: relative;
  z-index: 2;
  width: min(970px, 100%);
  max-height: min(720px, calc(100vh - 50px));
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 31px;
  background: #ffffff;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.35);
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  transform: translateY(25px) scale(0.97);
  transition: transform 0.35s ease;
}

.product-modal.open .product-modal-dialog {
  transform: translateY(0) scale(1);
}

.product-modal-close {
  position: absolute;
  z-index: 5;
  top: 17px;
  right: 17px;
  width: 43px;
  height: 43px;
  padding: 0;
  border: 1px solid rgba(8, 16, 163, 0.11);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--blue);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 12px 25px rgba(20, 35, 85, 0.1);
  transition:
    transform 0.3s ease,
    color 0.3s ease,
    background 0.3s ease;
}

.product-modal-close:hover {
  color: #ffffff;
  background: var(--blue);
  transform: rotate(90deg);
}

.product-modal-visual {
  position: relative;
  min-height: 530px;
  overflow: hidden;
  padding: 30px;
  background:
    radial-gradient(
      circle at center,
      rgba(99, 234, 36, 0.22),
      transparent 50%
    ),
    linear-gradient(155deg, #eef8e5, #f9fdf6);
  display: flex;
  flex-direction: column;
}

.product-modal-visual::before {
  content: "";
  position: absolute;
  left: -70px;
  bottom: -70px;
  width: 230px;
  height: 230px;
  border: 1px solid rgba(8, 16, 163, 0.08);
  border-radius: 50%;
}

.product-modal-label {
  position: relative;
  z-index: 2;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(99, 234, 36, 0.15);
  color: #318e18;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.product-modal-image {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.product-modal-image img {
  width: 100%;
  max-height: 380px;
  object-fit: contain !important;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.22);
}

.product-modal-content {
  padding: 60px 44px 43px;
}

.product-modal-category {
  color: #3a9e20;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.product-modal-content h2 {
  margin: 13px 0 17px;
  color: var(--blue);
  font-size: clamp(34px, 4vw, 49px);
  line-height: 1;
  letter-spacing: -0.045em;
}

.product-modal-content > p {
  margin: 0;
  color: #657067;
  font-size: 15px;
  line-height: 1.75;
}

.product-modal-warning {
  margin-top: 23px;
  padding: 15px;
  border: 1px solid rgba(231, 169, 0, 0.2);
  border-radius: 16px;
  background: rgba(255, 191, 0, 0.08);
  color: #77600e;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
  line-height: 1.55;
}

.product-modal-warning i {
  margin-top: 3px;
  color: #d9a000;
}

.product-modal-section {
  margin-top: 25px;
}

.product-modal-section h3 {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 15px;
  text-transform: uppercase;
}

.product-modal-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px;
}

.product-modal-features span {
  color: #526054;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
}

.product-modal-features i {
  width: 23px;
  height: 23px;
  border-radius: 50%;
  background: rgba(99, 234, 36, 0.13);
  color: #3eaa1e;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
}

.product-modal-actions {
  margin-top: 29px;
  display: flex;
  gap: 11px;
  flex-wrap: wrap;
}

.product-modal-primary,
.product-modal-secondary {
  min-height: 51px;
  padding: 0 17px;
  border-radius: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  transition:
    transform 0.3s ease,
    color 0.3s ease,
    background 0.3s ease;
}

.product-modal-primary {
  color: #ffffff;
  background: #20a954;
}

.product-modal-primary:hover {
  background: #168c43;
  transform: translateY(-3px);
}

.product-modal-secondary {
  border: 1px solid rgba(8, 16, 163, 0.13);
  color: var(--blue);
  background: #f5f7ff;
}

.product-modal-secondary:hover {
  color: #ffffff;
  background: var(--blue);
  transform: translateY(-3px);
}

body.product-modal-open {
  overflow: hidden;
}

/* =========================================================
   RESPONSIVIDADE DOS PRODUTOS
========================================================= */

@media (max-width: 1050px) {
  .product-grid-premium {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-card-premium:last-child {
    grid-column: 1 / -1;
    max-width: calc(50% - 13px);
    width: 100%;
    justify-self: center;
  }

  .product-modal-dialog {
    grid-template-columns: 0.75fr 1.25fr;
  }
}

@media (max-width: 820px) {
  .products-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }

  .products-heading-action {
    flex-shrink: 1;
  }

  .products-support-strip {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .products-support-button {
    margin-left: 70px;
  }

  .product-modal-dialog {
    grid-template-columns: 1fr;
  }

  .product-modal-visual {
    min-height: 260px;
  }

  .product-modal-image img {
    max-height: 180px;
  }

  .product-modal-content {
    padding: 35px 27px 30px;
  }
}

@media (max-width: 670px) {
  .product-grid-premium {
    grid-template-columns: 1fr;
  }

  .product-card-premium:last-child {
    grid-column: auto;
    max-width: none;
  }

  .product-premium-image {
    aspect-ratio: 3 / 2;
    height: auto !important;
  }

  .products-support-button {
    width: 100%;
    margin-left: 0;
  }

  .product-modal {
    padding: 12px;
  }

  .product-modal-dialog {
    max-height: calc(100vh - 24px);
    border-radius: 23px;
  }

  .product-modal-features {
    grid-template-columns: 1fr;
  }

  .product-modal-actions {
    flex-direction: column;
  }

  .product-modal-primary,
  .product-modal-secondary {
    width: 100%;
  }
}

@media (max-width: 430px) {
  .product-actions {
    grid-template-columns: 1fr;
  }

  .products-heading h2 {
    font-size: 34px;
  }

  .products-heading-action {
    width: 100%;
    justify-content: center;
  }

  .products-support-strip {
    padding: 19px;
  }
}


/* =========================================================
   ETAPA 3 — TRAJETÓRIA PREMIUM
========================================================= */

.timeline-premium {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 10% 12%,
      rgba(99, 234, 36, 0.11),
      transparent 28%
    ),
    radial-gradient(
      circle at 88% 60%,
      rgba(8, 16, 163, 0.08),
      transparent 28%
    ),
    linear-gradient(180deg, #ffffff 0%, #f8fbf4 100%);
}

.timeline-premium .container {
  position: relative;
  z-index: 2;
}

.timeline-premium-heading {
  margin-bottom: 70px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  align-items: end;
  gap: 50px;
}

.timeline-heading-copy {
  max-width: 790px;
}

.timeline-heading-copy h2 {
  margin: 0;
  color: var(--blue);
  font-size: clamp(37px, 5vw, 62px);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.timeline-heading-copy h2 span {
  display: block;
  color: #45ad21;
}

.timeline-heading-copy > p {
  max-width: 720px;
  margin: 22px 0 0;
  color: #657067;
  font-size: 17px;
  line-height: 1.75;
}

.timeline-experience-card {
  min-height: 150px;
  padding: 24px;
  border: 1px solid rgba(99, 234, 36, 0.24);
  border-radius: 26px;
  background:
    radial-gradient(
      circle at top right,
      rgba(99, 234, 36, 0.22),
      transparent 50%
    ),
    linear-gradient(145deg, #0c159f, #1724b5);
  box-shadow: 0 24px 55px rgba(8, 16, 120, 0.18);
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 19px;
}

.timeline-experience-icon {
  width: 58px;
  height: 58px;
  border-radius: 19px;
  background: linear-gradient(135deg, #63ea24, #37aa18);
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 23px;
  box-shadow: 0 14px 30px rgba(99, 234, 36, 0.25);
}

.timeline-experience-card strong,
.timeline-experience-card span {
  display: block;
}

.timeline-experience-card strong {
  color: #84ef51;
  font-family: "Alexandria", sans-serif;
  font-size: 43px;
  font-weight: 900;
  line-height: 1;
}

.timeline-experience-card span {
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.73);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}

/* Linha principal */

.timeline-premium-list {
  position: relative;
  max-width: 1110px;
  margin: 0 auto;
  display: grid;
  gap: 48px;
}

.timeline-progress-line {
  position: absolute;
  z-index: 0;
  top: 30px;
  bottom: 30px;
  left: 50%;
  width: 4px;
  border-radius: 999px;
  background: rgba(8, 16, 163, 0.09);
  transform: translateX(-50%);
  overflow: hidden;
}

.timeline-progress-line span {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    #63ea24 0%,
    #385bd4 38%,
    #f0a728 72%,
    #dfb119 100%
  );
  transform-origin: top;
  animation: timelineLineReveal 2.5s ease both;
}

@keyframes timelineLineReveal {
  from {
    transform: scaleY(0);
  }

  to {
    transform: scaleY(1);
  }
}

.timeline-premium-item {
  position: relative;
  z-index: 2;
  width: calc(50% - 55px);
}

.timeline-premium-left {
  justify-self: start;
}

.timeline-premium-right {
  justify-self: end;
}

.timeline-premium-marker {
  position: absolute;
  top: 34px;
  width: 62px;
  height: 62px;
}

.timeline-premium-left .timeline-premium-marker {
  right: -86px;
}

.timeline-premium-right .timeline-premium-marker {
  left: -86px;
}

.timeline-marker-ring {
  position: absolute;
  inset: -9px;
  border: 1px solid rgba(99, 234, 36, 0.28);
  border-radius: 50%;
  animation: timelineMarkerPulse 2.7s ease infinite;
}

@keyframes timelineMarkerPulse {
  50% {
    transform: scale(1.13);
    opacity: 0.45;
  }
}

.timeline-marker-icon {
  position: relative;
  z-index: 2;
  width: 62px;
  height: 62px;
  border: 6px solid #f8fbf4;
  border-radius: 50%;
  background: linear-gradient(135deg, #63ea24, #37a918);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 13px 30px rgba(53, 158, 28, 0.24);
}

.timeline-marker-blue {
  background: linear-gradient(135deg, #5676ff, #1726ad);
  box-shadow: 0 13px 30px rgba(40, 61, 190, 0.24);
}

.timeline-marker-purple {
  background: linear-gradient(135deg, #a259e6, #6531ad);
  box-shadow: 0 13px 30px rgba(112, 55, 179, 0.24);
}

.timeline-marker-orange {
  background: linear-gradient(135deg, #ff9c4b, #df661a);
  box-shadow: 0 13px 30px rgba(224, 102, 27, 0.24);
}

.timeline-marker-gold {
  background: linear-gradient(135deg, #f5ca4a, #bd8508);
  box-shadow: 0 13px 30px rgba(196, 139, 10, 0.24);
}

/* Cards */

.timeline-premium-card {
  position: relative;
  overflow: hidden;
  padding: 29px;
  border: 1px solid rgba(8, 16, 163, 0.09);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow:
    0 22px 55px rgba(26, 54, 29, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
  transition:
    transform 0.4s ease,
    border-color 0.4s ease,
    box-shadow 0.4s ease;
}

.timeline-premium-card::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -110px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(99, 234, 36, 0.13),
    transparent 68%
  );
}

.timeline-premium-card:hover {
  transform: translateY(-8px);
  border-color: rgba(99, 234, 36, 0.38);
  box-shadow:
    0 31px 70px rgba(43, 108, 29, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.timeline-card-header {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.timeline-year {
  color: var(--blue);
  font-family: "Alexandria", sans-serif;
  font-size: 37px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
}

.timeline-status {
  min-height: 31px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(99, 234, 36, 0.12);
  color: #378f1e;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.timeline-status-blue {
  background: rgba(54, 86, 220, 0.1);
  color: #304db4;
}

.timeline-status-purple {
  background: rgba(151, 77, 210, 0.1);
  color: #7c3eb0;
}

.timeline-status-orange {
  background: rgba(238, 124, 43, 0.11);
  color: #c95f17;
}

.timeline-status-gold {
  background: rgba(226, 169, 24, 0.12);
  color: #a97608;
}

.timeline-premium-card h3 {
  position: relative;
  z-index: 2;
  margin: 22px 0 13px;
  color: var(--blue);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: -0.03em;
  text-transform: none;
}

.timeline-premium-card > p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: #667068;
  font-size: 14px;
  line-height: 1.72;
}

.timeline-card-details {
  position: relative;
  z-index: 2;
  margin-top: 21px;
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
}

.timeline-card-details span {
  min-height: 35px;
  padding: 0 11px;
  border: 1px solid rgba(8, 16, 163, 0.08);
  border-radius: 11px;
  background: #f7f9f5;
  color: #566158;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 10px;
  font-weight: 700;
}

.timeline-card-details i {
  color: #48ad24;
}

.timeline-premium-card-featured {
  border-color: rgba(224, 171, 26, 0.28);
  background:
    radial-gradient(
      circle at top right,
      rgba(245, 198, 65, 0.15),
      transparent 36%
    ),
    #ffffff;
}

.timeline-featured-seal {
  position: absolute;
  right: 20px;
  bottom: 18px;
  width: 70px;
  height: 70px;
  border: 2px solid rgba(199, 145, 15, 0.26);
  border-radius: 50%;
  color: #b5810b;
  opacity: 0.13;
  display: flex;
  align-items: center;
  justify-content: center;
}

.timeline-featured-seal i {
  position: absolute;
  font-size: 65px;
}

.timeline-featured-seal span {
  position: relative;
  z-index: 2;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
}

/* Faixa final */

.timeline-future-strip {
  max-width: 1000px;
  margin: 70px auto 0;
  padding: 24px 26px;
  border: 1px solid rgba(99, 234, 36, 0.2);
  border-radius: 24px;
  background: linear-gradient(120deg, #111a9f, #193a91);
  box-shadow: 0 22px 55px rgba(8, 16, 110, 0.17);
  display: flex;
  align-items: center;
  gap: 17px;
}

.timeline-future-icon {
  width: 52px;
  height: 52px;
  border-radius: 17px;
  background: linear-gradient(135deg, #63ea24, #3aac19);
  color: #ffffff;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
}

.timeline-future-strip > div:nth-child(2) {
  min-width: 0;
  flex: 1;
}

.timeline-future-strip strong,
.timeline-future-strip span {
  display: block;
}

.timeline-future-strip strong {
  color: #ffffff;
  font-size: 16px;
}

.timeline-future-strip span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.67);
  font-size: 12px;
  line-height: 1.5;
}

.timeline-future-strip > a {
  min-height: 46px;
  padding: 0 17px;
  border-radius: 14px;
  background: #ffffff;
  color: var(--blue);
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  transition:
    transform 0.3s ease,
    color 0.3s ease,
    background 0.3s ease;
}

.timeline-future-strip > a:hover {
  color: #ffffff;
  background: #3eae1d;
  transform: translateY(-3px);
}

/* =========================================================
   RESPONSIVIDADE DA TRAJETÓRIA
========================================================= */

@media (max-width: 950px) {
  .timeline-premium-heading {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .timeline-experience-card {
    max-width: 420px;
  }

  .timeline-progress-line {
    left: 30px;
  }

  .timeline-premium-item {
    width: calc(100% - 82px);
    justify-self: end;
  }

  .timeline-premium-left,
  .timeline-premium-right {
    justify-self: end;
  }

  .timeline-premium-left .timeline-premium-marker,
  .timeline-premium-right .timeline-premium-marker {
    left: -83px;
    right: auto;
  }
}

@media (max-width: 700px) {
  .timeline-premium-heading {
    margin-bottom: 48px;
  }

  .timeline-heading-copy h2 {
    font-size: 39px;
  }

  .timeline-experience-card {
    min-height: auto;
  }

  .timeline-progress-line {
    left: 23px;
    width: 3px;
  }

  .timeline-premium-list {
    gap: 30px;
  }

  .timeline-premium-item {
    width: calc(100% - 62px);
  }

  .timeline-premium-left .timeline-premium-marker,
  .timeline-premium-right .timeline-premium-marker {
    left: -62px;
  }

  .timeline-premium-marker,
  .timeline-marker-icon {
    width: 47px;
    height: 47px;
  }

  .timeline-marker-icon {
    border-width: 5px;
    font-size: 15px;
  }

  .timeline-premium-card {
    padding: 23px 20px;
    border-radius: 23px;
  }

  .timeline-card-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .timeline-year {
    font-size: 32px;
  }

  .timeline-premium-card h3 {
    font-size: 20px;
  }

  .timeline-future-strip {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .timeline-future-strip > a {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 430px) {
  .timeline-heading-copy h2 {
    font-size: 34px;
  }

  .timeline-experience-card {
    padding: 19px;
  }

  .timeline-experience-icon {
    width: 50px;
    height: 50px;
  }

  .timeline-experience-card strong {
    font-size: 36px;
  }

  .timeline-card-details {
    flex-direction: column;
  }

  .timeline-card-details span {
    width: 100%;
  }
}


/* =========================================================
   ETAPA 4 — ESTRUTURA E PRESENÇA PREMIUM
========================================================= */

.structure-premium {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(
      125deg,
      rgba(6, 13, 92, 0.98),
      rgba(13, 28, 139, 0.97) 52%,
      rgba(22, 88, 57, 0.96)
    );
  color: #ffffff;
}

.structure-premium .container {
  position: relative;
  z-index: 2;
}

.structure-background {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.structure-background::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.09;
  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.13) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.13) 1px,
      transparent 1px
    );
  background-size: 72px 72px;
}

.structure-glow {
  position: absolute;
  top: -300px;
  right: -180px;
  width: 730px;
  height: 730px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(99, 234, 36, 0.28),
    rgba(99, 234, 36, 0)
  );
  filter: blur(15px);
  animation: structureGlow 8s ease-in-out infinite alternate;
}

@keyframes structureGlow {
  from {
    transform: translate3d(-20px, -10px, 0) scale(0.94);
  }

  to {
    transform: translate3d(35px, 25px, 0) scale(1.08);
  }
}

.structure-orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.structure-orbit::before,
.structure-orbit::after {
  content: "";
  position: absolute;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #63ea24;
  box-shadow: 0 0 20px rgba(99, 234, 36, 0.45);
}

.structure-orbit-one {
  left: -190px;
  bottom: -330px;
  width: 690px;
  height: 690px;
  animation: structureOrbit 24s linear infinite;
}

.structure-orbit-one::before {
  top: 64px;
  right: 125px;
}

.structure-orbit-one::after {
  right: 8px;
  bottom: 220px;
}

.structure-orbit-two {
  top: -210px;
  right: 18%;
  width: 420px;
  height: 420px;
  opacity: 0.55;
  animation: structureOrbit 29s linear infinite reverse;
}

.structure-orbit-two::before {
  left: 49px;
  bottom: 67px;
}

.structure-orbit-two::after {
  top: 74px;
  right: 35px;
}

@keyframes structureOrbit {
  to {
    transform: rotate(360deg);
  }
}

/* Cabeçalho */

.structure-premium-heading {
  margin-bottom: 45px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 45px;
}

.structure-heading-copy {
  max-width: 770px;
}

.structure-kicker {
  width: fit-content;
  margin-bottom: 17px;
  padding: 9px 14px;
  border: 1px solid rgba(99, 234, 36, 0.28);
  border-radius: 999px;
  background: rgba(99, 234, 36, 0.1);
  color: #91f565;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.structure-premium-heading h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.structure-premium-heading h2 span {
  display: block;
  color: #82ef4e;
}

.structure-premium-heading p {
  max-width: 700px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 1.75;
}

.structure-heading-badge {
  min-width: 285px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 21px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  gap: 14px;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

.structure-badge-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(135deg, #63ea24, #38ac18);
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 28px rgba(99, 234, 36, 0.23);
}

.structure-heading-badge strong,
.structure-heading-badge span {
  display: block;
}

.structure-heading-badge strong {
  color: #ffffff;
  font-size: 15px;
}

.structure-heading-badge div > span {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
  line-height: 1.4;
}

/* Cards de números */

.structure-premium-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 17px;
}

.structure-premium-card {
  position: relative;
  min-height: 355px;
  overflow: hidden;
  padding: 23px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 26px;
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.12),
      rgba(255, 255, 255, 0.055)
    );
  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.17),
    inset 0 1px 0 rgba(255, 255, 255, 0.13);
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition:
    transform 0.4s ease,
    border-color 0.4s ease,
    background 0.4s ease,
    box-shadow 0.4s ease;
}

.structure-premium-card::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(99, 234, 36, 0.15),
    transparent 70%
  );
  transition: transform 0.5s ease;
}

.structure-premium-card:hover {
  transform: translateY(-10px);
  border-color: rgba(99, 234, 36, 0.36);
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.16),
      rgba(99, 234, 36, 0.07)
    );
  box-shadow:
    0 35px 75px rgba(0, 0, 0, 0.23),
    inset 0 1px 0 rgba(255, 255, 255, 0.17);
}

.structure-premium-card:hover::before {
  transform: scale(1.3);
}

.structure-card-top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.structure-card-number {
  color: rgba(255, 255, 255, 0.32);
  font-family: "Alexandria", sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.structure-card-icon {
  width: 58px;
  height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
  color: #82ee4e;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transition:
    transform 0.35s ease,
    color 0.35s ease,
    background 0.35s ease,
    border-color 0.35s ease;
}

.structure-premium-card:hover .structure-card-icon {
  color: #ffffff;
  background: rgba(114, 237, 60, 0.3);
  border-color: rgba(114, 237, 60, 0.6);
  transform: translateY(-2px) scale(1.05);
}

.structure-card-counter {
  position: relative;
  z-index: 2;
  margin-top: 30px;
  display: flex;
  align-items: flex-end;
  gap: 8px;
}

.structure-card-counter strong {
  color: #83ef50;
  font-family: "Alexandria", sans-serif;
  font-size: clamp(47px, 5vw, 68px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.structure-card-counter > span {
  padding-bottom: 5px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.structure-premium-card h3 {
  position: relative;
  z-index: 2;
  margin: 24px 0 11px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.25;
  text-transform: none;
}

.structure-premium-card > p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  line-height: 1.65;
}

.structure-card-footer {
  position: relative;
  z-index: 2;
  margin-top: auto;
  padding-top: 21px;
  color: rgba(255, 255, 255, 0.71);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 700;
}

.structure-card-footer i {
  color: #78ec43;
}

/* Conexão Brasil e Ásia */

.structure-connection-panel {
  margin-top: 19px;
  padding: 25px 29px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 26px;
  background:
    linear-gradient(
      100deg,
      rgba(99, 234, 36, 0.07),
      rgba(255, 255, 255, 0.07),
      rgba(58, 91, 255, 0.09)
    );
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.14);
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 240px minmax(220px, 1fr);
  align-items: center;
  gap: 25px;
  backdrop-filter: blur(17px);
  -webkit-backdrop-filter: blur(17px);
}

.structure-location {
  display: flex;
  align-items: center;
  gap: 14px;
}

.structure-location-china {
  justify-content: flex-end;
  text-align: right;
}

.structure-location-icon {
  width: 49px;
  height: 49px;
  border-radius: 16px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.structure-location-brasil .structure-location-icon {
  color: #143c0d;
  background: linear-gradient(135deg, #84ef50, #48c322);
}

.structure-location-china .structure-location-icon {
  order: 2;
  color: #ffffff;
  background: linear-gradient(135deg, #5974ff, #2732bc);
}

.structure-location span,
.structure-location strong,
.structure-location small {
  display: block;
}

.structure-location div > span {
  color: #79ec45;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.structure-location strong {
  margin-top: 2px;
  color: #ffffff;
  font-size: 19px;
}

.structure-location small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 10px;
}

.structure-route {
  position: relative;
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.structure-route-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  opacity: 0.6;
  background-image: linear-gradient(
    to right,
    #63ea24 50%,
    transparent 50%
  );
  background-size: 13px 2px;
}

.structure-route-plane {
  position: relative;
  z-index: 2;
  width: 43px;
  height: 43px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: #ffffff;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
  animation: structurePlane 4s ease-in-out infinite;
}

@keyframes structurePlane {
  0%,
  100% {
    transform: translateX(-55px) rotate(7deg);
  }

  50% {
    transform: translateX(55px) rotate(7deg);
  }
}

/* Benefícios */

.structure-benefits {
  margin-top: 19px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 13px;
}

.structure-benefits > div {
  min-height: 91px;
  padding: 17px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 19px;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  gap: 13px;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease;
}

.structure-benefits > div:hover {
  transform: translateY(-4px);
  border-color: rgba(99, 234, 36, 0.3);
  background: rgba(99, 234, 36, 0.08);
}

.structure-benefits > div > i {
  width: 39px;
  height: 39px;
  border-radius: 13px;
  flex-shrink: 0;
  color: #7bef47;
  background: rgba(99, 234, 36, 0.11);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.structure-benefits span {
  color: rgba(255, 255, 255, 0.56);
  font-size: 10px;
  line-height: 1.45;
}

.structure-benefits strong {
  display: block;
  margin-bottom: 3px;
  color: #ffffff;
  font-size: 12px;
}

/* =========================================================
   RESPONSIVIDADE
========================================================= */

@media (max-width: 1050px) {
  .structure-premium-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .structure-connection-panel {
    grid-template-columns: minmax(180px, 1fr) 170px minmax(180px, 1fr);
  }
}

@media (max-width: 820px) {
  .structure-premium-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 27px;
  }

  .structure-heading-badge {
    min-width: 0;
    width: 100%;
    max-width: 410px;
  }

  .structure-connection-panel {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .structure-location-china {
    justify-content: flex-start;
    text-align: left;
  }

  .structure-location-china .structure-location-icon {
    order: 0;
  }

  .structure-route {
    height: 65px;
    transform: rotate(90deg);
  }

  .structure-benefits {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .structure-premium-grid {
    grid-template-columns: 1fr;
  }

  .structure-premium-card {
    min-height: 315px;
  }

  .structure-premium-heading h2 {
    font-size: 40px;
  }

  .structure-connection-panel {
    padding: 21px;
  }
}

@media (max-width: 420px) {
  .structure-premium-heading h2 {
    font-size: 35px;
  }

  .structure-premium-card {
    padding: 20px;
    border-radius: 22px;
  }

  .structure-card-counter strong {
    font-size: 54px;
  }

  .structure-heading-badge {
    align-items: flex-start;
  }
}


/* =========================================================
   ETAPA 5 — DIFERENCIAIS PREMIUM
========================================================= */

.differentials-premium {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      #f7faf4 52%,
      #ffffff 100%
    );
}

.differentials-premium .container {
  position: relative;
  z-index: 2;
}

.differentials-background {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.differentials-grid-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.045;
  background-image:
    linear-gradient(
      rgba(8, 16, 163, 0.45) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(8, 16, 163, 0.45) 1px,
      transparent 1px
    );
  background-size: 80px 80px;
  mask-image: linear-gradient(
    to bottom,
    transparent,
    #000 20%,
    #000 80%,
    transparent
  );
}

.differentials-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(18px);
}

.differentials-glow-one {
  top: -240px;
  left: -220px;
  width: 650px;
  height: 650px;
  background: radial-gradient(
    circle,
    rgba(99, 234, 36, 0.16),
    rgba(99, 234, 36, 0)
  );
}

.differentials-glow-two {
  right: -240px;
  bottom: -280px;
  width: 700px;
  height: 700px;
  background: radial-gradient(
    circle,
    rgba(8, 16, 163, 0.1),
    rgba(8, 16, 163, 0)
  );
}

/* Cabeçalho */

.differentials-heading {
  margin-bottom: 47px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 45px;
}

.differentials-heading-copy {
  max-width: 800px;
}

.differentials-heading h2 {
  margin: 0;
  color: var(--blue);
  font-size: clamp(38px, 5vw, 61px);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.052em;
}

.differentials-heading h2 span {
  display: block;
  color: #43aa20;
}

.differentials-heading-copy > p {
  max-width: 720px;
  margin: 22px 0 0;
  color: #68716a;
  font-size: 16px;
  line-height: 1.75;
}

.differentials-heading-card {
  min-width: 295px;
  max-width: 330px;
  padding: 19px;
  border: 1px solid rgba(8, 16, 163, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 45px rgba(27, 55, 30, 0.08);
  display: flex;
  align-items: center;
  gap: 14px;
}

.differentials-heading-icon {
  width: 51px;
  height: 51px;
  border-radius: 17px;
  flex-shrink: 0;
  background: linear-gradient(135deg, #63ea24, #38aa18);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 12px 27px rgba(66, 177, 31, 0.22);
}

.differentials-heading-card strong,
.differentials-heading-card span {
  display: block;
}

.differentials-heading-card strong {
  color: var(--blue);
  font-size: 14px;
}

.differentials-heading-card div > span {
  margin-top: 4px;
  color: #758077;
  font-size: 10px;
  line-height: 1.45;
}

/* Layout principal */

.differentials-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.87fr) minmax(0, 1.6fr);
  align-items: stretch;
  gap: 22px;
}

/* Card principal */

.differential-featured-card {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  padding: 29px;
  border: 1px solid rgba(99, 234, 36, 0.23);
  border-radius: 31px;
  background:
    radial-gradient(
      circle at top right,
      rgba(99, 234, 36, 0.23),
      transparent 37%
    ),
    linear-gradient(
      145deg,
      #09149d,
      #1529af 58%,
      #17653e
    );
  color: #ffffff;
  box-shadow:
    0 30px 75px rgba(8, 16, 120, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.13);
  display: flex;
  flex-direction: column;
}

.differential-featured-card::before {
  content: "";
  position: absolute;
  left: -160px;
  bottom: -200px;
  width: 450px;
  height: 450px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.differential-featured-card::after {
  content: "";
  position: absolute;
  left: -100px;
  bottom: -140px;
  width: 330px;
  height: 330px;
  border: 1px dashed rgba(99, 234, 36, 0.18);
  border-radius: 50%;
  animation: differentialOrbit 24s linear infinite;
}

@keyframes differentialOrbit {
  to {
    transform: rotate(360deg);
  }
}

.differential-featured-top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.differential-featured-label {
  min-height: 33px;
  padding: 0 11px;
  border: 1px solid rgba(99, 234, 36, 0.25);
  border-radius: 999px;
  background: rgba(99, 234, 36, 0.1);
  color: #91f465;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.differential-featured-label i {
  color: #f8c63f;
}

.differential-featured-number {
  color: rgba(255, 255, 255, 0.25);
  font-family: "Alexandria", sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.differential-featured-icon {
  position: relative;
  z-index: 2;
  width: 76px;
  height: 76px;
  margin-top: 39px;
  border: 1px solid rgba(99, 234, 36, 0.26);
  border-radius: 24px;
  background: linear-gradient(135deg, #74ef3e, #38ad17);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 18px 40px rgba(99, 234, 36, 0.22);
  transition: transform 0.4s ease;
}

.differential-featured-card:hover .differential-featured-icon {
  transform: rotate(-5deg) scale(1.07);
}

.differential-featured-card h3 {
  position: relative;
  z-index: 2;
  margin: 28px 0 15px;
  color: #ffffff;
  font-size: clamp(27px, 3vw, 37px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.045em;
  text-transform: none;
}

.differential-featured-card > p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: rgba(255, 255, 255, 0.69);
  font-size: 14px;
  line-height: 1.75;
}

.differential-featured-list {
  position: relative;
  z-index: 2;
  margin-top: 26px;
  display: grid;
  gap: 11px;
}

.differential-featured-list span {
  color: rgba(255, 255, 255, 0.84);
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 11px;
  font-weight: 700;
}

.differential-featured-list i {
  color: #7dee48;
}

.differential-featured-footer {
  position: relative;
  z-index: 2;
  margin-top: auto;
  padding-top: 31px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 15px;
}

.differential-featured-footer > div {
  display: flex;
  align-items: center;
  gap: 11px;
}

.differential-featured-footer > div > i {
  width: 39px;
  height: 39px;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.1);
  color: #80ee4b;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.differential-featured-footer span,
.differential-featured-footer strong {
  display: block;
}

.differential-featured-footer strong {
  color: #ffffff;
  font-size: 12px;
}

.differential-featured-footer span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 9px;
  line-height: 1.4;
}

.differential-featured-footer > i {
  color: rgba(255, 255, 255, 0.3);
  font-size: 23px;
}

/* Cards secundários */

.differentials-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 17px;
}

.differential-card {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  padding: 23px;
  border: 1px solid rgba(8, 16, 163, 0.09);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow:
    0 18px 45px rgba(33, 66, 35, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
  display: flex;
  flex-direction: column;
  transition:
    transform 0.4s ease,
    border-color 0.4s ease,
    box-shadow 0.4s ease;
}

.differential-card::before {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -90px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: rgba(99, 234, 36, 0.055);
  transition: transform 0.5s ease;
}

.differential-card:hover {
  transform: translateY(-8px);
  border-color: rgba(99, 234, 36, 0.38);
  box-shadow:
    0 29px 65px rgba(41, 109, 27, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.differential-card:hover::before {
  transform: scale(1.3);
}

.differential-card-header {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.differential-card-number {
  color: rgba(8, 16, 163, 0.26);
  font-family: "Alexandria", sans-serif;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.differential-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: transform 0.4s ease;
}

.differential-card:hover .differential-card-icon {
  transform: rotate(-5deg) scale(1.07);
}

.differential-icon-green {
  color: #2c9014;
  background: rgba(99, 234, 36, 0.14);
}

.differential-icon-blue {
  color: #3451c0;
  background: rgba(58, 88, 220, 0.11);
}

.differential-icon-orange {
  color: #d96b20;
  background: rgba(240, 124, 43, 0.12);
}

.differential-icon-purple {
  color: #8341b9;
  background: rgba(150, 75, 205, 0.11);
}

.differential-icon-cyan {
  color: #138b9a;
  background: rgba(25, 163, 180, 0.11);
}

.differential-icon-gold {
  color: #ad7b08;
  background: rgba(230, 174, 28, 0.13);
}

.differential-card h3 {
  position: relative;
  z-index: 2;
  margin: 22px 0 11px;
  color: var(--blue);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.25;
  text-transform: none;
}

.differential-card > p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: #69736b;
  font-size: 12px;
  line-height: 1.65;
}

.differential-card-tag {
  position: relative;
  z-index: 2;
  width: fit-content;
  min-height: 32px;
  margin-top: auto;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(99, 234, 36, 0.1);
  color: #398f20;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}

.differential-tag-blue {
  color: #3450b7;
  background: rgba(58, 83, 202, 0.09);
}

.differential-tag-orange {
  color: #be5b18;
  background: rgba(235, 117, 36, 0.1);
}

.differential-tag-purple {
  color: #783bac;
  background: rgba(137, 64, 191, 0.09);
}

.differential-tag-cyan {
  color: #137f8c;
  background: rgba(26, 154, 169, 0.09);
}

.differential-tag-gold {
  color: #987006;
  background: rgba(219, 165, 24, 0.1);
}

/* Faixa de contato */

.differentials-summary {
  margin-top: 24px;
  padding: 23px 25px;
  border: 1px solid rgba(8, 16, 163, 0.1);
  border-radius: 23px;
  background:
    linear-gradient(
      105deg,
      #f5f8ff,
      #f5fbee
    );
  box-shadow: 0 18px 45px rgba(31, 60, 34, 0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.differentials-summary-copy {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 15px;
}

.differentials-summary-icon {
  width: 51px;
  height: 51px;
  border-radius: 17px;
  flex-shrink: 0;
  color: #ffffff;
  background: linear-gradient(135deg, #111aa2, #263dc4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  box-shadow: 0 12px 27px rgba(8, 16, 163, 0.2);
}

.differentials-summary strong,
.differentials-summary-copy div > span {
  display: block;
}

.differentials-summary strong {
  color: var(--blue);
  font-size: 15px;
}

.differentials-summary-copy div > span {
  margin-top: 4px;
  color: #6c766d;
  font-size: 11px;
  line-height: 1.5;
}

.differentials-summary > a {
  min-height: 49px;
  padding: 0 18px;
  border-radius: 15px;
  background: #20a954;
  color: #ffffff;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  transition:
    transform 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.differentials-summary > a:hover {
  background: #168b43;
  transform: translateY(-3px);
  box-shadow: 0 13px 28px rgba(28, 158, 79, 0.22);
}

/* =========================================================
   RESPONSIVIDADE DOS DIFERENCIAIS
========================================================= */

@media (max-width: 1050px) {
  .differentials-layout {
    grid-template-columns: 1fr;
  }

  .differential-featured-card {
    min-height: 570px;
  }
}

@media (max-width: 850px) {
  .differentials-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 27px;
  }

  .differentials-heading-card {
    min-width: 0;
    width: 100%;
    max-width: 420px;
  }

  .differentials-summary {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .differentials-summary > a {
    margin-left: 66px;
  }
}

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

  .differential-featured-card {
    min-height: 620px;
  }

  .differentials-heading h2 {
    font-size: 39px;
  }

  .differentials-summary > a {
    width: 100%;
    margin-left: 0;
  }
}

@media (max-width: 430px) {
  .differentials-heading h2 {
    font-size: 34px;
  }

  .differential-featured-card {
    min-height: auto;
    padding: 23px;
    border-radius: 25px;
  }

  .differential-featured-icon {
    width: 65px;
    height: 65px;
    margin-top: 31px;
  }

  .differential-featured-footer {
    align-items: flex-start;
  }

  .differential-card {
    min-height: 245px;
    padding: 20px;
  }

  .differentials-summary {
    padding: 20px;
  }

  .differentials-summary-copy {
    align-items: flex-start;
  }
}


/* =========================================================
   ETAPA 6 — QUALIDADE E CERTIFICAÇÃO PREMIUM
========================================================= */

.quality-premium {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(
      180deg,
      #f8fbf4 0%,
      #ffffff 48%,
      #f7faf3 100%
    );
}

.quality-premium .container {
  position: relative;
  z-index: 2;
}

.quality-background {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.quality-grid-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    linear-gradient(
      rgba(8, 16, 163, 0.4) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(8, 16, 163, 0.4) 1px,
      transparent 1px
    );
  background-size: 82px 82px;
  mask-image: linear-gradient(
    to bottom,
    transparent,
    #000 18%,
    #000 82%,
    transparent
  );
}

.quality-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(20px);
}

.quality-glow-one {
  top: -230px;
  right: -170px;
  width: 620px;
  height: 620px;
  background: radial-gradient(
    circle,
    rgba(99, 234, 36, 0.15),
    transparent 69%
  );
}

.quality-glow-two {
  left: -260px;
  bottom: -330px;
  width: 720px;
  height: 720px;
  background: radial-gradient(
    circle,
    rgba(8, 16, 163, 0.09),
    transparent 69%
  );
}

/* Cabeçalho */

.quality-heading {
  margin-bottom: 46px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 45px;
}

.quality-heading-copy {
  max-width: 790px;
}

.quality-kicker {
  color: #997006;
  border-color: rgba(218, 169, 27, 0.25);
  background: rgba(235, 185, 40, 0.1);
}

.quality-kicker i {
  color: #c9940e;
}

.quality-heading h2 {
  margin: 0;
  color: var(--blue);
  font-size: clamp(38px, 5vw, 61px);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.052em;
}

.quality-heading h2 span {
  display: block;
  color: #43aa20;
}

.quality-heading-copy > p {
  max-width: 710px;
  margin: 22px 0 0;
  color: #68726a;
  font-size: 16px;
  line-height: 1.75;
}

.quality-certification-badge {
  position: relative;
  min-width: 300px;
  overflow: hidden;
  padding: 19px;
  border: 1px solid rgba(218, 169, 27, 0.2);
  border-radius: 23px;
  background:
    radial-gradient(
      circle at top right,
      rgba(235, 185, 40, 0.18),
      transparent 45%
    ),
    #ffffff;
  box-shadow: 0 20px 47px rgba(54, 60, 28, 0.09);
  display: flex;
  align-items: center;
  gap: 14px;
}

.quality-certification-icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  flex-shrink: 0;
  background: linear-gradient(135deg, #f2c84e, #b9850b);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 13px 29px rgba(196, 145, 17, 0.23);
}

.quality-certification-badge div > span,
.quality-certification-badge strong,
.quality-certification-badge small {
  display: block;
}

.quality-certification-badge div > span {
  color: #9a7106;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quality-certification-badge strong {
  margin-top: 2px;
  color: var(--blue);
  font-size: 21px;
  line-height: 1.1;
}

.quality-certification-badge small {
  margin-top: 4px;
  color: #747d75;
  font-size: 10px;
}

.quality-certification-year {
  position: absolute;
  right: 13px;
  bottom: -9px;
  color: rgba(164, 119, 7, 0.08);
  font-family: "Alexandria", sans-serif;
  font-size: 50px;
  font-weight: 900;
  letter-spacing: -0.07em;
}

/* Layout principal */

.quality-layout {
  display: grid;
  grid-template-columns: minmax(330px, 0.87fr) minmax(0, 1.6fr);
  align-items: stretch;
  gap: 22px;
}

/* Card ISO */

.quality-featured-card {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  padding: 29px;
  border: 1px solid rgba(229, 185, 49, 0.25);
  border-radius: 31px;
  background:
    radial-gradient(
      circle at top right,
      rgba(246, 202, 70, 0.2),
      transparent 34%
    ),
    linear-gradient(
      145deg,
      #0b159d,
      #1829ab 57%,
      #4d441c
    );
  color: #ffffff;
  box-shadow:
    0 31px 75px rgba(8, 16, 120, 0.21),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
  display: flex;
  flex-direction: column;
}

.quality-featured-decoration {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.quality-featured-decoration span {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
}

.quality-featured-decoration span:nth-child(1) {
  right: -180px;
  bottom: -190px;
  width: 470px;
  height: 470px;
}

.quality-featured-decoration span:nth-child(2) {
  right: -105px;
  bottom: -115px;
  width: 330px;
  height: 330px;
  border-style: dashed;
}

.quality-featured-decoration span:nth-child(3) {
  right: -25px;
  bottom: -35px;
  width: 170px;
  height: 170px;
  border-color: rgba(246, 202, 70, 0.18);
}

.quality-featured-top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.quality-featured-label {
  min-height: 33px;
  padding: 0 11px;
  border: 1px solid rgba(246, 202, 70, 0.24);
  border-radius: 999px;
  background: rgba(246, 202, 70, 0.1);
  color: #f2cf64;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.quality-featured-code {
  color: rgba(255, 255, 255, 0.3);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.quality-seal {
  position: relative;
  z-index: 2;
  width: 145px;
  height: 145px;
  margin: 38px auto 7px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quality-seal-outer {
  width: 145px;
  height: 145px;
  padding: 10px;
  border: 2px solid rgba(246, 202, 70, 0.45);
  border-radius: 50%;
  animation: qualitySealPulse 3s ease-in-out infinite;
}

@keyframes qualitySealPulse {
  50% {
    transform: scale(1.04);
    box-shadow: 0 0 38px rgba(246, 202, 70, 0.18);
  }
}

.quality-seal-inner {
  position: relative;
  width: 100%;
  height: 100%;
  border: 1px dashed rgba(246, 202, 70, 0.45);
  border-radius: 50%;
  background:
    radial-gradient(
      circle,
      rgba(246, 202, 70, 0.15),
      rgba(246, 202, 70, 0.02)
    );
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.quality-seal-inner i {
  margin-bottom: 3px;
  color: #f2ca4b;
  font-size: 25px;
}

.quality-seal-inner strong {
  color: #ffffff;
  font-size: 24px;
  line-height: 1;
}

.quality-seal-inner span {
  color: #f2cf64;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.1;
}

.quality-featured-card h3 {
  position: relative;
  z-index: 2;
  margin: 25px 0 14px;
  color: #ffffff;
  font-size: clamp(26px, 3vw, 35px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.04em;
  text-transform: none;
}

.quality-featured-card > p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: rgba(255, 255, 255, 0.69);
  font-size: 13px;
  line-height: 1.72;
}

.quality-featured-list {
  position: relative;
  z-index: 2;
  margin-top: 23px;
  display: grid;
  gap: 10px;
}

.quality-featured-list span {
  color: rgba(255, 255, 255, 0.82);
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 10px;
  font-weight: 700;
}

.quality-featured-list i {
  color: #f1cb52;
}

.quality-featured-note {
  position: relative;
  z-index: 2;
  margin-top: auto;
  padding-top: 28px;
  display: flex;
  align-items: flex-start;
  gap: 11px;
}

.quality-featured-note i {
  color: rgba(246, 202, 70, 0.56);
  font-size: 21px;
}

.quality-featured-note span {
  color: rgba(255, 255, 255, 0.54);
  font-size: 10px;
  font-style: italic;
  line-height: 1.55;
}

/* Princípios */

.quality-principles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 17px;
}

.quality-principle-card {
  position: relative;
  min-height: 246px;
  overflow: hidden;
  padding: 22px;
  border: 1px solid rgba(8, 16, 163, 0.09);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.93);
  box-shadow:
    0 18px 44px rgba(35, 67, 38, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.87);
  display: flex;
  flex-direction: column;
  transition:
    transform 0.4s ease,
    border-color 0.4s ease,
    box-shadow 0.4s ease;
}

.quality-principle-card::before {
  content: "";
  position: absolute;
  right: -75px;
  bottom: -85px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(99, 234, 36, 0.05);
  transition: transform 0.5s ease;
}

.quality-principle-card:hover {
  transform: translateY(-8px);
  border-color: rgba(99, 234, 36, 0.36);
  box-shadow:
    0 29px 63px rgba(40, 105, 28, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.87);
}

.quality-principle-card:hover::before {
  transform: scale(1.35);
}

.quality-principle-top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.quality-principle-top > span {
  color: rgba(8, 16, 163, 0.25);
  font-family: "Alexandria", sans-serif;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.quality-principle-icon {
  width: 47px;
  height: 47px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: transform 0.4s ease;
}

.quality-principle-card:hover .quality-principle-icon {
  transform: rotate(-5deg) scale(1.07);
}

.quality-icon-green {
  color: #338f19;
  background: rgba(99, 234, 36, 0.14);
}

.quality-icon-blue {
  color: #3450bb;
  background: rgba(55, 82, 205, 0.11);
}

.quality-icon-purple {
  color: #7d3eb1;
  background: rgba(143, 66, 197, 0.11);
}

.quality-icon-orange {
  color: #c96019;
  background: rgba(235, 117, 35, 0.11);
}

.quality-icon-cyan {
  color: #137e8d;
  background: rgba(26, 155, 171, 0.1);
}

.quality-icon-gold {
  color: #a27709;
  background: rgba(224, 174, 34, 0.12);
}

.quality-principle-card h3 {
  position: relative;
  z-index: 2;
  margin: 21px 0 10px;
  color: var(--blue);
  font-size: 17px;
  font-weight: 900;
  line-height: 1.25;
  text-transform: none;
}

.quality-principle-card > p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: #69736b;
  font-size: 12px;
  line-height: 1.65;
}

.quality-principle-progress {
  position: relative;
  z-index: 2;
  height: 4px;
  margin-top: auto;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(99, 234, 36, 0.1);
}

.quality-principle-progress span {
  display: block;
  width: 72%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #63ea24, #3baa1c);
  transition: width 0.5s ease;
}

.quality-principle-card:hover .quality-principle-progress span {
  width: 100%;
}

.quality-progress-blue span {
  background: linear-gradient(90deg, #4867de, #182aaa);
}

.quality-progress-purple span {
  background: linear-gradient(90deg, #a15bd4, #6a2da3);
}

.quality-progress-orange span {
  background: linear-gradient(90deg, #f39449, #d45c13);
}

.quality-progress-cyan span {
  background: linear-gradient(90deg, #30b6c6, #137a88);
}

.quality-progress-gold span {
  background: linear-gradient(90deg, #f0c94a, #ad7c08);
}

/* Painel de compromissos */

.quality-commitment-panel {
  margin-top: 24px;
  padding: 23px 25px;
  border: 1px solid rgba(8, 16, 163, 0.09);
  border-radius: 23px;
  background:
    linear-gradient(
      110deg,
      #ffffff,
      #f4f8ff 48%,
      #f4faee
    );
  box-shadow: 0 18px 45px rgba(35, 65, 38, 0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.quality-commitment-heading {
  min-width: 245px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.quality-commitment-icon {
  width: 51px;
  height: 51px;
  border-radius: 17px;
  flex-shrink: 0;
  color: #ffffff;
  background: linear-gradient(135deg, #111aa1, #2a42c6);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  box-shadow: 0 12px 27px rgba(8, 16, 163, 0.2);
}

.quality-commitment-heading strong,
.quality-commitment-heading div > span {
  display: block;
}

.quality-commitment-heading strong {
  color: var(--blue);
  font-size: 15px;
}

.quality-commitment-heading div > span {
  margin-top: 4px;
  color: #6f7871;
  font-size: 10px;
  line-height: 1.45;
}

.quality-commitment-items {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 9px;
  flex-wrap: wrap;
}

.quality-commitment-items span {
  min-height: 34px;
  padding: 0 11px;
  border: 1px solid rgba(99, 234, 36, 0.18);
  border-radius: 999px;
  background: rgba(99, 234, 36, 0.08);
  color: #3a8425;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}

.quality-commitment-items i {
  font-size: 8px;
}

/* =========================================================
   RESPONSIVIDADE DA QUALIDADE
========================================================= */

@media (max-width: 1050px) {
  .quality-layout {
    grid-template-columns: 1fr;
  }

  .quality-featured-card {
    min-height: 660px;
  }
}

@media (max-width: 850px) {
  .quality-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 27px;
  }

  .quality-certification-badge {
    min-width: 0;
    width: 100%;
    max-width: 420px;
  }

  .quality-commitment-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .quality-commitment-items {
    justify-content: flex-start;
  }
}

@media (max-width: 680px) {
  .quality-principles {
    grid-template-columns: 1fr;
  }

  .quality-featured-card {
    min-height: auto;
  }

  .quality-heading h2 {
    font-size: 39px;
  }
}

@media (max-width: 430px) {
  .quality-heading h2 {
    font-size: 34px;
  }

  .quality-featured-card {
    padding: 23px;
    border-radius: 25px;
  }

  .quality-seal {
    width: 125px;
    height: 125px;
  }

  .quality-seal-outer {
    width: 125px;
    height: 125px;
  }

  .quality-principle-card {
    min-height: 235px;
    padding: 20px;
  }

  .quality-commitment-panel {
    padding: 20px;
  }

  .quality-commitment-heading {
    min-width: 0;
    align-items: flex-start;
  }
}


/* =========================================================
   ETAPA 7 — SEGMENTOS ATENDIDOS PREMIUM
========================================================= */

.segments-premium {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      #f6faf2 50%,
      #ffffff 100%
    );
}

.segments-premium .container {
  position: relative;
  z-index: 2;
}

.segments-background {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.segments-grid-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    linear-gradient(
      rgba(8, 16, 163, 0.42) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(8, 16, 163, 0.42) 1px,
      transparent 1px
    );
  background-size: 82px 82px;
  mask-image: linear-gradient(
    to bottom,
    transparent,
    #000 16%,
    #000 84%,
    transparent
  );
}

.segments-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(20px);
}

.segments-glow-one {
  top: -250px;
  left: -220px;
  width: 670px;
  height: 670px;
  background: radial-gradient(
    circle,
    rgba(99, 234, 36, 0.15),
    transparent 69%
  );
}

.segments-glow-two {
  right: -260px;
  bottom: -320px;
  width: 720px;
  height: 720px;
  background: radial-gradient(
    circle,
    rgba(8, 16, 163, 0.09),
    transparent 69%
  );
}

/* Cabeçalho */

.segments-heading {
  margin-bottom: 46px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 45px;
}

.segments-heading-copy {
  max-width: 790px;
}

.segments-heading h2 {
  margin: 0;
  color: var(--blue);
  font-size: clamp(38px, 5vw, 61px);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.052em;
}

.segments-heading h2 span {
  display: block;
  color: #43aa20;
}

.segments-heading-copy > p {
  max-width: 710px;
  margin: 22px 0 0;
  color: #68726a;
  font-size: 16px;
  line-height: 1.75;
}

.segments-heading-info {
  min-width: 300px;
  max-width: 330px;
  padding: 19px;
  border: 1px solid rgba(8, 16, 163, 0.09);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.91);
  box-shadow: 0 19px 46px rgba(34, 66, 36, 0.08);
  display: flex;
  align-items: center;
  gap: 14px;
}

.segments-heading-icon {
  width: 52px;
  height: 52px;
  border-radius: 17px;
  flex-shrink: 0;
  color: #ffffff;
  background: linear-gradient(135deg, #63ea24, #36aa17);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 13px 29px rgba(61, 174, 29, 0.22);
}

.segments-heading-info strong,
.segments-heading-info div > span {
  display: block;
}

.segments-heading-info strong {
  color: var(--blue);
  font-size: 14px;
}

.segments-heading-info div > span {
  margin-top: 4px;
  color: #737d75;
  font-size: 10px;
  line-height: 1.45;
}

/* Layout */

.segments-layout {
  display: grid;
  grid-template-columns: minmax(330px, 0.88fr) minmax(0, 1.65fr);
  align-items: stretch;
  gap: 22px;
}

/* Painel principal */

.segments-featured-panel {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  padding: 29px;
  border: 1px solid rgba(99, 234, 36, 0.23);
  border-radius: 31px;
  background:
    radial-gradient(
      circle at top right,
      rgba(99, 234, 36, 0.2),
      transparent 36%
    ),
    linear-gradient(
      145deg,
      #0a149e,
      #1728ae 57%,
      #17603c
    );
  color: #ffffff;
  box-shadow:
    0 31px 75px rgba(8, 16, 120, 0.21),
    inset 0 1px 0 rgba(255, 255, 255, 0.13);
  display: flex;
  flex-direction: column;
}

.segments-featured-panel::before {
  content: "";
  position: absolute;
  left: -170px;
  bottom: -190px;
  width: 440px;
  height: 440px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
}

.segments-featured-top {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.segments-featured-label {
  min-height: 33px;
  padding: 0 11px;
  border: 1px solid rgba(99, 234, 36, 0.25);
  border-radius: 999px;
  background: rgba(99, 234, 36, 0.1);
  color: #91f465;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.segments-featured-code {
  color: rgba(255, 255, 255, 0.3);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

/* Órbita visual */

.segments-featured-visual {
  position: relative;
  z-index: 2;
  min-height: 285px;
  margin: 18px 0 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.segments-core {
  position: relative;
  width: 240px;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.segments-core-ring {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
}

.segments-core-ring-one {
  animation: segmentsOrbit 20s linear infinite;
}

.segments-core-ring-two {
  inset: 32px;
  border-style: dashed;
  border-color: rgba(99, 234, 36, 0.27);
  animation: segmentsOrbit 16s linear infinite reverse;
}

@keyframes segmentsOrbit {
  to {
    transform: rotate(360deg);
  }
}

.segments-core-center {
  position: relative;
  z-index: 4;
  width: 112px;
  height: 112px;
  border: 1px solid rgba(99, 234, 36, 0.28);
  border-radius: 50%;
  background:
    radial-gradient(
      circle,
      rgba(99, 234, 36, 0.2),
      rgba(99, 234, 36, 0.06)
    );
  box-shadow: 0 0 50px rgba(99, 234, 36, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.segments-core-center i {
  margin-bottom: 4px;
  color: #78ee43;
  font-size: 26px;
}

.segments-core-center strong {
  color: #ffffff;
  font-size: 15px;
  line-height: 1;
}

.segments-core-center span {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.57);
  font-size: 9px;
}

.segments-orbit-point {
  position: absolute;
  z-index: 5;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 15px;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
  animation: segmentsPointFloat 3.5s ease-in-out infinite;
}

.segments-point-one {
  top: -7px;
  left: 97px;
  background: linear-gradient(135deg, #4ecf5d, #269038);
}

.segments-point-two {
  top: 97px;
  right: -7px;
  background: linear-gradient(135deg, #ef9a4b, #cf631c);
  animation-delay: -0.8s;
}

.segments-point-three {
  bottom: -7px;
  left: 97px;
  background: linear-gradient(135deg, #5384f1, #2852bd);
  animation-delay: -1.6s;
}

.segments-point-four {
  top: 97px;
  left: -7px;
  background: linear-gradient(135deg, #a25bd6, #7132ac);
  animation-delay: -2.4s;
}

@keyframes segmentsPointFloat {
  50% {
    transform: translateY(-7px) scale(1.04);
  }
}

.segments-featured-panel h3 {
  position: relative;
  z-index: 2;
  margin: 22px 0 14px;
  color: #ffffff;
  font-size: clamp(26px, 3vw, 35px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.042em;
  text-transform: none;
}

.segments-featured-panel > p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.72;
}

.segments-featured-items {
  position: relative;
  z-index: 2;
  margin-top: 23px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.segments-featured-items span {
  color: rgba(255, 255, 255, 0.81);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 700;
}

.segments-featured-items i {
  color: #7ced47;
}

.segments-featured-action {
  position: relative;
  z-index: 3;
  width: 100%;
  min-height: 51px;
  margin-top: auto;
  padding: 0 16px;
  border-radius: 15px;
  background: #ffffff;
  color: #168b43;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-size: 10px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  transition:
    transform 0.3s ease,
    color 0.3s ease,
    background 0.3s ease;
}

.segments-featured-action:hover {
  color: #ffffff;
  background: #20a954;
  transform: translateY(-3px);
}

/* Cards */

.segments-premium-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 17px;
}

.segment-premium-card {
  position: relative;
  min-width: 0;
  min-height: 355px;
  overflow: hidden;
  padding: 23px;
  border: 1px solid rgba(8, 16, 163, 0.09);
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow:
    0 19px 47px rgba(33, 67, 36, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
  display: flex;
  flex-direction: column;
  transition:
    transform 0.4s ease,
    border-color 0.4s ease,
    box-shadow 0.4s ease;
}

.segment-premium-card::before {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -100px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  opacity: 0.08;
  background: currentColor;
  transition: transform 0.5s ease;
}

.segment-premium-card:hover {
  transform: translateY(-9px);
  border-color: rgba(99, 234, 36, 0.4);
  box-shadow:
    0 30px 66px rgba(40, 107, 27, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.segment-premium-card:hover::before {
  transform: scale(1.32);
}

.segment-premium-top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.segment-premium-number {
  color: rgba(8, 16, 163, 0.24);
  font-family: "Alexandria", sans-serif;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.segment-premium-icon {
  width: 51px;
  height: 51px;
  border-radius: 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: transform 0.4s ease;
}

.segment-premium-card:hover .segment-premium-icon {
  transform: rotate(-5deg) scale(1.07);
}

.segment-premium-industry {
  color: #18602b;
}

.segment-premium-industry .segment-premium-icon {
  background: rgba(24, 96, 43, 0.08);
}

.segment-premium-agro {
  color: #0a1c6a;
}

.segment-premium-agro .segment-premium-icon {
  background: rgba(10, 28, 106, 0.08);
}

.segment-premium-water {
  color: #0d4e5f;
}

.segment-premium-water .segment-premium-icon {
  background: rgba(13, 78, 95, 0.08);
}

.segment-premium-chemical {
  color: #243752;
}

.segment-premium-chemical .segment-premium-icon {
  background: rgba(36, 55, 82, 0.08);
}

.segment-premium-category {
  position: relative;
  z-index: 2;
  width: fit-content;
  min-height: 29px;
  margin-top: 21px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(8, 16, 163, 0.055);
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.segment-premium-card h3 {
  position: relative;
  z-index: 2;
  margin: 15px 0 10px;
  color: var(--blue);
  font-size: 21px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: none;
}

.segment-premium-card > p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: #69736b;
  font-size: 12px;
  line-height: 1.65;
}

.segment-premium-features {
  position: relative;
  z-index: 2;
  margin-top: 18px;
  display: grid;
  gap: 8px;
}

.segment-premium-features span {
  color: #536056;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 700;
}

.segment-premium-features i {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(99, 234, 36, 0.11);
  color: #3b9d20;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 7px;
}

.segment-premium-link {
  position: relative;
  z-index: 2;
  width: fit-content;
  margin-top: auto;
  padding-top: 21px;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  transition:
    color 0.3s ease,
    gap 0.3s ease;
}

.segment-premium-link:hover {
  color: #3c9e21;
  gap: 12px;
}

/* Faixa inferior */

.segments-service-strip {
  margin-top: 24px;
  padding: 23px 25px;
  border: 1px solid rgba(8, 16, 163, 0.09);
  border-radius: 23px;
  background:
    linear-gradient(
      108deg,
      #f5f8ff,
      #ffffff 50%,
      #f3faed
    );
  box-shadow: 0 18px 45px rgba(34, 65, 37, 0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.segments-service-heading {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 15px;
}

.segments-service-icon {
  width: 51px;
  height: 51px;
  border-radius: 17px;
  flex-shrink: 0;
  color: #ffffff;
  background: linear-gradient(135deg, #101aa1, #2a43c8);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  box-shadow: 0 12px 27px rgba(8, 16, 163, 0.19);
}

.segments-service-heading strong,
.segments-service-heading div > span {
  display: block;
}

.segments-service-heading strong {
  color: var(--blue);
  font-size: 15px;
}

.segments-service-heading div > span {
  max-width: 650px;
  margin-top: 4px;
  color: #6e7870;
  font-size: 11px;
  line-height: 1.5;
}

.segments-service-strip > a {
  min-height: 49px;
  padding: 0 18px;
  border-radius: 15px;
  background: var(--blue);
  color: #ffffff;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-size: 10px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  transition:
    transform 0.3s ease,
    background 0.3s ease;
}

.segments-service-strip > a:hover {
  background: #3aa31f;
  transform: translateY(-3px);
}

/* =========================================================
   RESPONSIVIDADE DOS SEGMENTOS
========================================================= */

@media (max-width: 1100px) {
  .segments-layout {
    grid-template-columns: 1fr;
  }

  .segments-featured-panel {
    min-height: 720px;
  }

  .segments-featured-action {
    margin-top: 30px;
  }
}

@media (max-width: 850px) {
  .segments-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 27px;
  }

  .segments-heading-info {
    min-width: 0;
    width: 100%;
    max-width: 420px;
  }

  .segments-service-strip {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .segments-service-strip > a {
    margin-left: 66px;
  }
}

@media (max-width: 680px) {
  .segments-heading h2 {
    font-size: 39px;
  }

  .segments-premium-grid {
    grid-template-columns: 1fr;
  }

  .segments-featured-panel {
    min-height: auto;
  }

  .segments-featured-items {
    grid-template-columns: 1fr;
  }

  .segment-premium-card {
    min-height: 340px;
  }

  .segments-service-strip > a {
    width: 100%;
    margin-left: 0;
  }
}

@media (max-width: 480px) {
  .segments-heading h2 {
    font-size: 34px;
  }

  .segments-featured-panel {
    padding: 22px;
    border-radius: 25px;
  }

  .segments-featured-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .segments-featured-visual {
    min-height: 245px;
  }

  .segments-core {
    width: 205px;
    height: 205px;
  }

  .segments-core-center {
    width: 98px;
    height: 98px;
  }

  .segments-core-ring-two {
    inset: 27px;
  }

  .segments-orbit-point {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  .segments-point-one {
    top: -6px;
    left: 81px;
  }

  .segments-point-two {
    top: 81px;
    right: -6px;
  }

  .segments-point-three {
    bottom: -6px;
    left: 81px;
  }

  .segments-point-four {
    top: 81px;
    left: -6px;
  }

  .segment-premium-card {
    min-height: auto;
    padding: 20px;
    border-radius: 22px;
  }

  .segment-premium-link {
    width: 100%;
    justify-content: space-between;
  }

  .segments-service-strip {
    padding: 20px;
  }

  .segments-service-heading {
    align-items: flex-start;
  }
}

/* Telas muito pequenas */

@media (max-width: 360px) {
  .segments-premium .container {
    width: min(100% - 22px, 1120px);
  }

  .segments-heading h2 {
    font-size: 31px;
  }

  .segments-core {
    transform: scale(0.9);
  }

  .segments-featured-action,
  .segments-service-strip > a {
    padding-left: 12px;
    padding-right: 12px;
    font-size: 9px;
  }
}


/* =========================================================
   ETAPA 8 — CONTATO E MAPA PREMIUM
========================================================= */

.contact-premium {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      #f5f9f1 50%,
      #ffffff 100%
    );
}

.contact-premium .container {
  position: relative;
  z-index: 2;
}

.contact-premium-background {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.contact-premium-grid {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    linear-gradient(
      rgba(8, 16, 163, 0.4) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(8, 16, 163, 0.4) 1px,
      transparent 1px
    );
  background-size: 82px 82px;
  mask-image: linear-gradient(
    to bottom,
    transparent,
    #000 17%,
    #000 83%,
    transparent
  );
}

.contact-premium-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(20px);
}

.contact-premium-glow-one {
  top: -280px;
  left: -230px;
  width: 700px;
  height: 700px;
  background: radial-gradient(
    circle,
    rgba(99, 234, 36, 0.15),
    transparent 69%
  );
}

.contact-premium-glow-two {
  right: -260px;
  bottom: -340px;
  width: 740px;
  height: 740px;
  background: radial-gradient(
    circle,
    rgba(8, 16, 163, 0.09),
    transparent 69%
  );
}

/* Cabeçalho */

.contact-premium-heading {
  margin-bottom: 46px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 45px;
}

.contact-premium-heading-copy {
  max-width: 790px;
}

.contact-premium-heading h2 {
  margin: 0;
  color: var(--blue);
  font-size: clamp(38px, 5vw, 61px);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.052em;
}

.contact-premium-heading h2 span {
  display: block;
  color: #43aa20;
}

.contact-premium-heading-copy > p {
  max-width: 710px;
  margin: 22px 0 0;
  color: #68726a;
  font-size: 16px;
  line-height: 1.75;
}

.contact-premium-status {
  min-width: 300px;
  max-width: 330px;
  padding: 19px;
  border: 1px solid rgba(8, 16, 163, 0.09);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 19px 46px rgba(34, 66, 36, 0.08);
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact-status-indicator {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  flex-shrink: 0;
  background: #47c928;
  box-shadow:
    0 0 0 7px rgba(71, 201, 40, 0.11),
    0 0 20px rgba(71, 201, 40, 0.3);
  animation: contactStatusPulse 2s ease infinite;
}

@keyframes contactStatusPulse {
  50% {
    box-shadow:
      0 0 0 12px rgba(71, 201, 40, 0),
      0 0 24px rgba(71, 201, 40, 0.25);
  }
}

.contact-premium-status strong,
.contact-premium-status div > span {
  display: block;
}

.contact-premium-status strong {
  color: var(--blue);
  font-size: 14px;
}

.contact-premium-status div > span {
  margin-top: 4px;
  color: #747e76;
  font-size: 10px;
  line-height: 1.45;
}

/* Layout */

.contact-premium-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  align-items: stretch;
  gap: 22px;
}

.contact-premium-information {
  min-width: 0;
  display: grid;
  gap: 18px;
}

/* Card principal */

.contact-premium-main-card {
  position: relative;
  min-height: 370px;
  overflow: hidden;
  padding: 29px;
  border: 1px solid rgba(99, 234, 36, 0.22);
  border-radius: 31px;
  background:
    radial-gradient(
      circle at top right,
      rgba(99, 234, 36, 0.2),
      transparent 37%
    ),
    linear-gradient(
      145deg,
      #0a149e,
      #1729ae 58%,
      #17603c
    );
  color: #ffffff;
  box-shadow:
    0 31px 75px rgba(8, 16, 120, 0.21),
    inset 0 1px 0 rgba(255, 255, 255, 0.13);
  display: flex;
  flex-direction: column;
}

.contact-main-card-top {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.contact-main-card-label {
  min-height: 33px;
  padding: 0 11px;
  border: 1px solid rgba(99, 234, 36, 0.25);
  border-radius: 999px;
  background: rgba(99, 234, 36, 0.1);
  color: #91f465;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.contact-main-card-location {
  color: rgba(255, 255, 255, 0.45);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-main-card-icon {
  position: relative;
  z-index: 3;
  width: 70px;
  height: 70px;
  margin-top: 35px;
  border: 1px solid rgba(99, 234, 36, 0.25);
  border-radius: 23px;
  background: linear-gradient(135deg, #74ef3e, #38ad17);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 18px 40px rgba(99, 234, 36, 0.22);
}

.contact-premium-main-card h3 {
  position: relative;
  z-index: 3;
  margin: 25px 0 13px;
  color: #ffffff;
  font-size: 30px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.04em;
  text-transform: none;
}

.contact-premium-main-card address {
  position: relative;
  z-index: 3;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-style: normal;
  line-height: 1.75;
}

.contact-main-card-actions {
  position: relative;
  z-index: 3;
  margin-top: auto;
  padding-top: 27px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.contact-route-button,
.contact-phone-button {
  min-height: 49px;
  padding: 0 16px;
  border-radius: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-size: 10px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  transition:
    transform 0.3s ease,
    color 0.3s ease,
    background 0.3s ease;
}

.contact-route-button {
  color: #168b43;
  background: #ffffff;
}

.contact-route-button:hover {
  color: #ffffff;
  background: #20a954;
  transform: translateY(-3px);
}

.contact-phone-button {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.09);
}

.contact-phone-button:hover {
  color: var(--blue);
  background: #ffffff;
  transform: translateY(-3px);
}

.contact-main-decoration {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.contact-main-decoration span {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
}

.contact-main-decoration span:nth-child(1) {
  right: -190px;
  bottom: -210px;
  width: 490px;
  height: 490px;
}

.contact-main-decoration span:nth-child(2) {
  right: -110px;
  bottom: -130px;
  width: 340px;
  height: 340px;
  border-style: dashed;
}

.contact-main-decoration span:nth-child(3) {
  right: -30px;
  bottom: -50px;
  width: 180px;
  height: 180px;
  border-color: rgba(99, 234, 36, 0.17);
}

/* Cards dos canais */

.contact-premium-cards {
  display: grid;
  gap: 13px;
}

.contact-channel-card {
  min-width: 0;
  padding: 20px;
  border: 1px solid rgba(8, 16, 163, 0.09);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 0 17px 42px rgba(35, 67, 38, 0.07);
  display: flex;
  align-items: flex-start;
  gap: 15px;
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.contact-channel-card:hover {
  transform: translateY(-6px);
  border-color: rgba(99, 234, 36, 0.34);
  box-shadow: 0 26px 58px rgba(40, 105, 29, 0.12);
}

.contact-channel-icon {
  width: 50px;
  height: 50px;
  border-radius: 17px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.contact-channel-whatsapp .contact-channel-icon {
  color: #148d45;
  background: rgba(37, 211, 102, 0.12);
}

.contact-channel-email .contact-channel-icon {
  color: #3450bd;
  background: rgba(55, 82, 205, 0.11);
}

.contact-channel-hours .contact-channel-icon {
  color: #b17d0a;
  background: rgba(229, 176, 31, 0.12);
}

.contact-channel-content {
  min-width: 0;
  flex: 1;
}

.contact-channel-content > span:first-child {
  color: #79827b;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-channel-content strong {
  display: block;
  margin-top: 3px;
  overflow-wrap: anywhere;
  color: var(--blue);
  font-size: 15px;
}

.contact-channel-content p {
  margin: 8px 0 0;
  color: #69736b;
  font-size: 11px;
  line-height: 1.55;
}

.contact-channel-content > a {
  width: fit-content;
  margin-top: 12px;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
  transition:
    color 0.3s ease,
    gap 0.3s ease;
}

.contact-channel-content > a:hover {
  color: #3b9e20;
  gap: 11px;
}

.contact-hours-note {
  width: fit-content;
  margin-top: 11px;
  padding: 7px 9px;
  border-radius: 10px;
  background: rgba(231, 180, 38, 0.09);
  color: #8d690d;
  display: inline-flex;
  align-items: flex-start;
  gap: 7px;
  font-size: 9px;
  line-height: 1.45;
}

/* Mapa */

.contact-premium-map-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(8, 16, 163, 0.09);
  border-radius: 31px;
  background: #ffffff;
  box-shadow:
    0 27px 68px rgba(32, 62, 35, 0.11),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
  display: flex;
  flex-direction: column;
}

.contact-map-header {
  min-height: 87px;
  padding: 20px 22px;
  border-bottom: 1px solid rgba(8, 16, 163, 0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.contact-map-header div > span {
  color: #3d9a22;
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-map-header strong {
  display: block;
  margin-top: 5px;
  color: var(--blue);
  font-size: 18px;
}

.contact-map-header > a {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(8, 16, 163, 0.1);
  border-radius: 14px;
  background: #f5f7ff;
  color: var(--blue);
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.3s ease,
    color 0.3s ease,
    background 0.3s ease;
}

.contact-map-header > a:hover {
  color: #ffffff;
  background: var(--blue);
  transform: translateY(-3px);
}

.contact-premium-map {
  position: relative;
  min-height: 570px;
  flex: 1;
  overflow: hidden;
  background: #eef3ea;
}

.contact-premium-map iframe {
  width: 100%;
  height: 100%;
  min-height: 570px;
  border: 0;
  display: block;
  filter: saturate(0.88) contrast(1.03);
}

.contact-map-overlay {
  position: absolute;
  z-index: 3;
  left: 20px;
  right: 20px;
  bottom: 20px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 0 18px 45px rgba(20, 44, 25, 0.18);
  display: flex;
  align-items: center;
  gap: 12px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.contact-map-pin {
  width: 44px;
  height: 44px;
  border-radius: 15px;
  flex-shrink: 0;
  color: #ffffff;
  background: linear-gradient(135deg, #63ea24, #38aa18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 11px 25px rgba(61, 174, 29, 0.22);
}

.contact-map-overlay strong,
.contact-map-overlay div > span {
  display: block;
}

.contact-map-overlay strong {
  color: var(--blue);
  font-size: 13px;
}

.contact-map-overlay div > span {
  margin-top: 3px;
  color: #717a72;
  font-size: 9px;
}

.contact-map-footer {
  padding: 18px 20px;
  border-top: 1px solid rgba(8, 16, 163, 0.07);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.contact-map-footer > div {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-map-footer > div > i {
  width: 35px;
  height: 35px;
  border-radius: 12px;
  flex-shrink: 0;
  color: #3b9e20;
  background: rgba(99, 234, 36, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.contact-map-footer strong,
.contact-map-footer span span {
  display: block;
}

.contact-map-footer strong {
  color: var(--blue);
  font-size: 11px;
}

.contact-map-footer span span {
  margin-top: 2px;
  color: #747d75;
  font-size: 9px;
}

/* Faixa final */

.contact-premium-bottom {
  margin-top: 24px;
  padding: 23px 25px;
  border: 1px solid rgba(99, 234, 36, 0.19);
  border-radius: 24px;
  background:
    linear-gradient(
      105deg,
      #0b159d,
      #172bb0 56%,
      #17603c
    );
  box-shadow: 0 22px 55px rgba(8, 16, 120, 0.17);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.contact-bottom-copy {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 15px;
}

.contact-bottom-icon {
  width: 53px;
  height: 53px;
  border-radius: 18px;
  flex-shrink: 0;
  color: #ffffff;
  background: linear-gradient(135deg, #63ea24, #38ac18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 13px 29px rgba(99, 234, 36, 0.22);
}

.contact-bottom-copy strong,
.contact-bottom-copy div > span {
  display: block;
}

.contact-bottom-copy strong {
  color: #ffffff;
  font-size: 15px;
}

.contact-bottom-copy div > span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 10px;
  line-height: 1.45;
}

.contact-bottom-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.contact-bottom-actions a {
  min-height: 49px;
  padding: 0 16px;
  border-radius: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-size: 10px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  transition:
    transform 0.3s ease,
    color 0.3s ease,
    background 0.3s ease;
}

.contact-bottom-whatsapp {
  color: #168b43;
  background: #ffffff;
}

.contact-bottom-whatsapp:hover {
  color: #ffffff;
  background: #20a954;
  transform: translateY(-3px);
}

.contact-bottom-email {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

.contact-bottom-email:hover {
  color: var(--blue);
  background: #ffffff;
  transform: translateY(-3px);
}

/* =========================================================
   RESPONSIVIDADE DO CONTATO
========================================================= */

@media (max-width: 1050px) {
  .contact-premium-layout {
    grid-template-columns: 1fr;
  }

  .contact-premium-map {
    min-height: 520px;
  }

  .contact-premium-map iframe {
    min-height: 520px;
  }
}

@media (max-width: 850px) {
  .contact-premium-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 27px;
  }

  .contact-premium-status {
    min-width: 0;
    width: 100%;
    max-width: 420px;
  }

  .contact-premium-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-bottom-actions {
    width: 100%;
  }

  .contact-bottom-actions a {
    flex: 1;
  }
}

@media (max-width: 680px) {
  .contact-premium-heading h2 {
    font-size: 39px;
  }

  .contact-main-card-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-main-card-actions {
    flex-direction: column;
  }

  .contact-route-button,
  .contact-phone-button {
    width: 100%;
  }

  .contact-premium-map,
  .contact-premium-map iframe {
    min-height: 430px;
  }

  .contact-map-footer {
    grid-template-columns: 1fr;
  }

  .contact-bottom-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-bottom-actions a {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .contact-premium-heading h2 {
    font-size: 34px;
  }

  .contact-premium-main-card {
    min-height: auto;
    padding: 22px;
    border-radius: 25px;
  }

  .contact-main-card-icon {
    width: 61px;
    height: 61px;
    margin-top: 29px;
    font-size: 24px;
  }

  .contact-premium-main-card h3 {
    font-size: 26px;
  }

  .contact-channel-card {
    padding: 17px;
    border-radius: 19px;
  }

  .contact-channel-icon {
    width: 45px;
    height: 45px;
  }

  .contact-premium-map-card {
    border-radius: 25px;
  }

  .contact-premium-map,
  .contact-premium-map iframe {
    min-height: 380px;
  }

  .contact-map-overlay {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .contact-premium-bottom {
    padding: 20px;
  }

  .contact-bottom-copy {
    align-items: flex-start;
  }
}

@media (max-width: 360px) {
  .contact-premium .container {
    width: min(100% - 22px, 1120px);
  }

  .contact-premium-heading h2 {
    font-size: 31px;
  }

  .contact-channel-card {
    flex-direction: column;
  }

  .contact-map-header {
    padding: 17px;
  }

  .contact-map-overlay {
    align-items: flex-start;
  }

  .contact-bottom-actions a,
  .contact-route-button,
  .contact-phone-button {
    padding-left: 11px;
    padding-right: 11px;
    font-size: 9px;
  }
}


/* =========================================================
   ETAPA 9 — CENTRAL TÉCNICA E MATERIAIS PREMIUM
========================================================= */

.technical-center {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      #f5f9f1 50%,
      #ffffff 100%
    );
}

.technical-center .container {
  position: relative;
  z-index: 2;
}

.technical-background {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.technical-grid-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    linear-gradient(
      rgba(8, 16, 163, 0.42) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(8, 16, 163, 0.42) 1px,
      transparent 1px
    );
  background-size: 82px 82px;
  mask-image: linear-gradient(
    to bottom,
    transparent,
    #000 17%,
    #000 83%,
    transparent
  );
}

.technical-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(20px);
}

.technical-glow-one {
  top: -260px;
  right: -210px;
  width: 680px;
  height: 680px;
  background: radial-gradient(
    circle,
    rgba(99, 234, 36, 0.15),
    transparent 69%
  );
}

.technical-glow-two {
  left: -270px;
  bottom: -340px;
  width: 740px;
  height: 740px;
  background: radial-gradient(
    circle,
    rgba(8, 16, 163, 0.09),
    transparent 69%
  );
}

/* Cabeçalho */

.technical-heading {
  margin-bottom: 46px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 45px;
}

.technical-heading-copy {
  max-width: 790px;
}

.technical-kicker {
  color: #3450b8;
  border-color: rgba(52, 80, 184, 0.18);
  background: rgba(52, 80, 184, 0.08);
}

.technical-kicker i {
  color: #3450b8;
}

.technical-heading h2 {
  margin: 0;
  color: var(--blue);
  font-size: clamp(38px, 5vw, 61px);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.052em;
}

.technical-heading h2 span {
  display: block;
  color: #43aa20;
}

.technical-heading-copy > p {
  max-width: 710px;
  margin: 22px 0 0;
  color: #68726a;
  font-size: 16px;
  line-height: 1.75;
}

.technical-heading-status {
  min-width: 300px;
  max-width: 340px;
  padding: 19px;
  border: 1px solid rgba(8, 16, 163, 0.09);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 0 19px 46px rgba(34, 66, 36, 0.08);
  display: flex;
  align-items: center;
  gap: 14px;
}

.technical-status-icon {
  width: 52px;
  height: 52px;
  border-radius: 17px;
  flex-shrink: 0;
  color: #ffffff;
  background: linear-gradient(135deg, #101aa1, #2d45c8);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 13px 29px rgba(8, 16, 163, 0.2);
}

.technical-heading-status strong,
.technical-heading-status div > span {
  display: block;
}

.technical-heading-status strong {
  color: var(--blue);
  font-size: 14px;
}

.technical-heading-status div > span {
  margin-top: 4px;
  color: #747e76;
  font-size: 10px;
  line-height: 1.45;
}

/* Layout */

.technical-layout {
  display: grid;
  grid-template-columns: minmax(330px, 0.88fr) minmax(0, 1.65fr);
  align-items: stretch;
  gap: 22px;
}

/* Card principal */

.technical-featured-card {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  padding: 29px;
  border: 1px solid rgba(99, 234, 36, 0.22);
  border-radius: 31px;
  background:
    radial-gradient(
      circle at top right,
      rgba(99, 234, 36, 0.2),
      transparent 36%
    ),
    linear-gradient(
      145deg,
      #0a149e,
      #1729ae 58%,
      #175f3c
    );
  color: #ffffff;
  box-shadow:
    0 31px 75px rgba(8, 16, 120, 0.21),
    inset 0 1px 0 rgba(255, 255, 255, 0.13);
  display: flex;
  flex-direction: column;
}

.technical-featured-card::before {
  content: "";
  position: absolute;
  left: -180px;
  bottom: -210px;
  width: 480px;
  height: 480px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
}

.technical-featured-top {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.technical-featured-label {
  min-height: 33px;
  padding: 0 11px;
  border: 1px solid rgba(99, 234, 36, 0.25);
  border-radius: 999px;
  background: rgba(99, 234, 36, 0.1);
  color: #91f465;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.technical-featured-code {
  color: rgba(255, 255, 255, 0.31);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Ilustração da pasta */

.technical-folder-visual {
  position: relative;
  z-index: 2;
  min-height: 290px;
  margin: 22px 0 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.technical-folder {
  position: relative;
  width: 250px;
  height: 195px;
  filter: drop-shadow(0 24px 35px rgba(0, 0, 0, 0.24));
}

.technical-folder-tab {
  position: absolute;
  z-index: 1;
  top: 18px;
  left: 15px;
  width: 100px;
  height: 50px;
  border-radius: 18px 18px 0 0;
  background: linear-gradient(135deg, #7bf045, #42b91d);
}

.technical-folder-front {
  position: absolute;
  z-index: 5;
  left: 0;
  right: 0;
  bottom: 0;
  height: 145px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 21px;
  background:
    linear-gradient(
      145deg,
      rgba(117, 239, 61, 0.98),
      rgba(51, 165, 25, 0.98)
    );
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    0 18px 35px rgba(0, 0, 0, 0.18);
}

.technical-folder-front i {
  margin-bottom: 7px;
  font-size: 31px;
}

.technical-folder-front strong {
  font-size: 18px;
  line-height: 1;
}

.technical-folder-front span {
  margin-top: 5px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.technical-document {
  position: absolute;
  z-index: 2;
  top: 5px;
  width: 91px;
  height: 125px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 12px;
  background: #ffffff;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 17px;
  font-size: 23px;
  transition: transform 0.5s ease;
}

.technical-document-one {
  left: 34px;
  color: #3955c0;
  transform: rotate(-11deg);
}

.technical-document-two {
  left: 80px;
  color: #399720;
  transform: translateY(-10px);
}

.technical-document-three {
  right: 31px;
  color: #d34a42;
  transform: rotate(11deg);
}

.technical-featured-card:hover .technical-document-one {
  transform: translate(-8px, -9px) rotate(-15deg);
}

.technical-featured-card:hover .technical-document-two {
  transform: translateY(-22px);
}

.technical-featured-card:hover .technical-document-three {
  transform: translate(8px, -9px) rotate(15deg);
}

.technical-featured-card h3 {
  position: relative;
  z-index: 3;
  margin: 22px 0 14px;
  color: #ffffff;
  font-size: clamp(26px, 3vw, 35px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.042em;
  text-transform: none;
}

.technical-featured-card > p {
  position: relative;
  z-index: 3;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.72;
}

.technical-featured-benefits {
  position: relative;
  z-index: 3;
  margin-top: 23px;
  display: grid;
  gap: 10px;
}

.technical-featured-benefits span {
  color: rgba(255, 255, 255, 0.81);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 700;
}

.technical-featured-benefits i {
  color: #7ced47;
}

.technical-featured-action {
  position: relative;
  z-index: 3;
  width: 100%;
  min-height: 51px;
  margin-top: auto;
  padding: 0 16px;
  border-radius: 15px;
  background: #ffffff;
  color: #168b43;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-size: 10px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  transition:
    transform 0.3s ease,
    color 0.3s ease,
    background 0.3s ease;
}

.technical-featured-action:hover {
  color: #ffffff;
  background: #20a954;
  transform: translateY(-3px);
}

/* Cards de documentos */

.technical-documents-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 17px;
}

.technical-document-card {
  position: relative;
  min-width: 0;
  min-height: 340px;
  overflow: hidden;
  padding: 23px;
  border: 1px solid rgba(8, 16, 163, 0.09);
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow:
    0 19px 47px rgba(33, 67, 36, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
  display: flex;
  flex-direction: column;
  transition:
    transform 0.4s ease,
    border-color 0.4s ease,
    box-shadow 0.4s ease;
}

.technical-document-card::before {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -100px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: rgba(99, 234, 36, 0.055);
  transition: transform 0.5s ease;
}

.technical-document-card:hover {
  transform: translateY(-9px);
  border-color: rgba(99, 234, 36, 0.38);
  box-shadow:
    0 30px 66px rgba(40, 107, 27, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.technical-document-card:hover::before {
  transform: scale(1.32);
}

.technical-document-header {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.technical-document-icon {
  width: 51px;
  height: 51px;
  border-radius: 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: transform 0.4s ease;
}

.technical-document-card:hover .technical-document-icon {
  transform: rotate(-5deg) scale(1.07);
}

.technical-icon-catalog {
  color: #3450bd;
  background: rgba(55, 82, 205, 0.11);
}

.technical-icon-sheet {
  color: #358f1b;
  background: rgba(99, 234, 36, 0.13);
}

.technical-icon-safety {
  color: #c0671d;
  background: rgba(235, 117, 35, 0.11);
}

.technical-icon-presentation {
  color: #7e3eb2;
  background: rgba(143, 66, 198, 0.11);
}

.technical-document-number {
  color: rgba(8, 16, 163, 0.24);
  font-family: "Alexandria", sans-serif;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.technical-document-type {
  position: relative;
  z-index: 2;
  width: fit-content;
  min-height: 29px;
  margin-top: 21px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(8, 16, 163, 0.055);
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.technical-document-card h3 {
  position: relative;
  z-index: 2;
  margin: 15px 0 10px;
  color: var(--blue);
  font-size: 21px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: none;
}

.technical-document-card > p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: #69736b;
  font-size: 12px;
  line-height: 1.65;
}

.technical-document-info {
  position: relative;
  z-index: 2;
  margin-top: 18px;
  display: grid;
  gap: 8px;
}

.technical-document-info span {
  color: #536056;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 700;
}

.technical-document-info i {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(99, 234, 36, 0.11);
  color: #3b9d20;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
}

.technical-document-card > a {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 46px;
  margin-top: auto;
  padding: 0 13px;
  border: 1px solid rgba(8, 16, 163, 0.1);
  border-radius: 14px;
  background: #f5f7ff;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 9px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  transition:
    transform 0.3s ease,
    color 0.3s ease,
    background 0.3s ease;
}

.technical-document-card > a:hover {
  color: #ffffff;
  background: var(--blue);
  transform: translateY(-3px);
}

/* Solicitação por produto */

.product-document-request {
  margin-top: 24px;
  padding: 23px 25px;
  border: 1px solid rgba(8, 16, 163, 0.09);
  border-radius: 23px;
  background:
    linear-gradient(
      108deg,
      #f5f8ff,
      #ffffff 50%,
      #f3faed
    );
  box-shadow: 0 18px 45px rgba(34, 65, 37, 0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.product-document-heading {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 15px;
}

.product-document-heading-icon {
  width: 51px;
  height: 51px;
  border-radius: 17px;
  flex-shrink: 0;
  color: #ffffff;
  background: linear-gradient(135deg, #101aa1, #2a43c8);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  box-shadow: 0 12px 27px rgba(8, 16, 163, 0.19);
}

.product-document-heading strong,
.product-document-heading div > span {
  display: block;
}

.product-document-heading strong {
  color: var(--blue);
  font-size: 15px;
}

.product-document-heading div > span {
  max-width: 550px;
  margin-top: 4px;
  color: #6e7870;
  font-size: 11px;
  line-height: 1.5;
}

.product-document-options {
  display: flex;
  align-items: center;
  gap: 9px;
  flex-shrink: 0;
}

.product-document-options a {
  min-width: 91px;
  min-height: 47px;
  padding: 0 13px;
  border: 1px solid rgba(37, 211, 102, 0.19);
  border-radius: 14px;
  background: rgba(37, 211, 102, 0.08);
  color: #178945;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 9px;
  font-size: 10px;
  font-weight: 900;
  transition:
    transform 0.3s ease,
    color 0.3s ease,
    background 0.3s ease;
}

.product-document-options a:hover {
  color: #ffffff;
  background: #20a954;
  transform: translateY(-3px);
}

/* Aviso */

.technical-disclaimer {
  margin-top: 14px;
  padding: 16px 18px;
  border: 1px solid rgba(221, 165, 19, 0.18);
  border-radius: 17px;
  background: rgba(245, 190, 34, 0.07);
  color: #76600e;
  display: flex;
  align-items: flex-start;
  gap: 11px;
}

.technical-disclaimer i {
  margin-top: 4px;
  color: #c4910c;
  flex-shrink: 0;
}

.technical-disclaimer p {
  margin: 0;
  font-size: 10px;
  line-height: 1.6;
}

/* =========================================================
   RESPONSIVIDADE DA CENTRAL TÉCNICA
========================================================= */

@media (max-width: 1050px) {
  .technical-layout {
    grid-template-columns: 1fr;
  }

  .technical-featured-card {
    min-height: 720px;
  }

  .technical-featured-action {
    margin-top: 30px;
  }
}

@media (max-width: 850px) {
  .technical-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 27px;
  }

  .technical-heading-status {
    min-width: 0;
    width: 100%;
    max-width: 430px;
  }

  .product-document-request {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-document-options {
    width: 100%;
  }

  .product-document-options a {
    flex: 1;
  }
}

@media (max-width: 680px) {
  .technical-heading h2 {
    font-size: 39px;
  }

  .technical-documents-grid {
    grid-template-columns: 1fr;
  }

  .technical-featured-card {
    min-height: auto;
  }

  .technical-document-card {
    min-height: 330px;
  }

  .product-document-options {
    align-items: stretch;
    flex-direction: column;
  }

  .product-document-options a {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .technical-heading h2 {
    font-size: 34px;
  }

  .technical-featured-card {
    padding: 22px;
    border-radius: 25px;
  }

  .technical-featured-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .technical-folder-visual {
    min-height: 250px;
  }

  .technical-folder {
    transform: scale(0.88);
  }

  .technical-document-card {
    min-height: auto;
    padding: 20px;
    border-radius: 22px;
  }

  .technical-document-card > a {
    margin-top: 22px;
  }

  .product-document-request {
    padding: 20px;
  }

  .product-document-heading {
    align-items: flex-start;
  }

  .technical-disclaimer {
    padding: 14px;
  }
}

@media (max-width: 360px) {
  .technical-center .container {
    width: min(100% - 22px, 1120px);
  }

  .technical-heading h2 {
    font-size: 31px;
  }

  .technical-heading-status,
  .product-document-heading {
    align-items: flex-start;
  }

  .technical-folder {
    transform: scale(0.78);
  }

  .technical-featured-action,
  .technical-document-card > a,
  .product-document-options a {
    padding-left: 11px;
    padding-right: 11px;
    font-size: 8px;
  }
}


/* =========================================================
   ETAPA 10 — FAQ PREMIUM E ATENDIMENTO INTELIGENTE
========================================================= */

.faq-premium {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      #f5f9f1 50%,
      #ffffff 100%
    );
}

.faq-premium .container {
  position: relative;
  z-index: 2;
}

.faq-premium-background {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.faq-premium-grid {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    linear-gradient(
      rgba(8, 16, 163, 0.42) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(8, 16, 163, 0.42) 1px,
      transparent 1px
    );
  background-size: 82px 82px;
  mask-image: linear-gradient(
    to bottom,
    transparent,
    #000 17%,
    #000 83%,
    transparent
  );
}

.faq-premium-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(20px);
}

.faq-premium-glow-one {
  top: -270px;
  left: -230px;
  width: 700px;
  height: 700px;
  background: radial-gradient(
    circle,
    rgba(99, 234, 36, 0.15),
    transparent 69%
  );
}

.faq-premium-glow-two {
  right: -270px;
  bottom: -350px;
  width: 750px;
  height: 750px;
  background: radial-gradient(
    circle,
    rgba(8, 16, 163, 0.09),
    transparent 69%
  );
}

/* Cabeçalho */

.faq-premium-heading {
  margin-bottom: 38px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 45px;
}

.faq-premium-heading-copy {
  max-width: 790px;
}

.faq-premium-heading h2 {
  margin: 0;
  color: var(--blue);
  font-size: clamp(38px, 5vw, 61px);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.052em;
}

.faq-premium-heading h2 span {
  display: block;
  color: #43aa20;
}

.faq-premium-heading-copy > p {
  max-width: 710px;
  margin: 22px 0 0;
  color: #68726a;
  font-size: 16px;
  line-height: 1.75;
}

.faq-premium-heading-card {
  min-width: 300px;
  max-width: 340px;
  padding: 19px;
  border: 1px solid rgba(8, 16, 163, 0.09);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 0 19px 46px rgba(34, 66, 36, 0.08);
  display: flex;
  align-items: center;
  gap: 14px;
}

.faq-heading-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 17px;
  flex-shrink: 0;
  color: #ffffff;
  background: linear-gradient(135deg, #63ea24, #36aa17);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 13px 29px rgba(61, 174, 29, 0.22);
}

.faq-premium-heading-card strong,
.faq-premium-heading-card div > span {
  display: block;
}

.faq-premium-heading-card strong {
  color: var(--blue);
  font-size: 14px;
}

.faq-premium-heading-card div > span {
  margin-top: 4px;
  color: #747e76;
  font-size: 10px;
  line-height: 1.45;
}

/* Busca */

.faq-premium-search {
  margin-bottom: 24px;
  padding: 17px;
  border: 1px solid rgba(8, 16, 163, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 0 17px 42px rgba(34, 65, 37, 0.07);
  display: flex;
  align-items: center;
  gap: 17px;
}

.faq-search-field {
  position: relative;
  min-width: 0;
  flex: 1;
}

.faq-search-field > i {
  position: absolute;
  top: 50%;
  left: 17px;
  color: #3d9d22;
  transform: translateY(-50%);
  pointer-events: none;
}

.faq-search-field input {
  width: 100%;
  min-height: 52px;
  padding: 0 52px 0 47px;
  border: 1px solid rgba(8, 16, 163, 0.09);
  border-radius: 16px;
  background: #f7f9f5;
  color: #2c342e;
  font: inherit;
  font-size: 13px;
  outline: none;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
}

.faq-search-field input:focus {
  border-color: rgba(99, 234, 36, 0.7);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(99, 234, 36, 0.11);
}

.faq-search-field input::placeholder {
  color: #8b948d;
}

#faq-search-clear {
  position: absolute;
  top: 50%;
  right: 8px;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 0;
  border-radius: 11px;
  background: transparent;
  color: #7a847c;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
  transition:
    color 0.3s ease,
    background 0.3s ease;
}

#faq-search-clear:hover {
  color: var(--blue);
  background: rgba(8, 16, 163, 0.07);
}

.faq-search-status {
  min-width: 170px;
  color: #6d776f;
  font-size: 10px;
  font-weight: 800;
  text-align: right;
}

/* Layout */

.faq-premium-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.75fr);
  align-items: start;
  gap: 22px;
}

/* Painel lateral */

.faq-support-panel {
  position: sticky;
  top: 105px;
  min-width: 0;
  overflow: hidden;
  padding: 27px;
  border: 1px solid rgba(99, 234, 36, 0.22);
  border-radius: 29px;
  background:
    radial-gradient(
      circle at top right,
      rgba(99, 234, 36, 0.2),
      transparent 36%
    ),
    linear-gradient(
      145deg,
      #0a149e,
      #1729ae 58%,
      #175f3c
    );
  color: #ffffff;
  box-shadow:
    0 29px 70px rgba(8, 16, 120, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.13);
}

.faq-support-panel::before {
  content: "";
  position: absolute;
  right: -170px;
  bottom: -200px;
  width: 440px;
  height: 440px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
}

.faq-support-top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.faq-support-label {
  min-height: 32px;
  padding: 0 10px;
  border: 1px solid rgba(99, 234, 36, 0.24);
  border-radius: 999px;
  background: rgba(99, 234, 36, 0.1);
  color: #91f465;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.faq-support-status {
  color: rgba(255, 255, 255, 0.62);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 8px;
  font-weight: 800;
  text-transform: uppercase;
}

.faq-support-status i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #63ea24;
  box-shadow: 0 0 0 5px rgba(99, 234, 36, 0.12);
}

.faq-support-icon {
  position: relative;
  z-index: 2;
  width: 70px;
  height: 70px;
  margin-top: 34px;
  border-radius: 23px;
  background: linear-gradient(135deg, #74ef3e, #38ad17);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 27px;
  box-shadow: 0 18px 40px rgba(99, 234, 36, 0.22);
}

.faq-support-panel h3 {
  position: relative;
  z-index: 2;
  margin: 25px 0 13px;
  color: #ffffff;
  font-size: 26px;
  font-weight: 900;
  line-height: 1.13;
  letter-spacing: -0.04em;
  text-transform: none;
}

.faq-support-panel > p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: 12px;
  line-height: 1.7;
}

.faq-support-options {
  position: relative;
  z-index: 2;
  margin-top: 24px;
  display: grid;
  gap: 10px;
}

.faq-support-options > a {
  min-width: 0;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.075);
  color: #ffffff;
  display: grid;
  grid-template-columns: 39px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  transition:
    transform 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease;
}

.faq-support-options > a:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(99, 234, 36, 0.27);
}

.faq-support-option-icon {
  width: 39px;
  height: 39px;
  border-radius: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.faq-support-whatsapp .faq-support-option-icon {
  color: #ffffff;
  background: #20a954;
}

.faq-support-email .faq-support-option-icon {
  color: #ffffff;
  background: #3850c0;
}

.faq-support-options span span {
  min-width: 0;
  color: rgba(255, 255, 255, 0.54);
  display: block;
  overflow-wrap: anywhere;
  font-size: 9px;
}

.faq-support-options strong {
  display: block;
  margin-bottom: 2px;
  color: #ffffff;
  font-size: 10px;
}

.faq-support-options > a > i {
  color: rgba(255, 255, 255, 0.45);
  font-size: 11px;
}

.faq-support-note {
  position: relative;
  z-index: 2;
  margin-top: 17px;
  padding: 13px;
  border: 1px solid rgba(99, 234, 36, 0.13);
  border-radius: 14px;
  background: rgba(99, 234, 36, 0.07);
  color: rgba(255, 255, 255, 0.61);
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 9px;
  line-height: 1.5;
}

.faq-support-note i {
  margin-top: 3px;
  color: #7fee49;
}

/* Conteúdo das perguntas */

.faq-premium-content {
  min-width: 0;
  padding: 22px;
  border: 1px solid rgba(8, 16, 163, 0.08);
  border-radius: 29px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 22px 55px rgba(34, 65, 37, 0.08);
}

.faq-category-header {
  margin-bottom: 16px;
  padding: 4px 4px 17px;
  border-bottom: 1px solid rgba(8, 16, 163, 0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.faq-category-header div > span {
  color: #3b9c21;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.065em;
  text-transform: uppercase;
}

.faq-category-header strong {
  display: block;
  margin-top: 3px;
  color: var(--blue);
  font-size: 18px;
}

.faq-category-badge {
  min-height: 33px;
  padding: 0 11px;
  border-radius: 999px;
  background: rgba(8, 16, 163, 0.06);
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  flex-shrink: 0;
  font-size: 8px;
  font-weight: 900;
  text-transform: uppercase;
}

.faq-premium-list {
  display: grid;
  gap: 11px;
}

.faq-premium-item {
  overflow: hidden;
  border: 1px solid rgba(8, 16, 163, 0.08);
  border-radius: 19px;
  background: #f8faf7;
  transition:
    border-color 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.faq-premium-item[open] {
  border-color: rgba(99, 234, 36, 0.38);
  background: #ffffff;
  box-shadow: 0 16px 38px rgba(42, 105, 31, 0.09);
}

.faq-premium-item[hidden] {
  display: none;
}

.faq-premium-item summary {
  min-width: 0;
  min-height: 82px;
  padding: 15px 16px;
  cursor: pointer;
  list-style: none;
  display: grid;
  grid-template-columns: 47px minmax(0, 1fr) 37px;
  align-items: center;
  gap: 13px;
}

.faq-premium-item summary::-webkit-details-marker {
  display: none;
}

.faq-item-icon {
  width: 47px;
  height: 47px;
  border-radius: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
}

.faq-item-icon-green {
  color: #338f19;
  background: rgba(99, 234, 36, 0.13);
}

.faq-item-icon-blue {
  color: #3450ba;
  background: rgba(55, 82, 205, 0.11);
}

.faq-item-icon-purple {
  color: #7e3fb3;
  background: rgba(143, 66, 198, 0.11);
}

.faq-item-icon-orange {
  color: #c45e1a;
  background: rgba(235, 117, 35, 0.11);
}

.faq-item-icon-cyan {
  color: #137f8d;
  background: rgba(26, 155, 171, 0.1);
}

.faq-item-icon-gold {
  color: #a77909;
  background: rgba(224, 174, 34, 0.12);
}

.faq-item-icon-indigo {
  color: #4d53bd;
  background: rgba(75, 80, 190, 0.1);
}

.faq-item-icon-yellow {
  color: #a67807;
  background: rgba(234, 181, 32, 0.12);
}

.faq-item-question {
  min-width: 0;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.35;
}

.faq-item-question small {
  display: block;
  margin-bottom: 3px;
  color: #7a847c;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.faq-item-toggle {
  width: 37px;
  height: 37px;
  border-radius: 12px;
  background: rgba(8, 16, 163, 0.06);
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.3s ease,
    color 0.3s ease,
    background 0.3s ease;
}

.faq-premium-item[open] .faq-item-toggle {
  color: #ffffff;
  background: #42a923;
  transform: rotate(45deg);
}

.faq-premium-answer {
  padding: 0 16px 18px 76px;
}

.faq-premium-answer p {
  margin: 0;
  color: #68726a;
  font-size: 12px;
  line-height: 1.7;
}

.faq-premium-answer a {
  width: fit-content;
  margin-top: 13px;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
  transition:
    color 0.3s ease,
    gap 0.3s ease;
}

.faq-premium-answer a:hover {
  color: #3b9e20;
  gap: 11px;
}

/* Estado sem resultados */

.faq-empty-state {
  padding: 60px 25px;
  text-align: center;
}

.faq-empty-state[hidden] {
  display: none;
}

.faq-empty-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto;
  border-radius: 23px;
  background: rgba(8, 16, 163, 0.07);
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
}

.faq-empty-state h3 {
  margin: 20px 0 8px;
  color: var(--blue);
  font-size: 20px;
  text-transform: none;
}

.faq-empty-state p {
  max-width: 430px;
  margin: 0 auto;
  color: #6e7870;
  font-size: 12px;
  line-height: 1.65;
}

.faq-empty-state button {
  min-height: 44px;
  margin-top: 20px;
  padding: 0 16px;
  border: 0;
  border-radius: 13px;
  background: var(--blue);
  color: #ffffff;
  cursor: pointer;
  font: inherit;
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}

/* Faixa inferior */

.faq-premium-footer {
  margin-top: 24px;
  padding: 22px 24px;
  border: 1px solid rgba(8, 16, 163, 0.09);
  border-radius: 23px;
  background:
    linear-gradient(
      108deg,
      #f5f8ff,
      #ffffff 50%,
      #f3faed
    );
  box-shadow: 0 18px 45px rgba(34, 65, 37, 0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.faq-footer-copy {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 14px;
}

.faq-footer-icon {
  width: 50px;
  height: 50px;
  border-radius: 17px;
  flex-shrink: 0;
  color: #ffffff;
  background: linear-gradient(135deg, #101aa1, #2a43c8);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  box-shadow: 0 12px 27px rgba(8, 16, 163, 0.19);
}

.faq-footer-copy strong,
.faq-footer-copy div > span {
  display: block;
}

.faq-footer-copy strong {
  color: var(--blue);
  font-size: 15px;
}

.faq-footer-copy div > span {
  margin-top: 4px;
  color: #6e7870;
  font-size: 10px;
}

.faq-premium-footer > a {
  min-height: 48px;
  padding: 0 17px;
  border-radius: 15px;
  background: var(--blue);
  color: #ffffff;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-size: 9px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  transition:
    transform 0.3s ease,
    background 0.3s ease;
}

.faq-premium-footer > a:hover {
  background: #3aa31f;
  transform: translateY(-3px);
}

/* =========================================================
   RESPONSIVIDADE DO FAQ
========================================================= */

@media (max-width: 1050px) {
  .faq-premium-layout {
    grid-template-columns: 1fr;
  }

  .faq-support-panel {
    position: relative;
    top: auto;
  }

  .faq-support-options {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 850px) {
  .faq-premium-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 27px;
  }

  .faq-premium-heading-card {
    min-width: 0;
    width: 100%;
    max-width: 430px;
  }

  .faq-premium-search {
    align-items: stretch;
    flex-direction: column;
  }

  .faq-search-status {
    min-width: 0;
    text-align: left;
  }

  .faq-premium-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .faq-premium-footer > a {
    margin-left: 64px;
  }
}

@media (max-width: 680px) {
  .faq-premium-heading h2 {
    font-size: 39px;
  }

  .faq-support-options {
    grid-template-columns: 1fr;
  }

  .faq-premium-content {
    padding: 16px;
    border-radius: 23px;
  }

  .faq-premium-item summary {
    grid-template-columns: 43px minmax(0, 1fr) 34px;
    gap: 10px;
    padding: 13px;
  }

  .faq-item-icon {
    width: 43px;
    height: 43px;
  }

  .faq-premium-answer {
    padding: 0 13px 16px;
  }

  .faq-premium-footer > a {
    width: 100%;
    margin-left: 0;
  }
}

@media (max-width: 480px) {
  .faq-premium-heading h2 {
    font-size: 34px;
  }

  .faq-support-panel {
    padding: 22px;
    border-radius: 25px;
  }

  .faq-support-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .faq-support-icon {
    width: 61px;
    height: 61px;
    margin-top: 28px;
  }

  .faq-category-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .faq-premium-item summary {
    grid-template-columns: 40px minmax(0, 1fr) 32px;
  }

  .faq-item-icon {
    width: 40px;
    height: 40px;
    border-radius: 13px;
  }

  .faq-item-toggle {
    width: 32px;
    height: 32px;
  }

  .faq-item-question {
    font-size: 12px;
  }

  .faq-premium-footer {
    padding: 19px;
  }

  .faq-footer-copy {
    align-items: flex-start;
  }
}

@media (max-width: 360px) {
  .faq-premium .container {
    width: min(100% - 22px, 1120px);
  }

  .faq-premium-heading h2 {
    font-size: 31px;
  }

  .faq-search-field input {
    padding-left: 42px;
    font-size: 11px;
  }

  .faq-support-options > a {
    grid-template-columns: 36px minmax(0, 1fr);
  }

  .faq-support-options > a > i {
    display: none;
  }

  .faq-premium-item summary {
    grid-template-columns: 1fr 31px;
  }

  .faq-item-icon {
    display: none;
  }

  .faq-premium-answer {
    padding-left: 13px;
  }

  .faq-premium-footer > a {
    padding-left: 11px;
    padding-right: 11px;
    font-size: 8px;
  }
}


/* =========================================================
   ETAPA 11 — LINKS PARA PÁGINAS INDIVIDUAIS
========================================================= */

.product-card-premium .product-actions {
  grid-template-columns: 1fr 1fr;
}

.product-action-page {
  border: 1px solid rgba(8, 16, 163, 0.11);
  background: linear-gradient(
    110deg,
    #f5f7ff,
    #f3faed
  );
  color: var(--blue);
}

.product-action-page:hover {
  color: #ffffff;
  background: var(--blue);
  border-color: var(--blue);
}

@media (max-width: 480px) {
  .product-card-premium .product-actions {
    grid-template-columns: 1fr;
  }
}


/* =========================================================
   ETAPA 12 — RODAPÉ PREMIUM
========================================================= */

.footer-premium {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin-top: 0;
  border-radius: 46px 46px 0 0;
  background:
    linear-gradient(
      135deg,
      #070d75 0%,
      #09108f 40%,
      #080b45 70%,
      #030415 100%
    );
  color: #ffffff;
}

.footer-premium .container {
  position: relative;
  z-index: 2;
}

.footer-premium-background {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.footer-grid-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.065;
  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.16) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.16) 1px,
      transparent 1px
    );
  background-size: 76px 76px;
  mask-image: linear-gradient(
    to bottom,
    #000,
    rgba(0, 0, 0, 0.75),
    transparent
  );
}

.footer-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(20px);
}

.footer-glow-one {
  top: -350px;
  left: -260px;
  width: 820px;
  height: 820px;
  background: radial-gradient(
    circle,
    rgba(99, 234, 36, 0.22),
    transparent 69%
  );
}

.footer-glow-two {
  right: -330px;
  bottom: -430px;
  width: 900px;
  height: 900px;
  background: radial-gradient(
    circle,
    rgba(63, 94, 255, 0.19),
    transparent 69%
  );
}

.footer-orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
}

.footer-orbit::before,
.footer-orbit::after {
  content: "";
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #63ea24;
  box-shadow: 0 0 20px rgba(99, 234, 36, 0.4);
}

.footer-orbit-one {
  left: -240px;
  bottom: -330px;
  width: 700px;
  height: 700px;
  animation: footerOrbit 28s linear infinite;
}

.footer-orbit-one::before {
  top: 71px;
  right: 130px;
}

.footer-orbit-one::after {
  right: 16px;
  bottom: 230px;
}

.footer-orbit-two {
  top: -210px;
  right: 8%;
  width: 430px;
  height: 430px;
  opacity: 0.5;
  animation: footerOrbit 33s linear infinite reverse;
}

.footer-orbit-two::before {
  left: 50px;
  bottom: 69px;
}

.footer-orbit-two::after {
  top: 80px;
  right: 36px;
}

@keyframes footerOrbit {
  to {
    transform: rotate(360deg);
  }
}

/* =========================================================
   BANNER DE CONTATO
========================================================= */

.footer-contact-banner {
  position: relative;
  top: -1px;
  min-height: 142px;
  padding: 27px 29px;
  border: 1px solid rgba(99, 234, 36, 0.23);
  border-top: 0;
  border-radius: 0 0 29px 29px;
  background:
    radial-gradient(
      circle at top right,
      rgba(99, 234, 36, 0.18),
      transparent 34%
    ),
    rgba(255, 255, 255, 0.08);
  box-shadow:
    0 26px 65px rgba(0, 0, 0, 0.17),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.footer-contact-banner-copy {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 19px;
}

.footer-contact-banner-icon {
  width: 65px;
  height: 65px;
  border-radius: 21px;
  flex-shrink: 0;
  color: #ffffff;
  background: linear-gradient(135deg, #73ef3d, #38ad17);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  box-shadow: 0 16px 35px rgba(99, 234, 36, 0.22);
}

.footer-contact-eyebrow {
  color: #86f256;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.footer-contact-banner-copy strong {
  display: block;
  margin-top: 4px;
  color: #ffffff;
  font-size: clamp(18px, 2vw, 25px);
  font-weight: 900;
  line-height: 1.2;
}

.footer-contact-banner-copy p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.59);
  font-size: 11px;
  line-height: 1.5;
}

.footer-contact-banner-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.footer-contact-banner-actions a {
  min-height: 51px;
  padding: 0 17px;
  border-radius: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-size: 9px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  transition:
    transform 0.3s ease,
    color 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease;
}

.footer-contact-banner-actions a:hover {
  transform: translateY(-3px);
}

.footer-banner-whatsapp {
  color: #168b43;
  background: #ffffff;
}

.footer-banner-whatsapp:hover {
  color: #ffffff;
  background: #20a954;
}

.footer-banner-email {
  border: 1px solid rgba(255, 255, 255, 0.19);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.footer-banner-email:hover {
  color: var(--blue);
  background: #ffffff;
  border-color: #ffffff;
}

/* =========================================================
   CONTEÚDO PRINCIPAL
========================================================= */

.footer-premium-main {
  padding: 60px 0 42px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 1.35fr;
  align-items: start;
  gap: clamp(28px, 3.5vw, 55px);
}

.footer-premium-brand {
  min-width: 0;
}

.footer-brand-logo {
  width: fit-content;
  display: inline-flex;
}

.footer-brand-logo img {
  width: 220px;
  max-height: 78px;
  object-fit: contain;
}

.footer-premium-brand > p {
  max-width: 390px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.7;
}

.footer-brand-tags {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.footer-brand-tags span {
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid rgba(99, 234, 36, 0.22);
  border-radius: 999px;
  background: rgba(99, 234, 36, 0.08);
  color: rgba(255, 255, 255, 0.85);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11.5px;
  font-weight: 700;
}

.footer-brand-tags i {
  color: #7bed47;
}

.footer-brand-contact {
  margin-top: 22px;
  display: grid;
  gap: 10px;
}

.footer-brand-contact > a {
  min-width: 0;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease;
}

.footer-brand-contact > a:hover {
  transform: translateX(4px);
  border-color: rgba(99, 234, 36, 0.3);
  background: rgba(99, 234, 36, 0.09);
}

.footer-brand-contact > a > span {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  flex-shrink: 0;
  color: #7bed47;
  background: rgba(99, 234, 36, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
}

.footer-brand-contact div {
  min-width: 0;
}

.footer-brand-contact small,
.footer-brand-contact strong {
  display: block;
}

.footer-brand-contact small {
  color: rgba(255, 255, 255, 0.5);
  font-size: 10.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-brand-contact strong {
  margin-top: 2px;
  overflow-wrap: anywhere;
  color: #ffffff;
  font-size: 13.5px;
  font-weight: 700;
}

/* Colunas */

.footer-premium-column {
  min-width: 0;
}

.footer-column-heading {
  min-height: 40px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-column-icon {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(99, 234, 36, 0.22);
  border-radius: 12px;
  color: #7bed47;
  background: rgba(99, 234, 36, 0.1);
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}

.footer-column-heading h3 {
  margin: 0;
  color: #ffffff;
  font-size: 15px;
  font-weight: 800;
  text-transform: none;
  letter-spacing: 0.2px;
}

.footer-premium-links {
  display: grid;
  gap: 5px;
}

.footer-premium-links a {
  min-width: 0;
  min-height: 36px;
  padding: 0 10px;
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 9px;
  font-size: 12.5px;
  font-weight: 600;
  text-decoration: none;
  transition:
    color 0.25s ease,
    background 0.25s ease,
    transform 0.25s ease;
}

.footer-premium-links a:hover {
  color: #ffffff;
  background: rgba(99, 234, 36, 0.1);
  transform: translateX(4px);
}

.footer-premium-links a i {
  color: rgba(99, 234, 36, 0.7);
  flex-shrink: 0;
  font-size: 11px;
}

/* Localização & Mapa */

.footer-address {
  margin: 0;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-style: normal;
}

.footer-address-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  color: #7bed47;
  background: rgba(99, 234, 36, 0.12);
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.footer-address strong,
.footer-address div > span {
  display: block;
}

.footer-address strong {
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
}

.footer-address div > span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 11.5px;
  line-height: 1.6;
}

.footer-map-container {
  margin-top: 12px;
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
  background: rgba(0, 0, 0, 0.2);
}

.footer-map-container iframe {
  width: 100%;
  height: 160px;
  display: block;
  filter: brightness(0.94) contrast(1.04);
  transition: filter 0.3s ease;
}

.footer-map-container:hover iframe {
  filter: brightness(1) contrast(1);
}

.footer-map-button {
  width: 100%;
  min-height: 44px;
  margin-top: 10px;
  padding: 0 14px;
  border: 1px solid rgba(99, 234, 36, 0.25);
  border-radius: 13px;
  background: rgba(99, 234, 36, 0.09);
  color: #7bed47;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  transition:
    transform 0.25s ease,
    color 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}

.footer-map-button:hover {
  color: #071c86;
  background: #7bed47;
  box-shadow: 0 6px 18px rgba(99, 234, 36, 0.35);
  transform: translateY(-2px);
}

.footer-operation {
  margin-top: 10px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: flex-start;
  gap: 11px;
}

.footer-operation > span {
  width: 36px;
  height: 36px;
  border-radius: 11px;
  color: #7bed47;
  background: rgba(99, 234, 36, 0.1);
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}

.footer-operation strong,
.footer-operation small {
  display: block;
}

.footer-operation strong {
  color: #ffffff;
  font-size: 12.5px;
  font-weight: 700;
}

.footer-operation small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  line-height: 1.5;
}

/* =========================================================
   CERTIFICAÇÃO
========================================================= */

.footer-certification-strip {
  padding: 20px 24px;
  border: 1px solid rgba(230, 184, 52, 0.22);
  border-radius: 20px;
  background:
    linear-gradient(
      105deg,
      rgba(229, 184, 48, 0.12),
      rgba(255, 255, 255, 0.045),
      rgba(99, 234, 36, 0.06)
    );
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.footer-certification-main {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.footer-certification-badges {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 6px 14px;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.footer-iso-badge {
  height: 48px;
  width: auto;
  object-fit: contain;
  display: block;
}

.footer-certification-sep {
  width: 1px;
  height: 30px;
  background: rgba(7, 28, 134, 0.22);
  display: block;
}

.footer-certifier-badge {
  height: 26px;
  width: auto;
  object-fit: contain;
  display: block;
}

.footer-certification-main small,
.footer-certification-main strong {
  display: block;
}

.footer-certification-main small {
  color: rgba(255, 255, 255, 0.65);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-certification-main strong {
  margin-top: 2px;
  color: #f0cc60;
  font-size: 17px;
  font-weight: 800;
}

.footer-certification-items {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
}

.footer-certification-items span {
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.75);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11.5px;
  font-weight: 700;
}

.footer-certification-items i {
  color: #7bed47;
  font-size: 10px;
}

/* =========================================================
   ÁREA LEGAL
========================================================= */

.footer-legal {
  min-height: 80px;
  margin-top: 32px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto 46px;
  align-items: center;
  gap: 22px;
}

.footer-legal-copy {
  min-width: 0;
}

.footer-legal-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 600;
}

.footer-legal-copy > span {
  display: block;
  max-width: 680px;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
  line-height: 1.5;
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-legal-links a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-legal-links a:hover {
  color: #7bed47;
}

.footer-back-to-top {
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(99, 234, 36, 0.25);
  border-radius: 14px;
  background: rgba(99, 234, 36, 0.1);
  color: #7bed47;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition:
    transform 0.25s ease,
    color 0.25s ease,
    background 0.25s ease;
}

.footer-back-to-top:hover {
  color: #071c86;
  background: #7bed47;
  transform: translateY(-4px);
}

/* =========================================================
   RESPONSIVIDADE DO RODAPÉ
========================================================= */

@media (max-width: 1024px) {
  .footer-premium-main {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .footer-location-column {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .footer-contact-banner {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .footer-contact-banner-actions {
    width: 100%;
    flex-direction: column;
  }

  .footer-contact-banner-actions a {
    width: 100%;
    justify-content: center;
  }

  .footer-premium-main {
    padding-top: 45px;
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-certification-strip {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .footer-certification-items {
    justify-content: flex-start;
  }

  .footer-legal {
    grid-template-columns: minmax(0, 1fr) 46px;
  }

  .footer-legal-links {
    grid-column: 1 / -1;
    grid-row: 2;
    flex-wrap: wrap;
  }

  .footer-back-to-top {
    grid-column: 2;
    grid-row: 1;
  }
}

@media (max-width: 480px) {
  .footer-contact-banner-copy {
    flex-direction: column;
  }

  .footer-brand-tags {
    gap: 6px;
  }

  .footer-certification-items {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .footer-certification-items span {
    justify-content: flex-start;
  }
}

/* Movimento reduzido */

@media (prefers-reduced-motion: reduce) {
  .footer-orbit-one,
  .footer-orbit-two {
    animation: none;
  }
}


/* Visibilidade controlada pelo JavaScript */
.footer-back-to-top {
  opacity: 0.45;
}

.footer-back-to-top.visible {
  opacity: 1;
  box-shadow: 0 13px 29px rgba(99, 234, 36, 0.14);
}


/* =========================================================
   CRÉDITO Q-MAX TECHNOLOGY
========================================================= */

.footer-developer-credit {
  margin-top: 8px !important;
  color: rgba(255, 255, 255, 0.42) !important;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  font-size: 8px !important;
}

.footer-developer-credit a,
.footer-developer-name {
  min-height: 27px;
  padding: 0 9px;
  border: 1px solid rgba(99, 234, 36, 0.14);
  border-radius: 999px;
  background: rgba(99, 234, 36, 0.06);
  color: #83ef51;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 900;
  letter-spacing: 0.025em;
  transition:
    transform 0.3s ease,
    color 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease;
}

.footer-developer-credit a:hover {
  color: #071142;
  background: #7dee49;
  border-color: #7dee49;
  transform: translateY(-2px);
}

.footer-developer-credit i {
  font-size: 8px;
}

@media (max-width: 680px) {
  .footer-developer-credit {
    justify-content: center;
  }
}


/* =========================================================
   ETAPA 13 — CONTEÚDO TÉCNICO PREMIUM
========================================================= */

.insights-premium {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      #f6faf2 52%,
      #ffffff 100%
    );
}

.insights-premium .container {
  position: relative;
  z-index: 2;
}

.insights-background {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.insights-grid-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    linear-gradient(
      rgba(8, 16, 163, 0.4) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(8, 16, 163, 0.4) 1px,
      transparent 1px
    );
  background-size: 82px 82px;
  mask-image: linear-gradient(
    to bottom,
    transparent,
    #000 17%,
    #000 83%,
    transparent
  );
}

.insights-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(20px);
}

.insights-glow-one {
  top: -260px;
  left: -230px;
  width: 690px;
  height: 690px;
  background: radial-gradient(
    circle,
    rgba(99, 234, 36, 0.15),
    transparent 69%
  );
}

.insights-glow-two {
  right: -270px;
  bottom: -340px;
  width: 740px;
  height: 740px;
  background: radial-gradient(
    circle,
    rgba(8, 16, 163, 0.09),
    transparent 69%
  );
}

.insights-heading {
  margin-bottom: 46px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 45px;
}

.insights-heading-copy {
  max-width: 790px;
}

.insights-heading h2 {
  margin: 0;
  color: var(--blue);
  font-size: clamp(38px, 5vw, 61px);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.052em;
}

.insights-heading h2 span {
  display: block;
  color: #43aa20;
}

.insights-heading-copy > p {
  max-width: 710px;
  margin: 22px 0 0;
  color: #68726a;
  font-size: 16px;
  line-height: 1.75;
}

.insights-heading-card {
  min-width: 300px;
  max-width: 340px;
  padding: 19px;
  border: 1px solid rgba(8, 16, 163, 0.09);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 0 19px 46px rgba(34, 66, 36, 0.08);
  display: flex;
  align-items: center;
  gap: 14px;
}

.insights-heading-icon {
  width: 52px;
  height: 52px;
  border-radius: 17px;
  flex-shrink: 0;
  color: #ffffff;
  background: linear-gradient(135deg, #63ea24, #36aa17);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.insights-heading-card strong,
.insights-heading-card div > span {
  display: block;
}

.insights-heading-card strong {
  color: var(--blue);
  font-size: 14px;
}

.insights-heading-card div > span {
  margin-top: 4px;
  color: #747e76;
  font-size: 10px;
  line-height: 1.45;
}

.insights-featured-layout {
  display: grid;
  grid-template-columns: minmax(350px, 1.05fr) minmax(0, 0.95fr);
  align-items: stretch;
  gap: 22px;
}

.insight-featured-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(8, 16, 163, 0.09);
  border-radius: 30px;
  background: #ffffff;
  box-shadow: 0 25px 62px rgba(34, 67, 36, 0.1);
  display: grid;
  grid-template-columns: minmax(230px, 0.8fr) minmax(0, 1.2fr);
}

.insight-featured-visual {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  padding: 24px;
  background:
    radial-gradient(
      circle at center,
      rgba(99, 234, 36, 0.23),
      transparent 51%
    ),
    linear-gradient(145deg, #0a149e, #1729ae 58%, #175f3c);
  display: flex;
  align-items: center;
  justify-content: center;
}

.insight-featured-category {
  position: absolute;
  z-index: 3;
  top: 21px;
  left: 21px;
  min-height: 33px;
  padding: 0 11px;
  border: 1px solid rgba(99, 234, 36, 0.25);
  border-radius: 999px;
  background: rgba(99, 234, 36, 0.1);
  color: #91f465;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 8px;
  font-weight: 900;
  text-transform: uppercase;
}

.insight-featured-symbol {
  position: relative;
  width: 210px;
  height: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.insight-symbol-ring {
  position: absolute;
  border-radius: 50%;
}

.insight-symbol-ring-one {
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.17);
  animation: insightOrbit 18s linear infinite;
}

.insight-symbol-ring-two {
  inset: 31px;
  border: 1px dashed rgba(99, 234, 36, 0.34);
  animation: insightOrbit 14s linear infinite reverse;
}

@keyframes insightOrbit {
  to {
    transform: rotate(360deg);
  }
}

.insight-featured-symbol > i {
  width: 103px;
  height: 103px;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, #75ef40, #38ad17);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 39px;
  box-shadow: 0 20px 50px rgba(99, 234, 36, 0.25);
}

.insight-featured-reading {
  position: absolute;
  left: 21px;
  bottom: 21px;
  color: rgba(255, 255, 255, 0.62);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 8px;
  font-weight: 800;
}

.insight-featured-content {
  min-width: 0;
  padding: 36px 31px;
  display: flex;
  flex-direction: column;
}

.insight-content-label,
.insight-secondary-category {
  color: #3b9d21;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.065em;
  text-transform: uppercase;
}

.insight-featured-content h3 {
  margin: 16px 0 14px;
  color: var(--blue);
  font-size: clamp(27px, 3vw, 37px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.043em;
  text-transform: none;
}

.insight-featured-content > p {
  margin: 0;
  color: #68726a;
  font-size: 13px;
  line-height: 1.72;
}

.insight-featured-points {
  margin-top: 23px;
  display: grid;
  gap: 10px;
}

.insight-featured-points span {
  color: #536057;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 700;
}

.insight-featured-points i {
  width: 21px;
  height: 21px;
  border-radius: 50%;
  color: #3a9d20;
  background: rgba(99, 234, 36, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 7px;
}

.insight-featured-content > a,
.insight-secondary-card > a {
  width: fit-content;
  margin-top: auto;
  padding-top: 25px;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
  transition:
    color 0.3s ease,
    gap 0.3s ease;
}

.insight-featured-content > a:hover,
.insight-secondary-card > a:hover {
  color: #3b9e20;
  gap: 12px;
}

.insights-secondary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 17px;
}

.insight-secondary-card {
  position: relative;
  min-width: 0;
  min-height: 330px;
  overflow: hidden;
  padding: 23px;
  border: 1px solid rgba(8, 16, 163, 0.09);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(34, 67, 36, 0.07);
  display: flex;
  flex-direction: column;
  transition:
    transform 0.4s ease,
    border-color 0.4s ease,
    box-shadow 0.4s ease;
}

.insight-secondary-card:hover {
  transform: translateY(-8px);
  border-color: rgba(99, 234, 36, 0.37);
  box-shadow: 0 29px 64px rgba(40, 106, 28, 0.13);
}

.insight-secondary-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.insight-secondary-icon {
  width: 49px;
  height: 49px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
}

.insight-icon-orange {
  color: #c2631c;
  background: rgba(235, 117, 35, 0.11);
}

.insight-icon-blue {
  color: #3652bd;
  background: rgba(55, 82, 205, 0.11);
}

.insight-secondary-reading {
  color: #818a83;
  font-size: 8px;
  font-weight: 900;
  text-transform: uppercase;
}

.insight-secondary-category {
  margin-top: 20px;
}

.insight-secondary-card h3 {
  margin: 13px 0 10px;
  color: var(--blue);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.25;
  text-transform: none;
}

.insight-secondary-card > p {
  margin: 0;
  color: #69736b;
  font-size: 11px;
  line-height: 1.65;
}

.insight-secondary-wide {
  grid-column: 1 / -1;
  min-height: 155px;
  display: grid;
  grid-template-columns: 51px minmax(0, 1fr) 45px;
  align-items: center;
  gap: 15px;
}

.insight-wide-icon {
  width: 51px;
  height: 51px;
  border-radius: 17px;
  color: #37991d;
  background: rgba(99, 234, 36, 0.13);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
}

.insight-wide-content > span {
  color: #3a9d20;
  font-size: 8px;
  font-weight: 900;
  text-transform: uppercase;
}

.insight-wide-content h3 {
  margin: 5px 0 6px;
}

.insight-secondary-wide > a {
  width: 45px;
  height: 45px;
  border-radius: 14px;
  color: #ffffff;
  background: #20a954;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  transition:
    transform 0.3s ease,
    background 0.3s ease;
}

.insight-secondary-wide > a:hover {
  background: #168b43;
  transform: translateY(-3px);
}

.insights-topics {
  margin-top: 24px;
  padding: 22px 24px;
  border: 1px solid rgba(8, 16, 163, 0.09);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(34, 65, 37, 0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.insights-topics-heading {
  display: flex;
  align-items: center;
  gap: 13px;
  flex-shrink: 0;
}

.insights-topics-heading > span {
  width: 47px;
  height: 47px;
  border-radius: 15px;
  color: #ffffff;
  background: linear-gradient(135deg, #101aa1, #2a43c8);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.insights-topics-heading strong,
.insights-topics-heading small {
  display: block;
}

.insights-topics-heading strong {
  color: var(--blue);
  font-size: 13px;
}

.insights-topics-heading small {
  margin-top: 3px;
  color: #767f78;
  font-size: 8px;
}

.insights-topic-list {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
}

.insights-topic-list span {
  min-height: 32px;
  padding: 0 10px;
  border-radius: 999px;
  color: #3a8825;
  background: rgba(99, 234, 36, 0.09);
  display: inline-flex;
  align-items: center;
  font-size: 8px;
  font-weight: 900;
  text-transform: uppercase;
}

.insights-disclaimer {
  margin-top: 14px;
  padding: 15px 17px;
  border: 1px solid rgba(218, 166, 25, 0.17);
  border-radius: 16px;
  background: rgba(236, 181, 30, 0.07);
  color: #75600e;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.insights-disclaimer i {
  margin-top: 4px;
  color: #bd8b0b;
}

.insights-disclaimer p {
  margin: 0;
  font-size: 9px;
  line-height: 1.6;
}

@media (max-width: 1050px) {
  .insights-featured-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 850px) {
  .insights-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 27px;
  }

  .insights-heading-card {
    min-width: 0;
    width: 100%;
    max-width: 430px;
  }

  .insights-topics {
    align-items: flex-start;
    flex-direction: column;
  }

  .insights-topic-list {
    justify-content: flex-start;
  }
}

@media (max-width: 680px) {
  .insights-heading h2 {
    font-size: 39px;
  }

  .insight-featured-card {
    grid-template-columns: 1fr;
  }

  .insight-featured-visual {
    min-height: 350px;
  }

  .insights-secondary-grid {
    grid-template-columns: 1fr;
  }

  .insight-secondary-wide {
    grid-column: auto;
  }
}

@media (max-width: 480px) {
  .insights-heading h2 {
    font-size: 34px;
  }

  .insight-featured-content {
    padding: 25px 21px;
  }

  .insight-featured-visual {
    min-height: 310px;
  }

  .insight-secondary-card {
    min-height: auto;
    padding: 20px;
  }

  .insight-secondary-wide {
    grid-template-columns: 47px minmax(0, 1fr);
  }

  .insight-secondary-wide > a {
    grid-column: 1 / -1;
    width: 100%;
  }

  .insights-topics {
    padding: 19px;
  }
}

@media (max-width: 360px) {
  .insights-premium .container {
    width: min(100% - 22px, 1120px);
  }

  .insights-heading h2 {
    font-size: 31px;
  }

  .insights-topics-heading {
    align-items: flex-start;
  }
}


/* =========================================================
   ETAPA 14 — PRESENÇA ESTRATÉGICA
========================================================= */

.strategic-presence {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(
      180deg,
      #f7faf3 0%,
      #ffffff 48%,
      #f5f9f1 100%
    );
}

.strategic-presence .container {
  position: relative;
  z-index: 2;
}

.strategic-presence-background {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.strategic-presence-grid {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    linear-gradient(
      rgba(8, 16, 163, 0.42) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(8, 16, 163, 0.42) 1px,
      transparent 1px
    );
  background-size: 82px 82px;
  mask-image: linear-gradient(
    to bottom,
    transparent,
    #000 17%,
    #000 83%,
    transparent
  );
}

.strategic-presence-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(22px);
}

.strategic-presence-glow-one {
  top: -260px;
  left: -230px;
  width: 700px;
  height: 700px;
  background: radial-gradient(
    circle,
    rgba(99, 234, 36, 0.16),
    transparent 69%
  );
}

.strategic-presence-glow-two {
  right: -280px;
  bottom: -350px;
  width: 760px;
  height: 760px;
  background: radial-gradient(
    circle,
    rgba(8, 16, 163, 0.1),
    transparent 69%
  );
}

/* Cabeçalho */

.strategic-presence-heading {
  margin-bottom: 46px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 45px;
}

.strategic-presence-heading-copy {
  max-width: 800px;
}

.strategic-presence-heading h2 {
  margin: 0;
  color: var(--blue);
  font-size: clamp(38px, 5vw, 61px);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.052em;
}

.strategic-presence-heading h2 span {
  display: block;
  color: #43aa20;
}

.strategic-presence-heading-copy > p {
  max-width: 720px;
  margin: 22px 0 0;
  color: #68726a;
  font-size: 16px;
  line-height: 1.75;
}

.strategic-presence-heading-card {
  min-width: 300px;
  max-width: 340px;
  padding: 19px;
  border: 1px solid rgba(8, 16, 163, 0.09);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 0 19px 46px rgba(34, 66, 36, 0.08);
  display: flex;
  align-items: center;
  gap: 14px;
}

.strategic-presence-heading-icon {
  width: 52px;
  height: 52px;
  border-radius: 17px;
  flex-shrink: 0;
  color: #ffffff;
  background: linear-gradient(135deg, #63ea24, #36aa17);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 13px 29px rgba(61, 174, 29, 0.22);
}

.strategic-presence-heading-card strong,
.strategic-presence-heading-card div > span {
  display: block;
}

.strategic-presence-heading-card strong {
  color: var(--blue);
  font-size: 14px;
}

.strategic-presence-heading-card div > span {
  margin-top: 4px;
  color: #747e76;
  font-size: 10px;
  line-height: 1.45;
}

/* Layout */

.strategic-presence-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(380px, 0.82fr);
  align-items: stretch;
  gap: 22px;
}

/* Mapa estilizado */

.strategic-presence-map {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(99, 234, 36, 0.2);
  border-radius: 31px;
  background:
    radial-gradient(
      circle at 20% 20%,
      rgba(99, 234, 36, 0.19),
      transparent 34%
    ),
    linear-gradient(145deg, #08119a, #1528ad 57%, #135c3a);
  box-shadow:
    0 31px 75px rgba(8, 16, 120, 0.21),
    inset 0 1px 0 rgba(255, 255, 255, 0.13);
  color: #ffffff;
}

.strategic-map-header {
  min-height: 86px;
  padding: 20px 23px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.strategic-map-header div > span {
  color: #8af15f;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.strategic-map-header strong {
  display: block;
  margin-top: 4px;
  color: #ffffff;
  font-size: 18px;
}

.strategic-map-status {
  color: rgba(255, 255, 255, 0.61);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 8px;
  font-weight: 900;
  text-transform: uppercase;
}

.strategic-map-status i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #63ea24;
  box-shadow: 0 0 0 6px rgba(99, 234, 36, 0.11);
}

.strategic-map-stage {
  position: relative;
  min-height: 555px;
  overflow: hidden;
}

.strategic-world-outline {
  position: absolute;
  inset: 10% 7%;
  opacity: 0.15;
}

.world-shape {
  position: absolute;
  border: 2px solid rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.035);
  filter: drop-shadow(0 0 14px rgba(255, 255, 255, 0.08));
}

.world-shape-americas {
  top: 16%;
  left: 6%;
  width: 25%;
  height: 66%;
  border-radius: 48% 39% 51% 32%;
  transform: rotate(8deg);
}

.world-shape-europe {
  top: 21%;
  left: 45%;
  width: 14%;
  height: 27%;
  border-radius: 44% 55% 39% 53%;
}

.world-shape-asia {
  top: 19%;
  right: 6%;
  width: 34%;
  height: 43%;
  border-radius: 41% 55% 44% 39%;
  transform: rotate(-5deg);
}

.strategic-route {
  position: absolute;
  z-index: 2;
  height: 2px;
  opacity: 0.7;
  background-image: linear-gradient(
    to right,
    #63ea24 48%,
    transparent 48%
  );
  background-size: 13px 2px;
  transform-origin: left center;
}

.strategic-route-sp-sc {
  left: 22%;
  top: 63%;
  width: 90px;
  transform: rotate(73deg);
}

.strategic-route-sp-shanghai {
  left: 25%;
  top: 57%;
  width: 53%;
  transform: rotate(-9deg);
}

.strategic-map-point {
  position: absolute;
  z-index: 5;
  width: 64px;
  height: 64px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.13);
  color: #ffffff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 3px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(12px);
  transition:
    transform 0.35s ease,
    background 0.35s ease,
    border-color 0.35s ease;
}

.strategic-map-point:hover,
.strategic-map-point.active {
  border-color: rgba(99, 234, 36, 0.56);
  background: linear-gradient(135deg, #63ea24, #38aa18);
  transform: translateY(-7px) scale(1.05);
}

.strategic-map-point i {
  font-size: 18px;
}

.strategic-map-point small {
  font-size: 7px;
  font-weight: 900;
  white-space: nowrap;
}

.strategic-map-point-sp {
  left: 19%;
  top: 51%;
}

.strategic-map-point-sc {
  left: 26%;
  top: 72%;
}

.strategic-map-point-shanghai {
  right: 17%;
  top: 37%;
}

.strategic-point-pulse {
  position: absolute;
  inset: -9px;
  border: 1px solid rgba(99, 234, 36, 0.35);
  border-radius: 24px;
  animation: strategicPointPulse 2.5s ease infinite;
}

@keyframes strategicPointPulse {
  50% {
    transform: scale(1.12);
    opacity: 0.25;
  }
}

.strategic-map-plane {
  position: absolute;
  z-index: 4;
  left: 52%;
  top: 45%;
  width: 43px;
  height: 43px;
  border-radius: 50%;
  background: #ffffff;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 31px rgba(0, 0, 0, 0.24);
  animation: strategicPlane 5s ease-in-out infinite;
}

@keyframes strategicPlane {
  0%,
  100% {
    transform: translate(-70px, 22px) rotate(12deg);
  }

  50% {
    transform: translate(70px, -20px) rotate(12deg);
  }
}

.strategic-map-legend {
  padding: 18px 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.strategic-map-legend span {
  color: rgba(255, 255, 255, 0.64);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 8px;
  font-weight: 800;
}

.strategic-map-legend i {
  color: #7bed47;
}

/* Painel */

.strategic-presence-panel {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(8, 16, 163, 0.09);
  border-radius: 31px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 27px 68px rgba(32, 62, 35, 0.11);
  display: flex;
  flex-direction: column;
}

.strategic-presence-tabs {
  padding: 14px;
  border-bottom: 1px solid rgba(8, 16, 163, 0.07);
  background: #f7f9f5;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
}

.strategic-presence-tab {
  min-width: 0;
  min-height: 44px;
  padding: 0 8px;
  border: 1px solid transparent;
  border-radius: 13px;
  background: transparent;
  color: #69736b;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font: inherit;
  font-size: 8px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  transition:
    color 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease;
}

.strategic-presence-tab:hover,
.strategic-presence-tab.active {
  border-color: rgba(99, 234, 36, 0.25);
  background: #ffffff;
  color: #368f1c;
}

.strategic-presence-content {
  padding: 29px;
  flex: 1;
}

.strategic-presence-label {
  width: fit-content;
  min-height: 32px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(99, 234, 36, 0.1);
  color: #398f20;
  display: inline-flex;
  align-items: center;
  font-size: 8px;
  font-weight: 900;
  text-transform: uppercase;
}

.strategic-presence-title-row {
  margin-top: 25px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.strategic-presence-icon {
  width: 61px;
  height: 61px;
  border-radius: 20px;
  flex-shrink: 0;
  color: #ffffff;
  background: linear-gradient(135deg, #63ea24, #38aa18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 15px 34px rgba(61, 174, 29, 0.22);
}

.strategic-presence-title-row h3 {
  margin: 0;
  color: var(--blue);
  font-size: 25px;
  font-weight: 900;
  line-height: 1.15;
  text-transform: none;
}

.strategic-presence-title-row div > span {
  display: block;
  margin-top: 4px;
  color: #6f7971;
  font-size: 10px;
  font-weight: 700;
}

.strategic-presence-content > p {
  margin: 23px 0 0;
  color: #68726a;
  font-size: 12px;
  line-height: 1.72;
}

.strategic-presence-features {
  margin-top: 22px;
  display: grid;
  gap: 10px;
}

.strategic-presence-features span {
  color: #536057;
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 10px;
  font-weight: 700;
}

.strategic-presence-features i {
  width: 21px;
  height: 21px;
  border-radius: 50%;
  color: #3a9d20;
  background: rgba(99, 234, 36, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 7px;
}

.strategic-presence-address {
  margin: 23px 0 0;
  padding: 16px;
  border: 1px solid rgba(8, 16, 163, 0.08);
  border-radius: 17px;
  background: #f7f9f5;
  color: #68726a;
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 10px;
  font-style: normal;
  line-height: 1.65;
}

.strategic-presence-address i {
  margin-top: 4px;
  color: #3d9d22;
  flex-shrink: 0;
}

.strategic-presence-address.hidden {
  display: none;
}

.strategic-presence-actions {
  margin-top: 24px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.strategic-presence-actions a {
  min-height: 48px;
  padding: 0 15px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 8px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  transition:
    transform 0.3s ease,
    color 0.3s ease,
    background 0.3s ease;
}

.strategic-presence-actions a:hover {
  transform: translateY(-3px);
}

.strategic-presence-primary {
  color: #ffffff;
  background: var(--blue);
}

.strategic-presence-primary:hover {
  background: #3aa31f;
}

.strategic-presence-primary.hidden {
  display: none;
}

.strategic-presence-secondary {
  border: 1px solid rgba(37, 211, 102, 0.2);
  color: #168a43;
  background: rgba(37, 211, 102, 0.08);
}

.strategic-presence-secondary:hover {
  color: #ffffff;
  background: #20a954;
}

.strategic-presence-summary {
  padding: 17px;
  border-top: 1px solid rgba(8, 16, 163, 0.07);
  background: #f7f9f5;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.strategic-presence-summary > div {
  min-width: 0;
  padding: 11px;
  border-radius: 14px;
  background: #ffffff;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.strategic-presence-summary i {
  margin-top: 2px;
  color: #3b9d20;
}

.strategic-presence-summary strong,
.strategic-presence-summary span span {
  display: block;
}

.strategic-presence-summary strong {
  color: var(--blue);
  font-size: 9px;
}

.strategic-presence-summary span span {
  margin-top: 3px;
  color: #747d75;
  font-size: 7px;
  line-height: 1.4;
}

/* Faixa final */

.strategic-presence-bottom {
  margin-top: 24px;
  padding: 23px 25px;
  border: 1px solid rgba(8, 16, 163, 0.09);
  border-radius: 23px;
  background:
    linear-gradient(
      108deg,
      #f5f8ff,
      #ffffff 50%,
      #f3faed
    );
  box-shadow: 0 18px 45px rgba(34, 65, 37, 0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.strategic-presence-bottom-copy {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 15px;
}

.strategic-presence-bottom-copy > span {
  width: 51px;
  height: 51px;
  border-radius: 17px;
  flex-shrink: 0;
  color: #ffffff;
  background: linear-gradient(135deg, #101aa1, #2a43c8);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
}

.strategic-presence-bottom-copy strong {
  color: var(--blue);
  font-size: 15px;
}

.strategic-presence-bottom-copy p {
  margin: 4px 0 0;
  color: #6e7870;
  font-size: 10px;
  line-height: 1.5;
}

.strategic-presence-bottom > a {
  min-height: 48px;
  padding: 0 17px;
  border-radius: 15px;
  background: var(--blue);
  color: #ffffff;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-size: 8px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  transition:
    transform 0.3s ease,
    background 0.3s ease;
}

.strategic-presence-bottom > a:hover {
  background: #3aa31f;
  transform: translateY(-3px);
}

/* Responsividade */

@media (max-width: 1050px) {
  .strategic-presence-layout {
    grid-template-columns: 1fr;
  }

  .strategic-map-stage {
    min-height: 520px;
  }
}

@media (max-width: 850px) {
  .strategic-presence-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 27px;
  }

  .strategic-presence-heading-card {
    min-width: 0;
    width: 100%;
    max-width: 430px;
  }

  .strategic-presence-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .strategic-presence-bottom > a {
    margin-left: 66px;
  }
}

@media (max-width: 680px) {
  .strategic-presence-heading h2 {
    font-size: 39px;
  }

  .strategic-map-stage {
    min-height: 430px;
  }

  .strategic-map-point {
    width: 54px;
    height: 54px;
    border-radius: 17px;
  }

  .strategic-map-point small {
    display: none;
  }

  .strategic-map-plane {
    display: none;
  }

  .strategic-presence-summary {
    grid-template-columns: 1fr;
  }

  .strategic-presence-bottom > a {
    width: 100%;
    margin-left: 0;
  }
}

@media (max-width: 480px) {
  .strategic-presence-heading h2 {
    font-size: 34px;
  }

  .strategic-map-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .strategic-map-stage {
    min-height: 370px;
  }

  .strategic-presence-tabs {
    grid-template-columns: 1fr;
  }

  .strategic-presence-tab {
    justify-content: flex-start;
  }

  .strategic-presence-content {
    padding: 22px;
  }

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

  .strategic-presence-title-row h3 {
    font-size: 21px;
  }

  .strategic-presence-actions {
    flex-direction: column;
  }

  .strategic-presence-actions a {
    width: 100%;
  }

  .strategic-presence-bottom {
    padding: 20px;
  }

  .strategic-presence-bottom-copy {
    align-items: flex-start;
  }
}

@media (max-width: 360px) {
  .strategic-presence .container {
    width: min(100% - 22px, 1120px);
  }

  .strategic-presence-heading h2 {
    font-size: 31px;
  }

  .strategic-map-stage {
    min-height: 330px;
  }

  .strategic-map-point {
    width: 47px;
    height: 47px;
  }

  .strategic-presence-title-row {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  .strategic-map-plane,
  .strategic-point-pulse {
    animation: none;
  }
}


/* =========================================================
   ETAPA 15 — BIBLIOTECA TÉCNICA INTELIGENTE
========================================================= */

.technical-library {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      #f5f9f1 52%,
      #ffffff 100%
    );
}

.technical-library .container {
  position: relative;
  z-index: 2;
}

.technical-library-background {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.technical-library-grid {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    linear-gradient(
      rgba(8, 16, 163, 0.42) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(8, 16, 163, 0.42) 1px,
      transparent 1px
    );
  background-size: 82px 82px;
  mask-image: linear-gradient(
    to bottom,
    transparent,
    #000 17%,
    #000 83%,
    transparent
  );
}

.technical-library-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(22px);
}

.technical-library-glow-one {
  top: -270px;
  right: -220px;
  width: 700px;
  height: 700px;
  background: radial-gradient(
    circle,
    rgba(99, 234, 36, 0.16),
    transparent 69%
  );
}

.technical-library-glow-two {
  left: -280px;
  bottom: -360px;
  width: 780px;
  height: 780px;
  background: radial-gradient(
    circle,
    rgba(8, 16, 163, 0.1),
    transparent 69%
  );
}

/* Cabeçalho */

.technical-library-heading {
  margin-bottom: 38px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 45px;
}

.technical-library-heading-copy {
  max-width: 790px;
}

.technical-library-heading h2 {
  margin: 0;
  color: var(--blue);
  font-size: clamp(38px, 5vw, 61px);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.052em;
}

.technical-library-heading h2 span {
  display: block;
  color: #43aa20;
}

.technical-library-heading-copy > p {
  max-width: 720px;
  margin: 22px 0 0;
  color: #68726a;
  font-size: 16px;
  line-height: 1.75;
}

.technical-library-heading-card {
  min-width: 300px;
  max-width: 340px;
  padding: 19px;
  border: 1px solid rgba(8, 16, 163, 0.09);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 19px 46px rgba(34, 66, 36, 0.08);
  display: flex;
  align-items: center;
  gap: 14px;
}

.technical-library-heading-icon {
  width: 52px;
  height: 52px;
  border-radius: 17px;
  color: #ffffff;
  background: linear-gradient(135deg, #101aa1, #2c45c8);
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.technical-library-heading-card strong,
.technical-library-heading-card div > span {
  display: block;
}

.technical-library-heading-card strong {
  color: var(--blue);
  font-size: 14px;
}

.technical-library-heading-card div > span {
  margin-top: 4px;
  color: #747e76;
  font-size: 10px;
  line-height: 1.45;
}

/* Pesquisa e filtros */

.technical-library-toolbar {
  margin-bottom: 24px;
  padding: 17px;
  border: 1px solid rgba(8, 16, 163, 0.08);
  border-radius: 23px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 44px rgba(34, 65, 37, 0.07);
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto auto;
  align-items: center;
  gap: 15px;
}

.technical-library-search {
  position: relative;
  min-width: 0;
}

.technical-library-search > i {
  position: absolute;
  top: 50%;
  left: 17px;
  color: #3d9d22;
  transform: translateY(-50%);
  pointer-events: none;
}

.technical-library-search input {
  width: 100%;
  min-height: 51px;
  padding: 0 51px 0 46px;
  border: 1px solid rgba(8, 16, 163, 0.09);
  border-radius: 16px;
  background: #f7f9f5;
  color: #2e362f;
  font: inherit;
  font-size: 12px;
  outline: none;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
}

.technical-library-search input:focus {
  border-color: rgba(99, 234, 36, 0.7);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(99, 234, 36, 0.11);
}

#technical-library-clear {
  position: absolute;
  top: 50%;
  right: 8px;
  width: 35px;
  height: 35px;
  padding: 0;
  border: 0;
  border-radius: 11px;
  background: transparent;
  color: #737d75;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
}

#technical-library-clear:hover {
  color: var(--blue);
  background: rgba(8, 16, 163, 0.07);
}

#technical-library-clear[hidden] {
  display: none;
}

.technical-library-filters {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.technical-library-filter {
  min-height: 37px;
  padding: 0 11px;
  border: 1px solid rgba(8, 16, 163, 0.08);
  border-radius: 12px;
  background: #f7f9f5;
  color: #677168;
  cursor: pointer;
  font: inherit;
  font-size: 8px;
  font-weight: 900;
  text-transform: uppercase;
  transition:
    color 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease;
}

.technical-library-filter:hover,
.technical-library-filter.active {
  border-color: rgba(99, 234, 36, 0.4);
  background: rgba(99, 234, 36, 0.12);
  color: #378d1e;
}

.technical-library-results {
  min-width: 125px;
  color: #6d776f;
  font-size: 9px;
  font-weight: 800;
  text-align: right;
}

/* Layout */

.technical-library-layout {
  display: grid;
  grid-template-columns: minmax(310px, 0.78fr) minmax(0, 1.72fr);
  align-items: start;
  gap: 22px;
}

/* Card principal */

.technical-library-featured {
  position: sticky;
  top: 105px;
  min-width: 0;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(99, 234, 36, 0.22);
  border-radius: 30px;
  background:
    radial-gradient(
      circle at top right,
      rgba(99, 234, 36, 0.21),
      transparent 36%
    ),
    linear-gradient(145deg, #09149d, #1729ad 57%, #175f3c);
  color: #ffffff;
  box-shadow:
    0 30px 72px rgba(8, 16, 120, 0.21),
    inset 0 1px 0 rgba(255, 255, 255, 0.13);
}

.technical-library-featured-top {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 13px;
}

.technical-library-featured-top > span {
  min-height: 32px;
  padding: 0 10px;
  border: 1px solid rgba(99, 234, 36, 0.24);
  border-radius: 999px;
  background: rgba(99, 234, 36, 0.1);
  color: #91f465;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 8px;
  font-weight: 900;
  text-transform: uppercase;
}

.technical-library-featured-top small {
  color: rgba(255, 255, 255, 0.4);
  font-size: 8px;
  font-weight: 800;
  text-transform: uppercase;
}

/* Pasta */

.technical-library-folder {
  position: relative;
  z-index: 2;
  width: 245px;
  height: 210px;
  margin: 48px auto 27px;
  filter: drop-shadow(0 24px 35px rgba(0, 0, 0, 0.23));
}

.technical-library-folder-back {
  position: absolute;
  top: 30px;
  left: 5px;
  right: 5px;
  bottom: 10px;
  border-radius: 22px;
  background: linear-gradient(135deg, #71ee3c, #3bac1a);
}

.technical-library-sheet {
  position: absolute;
  z-index: 2;
  top: 3px;
  width: 90px;
  height: 125px;
  border-radius: 12px;
  background: #ffffff;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 17px;
  font-size: 22px;
  transition: transform 0.45s ease;
}

.library-sheet-one {
  left: 29px;
  color: #3854bf;
  transform: rotate(-11deg);
}

.library-sheet-two {
  left: 77px;
  color: #3b971f;
  transform: translateY(-11px);
}

.library-sheet-three {
  right: 27px;
  color: #d14d43;
  transform: rotate(11deg);
}

.technical-library-folder-front {
  position: absolute;
  z-index: 4;
  left: 0;
  right: 0;
  bottom: 0;
  height: 145px;
  border-radius: 21px;
  background: linear-gradient(145deg, #74ef3f, #39ad17);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    0 18px 35px rgba(0, 0, 0, 0.17);
}

.technical-library-folder-front i {
  margin-bottom: 7px;
  font-size: 29px;
}

.technical-library-folder-front strong {
  font-size: 17px;
}

.technical-library-folder-front span {
  margin-top: 4px;
  font-size: 8px;
  font-weight: 900;
  text-transform: uppercase;
}

.technical-library-featured:hover .library-sheet-one {
  transform: translate(-7px, -10px) rotate(-15deg);
}

.technical-library-featured:hover .library-sheet-two {
  transform: translateY(-23px);
}

.technical-library-featured:hover .library-sheet-three {
  transform: translate(7px, -10px) rotate(15deg);
}

.technical-library-featured h3 {
  position: relative;
  z-index: 3;
  margin: 0 0 13px;
  color: #ffffff;
  font-size: 27px;
  font-weight: 900;
  line-height: 1.13;
  letter-spacing: -0.04em;
  text-transform: none;
}

.technical-library-featured > p {
  position: relative;
  z-index: 3;
  margin: 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: 12px;
  line-height: 1.7;
}

.technical-library-featured-list {
  position: relative;
  z-index: 3;
  margin-top: 21px;
  display: grid;
  gap: 10px;
}

.technical-library-featured-list span {
  color: rgba(255, 255, 255, 0.81);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 9px;
  font-weight: 700;
}

.technical-library-featured-list i {
  color: #7ced47;
}

.technical-library-featured > a {
  position: relative;
  z-index: 3;
  width: 100%;
  min-height: 49px;
  margin-top: 26px;
  padding: 0 14px;
  border-radius: 15px;
  background: #ffffff;
  color: #168b43;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-size: 9px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  transition:
    transform 0.3s ease,
    color 0.3s ease,
    background 0.3s ease;
}

.technical-library-featured > a:hover {
  color: #ffffff;
  background: #20a954;
  transform: translateY(-3px);
}

/* Cards */

.technical-library-content {
  min-width: 0;
}

.technical-library-grid-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 17px;
}

.technical-library-card {
  position: relative;
  min-width: 0;
  min-height: 330px;
  overflow: hidden;
  padding: 22px;
  border: 1px solid rgba(8, 16, 163, 0.09);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 18px 44px rgba(34, 67, 36, 0.07);
  display: flex;
  flex-direction: column;
  transition:
    transform 0.4s ease,
    border-color 0.4s ease,
    box-shadow 0.4s ease;
}

.technical-library-card:hover {
  transform: translateY(-8px);
  border-color: rgba(99, 234, 36, 0.38);
  box-shadow: 0 29px 64px rgba(40, 106, 28, 0.13);
}

.technical-library-card[hidden] {
  display: none;
}

.technical-library-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.technical-library-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  border: 1px solid rgba(8, 16, 163, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  background: #f4f7fa;
  color: #0a1c6a;
  transition:
    transform 0.3s ease,
    background 0.3s ease,
    color 0.3s ease;
}

.technical-library-card:hover .technical-library-card-icon {
  transform: translateY(-2px);
  background: #0a1c6a;
  color: #ffffff;
}

.library-icon-blue {
  color: #0a1c6a;
  background: rgba(10, 28, 106, 0.08);
}

.library-icon-purple {
  color: #243752;
  background: rgba(36, 55, 82, 0.08);
}

.library-icon-green {
  color: #18602b;
  background: rgba(24, 96, 43, 0.08);
}

.library-icon-orange {
  color: #0d4e5f;
  background: rgba(13, 78, 95, 0.08);
}

.library-icon-aa80 {
  color: #18602b;
  background: rgba(24, 96, 43, 0.08);
}

.library-icon-spr6 {
  color: #0a1c6a;
  background: rgba(10, 28, 106, 0.08);
}

.library-icon-tdcp {
  color: #0d4e5f;
  background: rgba(13, 78, 95, 0.08);
}

.technical-library-card-code {
  color: rgba(8, 16, 163, 0.28);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.technical-library-card-type {
  width: fit-content;
  min-height: 28px;
  margin-top: 20px;
  padding: 0 9px;
  border-radius: 999px;
  background: rgba(8, 16, 163, 0.055);
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  font-size: 8px;
  font-weight: 900;
  text-transform: uppercase;
}

.technical-library-card h3 {
  margin: 14px 0 9px;
  color: var(--blue);
  font-size: 19px;
  font-weight: 900;
  text-transform: none;
}

.technical-library-card > p {
  margin: 0;
  color: #69736b;
  font-size: 11px;
  line-height: 1.65;
}

.technical-library-card-tags {
  margin-top: 17px;
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
}

.technical-library-card-tags span {
  min-height: 28px;
  padding: 0 9px;
  border-radius: 999px;
  background: rgba(99, 234, 36, 0.09);
  color: #3a8725;
  display: inline-flex;
  align-items: center;
  font-size: 7px;
  font-weight: 900;
  text-transform: uppercase;
}

.technical-library-card > a {
  width: 100%;
  min-height: 45px;
  margin-top: auto;
  padding: 0 12px;
  border: 1px solid rgba(8, 16, 163, 0.1);
  border-radius: 14px;
  background: #f5f7ff;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 8px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  transition:
    transform 0.3s ease,
    color 0.3s ease,
    background 0.3s ease;
}

.technical-library-card > a:hover {
  color: #ffffff;
  background: var(--blue);
  transform: translateY(-3px);
}

/* Estado vazio */

.technical-library-empty {
  padding: 75px 25px;
  border: 1px solid rgba(8, 16, 163, 0.08);
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.94);
  text-align: center;
}

.technical-library-empty[hidden] {
  display: none;
}

.technical-library-empty > span {
  width: 70px;
  height: 70px;
  border-radius: 23px;
  background: rgba(8, 16, 163, 0.07);
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
}

.technical-library-empty h3 {
  margin: 20px 0 8px;
  color: var(--blue);
  font-size: 20px;
  text-transform: none;
}

.technical-library-empty p {
  margin: 0;
  color: #6e7870;
  font-size: 11px;
}

.technical-library-empty button {
  min-height: 44px;
  margin-top: 20px;
  padding: 0 16px;
  border: 0;
  border-radius: 13px;
  background: var(--blue);
  color: #ffffff;
  cursor: pointer;
  font: inherit;
  font-size: 8px;
  font-weight: 900;
  text-transform: uppercase;
}

/* Solicitação final */

.technical-library-request {
  margin-top: 24px;
  padding: 23px 25px;
  border: 1px solid rgba(8, 16, 163, 0.09);
  border-radius: 23px;
  background:
    linear-gradient(
      108deg,
      #f5f8ff,
      #ffffff 50%,
      #f3faed
    );
  box-shadow: 0 18px 45px rgba(34, 65, 37, 0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.technical-library-request-copy {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 15px;
}

.technical-library-request-copy > span {
  width: 51px;
  height: 51px;
  border-radius: 17px;
  color: #ffffff;
  background: linear-gradient(135deg, #101aa1, #2a43c8);
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
}

.technical-library-request-copy strong {
  color: var(--blue);
  font-size: 15px;
}

.technical-library-request-copy p {
  margin: 4px 0 0;
  color: #6e7870;
  font-size: 10px;
  line-height: 1.5;
}

.technical-library-request-actions {
  display: flex;
  gap: 9px;
  flex-shrink: 0;
}

.technical-library-request-actions a {
  min-height: 47px;
  padding: 0 14px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 8px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.technical-library-request-actions a:first-child {
  background: #20a954;
  color: #ffffff;
}

.technical-library-request-actions a:last-child {
  background: var(--blue);
  color: #ffffff;
}

.technical-library-disclaimer {
  margin-top: 14px;
  padding: 15px 17px;
  border: 1px solid rgba(218, 166, 25, 0.17);
  border-radius: 16px;
  background: rgba(236, 181, 30, 0.07);
  color: #75600e;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.technical-library-disclaimer i {
  margin-top: 4px;
  color: #bd8b0b;
}

.technical-library-disclaimer p {
  margin: 0;
  font-size: 9px;
  line-height: 1.6;
}

/* Responsividade */

@media (max-width: 1100px) {
  .technical-library-toolbar {
    grid-template-columns: 1fr;
  }

  .technical-library-results {
    text-align: left;
  }
}

@media (max-width: 1050px) {
  .technical-library-layout {
    grid-template-columns: 1fr;
  }

  .technical-library-featured {
    position: relative;
    top: auto;
  }
}

@media (max-width: 850px) {
  .technical-library-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 27px;
  }

  .technical-library-heading-card {
    min-width: 0;
    width: 100%;
    max-width: 430px;
  }

  .technical-library-request {
    align-items: flex-start;
    flex-direction: column;
  }

  .technical-library-request-actions {
    width: 100%;
  }

  .technical-library-request-actions a {
    flex: 1;
  }
}

@media (max-width: 680px) {
  .technical-library-heading h2 {
    font-size: 39px;
  }

  .technical-library-grid-cards {
    grid-template-columns: 1fr;
  }

  .technical-library-filters {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .technical-library-filter:first-child {
    grid-column: 1 / -1;
  }

  .technical-library-request-actions {
    flex-direction: column;
  }

  .technical-library-request-actions a {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .technical-library-heading h2 {
    font-size: 34px;
  }

  .technical-library-featured {
    padding: 22px;
    border-radius: 25px;
  }

  .technical-library-featured-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .technical-library-folder {
    transform: scale(0.87);
    margin-left: auto;
    margin-right: auto;
  }

  .technical-library-card {
    min-height: auto;
    padding: 20px;
  }

  .technical-library-card > a {
    margin-top: 22px;
  }

  .technical-library-request {
    padding: 20px;
  }

  .technical-library-request-copy {
    align-items: flex-start;
  }
}

@media (max-width: 360px) {
  .technical-library .container {
    width: min(100% - 22px, 1120px);
  }

  .technical-library-heading h2 {
    font-size: 31px;
  }

  .technical-library-filters {
    grid-template-columns: 1fr;
  }

  .technical-library-filter:first-child {
    grid-column: auto;
  }

  .technical-library-folder {
    transform: scale(0.76);
    margin-top: 27px;
    margin-bottom: 5px;
  }
}


/* =========================================================
   ETAPA 16 — BUSCA GLOBAL INTELIGENTE
========================================================= */

/* Botão do header */

.global-search-trigger {
  min-height: 43px;
  padding: 0 12px;
  border: 1px solid rgba(8, 16, 163, 0.09);
  border-radius: 13px;
  background: rgba(8, 16, 163, 0.045);
  color: var(--blue);
  cursor: pointer;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font: inherit;
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
  transition:
    transform 0.3s ease,
    color 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease;
}

.global-search-trigger:hover {
  border-color: rgba(99, 234, 36, 0.38);
  background: rgba(99, 234, 36, 0.11);
  color: #368f1d;
  transform: translateY(-2px);
}

.global-search-trigger > i {
  color: #3c9f21;
}

.global-search-trigger kbd {
  min-height: 24px;
  padding: 0 7px;
  border: 1px solid rgba(8, 16, 163, 0.1);
  border-radius: 7px;
  background: #ffffff;
  color: #69736b;
  display: inline-flex;
  align-items: center;
  font-family: inherit;
  font-size: 7px;
  box-shadow: 0 2px 0 rgba(8, 16, 163, 0.08);
}

/* Overlay */

.global-search-overlay {
  position: fixed;
  z-index: 10000;
  inset: 0;
  padding: 30px;
  background: rgba(3, 5, 28, 0.74);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow-y: auto;
  backdrop-filter: blur(13px);
  -webkit-backdrop-filter: blur(13px);
}

.global-search-overlay[hidden] {
  display: none;
}

.global-search-dialog {
  width: min(820px, 100%);
  max-height: calc(100vh - 60px);
  margin-top: 45px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 29px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow:
    0 45px 110px rgba(0, 0, 0, 0.37),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  display: flex;
  flex-direction: column;
  animation: globalSearchEnter 0.28s ease;
}

@keyframes globalSearchEnter {
  from {
    opacity: 0;
    transform: translateY(-18px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Cabeçalho */

.global-search-header {
  padding: 20px 22px;
  border-bottom: 1px solid rgba(8, 16, 163, 0.07);
  background:
    radial-gradient(
      circle at top right,
      rgba(99, 234, 36, 0.13),
      transparent 42%
    ),
    #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.global-search-heading {
  display: flex;
  align-items: center;
  gap: 13px;
}

.global-search-heading-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  color: #ffffff;
  background: linear-gradient(135deg, #63ea24, #38aa18);
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 12px 27px rgba(61, 174, 29, 0.22);
}

.global-search-heading div > span {
  color: #3a9620;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.global-search-heading h2 {
  margin: 3px 0 0;
  color: var(--blue);
  font-size: 19px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: none;
}

.global-search-close {
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(8, 16, 163, 0.09);
  border-radius: 14px;
  background: #f6f8f4;
  color: var(--blue);
  cursor: pointer;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.3s ease,
    color 0.3s ease,
    background 0.3s ease;
}

.global-search-close:hover {
  color: #ffffff;
  background: var(--blue);
  transform: rotate(5deg);
}

/* Campo */

.global-search-field {
  position: relative;
  margin: 18px 20px 12px;
}

.global-search-field > i {
  position: absolute;
  top: 50%;
  left: 18px;
  color: #3d9d22;
  font-size: 17px;
  transform: translateY(-50%);
  pointer-events: none;
}

.global-search-field input {
  width: 100%;
  min-height: 59px;
  padding: 0 55px 0 50px;
  border: 1px solid rgba(8, 16, 163, 0.11);
  border-radius: 17px;
  background: #f7f9f5;
  color: #2d352f;
  font: inherit;
  font-size: 14px;
  outline: none;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
}

.global-search-field input:focus {
  border-color: rgba(99, 234, 36, 0.75);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(99, 234, 36, 0.11);
}

.global-search-field input::placeholder {
  color: #8a938c;
}

#global-search-clear {
  position: absolute;
  top: 50%;
  right: 10px;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: #727c74;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
}

#global-search-clear:hover {
  color: var(--blue);
  background: rgba(8, 16, 163, 0.07);
}

#global-search-clear[hidden] {
  display: none;
}

/* Sugestões */

.global-search-suggestions {
  padding: 0 20px 15px;
  display: flex;
  align-items: center;
  gap: 7px;
  flex-wrap: wrap;
}

.global-search-suggestions > span {
  margin-right: 3px;
  color: #747e76;
  font-size: 8px;
  font-weight: 900;
  text-transform: uppercase;
}

.global-search-suggestions button {
  min-height: 30px;
  padding: 0 9px;
  border: 1px solid rgba(99, 234, 36, 0.18);
  border-radius: 999px;
  background: rgba(99, 234, 36, 0.08);
  color: #398824;
  cursor: pointer;
  font: inherit;
  font-size: 8px;
  font-weight: 900;
  transition:
    color 0.3s ease,
    background 0.3s ease,
    transform 0.3s ease;
}

.global-search-suggestions button:hover {
  color: #ffffff;
  background: #42a923;
  transform: translateY(-2px);
}

/* Conteúdo */

.global-search-content {
  min-height: 250px;
  overflow-y: auto;
  padding: 0 20px 20px;
}

.global-search-status {
  padding: 12px 3px;
  border-top: 1px solid rgba(8, 16, 163, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.global-search-status > span {
  color: var(--blue);
  font-size: 10px;
  font-weight: 900;
}

.global-search-status small {
  color: #818a83;
  font-size: 8px;
}

/* Resultados */

.global-search-results {
  display: grid;
  gap: 8px;
}

.global-search-result {
  min-width: 0;
  padding: 13px;
  border: 1px solid rgba(8, 16, 163, 0.07);
  border-radius: 16px;
  background: #f8faf7;
  color: inherit;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) 35px;
  align-items: center;
  gap: 12px;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}

.global-search-result:hover,
.global-search-result.active {
  border-color: rgba(99, 234, 36, 0.42);
  background: #ffffff;
  box-shadow: 0 13px 32px rgba(42, 105, 31, 0.1);
  transform: translateX(4px);
}

.global-search-result-icon {
  width: 46px;
  height: 46px;
  border-radius: 15px;
  color: #388f1d;
  background: rgba(99, 234, 36, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
}

.global-search-result[data-category="Produto"]
  .global-search-result-icon {
  color: #3551bd;
  background: rgba(55, 82, 205, 0.11);
}

.global-search-result[data-category="Material técnico"]
  .global-search-result-icon {
  color: #c2631b;
  background: rgba(235, 117, 35, 0.11);
}

.global-search-result[data-category="Conteúdo"]
  .global-search-result-icon {
  color: #7e3fb3;
  background: rgba(143, 66, 198, 0.11);
}

.global-search-result-content {
  min-width: 0;
}

.global-search-result-category {
  color: #3b9621;
  display: block;
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.global-search-result-title {
  display: block;
  margin-top: 3px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.3;
}

.global-search-result-description {
  display: block;
  margin-top: 3px;
  color: #6e7870;
  font-size: 9px;
  line-height: 1.45;
}

.global-search-result-arrow {
  width: 35px;
  height: 35px;
  border-radius: 12px;
  background: rgba(8, 16, 163, 0.055);
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Estado vazio */

.global-search-empty {
  padding: 43px 20px;
  text-align: center;
}

.global-search-empty[hidden] {
  display: none;
}

.global-search-empty-icon {
  width: 67px;
  height: 67px;
  border-radius: 22px;
  background: rgba(8, 16, 163, 0.07);
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.global-search-empty h3 {
  margin: 18px 0 7px;
  color: var(--blue);
  font-size: 19px;
  text-transform: none;
}

.global-search-empty p {
  max-width: 430px;
  margin: 0 auto;
  color: #6e7870;
  font-size: 10px;
  line-height: 1.6;
}

.global-search-empty-actions {
  margin-top: 19px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  flex-wrap: wrap;
}

.global-search-empty-actions button,
.global-search-empty-actions a {
  min-height: 43px;
  padding: 0 14px;
  border: 0;
  border-radius: 13px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font: inherit;
  font-size: 8px;
  font-weight: 900;
  text-transform: uppercase;
}

.global-search-empty-actions button {
  color: #ffffff;
  background: var(--blue);
}

.global-search-empty-actions a {
  color: #ffffff;
  background: #20a954;
}

/* Rodapé do modal */

.global-search-footer {
  min-height: 57px;
  padding: 12px 20px;
  border-top: 1px solid rgba(8, 16, 163, 0.07);
  background: #f7f9f5;
  color: #737d75;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  font-size: 8px;
  font-weight: 800;
}

.global-search-footer > div {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.global-search-footer div > span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.global-search-footer kbd {
  min-width: 24px;
  min-height: 24px;
  padding: 0 5px;
  border: 1px solid rgba(8, 16, 163, 0.1);
  border-radius: 7px;
  background: #ffffff;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  font-size: 7px;
  box-shadow: 0 2px 0 rgba(8, 16, 163, 0.08);
}

/* Bloqueio do body */

body.global-search-open {
  overflow: hidden;
}

/* =========================================================
   RESPONSIVIDADE
========================================================= */

@media (max-width: 1050px) {
  .global-search-trigger span,
  .global-search-trigger kbd {
    display: none;
  }

  .global-search-trigger {
    width: 43px;
    padding: 0;
  }
}

@media (max-width: 680px) {
  .global-search-overlay {
    padding: 14px;
  }

  .global-search-dialog {
    max-height: calc(100vh - 28px);
    margin-top: 0;
    border-radius: 23px;
  }

  .global-search-header {
    padding: 16px;
  }

  .global-search-field {
    margin: 14px 15px 10px;
  }

  .global-search-suggestions {
    padding: 0 15px 13px;
  }

  .global-search-content {
    padding: 0 15px 15px;
  }

  .global-search-status {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }

  .global-search-footer > span {
    display: none;
  }
}

@media (max-width: 480px) {
  .global-search-heading-icon {
    width: 43px;
    height: 43px;
  }

  .global-search-heading h2 {
    font-size: 16px;
  }

  .global-search-field input {
    min-height: 54px;
    font-size: 12px;
  }

  .global-search-result {
    grid-template-columns: 42px minmax(0, 1fr) 31px;
    gap: 9px;
  }

  .global-search-result-icon {
    width: 42px;
    height: 42px;
  }

  .global-search-result-arrow {
    width: 31px;
    height: 31px;
  }

  .global-search-footer div > span:nth-child(2) {
    display: none;
  }
}

@media (max-width: 360px) {
  .global-search-overlay {
    padding: 8px;
  }

  .global-search-dialog {
    max-height: calc(100vh - 16px);
    border-radius: 19px;
  }

  .global-search-heading div > span {
    display: none;
  }

  .global-search-heading h2 {
    margin-top: 0;
    font-size: 15px;
  }

  .global-search-suggestions > span {
    width: 100%;
  }

  .global-search-result-description {
    display: none;
  }

  .global-search-footer div > span:nth-child(3) {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .global-search-dialog {
    animation: none;
  }
}


/* =========================================================
   ETAPA 18 — ACESSIBILIDADE, PERFORMANCE E SEGURANÇA
========================================================= */

/* Link para pular diretamente ao conteúdo */

.skip-to-content {
  position: fixed;
  z-index: 20000;
  top: 14px;
  left: 14px;
  max-width: calc(100% - 28px);
  min-height: 48px;
  padding: 0 17px;
  border: 2px solid #ffffff;
  border-radius: 14px;
  background: var(--blue);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 900;
  text-align: center;
  transform: translateY(-160%);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
  transition: transform 0.25s ease;
}

.skip-to-content:focus {
  transform: translateY(0);
}

/* Foco visível e consistente */

:where(
  a,
  button,
  input,
  textarea,
  select,
  summary,
  [tabindex]:not([tabindex="-1"])
):focus-visible {
  outline: 3px solid #63ea24;
  outline-offset: 4px;
  box-shadow:
    0 0 0 2px #ffffff,
    0 0 0 6px rgba(99, 234, 36, 0.42);
}

:where(
  a,
  button,
  input,
  textarea,
  select,
  summary
):focus:not(:focus-visible) {
  outline: none;
}

/* Compensação do header fixo ao abrir âncoras */

html {
  scroll-padding-top: 115px;
}

main section[id],
footer[id],
[id="main-content"] {
  scroll-margin-top: 115px;
}

/* Item ativo do menu */

.main-nav a[aria-current="page"],
.main-nav a[aria-current="location"] {
  color: var(--blue);
}

.main-nav a[aria-current="page"]::after,
.main-nav a[aria-current="location"]::after {
  transform: scaleX(1);
  opacity: 1;
}

/* Campos e botões desabilitados */

button:disabled,
input:disabled,
select:disabled,
textarea:disabled {
  cursor: not-allowed;
  opacity: 0.58;
}

/* Evita seleção acidental em ícones decorativos */

.fa-solid,
.fa-regular,
.fa-brands {
  -webkit-user-select: none;
  user-select: none;
}

/* Melhor quebra de textos extensos */

a,
button,
strong,
span,
p,
address {
  overflow-wrap: break-word;
}

/* Mídia responsiva */

img,
svg,
video,
iframe {
  max-width: 100%;
}

iframe {
  border: 0;
}

/* Busca global com foco preso ao modal */

.global-search-dialog:focus {
  outline: none;
}

/* Rolagem mais confortável */

.global-search-content,
.product-modal-content,
.main-nav {
  overscroll-behavior: contain;
}

/* Estado ativo do botão de pesquisa */

.global-search-trigger[aria-expanded="true"] {
  border-color: rgba(99, 234, 36, 0.5);
  background: rgba(99, 234, 36, 0.13);
  color: #34891c;
}

/* Contraste aprimorado de textos pequenos */

.footer-legal-copy > span,
.footer-operation small,
.footer-address div > span {
  color: rgba(255, 255, 255, 0.58);
}

/* Navegação apenas por teclado */

body.keyboard-navigation
  :where(
    a,
    button,
    input,
    textarea,
    select,
    summary
  ):focus {
  outline: 3px solid #63ea24;
  outline-offset: 4px;
}

/* Movimento reduzido global */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto !important;
  }

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

  [data-aos] {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Alto contraste do sistema operacional */

@media (forced-colors: active) {
  a,
  button,
  input,
  textarea,
  select,
  summary {
    forced-color-adjust: auto;
  }

  .skip-to-content,
  .global-search-trigger,
  .footer-back-to-top {
    border: 2px solid ButtonText;
  }
}

/* Telas pequenas */

@media (max-width: 680px) {
  html {
    scroll-padding-top: 88px;
  }

  main section[id],
  footer[id],
  [id="main-content"] {
    scroll-margin-top: 88px;
  }

  .skip-to-content {
    right: 14px;
    width: auto;
  }
}



.footer-developer-name {
  cursor: default;
}


/* =========================================================
   LINK DESATIVADO DO MODAL
========================================================= */

.product-modal-primary[aria-disabled="true"] {
  pointer-events: none;
  cursor: not-allowed;
  opacity: 0.55;
}


/* =========================================================
   CORREÇÃO DEFINITIVA DO LOADER
========================================================= */

.page-loader {
  transition:
    opacity 0.45s ease,
    visibility 0.45s ease;
}

.page-loader.hidden,
.page-released .page-loader {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

/*
  Se a biblioteca AOS falhar, os elementos não permanecem
  invisíveis depois que a página for liberada.
*/
.page-released [data-aos]:not(.aos-animate) {
  opacity: 1;
  transform: none;
}

/*
  Garante que o conteúdo principal permaneça visível.
*/
.page-released main,
.page-released .site-header,
.page-released .site-footer {
  opacity: 1;
  visibility: visible;
}


/* =========================================================
   HEADER LIVITAL — VERSÃO DEFINITIVA
========================================================= */

:root {
  --livital-header-blue: #0810a3;
  --livital-header-navy: #07134f;
  --livital-header-green: #59d52a;
  --livital-header-text: #323a33;
}

/* =========================================================
   BARRA SUPERIOR
========================================================= */

.top-bar,
.header-topbar,
.site-topbar {
  position: relative !important;
  z-index: 1100;
  width: 100% !important;
  min-height: 35px !important;
  margin: 0 !important;
  padding: 0 24px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background:
    linear-gradient(
      100deg,
      #071b86 0%,
      #1019af 52%,
      #0b257d 100%
    ) !important;
  box-shadow: none !important;
  color: #ffffff;
  display: flex !important;
  align-items: center;
}

.top-bar .container,
.header-topbar .container,
.site-topbar .container {
  width: min(100%, 1540px) !important;
  min-height: 35px !important;
  margin: 0 auto !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 24px;
}

.top-bar a,
.top-bar span,
.header-topbar a,
.header-topbar span,
.site-topbar a,
.site-topbar span {
  color: rgba(255, 255, 255, 0.91) !important;
  font-size: 11px !important;
  font-weight: 750 !important;
  line-height: 1 !important;
  white-space: nowrap;
}

.top-bar i,
.header-topbar i,
.site-topbar i {
  color: var(--livital-header-green) !important;
}

.top-bar a:hover,
.header-topbar a:hover,
.site-topbar a:hover {
  color: #ffffff !important;
}

/* =========================================================
   HEADER PRINCIPAL
========================================================= */

.site-header {
  position: sticky !important;
  z-index: 1050 !important;
  top: 0 !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 10px 22px !important;
  border: 0 !important;
  background: rgba(247, 250, 246, 0.94) !important;
  box-shadow:
    0 1px 0 rgba(8, 16, 163, 0.06) !important;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition:
    padding 0.28s ease,
    background 0.28s ease,
    box-shadow 0.28s ease !important;
}

.site-header::before,
.site-header::after {
  display: none !important;
}

.site-header .container,
.site-header .header-container,
.site-header .header-inner {
  width: min(100%, 1540px) !important;
  min-height: 72px !important;
  margin: 0 auto !important;
  padding: 8px 12px 8px 18px !important;
  border: 1px solid rgba(8, 16, 163, 0.075) !important;
  border-radius: 22px !important;
  background: rgba(255, 255, 255, 0.985) !important;
  box-shadow:
    0 14px 40px rgba(16, 31, 82, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.96) !important;
  display: flex !important;
  align-items: center !important;
  gap: 11px !important;
  overflow: visible !important;
}

/* Estado compacto ao rolar */

.site-header.header-fixed,
.site-header.scrolled {
  padding-top: 7px !important;
  padding-bottom: 7px !important;
  background: rgba(247, 250, 246, 0.88) !important;
  box-shadow:
    0 12px 35px rgba(13, 28, 70, 0.08) !important;
}

.site-header.header-fixed .container,
.site-header.header-fixed .header-container,
.site-header.header-fixed .header-inner,
.site-header.scrolled .container,
.site-header.scrolled .header-container,
.site-header.scrolled .header-inner {
  min-height: 62px !important;
  border-radius: 18px !important;
  box-shadow:
    0 15px 38px rgba(13, 28, 70, 0.13) !important;
}

/* =========================================================
   LOGO
========================================================= */

.site-header .logo,
.site-header .site-logo,
.site-header .brand,
.site-header .header-logo {
  order: 1;
  min-width: 205px !important;
  flex: 0 0 205px !important;
  margin: 0 !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: flex-start;
}

.site-header .logo img,
.site-header .site-logo img,
.site-header .brand img,
.site-header .header-logo img {
  width: 192px !important;
  height: auto !important;
  max-height: 58px !important;
  margin: 0 !important;
  object-fit: contain;
  object-position: left center;
  filter: none !important;
  transform: none;
  transition:
    width 0.28s ease,
    transform 0.28s ease !important;
}

.site-header .logo:hover img,
.site-header .site-logo:hover img,
.site-header .brand:hover img,
.site-header .header-logo:hover img {
  transform: translateY(-2px) !important;
}

.site-header.header-fixed .logo img,
.site-header.header-fixed .site-logo img,
.site-header.header-fixed .brand img,
.site-header.header-fixed .header-logo img,
.site-header.scrolled .logo img,
.site-header.scrolled .site-logo img,
.site-header.scrolled .brand img,
.site-header.scrolled .header-logo img {
  width: 174px !important;
}

/* =========================================================
   MENU PRINCIPAL
========================================================= */

.main-nav {
  position: static !important;
  order: 2;
  min-width: 0 !important;
  width: auto !important;
  max-width: none !important;
  height: auto !important;
  margin: 0 0 0 auto !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  flex: 1 1 auto !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 1px !important;
  overflow: visible !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  pointer-events: auto !important;
}

.main-nav > a,
.main-nav .nav-link {
  position: relative !important;
  min-width: 0 !important;
  min-height: 44px !important;
  margin: 0 !important;
  padding: 0 clamp(7px, 0.65vw, 11px) !important;
  border: 0 !important;
  border-radius: 12px !important;
  background: transparent !important;
  color: var(--livital-header-text) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0 !important;
  flex: 0 0 auto !important;
  font-size: clamp(11px, 0.72vw, 13px) !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  letter-spacing: -0.015em !important;
  text-align: center;
  white-space: nowrap !important;
  transition:
    color 0.24s ease,
    background 0.24s ease,
    transform 0.24s ease !important;
}

.main-nav > a > i,
.main-nav .nav-link > i {
  display: none !important;
}

.main-nav > a::before,
.main-nav .nav-link::before {
  display: none !important;
}

.main-nav > a::after,
.main-nav .nav-link::after {
  content: "" !important;
  position: absolute !important;
  left: 50% !important;
  bottom: 5px !important;
  width: 18px !important;
  height: 3px !important;
  border-radius: 999px !important;
  background: var(--livital-header-green) !important;
  opacity: 0 !important;
  transform: translateX(-50%) scaleX(0.35) !important;
  transition:
    opacity 0.24s ease,
    transform 0.24s ease,
    width 0.24s ease !important;
}

.main-nav > a:hover,
.main-nav .nav-link:hover {
  color: var(--livital-header-blue) !important;
  background: rgba(89, 213, 42, 0.075) !important;
  transform: translateY(-1px) !important;
}

.main-nav > a:hover::after,
.main-nav .nav-link:hover::after,
.main-nav > a.active::after,
.main-nav .nav-link.active::after,
.main-nav > a[aria-current="location"]::after,
.main-nav .nav-link[aria-current="location"]::after {
  width: 27px !important;
  opacity: 1 !important;
  transform: translateX(-50%) scaleX(1) !important;
}

.main-nav > a.active,
.main-nav .nav-link.active,
.main-nav > a[aria-current="location"],
.main-nav .nav-link[aria-current="location"] {
  color: var(--livital-header-blue) !important;
  background:
    linear-gradient(
      145deg,
      rgba(89, 213, 42, 0.13),
      rgba(89, 213, 42, 0.045)
    ) !important;
}

/* =========================================================
   BUSCA
========================================================= */

.global-search-trigger {
  order: 3;
  width: 43px !important;
  min-width: 43px !important;
  height: 43px !important;
  min-height: 43px !important;
  margin: 0 0 0 7px !important;
  padding: 0 !important;
  border: 1px solid rgba(8, 16, 163, 0.11) !important;
  border-radius: 13px !important;
  background: #ffffff !important;
  color: var(--livital-header-blue) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex: 0 0 43px !important;
  box-shadow:
    0 7px 18px rgba(8, 16, 163, 0.07) !important;
  transition:
    color 0.24s ease,
    border-color 0.24s ease,
    background 0.24s ease,
    transform 0.24s ease !important;
}

.global-search-trigger > span,
.global-search-trigger > kbd,
.global-search-trigger::after {
  display: none !important;
}

.global-search-trigger > i {
  margin: 0 !important;
  color: currentColor !important;
  font-size: 15px !important;
}

.global-search-trigger:hover {
  border-color: rgba(89, 213, 42, 0.48) !important;
  background: rgba(89, 213, 42, 0.08) !important;
  color: #34991c !important;
  transform: translateY(-2px) !important;
}

/* =========================================================
   AÇÕES DO HEADER
========================================================= */

.header-actions,
.site-header-actions {
  order: 4;
  min-width: 110px !important;
  width: auto !important;
  margin: 0 !important;
  padding: 0 0 0 12px !important;
  border: 0 !important;
  border-left: 1px solid rgba(8, 16, 163, 0.1) !important;
  background: transparent !important;
  flex: 0 0 auto !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 8px !important;
}

.site-header a[href*="wa.me"],
.site-header a[href^="mailto:"] {
  width: 43px !important;
  min-width: 43px !important;
  height: 43px !important;
  min-height: 43px !important;
  margin: 0 !important;
  padding: 0 !important;
  border-radius: 13px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex: 0 0 43px !important;
  font-size: 0 !important;
  line-height: 1 !important;
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    background 0.24s ease !important;
}

.site-header a[href*="wa.me"] {
  border: 0 !important;
  background:
    linear-gradient(
      135deg,
      #2ab83b,
      #15944f 48%,
      #08298a
    ) !important;
  color: #ffffff !important;
  box-shadow:
    0 9px 22px rgba(20, 145, 72, 0.22) !important;
}

.site-header a[href^="mailto:"] {
  border: 1px solid rgba(89, 213, 42, 0.27) !important;
  background: rgba(89, 213, 42, 0.075) !important;
  color: #35991c !important;
  box-shadow: none !important;
}

.site-header a[href*="wa.me"] i,
.site-header a[href^="mailto:"] i {
  margin: 0 !important;
  font-size: 16px !important;
}

.site-header a[href*="wa.me"]:hover,
.site-header a[href^="mailto:"]:hover {
  transform: translateY(-2px) !important;
}

.site-header a[href^="mailto:"]:hover {
  border-color: #3daa22 !important;
  background: #3daa22 !important;
  color: #ffffff !important;
}

/* =========================================================
   MENU MOBILE
========================================================= */

.menu-toggle {
  order: 5;
  width: 43px !important;
  min-width: 43px !important;
  height: 43px !important;
  min-height: 43px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 1px solid rgba(8, 16, 163, 0.11) !important;
  border-radius: 13px !important;
  background: #ffffff !important;
  color: var(--livital-header-blue) !important;
  box-shadow:
    0 7px 18px rgba(8, 16, 163, 0.07) !important;
  align-items: center !important;
  justify-content: center !important;
}

/* =========================================================
   NOTEBOOK
========================================================= */

@media (max-width: 1370px) and (min-width: 1121px) {
  .site-header {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }

  .site-header .container,
  .site-header .header-container,
  .site-header .header-inner {
    padding-left: 13px !important;
    padding-right: 9px !important;
    gap: 7px !important;
  }

  .site-header .logo,
  .site-header .site-logo,
  .site-header .brand,
  .site-header .header-logo {
    min-width: 168px !important;
    flex-basis: 168px !important;
  }

  .site-header .logo img,
  .site-header .site-logo img,
  .site-header .brand img,
  .site-header .header-logo img {
    width: 158px !important;
  }

  .main-nav > a,
  .main-nav .nav-link {
    padding-left: 6px !important;
    padding-right: 6px !important;
    font-size: 10px !important;
  }

  .global-search-trigger {
    margin-left: 3px !important;
  }
}

/* =========================================================
   TABLET E CELULAR
========================================================= */

@media (max-width: 1120px) {
  .top-bar,
  .header-topbar,
  .site-topbar {
    display: none !important;
  }

  .site-header {
    padding: 8px 10px !important;
  }

  .site-header .container,
  .site-header .header-container,
  .site-header .header-inner {
    min-height: 62px !important;
    padding: 7px 8px 7px 13px !important;
    border-radius: 18px !important;
    gap: 8px !important;
  }

  .site-header .logo,
  .site-header .site-logo,
  .site-header .brand,
  .site-header .header-logo {
    min-width: 0 !important;
    flex: 1 1 auto !important;
  }

  .site-header .logo img,
  .site-header .site-logo img,
  .site-header .brand img,
  .site-header .header-logo img {
    width: clamp(145px, 25vw, 185px) !important;
  }

  .main-nav {
    position: fixed !important;
    z-index: 1200 !important;
    top: 78px !important;
    left: 10px !important;
    right: 10px !important;
    width: auto !important;
    max-height: calc(100vh - 90px) !important;
    margin: 0 !important;
    padding: 12px !important;
    border: 1px solid rgba(8, 16, 163, 0.09) !important;
    border-radius: 20px !important;
    background: rgba(255, 255, 255, 0.985) !important;
    box-shadow:
      0 28px 70px rgba(8, 18, 65, 0.22) !important;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 7px !important;
    overflow-y: auto !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(-12px) scale(0.98) !important;
    pointer-events: none !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition:
      opacity 0.27s ease,
      visibility 0.27s ease,
      transform 0.27s ease !important;
  }

  .main-nav.open,
  .main-nav.active {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) scale(1) !important;
    pointer-events: auto !important;
  }

  .main-nav > a,
  .main-nav .nav-link {
    min-height: 52px !important;
    padding: 0 13px !important;
    border: 1px solid rgba(8, 16, 163, 0.055) !important;
    border-radius: 13px !important;
    background: #f7f9f5 !important;
    justify-content: flex-start !important;
    gap: 10px !important;
    font-size: 11px !important;
  }

  .main-nav > a > i,
  .main-nav .nav-link > i {
    width: 29px !important;
    height: 29px !important;
    border-radius: 9px !important;
    background: rgba(89, 213, 42, 0.1) !important;
    color: #35981d !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
  }

  .main-nav > a::after,
  .main-nav .nav-link::after {
    display: none !important;
  }

  .header-actions,
  .site-header-actions {
    min-width: auto !important;
    padding-left: 0 !important;
    border-left: 0 !important;
  }

  .menu-toggle {
    display: inline-flex !important;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: 6px !important;
  }

  .site-header .container,
  .site-header .header-container,
  .site-header .header-inner {
    min-height: 56px !important;
    padding-left: 10px !important;
    padding-right: 6px !important;
    border-radius: 16px !important;
  }

  .site-header .logo img,
  .site-header .site-logo img,
  .site-header .brand img,
  .site-header .header-logo img {
    width: clamp(125px, 40vw, 160px) !important;
    max-height: 47px !important;
  }

  .global-search-trigger,
  .site-header a[href*="wa.me"],
  .site-header a[href^="mailto:"],
  .menu-toggle {
    width: 39px !important;
    min-width: 39px !important;
    height: 39px !important;
    min-height: 39px !important;
    flex-basis: 39px !important;
    border-radius: 12px !important;
  }

  .site-header a[href^="mailto:"] {
    display: none !important;
  }

  .main-nav {
    top: 69px !important;
    left: 6px !important;
    right: 6px !important;
    max-height: calc(100vh - 78px) !important;
    grid-template-columns: 1fr !important;
    border-radius: 17px !important;
  }
}

@media (max-width: 390px) {
  .site-header .logo img,
  .site-header .site-logo img,
  .site-header .brand img,
  .site-header .header-logo img {
    width: 116px !important;
  }

  .global-search-trigger {
    display: none !important;
  }
}

/* =========================================================
   PROTEÇÃO DE LAYOUT
========================================================= */

html,
body {
  max-width: 100%;
  overflow-x: clip;
}

.site-header,
.site-header *,
.top-bar,
.top-bar *,
.header-topbar,
.header-topbar *,
.site-topbar,
.site-topbar * {
  box-sizing: border-box;
}

@media (prefers-reduced-motion: reduce) {
  .site-header,
  .main-nav,
  .main-nav a,
  .global-search-trigger,
  .menu-toggle {
    transition-duration: 0.01ms !important;
  }
}


/* =========================================================
   HEADER LIVITAL V2 — ISOLADO
========================================================= */

:root {
  --header-v2-blue: #071c86;
  --header-v2-navy: #061344;
  --header-v2-green: #59d52b;
  --header-v2-text: #2f3731;
  --header-v2-muted: #687169;
  --header-v2-border: rgba(7, 28, 134, 0.09);
}

/* =========================================================
   BARRA SUPERIOR
========================================================= */

.livital-topbar-v2 {
  position: relative;
  z-index: 1002;
  width: 100%;
  min-height: 36px;
  padding: 0 24px;
  background:
    linear-gradient(
      100deg,
      #061b7c 0%,
      #111ca9 52%,
      #0a426c 100%
    );
  color: #ffffff;
}

.livital-topbar-v2__inner {
  width: min(100%, 1520px);
  min-height: 36px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.livital-topbar-v2__contacts {
  display: flex;
  align-items: center;
  gap: 25px;
}

.livital-topbar-v2 a,
.livital-topbar-v2__message {
  min-height: 36px;
  color: rgba(255, 255, 255, 0.88);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 750;
  line-height: 1;
  white-space: nowrap;
}

.livital-topbar-v2 i {
  color: var(--header-v2-green);
  font-size: 12px;
}

.livital-topbar-v2 a:hover {
  color: #ffffff;
}

/* =========================================================
   HEADER PRINCIPAL
========================================================= */

#site-header-v2 {
  position: sticky !important;
  z-index: 1000 !important;
  top: 0 !important;
  left: auto !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 9px 20px !important;
  border: 0 !important;
  background: rgba(247, 250, 246, 0.95) !important;
  box-shadow:
    0 1px 0 rgba(7, 28, 134, 0.055) !important;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transform: none !important;
}

#site-header-v2::before,
#site-header-v2::after {
  display: none !important;
}

#site-header-v2.livital-header-v2.header-fixed,
#site-header-v2.livital-header-v2.scrolled {
  position: sticky !important;
  top: 0 !important;
  left: auto !important;
  padding: 7px 20px !important;
  background: rgba(247, 250, 246, 0.91) !important;
  transform: none !important;
}

.livital-header-v2__inner {
  width: min(100%, 1560px) !important;
  min-height: 74px !important;
  margin: 0 auto !important;
  padding: 8px 14px 8px 18px !important;
  border: 1px solid var(--header-v2-border) !important;
  border-radius: 22px !important;
  background: rgba(255, 255, 255, 0.985) !important;
  box-shadow:
    0 14px 42px rgba(14, 30, 76, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.96) !important;
  display: grid !important;
  grid-template-columns:
    auto
    minmax(0, 1fr)
    auto !important;
  align-items: center !important;
  gap: clamp(12px, 1.8vw, 28px) !important;
  overflow: visible !important;
}

/* =========================================================
   MARCA & LOGO
========================================================= */

.livital-header-v2__brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: clamp(12px, 1.4vw, 22px);
  flex-shrink: 0;
}

.livital-header-v2__logo {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  padding: 4px 6px;
  border-radius: 14px;
}

.livital-header-v2__logo::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.65),
    transparent
  );
  transform: skewX(-25deg);
  pointer-events: none;
  transition: none;
}

.livital-header-v2__logo:hover::after {
  left: 140%;
  transition: left 0.75s ease-in-out;
}

.livital-header-v2__logo img {
  width: min(100%, 270px) !important;
  height: auto !important;
  max-height: 74px !important;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 4px 14px rgba(7, 28, 134, 0.09));
  transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1), filter 0.32s ease;
}

.livital-header-v2__logo:hover img {
  transform: translateY(-2px) scale(1.03);
  filter: drop-shadow(0 8px 22px rgba(7, 28, 134, 0.16));
}

/* =========================================================
   SELO ISO 9001 HEADER
========================================================= */

.livital-header-v2__iso-badge {
  display: inline-flex !important;
  align-items: center !important;
  padding: 3px 8px !important;
  background: #ffffff !important;
  border: 1px solid rgba(7, 28, 134, 0.16) !important;
  border-radius: 10px !important;
  box-shadow: 0 2px 8px rgba(7, 28, 134, 0.05) !important;
  flex-shrink: 0 !important;
  white-space: nowrap !important;
  cursor: default;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease !important;
}

.iso-badge-official-img {
  height: 42px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.12));
  transition: transform 0.25s ease;
}

.footer-iso-official {
  height: 60px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.25));
}

/* ISO badge display preserved */

.livital-header-v2__iso-badge:hover {
  transform: translateY(-1px) !important;
  border-color: rgba(89, 213, 43, 0.6) !important;
  box-shadow: 0 4px 16px rgba(89, 213, 43, 0.18) !important;
}

.iso-badge-shield {
  width: 24px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.iso-badge-shield svg {
  width: 100%;
  height: 100%;
  display: block;
}

.livital-header-v2__iso-badge .iso-badge-text {
  display: flex !important;
  flex-direction: column !important;
  line-height: 1.1 !important;
  text-align: left !important;
  white-space: nowrap !important;
  flex-shrink: 0 !important;
}

.livital-header-v2__iso-badge .iso-badge-text strong {
  font-family: "Alexandria", sans-serif !important;
  font-size: 11.5px !important;
  font-weight: 900 !important;
  letter-spacing: 0.04em !important;
  color: #071c86 !important;
  line-height: 1.1 !important;
  white-space: nowrap !important;
}

.livital-header-v2__iso-badge .iso-badge-text span {
  font-family: "Alexandria", sans-serif !important;
  font-size: 8px !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
  color: #27a812 !important;
  line-height: 1.1 !important;
  white-space: nowrap !important;
}

.iso-badge-sep {
  width: 1px !important;
  height: 22px !important;
  background: rgba(7, 28, 134, 0.18) !important;
  display: block !important;
  margin: 0 2px !important;
  flex-shrink: 0 !important;
}

.iso-badge-certifier {
  height: 20px !important;
  width: auto !important;
  object-fit: contain !important;
  display: block !important;
  flex-shrink: 0 !important;
  filter: drop-shadow(0 1px 2px rgba(7, 28, 134, 0.08));
}

/* =========================================================
   NAVEGAÇÃO
========================================================= */

#site-header-v2 .livital-header-v2__nav {
  position: static !important;
  width: auto !important;
  min-width: 0 !important;
  height: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: clamp(3px, 0.5vw, 10px) !important;
  overflow: visible !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  pointer-events: auto !important;
}

#site-header-v2 .livital-header-v2__nav .nav-link {
  position: relative !important;
  min-width: 0 !important;
  min-height: 44px !important;
  margin: 0 !important;
  padding: 0 clamp(10px, 0.9vw, 16px) !important;
  border: 0 !important;
  border-radius: 12px !important;
  background: transparent !important;
  color: var(--header-v2-text) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0 !important;
  flex: 0 0 auto !important;
  font-size: clamp(12.5px, 0.85vw, 14.5px) !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  letter-spacing: -0.015em;
  text-align: center;
  white-space: nowrap !important;
  box-shadow: none !important;
  transform: none;
  transition:
    color 0.25s ease,
    background 0.25s ease,
    transform 0.25s ease !important;
}

#site-header-v2 .livital-header-v2__nav .nav-link > i {
  display: none !important;
}

#site-header-v2 .livital-header-v2__nav .nav-link::before {
  display: none !important;
}

#site-header-v2 .livital-header-v2__nav .nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 5px;
  width: 19px;
  height: 3px;
  border-radius: 999px;
  background: var(--header-v2-green);
  opacity: 0;
  transform: translateX(-50%) scaleX(0.4);
  transition:
    width 0.24s ease,
    opacity 0.24s ease,
    transform 0.24s ease;
}

#site-header-v2 .livital-header-v2__nav .nav-link:hover {
  color: var(--header-v2-blue) !important;
  background: rgba(89, 213, 43, 0.09) !important;
  transform: translateY(-1px);
}

#site-header-v2 .livital-header-v2__nav .nav-link.active,
#site-header-v2
  .livital-header-v2__nav
  .nav-link[aria-current="location"] {
  color: var(--header-v2-blue) !important;
  background:
    linear-gradient(
      145deg,
      rgba(89, 213, 43, 0.16),
      rgba(89, 213, 43, 0.06)
    ) !important;
}

#site-header-v2
  .livital-header-v2__nav
  .nav-link:hover::after,
#site-header-v2
  .livital-header-v2__nav
  .nav-link.active::after,
#site-header-v2
  .livital-header-v2__nav
  .nav-link[aria-current="location"]::after {
  width: 28px;
  opacity: 1;
  transform: translateX(-50%) scaleX(1);
}

/* =========================================================
   AÇÕES
========================================================= */

.livital-header-v2__actions {
  padding-left: 14px;
  border-left: 1px solid rgba(7, 28, 134, 0.1);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

#site-header-v2 .livital-header-v2__search {
  width: 44px !important;
  min-width: 44px !important;
  height: 44px !important;
  min-height: 44px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 1px solid rgba(7, 28, 134, 0.12) !important;
  border-radius: 14px !important;
  background: #f7f9f5 !important;
  color: var(--header-v2-blue) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0 !important;
  cursor: pointer;
  transition:
    transform 0.24s ease,
    background 0.24s ease,
    border-color 0.24s ease,
    box-shadow 0.24s ease !important;
}

#site-header-v2 .livital-header-v2__search span,
#site-header-v2 .livital-header-v2__search kbd,
#site-header-v2 .livital-header-v2__search::after {
  display: none !important;
}

#site-header-v2 .livital-header-v2__search i {
  font-size: 15px !important;
  color: var(--header-v2-blue) !important;
  transition: transform 0.22s ease;
}

#site-header-v2 .livital-header-v2__search:hover {
  background: #ffffff !important;
  border-color: rgba(7, 28, 134, 0.25) !important;
  box-shadow: 0 4px 14px rgba(7, 28, 134, 0.12) !important;
  transform: translateY(-2px);
}

#site-header-v2 .livital-header-v2__contact {
  min-height: 45px !important;
  padding: 0 18px !important;
  border-radius: 14px !important;
  background: linear-gradient(135deg, #4edb27 0%, #2ba50f 100%) !important;
  color: #ffffff !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 9px !important;
  font-size: 13.5px !important;
  font-weight: 800 !important;
  letter-spacing: -0.01em;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 6px 18px rgba(78, 219, 39, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
  transition:
    transform 0.24s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.24s ease,
    filter 0.24s ease !important;
  position: relative;
  overflow: hidden;
}

.header-live-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  animation: liveBeaconPulse 1.8s infinite;
  flex-shrink: 0;
}

@keyframes liveBeaconPulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.8);
  }
  70% {
    transform: scale(1.15);
    box-shadow: 0 0 0 7px rgba(255, 255, 255, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

#site-header-v2 .livital-header-v2__contact i {
  font-size: 16px;
}

#site-header-v2 .livital-header-v2__contact:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 26px rgba(78, 219, 39, 0.45) !important;
  filter: brightness(1.05);
}

/* =========================================================
   BOTÃO MOBILE
========================================================= */

#site-header-v2 .livital-header-v2__toggle {
  width: 43px !important;
  min-width: 43px !important;
  height: 43px !important;
  min-height: 43px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 1px solid rgba(7, 28, 134, 0.11) !important;
  border-radius: 13px !important;
  background: #f7f9f5 !important;
  display: none !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 4.5px !important;
  cursor: pointer;
  transition: all 0.24s ease !important;
}

#site-header-v2 .livital-header-v2__toggle span {
  width: 17px !important;
  height: 2px !important;
  border-radius: 999px !important;
  background: var(--header-v2-blue) !important;
  transition: all 0.24s ease !important;
}

#site-header-v2
  .livital-header-v2__toggle.active
  span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg) !important;
}

#site-header-v2
  .livital-header-v2__toggle.active
  span:nth-child(2) {
  opacity: 0 !important;
  transform: scaleX(0) !important;
}

#site-header-v2
  .livital-header-v2__toggle.active
  span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg) !important;
}

/* =========================================================
   NOTEBOOK
========================================================= */

@media (max-width: 1380px) and (min-width: 1101px) {
  .livital-header-v2__inner {
    grid-template-columns:
      auto
      minmax(0, 1fr)
      auto !important;
    gap: 12px !important;
    padding-left: 14px !important;
  }

  .livital-header-v2__logo img {
    width: 205px !important;
    max-height: 58px !important;
  }

  .livital-header-v2__iso-badge {
    padding: 5px 9px;
  }

  .livital-header-v2__iso-badge .iso-badge-text strong {
    font-size: 10.5px;
  }

  .livital-header-v2__iso-badge .iso-badge-text span {
    font-size: 8px;
  }

  #site-header-v2 .livital-header-v2__nav .nav-link {
    padding-left: 8px !important;
    padding-right: 8px !important;
    font-size: 12px !important;
  }
}

/* =========================================================
   TABLET E MENU MOBILE
========================================================= */

@media (max-width: 1100px) {
  .livital-topbar-v2 {
    display: none;
  }

  #site-header-v2 {
    padding: 7px 9px !important;
  }

  .livital-header-v2__inner {
    min-height: 64px !important;
    padding: 7px 8px 7px 14px !important;
    border-radius: 18px !important;
    grid-template-columns:
      minmax(0, 1fr)
      auto !important;
    gap: 10px !important;
  }

  .livital-header-v2__brand {
    gap: 10px;
  }

  .livital-header-v2__logo img {
    width: clamp(155px, 26vw, 195px) !important;
    max-height: 52px !important;
  }

  .livital-header-v2__iso-badge {
    padding: 4px 10px 4px 8px !important;
    border-radius: 10px !important;
    gap: 7px !important;
  }

  .livital-header-v2__actions {
    padding-left: 0;
    border-left: 0;
  }

  #site-header-v2 .livital-header-v2__toggle {
    display: inline-flex !important;
  }

  #site-header-v2 .livital-header-v2__nav {
    position: fixed !important;
    z-index: 1200 !important;
    top: 77px !important;
    left: 9px !important;
    right: 9px !important;
    width: auto !important;
    max-height: calc(100vh - 88px) !important;
    padding: 12px !important;
    border: 1px solid rgba(7, 28, 134, 0.09) !important;
    border-radius: 20px !important;
    background: rgba(255, 255, 255, 0.988) !important;
    box-shadow:
      0 28px 70px rgba(7, 18, 65, 0.22) !important;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 7px !important;
    overflow-y: auto !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(-12px) scale(0.98) !important;
    transform-origin: top center;
    pointer-events: none !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition:
      opacity 0.27s ease,
      visibility 0.27s ease,
      transform 0.27s ease !important;
  }

  #site-header-v2 .livital-header-v2__nav.open,
  #site-header-v2 .livital-header-v2__nav.active {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) scale(1) !important;
    pointer-events: auto !important;
  }

  #site-header-v2 .livital-header-v2__nav .nav-link {
    min-height: 52px !important;
    padding: 0 13px !important;
    border: 1px solid rgba(7, 28, 134, 0.055) !important;
    border-radius: 13px !important;
    background: #f7f9f5 !important;
    justify-content: flex-start !important;
    gap: 10px !important;
    font-size: 13px !important;
  }

  #site-header-v2 .livital-header-v2__nav .nav-link > i {
    width: 29px !important;
    height: 29px !important;
    border-radius: 9px !important;
    background: rgba(89, 213, 43, 0.1) !important;
    color: #35981d !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0;
  }

  #site-header-v2
    .livital-header-v2__nav
    .nav-link::after {
    display: none;
  }
}

/* =========================================================
   CELULAR
========================================================= */

@media (max-width: 680px) {
  #site-header-v2 {
    padding: 6px !important;
  }

  .livital-header-v2__inner {
    min-height: 58px !important;
    padding: 6px 8px 6px 10px !important;
    border-radius: 16px !important;
  }

  .livital-header-v2__logo img {
    width: clamp(130px, 42vw, 175px) !important;
    max-height: 50px !important;
  }

  .livital-header-v2__iso-badge {
    padding: 4px 6px;
    gap: 5px;
  }

  .livital-header-v2__iso-badge .iso-badge-text span {
    display: none;
  }

  #site-header-v2 .livital-header-v2__search,
  #site-header-v2 .livital-header-v2__contact,
  #site-header-v2 .livital-header-v2__toggle {
    width: 39px !important;
    min-width: 39px !important;
    height: 39px !important;
    min-height: 39px !important;
    border-radius: 12px !important;
  }

  #site-header-v2 .livital-header-v2__contact {
    padding: 0 !important;
  }

  #site-header-v2 .livital-header-v2__contact span {
    display: none;
  }

  #site-header-v2 .livital-header-v2__nav {
    top: 68px !important;
    left: 6px !important;
    right: 6px !important;
    max-height: calc(100vh - 76px) !important;
    grid-template-columns: 1fr !important;
    border-radius: 17px !important;
  }
}

@media (max-width: 420px) {
  .livital-header-v2__iso-badge {
    display: none;
  }
}

@media (max-width: 390px) {
  #site-header-v2 .livital-header-v2__search {
    display: none !important;
  }

  .livital-header-v2__logo img {
    width: 118px !important;
  }
}

/* =========================================================
   PROTEÇÕES
========================================================= */

html,
body {
  max-width: 100%;
  overflow-x: clip;
}

.livital-topbar-v2,
.livital-topbar-v2 *,
#site-header-v2,
#site-header-v2 * {
  box-sizing: border-box;
}

@media (prefers-reduced-motion: reduce) {
  #site-header-v2,
  #site-header-v2 *,
  .livital-topbar-v2,
  .livital-topbar-v2 * {
    transition-duration: 0.01ms !important;
  }
}


/* =========================================================
   ESTADO COMPACTO DO HEADER V2
========================================================= */

#site-header-v2.header-compact {
  padding-top: 6px !important;
  padding-bottom: 6px !important;
  background: rgba(247, 250, 246, 0.9) !important;
}

#site-header-v2.header-compact .livital-header-v2__inner {
  min-height: 61px !important;
  border-radius: 17px !important;
  box-shadow:
    0 16px 40px rgba(14, 30, 76, 0.13) !important;
}

#site-header-v2.header-compact .livital-header-v2__logo img {
  width: min(100%, 178px) !important;
}


/* =========================================================
   ACABAMENTO PREMIUM HEADER V2
========================================================= */

/*
  Remove o fundo claro que envolve todo o header.
  O card interno continua garantindo legibilidade.
*/

#site-header-v2 {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
  background:
    linear-gradient(
      180deg,
      rgba(5, 18, 76, 0.11),
      rgba(5, 18, 76, 0.025)
    ) !important;
  box-shadow: none !important;
}

/*
  Card principal translúcido.
*/

.livital-header-v2__inner {
  position: relative;
  overflow: hidden !important;

  border:
    1px solid rgba(255, 255, 255, 0.58) !important;

  background:
    linear-gradient(
      118deg,
      rgba(255, 255, 255, 0.94) 0%,
      rgba(255, 255, 255, 0.87) 52%,
      rgba(244, 251, 241, 0.9) 100%
    ) !important;

  box-shadow:
    0 22px 60px rgba(4, 18, 75, 0.14),
    0 5px 16px rgba(4, 18, 75, 0.055),
    inset 0 1px 0 rgba(255, 255, 255, 0.96) !important;

  backdrop-filter: blur(24px) saturate(145%);
  -webkit-backdrop-filter: blur(24px) saturate(145%);
}

/*
  Linha superior de identidade visual.
*/

.livital-header-v2__inner::before {
  content: "";
  position: absolute;
  z-index: 3;
  top: 0;
  left: 24px;
  right: 24px;
  height: 2px;
  border-radius: 0 0 999px 999px;

  background:
    linear-gradient(
      90deg,
      transparent 0%,
      #1625aa 18%,
      #2866b7 43%,
      #58d52b 72%,
      transparent 100%
    );

  opacity: 0.8;
  pointer-events: none;
}

/*
  Brilho verde extremamente leve no lado direito.
*/

.livital-header-v2__inner::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: -110px;
  right: -80px;
  width: 310px;
  height: 220px;
  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(89, 213, 43, 0.12),
      transparent 68%
    );

  pointer-events: none;
}

/*
  Mantém o conteúdo acima dos efeitos decorativos.
*/

.livital-header-v2__logo,
.livital-header-v2__nav,
.livital-header-v2__actions {
  position: relative;
  z-index: 2;
}

/*
  Logo com presença um pouco melhor.
*/

.livital-header-v2__logo img {
  width: min(100%, 215px) !important;

  filter:
    drop-shadow(0 5px 12px rgba(6, 20, 82, 0.09)) !important;
}

/*
  Navegação mais elegante e compacta.
*/

#site-header-v2 .livital-header-v2__nav {
  padding: 3px !important;
  border-radius: 15px !important;

  background:
    rgba(247, 250, 246, 0.55) !important;

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.84) !important;
}

#site-header-v2 .livital-header-v2__nav .nav-link {
  min-height: 42px !important;
  border-radius: 11px !important;
}

#site-header-v2 .livital-header-v2__nav .nav-link:hover {
  background:
    linear-gradient(
      145deg,
      rgba(89, 213, 43, 0.12),
      rgba(89, 213, 43, 0.045)
    ) !important;
}

#site-header-v2 .livital-header-v2__nav .nav-link.active,
#site-header-v2
  .livital-header-v2__nav
  .nav-link[aria-current="location"] {
  background:
    linear-gradient(
      145deg,
      rgba(89, 213, 43, 0.17),
      rgba(89, 213, 43, 0.06)
    ) !important;

  box-shadow:
    0 8px 18px rgba(53, 145, 27, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.88) !important;
}

/*
  Ações mais integradas.
*/

.livital-header-v2__actions {
  padding-left: 14px;
  border-left:
    1px solid rgba(7, 28, 134, 0.09);
}

#site-header-v2 .livital-header-v2__search {
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.96),
      rgba(244, 247, 252, 0.92)
    ) !important;

  box-shadow:
    0 9px 22px rgba(7, 28, 134, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.95) !important;
}

#site-header-v2 .livital-header-v2__contact {
  min-width: 145px !important;

  background:
    linear-gradient(
      108deg,
      #42bf20 0%,
      #18914c 45%,
      #082a8c 100%
    ) !important;

  box-shadow:
    0 12px 27px rgba(20, 124, 74, 0.23),
    inset 0 1px 0 rgba(255, 255, 255, 0.24) !important;
}

/*
  Barra superior um pouco mais fina e sofisticada.
*/

.livital-topbar-v2 {
  min-height: 32px;

  background:
    linear-gradient(
      100deg,
      #071b7d 0%,
      #111da9 48%,
      #0b5565 100%
    );
}

.livital-topbar-v2__inner {
  min-height: 32px;
}

.livital-topbar-v2 a,
.livital-topbar-v2__message {
  min-height: 32px;
  font-size: 10px;
}

/*
  Estado ao rolar.
*/

#site-header-v2.header-compact {
  padding-top: 6px !important;
  padding-bottom: 6px !important;

  background:
    linear-gradient(
      180deg,
      rgba(5, 18, 76, 0.12),
      rgba(5, 18, 76, 0.025)
    ) !important;
}

#site-header-v2.header-compact .livital-header-v2__inner {
  background:
    linear-gradient(
      118deg,
      rgba(255, 255, 255, 0.965),
      rgba(248, 252, 247, 0.92)
    ) !important;

  box-shadow:
    0 20px 52px rgba(4, 18, 75, 0.17),
    inset 0 1px 0 rgba(255, 255, 255, 0.97) !important;
}

/*
  Notebook.
*/

@media (max-width: 1380px) and (min-width: 1101px) {
  .livital-header-v2__logo img {
    width: min(100%, 172px) !important;
  }

  #site-header-v2 .livital-header-v2__contact {
    min-width: 43px !important;
  }
}

/*
  Tablet e celular.
*/

@media (max-width: 1100px) {
  #site-header-v2 {
    background:
      rgba(247, 250, 246, 0.86) !important;
  }

  .livital-header-v2__inner {
    background:
      rgba(255, 255, 255, 0.95) !important;
  }

  #site-header-v2 .livital-header-v2__nav {
    padding: 12px !important;
    background:
      rgba(255, 255, 255, 0.985) !important;
  }
}

@media (max-width: 680px) {
  .livital-header-v2__inner::before {
    left: 15px;
    right: 15px;
  }

  .livital-header-v2__logo img {
    filter:
      drop-shadow(0 3px 8px rgba(6, 20, 82, 0.08)) !important;
  }
}


/* =========================================================
   REFINAMENTO FINAL HEADER LIVITAL V2
========================================================= */

/* =========================================================
   BARRA SUPERIOR MAIS DISCRETA
========================================================= */

.livital-topbar-v2 {
  min-height: 28px !important;
  padding: 0 20px !important;

  background:
    linear-gradient(
      100deg,
      #081a82 0%,
      #151dac 50%,
      #0a426b 100%
    ) !important;

  box-shadow:
    inset 0 -1px 0 rgba(255, 255, 255, 0.08) !important;
}

.livital-topbar-v2__inner {
  min-height: 28px !important;
}

.livital-topbar-v2 a,
.livital-topbar-v2__message {
  min-height: 28px !important;
  font-size: 9px !important;
  font-weight: 800 !important;
}

.livital-topbar-v2 i {
  font-size: 10px !important;
}

/* =========================================================
   ENVOLTÓRIO DO HEADER
========================================================= */

#site-header-v2 {
  padding: 7px 15px 8px !important;

  background:
    linear-gradient(
      180deg,
      rgba(246, 249, 244, 0.94),
      rgba(246, 249, 244, 0.72)
    ) !important;
}

.livital-header-v2__inner {
  min-height: 68px !important;
  padding: 6px 12px 6px 20px !important;

  grid-template-columns:
    minmax(215px, 245px)
    minmax(0, 1fr)
    auto !important;

  gap: 14px !important;

  border:
    1px solid rgba(7, 28, 134, 0.075) !important;

  border-radius: 20px !important;

  background:
    linear-gradient(
      112deg,
      rgba(255, 255, 255, 0.985) 0%,
      rgba(255, 255, 255, 0.96) 58%,
      rgba(245, 251, 242, 0.94) 100%
    ) !important;

  box-shadow:
    0 14px 42px rgba(9, 25, 76, 0.105),
    0 3px 12px rgba(9, 25, 76, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.98) !important;
}

/*
  Linha superior mais curta e delicada
*/

.livital-header-v2__inner::before {
  left: 34px !important;
  right: 34px !important;
  height: 1px !important;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(24, 45, 174, 0.65) 30%,
      rgba(89, 213, 43, 0.75) 72%,
      transparent
    ) !important;
}

/*
  Retira o brilho verde grande do lado direito
*/

.livital-header-v2__inner::after {
  width: 220px !important;
  height: 160px !important;
  top: -95px !important;
  right: -55px !important;

  opacity: 0.55 !important;
}

/* =========================================================
   LOGO
========================================================= */

.livital-header-v2__logo {
  padding-right: 18px !important;
  border-right:
    1px solid rgba(7, 28, 134, 0.075) !important;
}

.livital-header-v2__logo img {
  width: clamp(180px, 14vw, 230px) !important;
  max-height: 58px !important;
  height: auto !important;
  object-fit: contain !important;

  filter:
    drop-shadow(0 4px 10px rgba(6, 20, 82, 0.075)) !important;
}

/* =========================================================
   NAVEGAÇÃO MAIS LEVE
========================================================= */

#site-header-v2 .livital-header-v2__nav {
  padding: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  gap: 1px !important;
}

#site-header-v2 .livital-header-v2__nav .nav-link {
  min-height: 40px !important;
  padding: 0 clamp(7px, 0.55vw, 10px) !important;
  border-radius: 10px !important;

  font-size:
    clamp(10px, 0.68vw, 12px) !important;
}

#site-header-v2 .livital-header-v2__nav .nav-link:hover {
  background:
    rgba(89, 213, 43, 0.075) !important;
}

#site-header-v2 .livital-header-v2__nav .nav-link.active,
#site-header-v2
  .livital-header-v2__nav
  .nav-link[aria-current="location"] {
  background:
    rgba(89, 213, 43, 0.105) !important;

  box-shadow: none !important;
}

#site-header-v2
  .livital-header-v2__nav
  .nav-link::after {
  bottom: 3px !important;
  height: 2px !important;
}

/* =========================================================
   AÇÕES AGRUPADAS
========================================================= */

.livital-header-v2__actions {
  min-height: 48px !important;
  padding: 0 0 0 12px !important;

  border-left:
    1px solid rgba(7, 28, 134, 0.08) !important;

  gap: 7px !important;
}

/*
  Busca mais discreta
*/

#site-header-v2 .livital-header-v2__search {
  width: 40px !important;
  min-width: 40px !important;
  height: 40px !important;
  min-height: 40px !important;

  border-radius: 12px !important;

  background:
    rgba(255, 255, 255, 0.86) !important;

  box-shadow:
    0 6px 17px rgba(7, 28, 134, 0.07) !important;
}

/*
  Botão de atendimento mais compacto e sofisticado
*/

#site-header-v2 .livital-header-v2__contact {
  min-width: 130px !important;
  min-height: 40px !important;
  padding: 0 14px !important;
  border-radius: 12px !important;

  background:
    linear-gradient(
      105deg,
      #42bc22 0%,
      #15944c 45%,
      #08298a 100%
    ) !important;

  font-size: 9px !important;

  box-shadow:
    0 9px 22px rgba(20, 124, 74, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.22) !important;
}

#site-header-v2 .livital-header-v2__contact i {
  font-size: 14px !important;
}

/* =========================================================
   ESTADO COMPACTO DURANTE O SCROLL
========================================================= */

#site-header-v2.header-compact {
  padding-top: 5px !important;
  padding-bottom: 5px !important;

  background:
    rgba(246, 249, 244, 0.89) !important;
}

#site-header-v2.header-compact .livital-header-v2__inner {
  min-height: 57px !important;
  border-radius: 16px !important;

  box-shadow:
    0 13px 35px rgba(9, 25, 76, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.98) !important;
}

#site-header-v2.header-compact .livital-header-v2__logo img {
  width: min(100%, 175px) !important;
  max-height: 48px !important;
}

#site-header-v2.header-compact
  .livital-header-v2__nav
  .nav-link {
  min-height: 38px !important;
}

/* =========================================================
   HERO MAIS PRÓXIMO DO HEADER
========================================================= */

#home,
.hero,
.hero-section,
.home-hero {
  scroll-margin-top: 88px !important;
}

/*
  Evita espaço artificial entre o header e o hero
*/

#site-header-v2 + main,
#site-header-v2 + .hero,
#site-header-v2 + section {
  margin-top: 0 !important;
}

/* =========================================================
   NOTEBOOK
========================================================= */

@media (max-width: 1380px) and (min-width: 1101px) {
  .livital-header-v2__inner {
    grid-template-columns:
      160px
      minmax(0, 1fr)
      auto !important;

    padding-left: 11px !important;
    gap: 7px !important;
  }

  .livital-header-v2__logo {
    padding-right: 10px !important;
  }

  .livital-header-v2__logo img {
    width: 150px !important;
  }

  #site-header-v2 .livital-header-v2__nav .nav-link {
    padding-left: 5px !important;
    padding-right: 5px !important;
    font-size: 9.5px !important;
  }

  #site-header-v2 .livital-header-v2__contact {
    min-width: 40px !important;
    width: 40px !important;
    padding: 0 !important;
  }

  #site-header-v2 .livital-header-v2__contact span {
    display: none !important;
  }
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {
  #site-header-v2 {
    padding: 6px 8px !important;
  }

  .livital-header-v2__inner {
    min-height: 59px !important;
    padding: 6px 7px 6px 12px !important;
  }

  .livital-header-v2__logo {
    padding-right: 0 !important;
    border-right: 0 !important;
  }

  #site-header-v2 .livital-header-v2__nav {
    padding: 12px !important;

    background:
      rgba(255, 255, 255, 0.985) !important;

    box-shadow:
      0 28px 70px rgba(7, 18, 65, 0.22) !important;
  }

  #site-header-v2 .livital-header-v2__nav .nav-link {
    min-height: 50px !important;
  }

  #site-header-v2 .livital-header-v2__contact {
    min-width: 40px !important;
    width: 40px !important;
    padding: 0 !important;
  }

  #site-header-v2 .livital-header-v2__contact span {
    display: none !important;
  }
}

/* =========================================================
   CELULAR
========================================================= */

@media (max-width: 680px) {
  .livital-header-v2__inner {
    min-height: 54px !important;
  }

  .livital-header-v2__logo img {
    width: clamp(122px, 38vw, 152px) !important;
  }

  #site-header-v2 .livital-header-v2__search,
  #site-header-v2 .livital-header-v2__contact,
  #site-header-v2 .livital-header-v2__toggle {
    width: 38px !important;
    min-width: 38px !important;
    height: 38px !important;
    min-height: 38px !important;
  }
}


/* =========================================================
   ESTABILIDADE DEFINITIVA DO HEADER V2
========================================================= */

/*
  Impede qualquer variação de posição ou dimensão.
*/

#site-header-v2,
#site-header-v2.header-compact,
#site-header-v2.header-fixed,
#site-header-v2.scrolled {
  position: sticky !important;
  z-index: 1000 !important;
  top: 0 !important;
  left: auto !important;
  right: auto !important;

  width: 100% !important;
  min-height: auto !important;

  margin: 0 !important;
  padding: 7px 15px 8px !important;

  border: 0 !important;

  background:
    linear-gradient(
      180deg,
      #f5f8f3 0%,
      #f1f6ef 100%
    ) !important;

  box-shadow:
    0 1px 0 rgba(7, 28, 134, 0.06) !important;

  transform: none !important;
  opacity: 1 !important;
  visibility: visible !important;

  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;

  transition: none !important;
}

/*
  O card interno permanece sempre igual.
*/

#site-header-v2 .livital-header-v2__inner,
#site-header-v2.header-compact .livital-header-v2__inner,
#site-header-v2.header-fixed .livital-header-v2__inner,
#site-header-v2.scrolled .livital-header-v2__inner {
  width: min(100%, 1540px) !important;
  min-height: 72px !important;

  margin: 0 auto !important;
  padding: 6px 12px 6px 18px !important;

  border:
    1px solid rgba(7, 28, 134, 0.075) !important;

  border-radius: 20px !important;

  background:
    linear-gradient(
      112deg,
      rgba(255, 255, 255, 0.99) 0%,
      rgba(255, 255, 255, 0.975) 58%,
      rgba(246, 251, 244, 0.97) 100%
    ) !important;

  box-shadow:
    0 13px 36px rgba(9, 25, 76, 0.1),
    0 3px 10px rgba(9, 25, 76, 0.035),
    inset 0 1px 0 #ffffff !important;

  transform: none !important;
  transition: none !important;
}

/*
  Logo com maior destaque e proporcionalidade.
*/

#site-header-v2 .livital-header-v2__logo img,
#site-header-v2.header-compact .livital-header-v2__logo img,
#site-header-v2.header-fixed .livital-header-v2__logo img,
#site-header-v2.scrolled .livital-header-v2__logo img {
  width: min(100%, 265px) !important;
  max-height: 68px !important;
  height: auto !important;
  object-fit: contain !important;

  transform: none;
  transition:
    transform 0.25s ease !important;
}

#site-header-v2 .livital-header-v2__logo:hover img {
  transform: translateY(-2px) !important;
}

/*
  Links não mudam de altura ao rolar.
*/

#site-header-v2 .livital-header-v2__nav .nav-link,
#site-header-v2.header-compact
  .livital-header-v2__nav
  .nav-link,
#site-header-v2.header-fixed
  .livital-header-v2__nav
  .nav-link,
#site-header-v2.scrolled
  .livital-header-v2__nav
  .nav-link {
  min-height: 40px !important;
}

/*
  Remove efeitos externos que criavam a impressão
  de o fundo aparecer e desaparecer.
*/

#site-header-v2::before,
#site-header-v2::after {
  display: none !important;
}

#site-header-v2 .livital-header-v2__inner::after {
  opacity: 0.35 !important;
}

/* =========================================================
   BARRA SUPERIOR ESTÁVEL
========================================================= */

.livital-topbar-v2 {
  position: relative !important;
  z-index: 1002 !important;

  width: 100% !important;
  min-height: 28px !important;

  margin: 0 !important;
  padding: 0 20px !important;

  background:
    linear-gradient(
      100deg,
      #071a80 0%,
      #151eae 50%,
      #0a426a 100%
    ) !important;

  box-shadow:
    inset 0 -1px 0 rgba(255, 255, 255, 0.08) !important;

  transform: none !important;
  transition: none !important;
}

.livital-topbar-v2__inner {
  min-height: 28px !important;
}

/* =========================================================
   HERO SEM SALTO OU ESPAÇO ARTIFICIAL
========================================================= */

/*
  O primeiro conteúdo começa imediatamente após o header.
*/

#site-header-v2 + main,
#site-header-v2 + section,
#site-header-v2 + .hero,
.livital-header-v2 + main,
.livital-header-v2 + section {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/*
  O hero mantém o próprio fundo e nunca herda
  transparência ou espaçamento do header.
*/

#home,
.hero,
.hero-section,
.home-hero {
  position: relative !important;
  z-index: 1 !important;

  margin-top: 0 !important;

  background-attachment: scroll !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}

/*
  Evita falha gráfica em alguns navegadores durante o scroll.
*/

#home::before,
#home::after,
.hero::before,
.hero::after,
.hero-section::before,
.hero-section::after {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {
  #site-header-v2,
  #site-header-v2.header-compact,
  #site-header-v2.header-fixed,
  #site-header-v2.scrolled {
    padding: 6px 8px !important;

    background:
      linear-gradient(
        180deg,
        #f5f8f3,
        #f1f6ef
      ) !important;
  }

  #site-header-v2 .livital-header-v2__inner,
  #site-header-v2.header-compact .livital-header-v2__inner,
  #site-header-v2.header-fixed .livital-header-v2__inner,
  #site-header-v2.scrolled .livital-header-v2__inner {
    min-height: 59px !important;
  }

  #site-header-v2 .livital-header-v2__logo img,
  #site-header-v2.header-compact .livital-header-v2__logo img,
  #site-header-v2.header-fixed .livital-header-v2__logo img,
  #site-header-v2.scrolled .livital-header-v2__logo img {
    width: clamp(145px, 25vw, 185px) !important;
  }
}

/* =========================================================
   CELULAR
========================================================= */

@media (max-width: 680px) {
  #site-header-v2,
  #site-header-v2.header-compact,
  #site-header-v2.header-fixed,
  #site-header-v2.scrolled {
    padding: 5px 6px !important;
  }

  #site-header-v2 .livital-header-v2__inner,
  #site-header-v2.header-compact .livital-header-v2__inner,
  #site-header-v2.header-fixed .livital-header-v2__inner,
  #site-header-v2.scrolled .livital-header-v2__inner {
    min-height: 54px !important;
    border-radius: 15px !important;
  }

  #site-header-v2 .livital-header-v2__logo img,
  #site-header-v2.header-compact .livital-header-v2__logo img,
  #site-header-v2.header-fixed .livital-header-v2__logo img,
  #site-header-v2.scrolled .livital-header-v2__logo img {
    width: clamp(122px, 38vw, 152px) !important;
    max-height: 46px !important;
  }
}

/* =========================================================
   ASSISTENTE TÉCNICO INTERATIVO DE PRODUTOS
========================================================= */

.tech-assistant-card {
  margin: 30px 0 45px 0;
  padding: 32px;
  border: 1px solid rgba(8, 16, 163, 0.12);
  border-radius: 24px;
  background: linear-gradient(145deg, #ffffff, #f7faf5);
  box-shadow: 0 20px 45px rgba(8, 16, 163, 0.06);
  position: relative;
  overflow: hidden;
}

.tech-assistant-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #0810a3, #63ea24, #0810a3);
}

.tech-assistant-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 28px auto;
}

.tech-assistant-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 20px;
  background: rgba(8, 16, 163, 0.08);
  color: #0810a3;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.tech-assistant-header h3 {
  font-family: "Alexandria", sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: #0810a3;
  margin-bottom: 8px;
  line-height: 1.3;
}

.tech-assistant-header p {
  color: #5d6760;
  font-size: 14px;
  margin: 0;
}

.assistant-options-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (max-width: 768px) {
  .assistant-options-grid {
    grid-template-columns: 1fr;
  }
}

.assistant-option-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border: 1px solid rgba(8, 16, 163, 0.1);
  border-radius: 16px;
  background: #ffffff;
  text-align: left;
  cursor: pointer;
  transition: all 0.25s ease;
  width: 100%;
}

.assistant-option-btn:hover {
  border-color: #63ea24;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(99, 234, 36, 0.15);
  background: #fbfdf9;
}

.assistant-option-btn .option-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(8, 16, 163, 0.06);
  color: #0810a3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  transition: all 0.25s ease;
}

.assistant-option-btn:hover .option-icon {
  background: #63ea24;
  color: #0810a3;
}

.assistant-option-btn .option-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.assistant-option-btn .option-text strong {
  font-size: 15px;
  color: #0810a3;
  font-weight: 700;
}

.assistant-option-btn .option-text span {
  font-size: 12px;
  color: #6d7770;
}

.assistant-option-btn .option-arrow {
  color: #a0aaa2;
  font-size: 14px;
  transition: transform 0.25s ease, color 0.25s ease;
}

.assistant-option-btn:hover .option-arrow {
  transform: translateX(4px);
  color: #0810a3;
}

/* Result Card */
.assistant-result-box {
  animation: fadeInAssistant 0.4s ease forwards;
}

@keyframes fadeInAssistant {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.result-card-inner {
  padding: 24px;
  border-radius: 18px;
  background: #ffffff;
  border: 1.5px solid #63ea24;
  box-shadow: 0 12px 35px rgba(99, 234, 36, 0.12);
}

.result-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(8, 16, 163, 0.08);
  flex-wrap: wrap;
  gap: 12px;
}

.result-kicker {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #278809;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.assistant-reset-btn {
  background: none;
  border: 1px solid rgba(8, 16, 163, 0.15);
  border-radius: 8px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  color: #0810a3;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}

.assistant-reset-btn:hover {
  background: rgba(8, 16, 163, 0.06);
  border-color: #0810a3;
}

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

.result-product-info {
  flex: 1;
  min-width: 280px;
}

.result-product-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(8, 16, 163, 0.08);
  color: #0810a3;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 8px;
}

.result-product-info h4 {
  font-family: "Alexandria", sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #0810a3;
  margin-bottom: 6px;
}

.result-product-info p {
  color: #4a544c;
  font-size: 14px;
  margin-bottom: 14px;
  line-height: 1.5;
}

.result-features-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.result-feature-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 14px;
  background: #f2f7f0;
  color: #2e3830;
  font-size: 12px;
  font-weight: 600;
}

.result-feature-tag i {
  color: #37b018;
  font-size: 11px;
}

.result-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 220px;
}

@media (max-width: 600px) {
  .result-actions {
    width: 100%;
  }
}

.assistant-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s ease;
  text-align: center;
}

.assistant-btn-primary {
  background: #0810a3;
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(8, 16, 163, 0.2);
}

.assistant-btn-primary:hover {
  background: #060c80;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(8, 16, 163, 0.3);
}

.assistant-btn-whatsapp {
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.25);
}

.assistant-btn-whatsapp:hover {
  background: #1ebc57;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(37, 211, 102, 0.35);
}

/* =========================================================
   BANNER DE CONSENTIMENTO DE COOKIES (LGPD)
========================================================= */

.lgpd-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 960px;
  margin: 0 auto;
  z-index: 9998;
  background: rgba(8, 16, 163, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 20px 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  color: #ffffff;
  transform: translateY(120%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: none;
}

.lgpd-banner.active {
  display: block;
  transform: translateY(0);
}

.lgpd-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.lgpd-text {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  min-width: 280px;
}

.lgpd-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(99, 234, 36, 0.18);
  color: #63ea24;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.lgpd-text strong {
  display: block;
  font-size: 15px;
  color: #ffffff;
  margin-bottom: 2px;
}

.lgpd-text p {
  font-size: 13px;
  color: #d1d8f5;
  margin: 0;
  line-height: 1.45;
}

.lgpd-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.lgpd-btn {
  padding: 10px 18px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
}

.lgpd-btn-primary {
  background: #63ea24;
  color: #0810a3;
  box-shadow: 0 4px 14px rgba(99, 234, 36, 0.3);
}

.lgpd-btn-primary:hover {
  background: #73f237;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(99, 234, 36, 0.45);
}

.lgpd-btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.lgpd-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.22);
}

@media (max-width: 600px) {
  .lgpd-banner {
    bottom: 12px;
    left: 12px;
    right: 12px;
    padding: 16px;
  }
  .lgpd-actions {
    width: 100%;
  }
  .lgpd-btn {
    flex: 1;
    text-align: center;
  }
}

/* =========================================================
   RESPONSIVIDADE COMPLETA E MENU HAMBÚRGUER (MOBILE & TABLET)
========================================================= */

@media (max-width: 1100px) {
  /* Botão Hambúrguer Visível */
  .menu-toggle,
  .livital-header-v2__toggle {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 5px !important;
    width: 44px !important;
    min-width: 44px !important;
    height: 44px !important;
    min-height: 44px !important;
    padding: 0 !important;
    border: 1.5px solid rgba(8, 16, 163, 0.15) !important;
    border-radius: 12px !important;
    background: #ffffff !important;
    cursor: pointer !important;
    z-index: 1300 !important;
    box-shadow: 0 4px 12px rgba(8, 16, 163, 0.08) !important;
  }

  .menu-toggle span,
  .livital-header-v2__toggle span {
    display: block !important;
    width: 20px !important;
    height: 2px !important;
    border-radius: 2px !important;
    background: #0810a3 !important;
    transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease !important;
  }

  /* Animação do X quando ativo */
  .menu-toggle.active span:nth-child(1),
  .livital-header-v2__toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg) !important;
    background: #0810a3 !important;
  }

  .menu-toggle.active span:nth-child(2),
  .livital-header-v2__toggle.active span:nth-child(2) {
    opacity: 0 !important;
  }

  .menu-toggle.active span:nth-child(3),
  .livital-header-v2__toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg) !important;
    background: #0810a3 !important;
  }

  /* Menu de Navegação Suspenso no Mobile */
  .main-nav,
  .livital-header-v2__nav {
    position: fixed !important;
    top: 80px !important;
    left: 14px !important;
    right: 14px !important;
    width: auto !important;
    max-height: calc(85vh) !important;
    padding: 16px !important;
    border-radius: 20px !important;
    border: 1.5px solid rgba(8, 16, 163, 0.12) !important;
    background: #ffffff !important;
    box-shadow: 0 20px 60px rgba(8, 16, 163, 0.22) !important;
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px !important;
    overflow-y: auto !important;
    z-index: 1250 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(-16px) scale(0.96) !important;
    pointer-events: none !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  }

  .main-nav.open,
  .main-nav.active,
  .livital-header-v2__nav.open,
  .livital-header-v2__nav.active {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) scale(1) !important;
    pointer-events: auto !important;
  }

  .main-nav .nav-link,
  .livital-header-v2__nav .nav-link {
    min-height: 48px !important;
    padding: 10px 14px !important;
    border-radius: 12px !important;
    background: #f7faf5 !important;
    border: 1px solid rgba(8, 16, 163, 0.08) !important;
    color: #0810a3 !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
  }

  .main-nav .nav-link > i,
  .livital-header-v2__nav .nav-link > i {
    color: #37aa18 !important;
    font-size: 14px !important;
  }

  .main-nav .nav-link:hover,
  .main-nav .nav-link.active,
  .livital-header-v2__nav .nav-link:hover,
  .livital-header-v2__nav .nav-link.active {
    background: rgba(99, 234, 36, 0.15) !important;
    border-color: #63ea24 !important;
    color: #0810a3 !important;
  }
}

@media (max-width: 680px) {
  .main-nav,
  .livital-header-v2__nav {
    grid-template-columns: 1fr !important;
    top: 72px !important;
  }

  .livital-topbar-v2 {
    display: none !important;
  }

  .livital-header-v2__search span,
  .livital-header-v2__search kbd,
  .livital-header-v2__contact span {
    display: none !important;
  }

  .livital-header-v2__contact {
    min-width: 40px !important;
    width: 40px !important;
    height: 40px !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
}

@media (max-width: 1100px) {
  .livital-header-v2__inner {
    overflow: visible !important;
  }

  .livital-header-v2__nav {
    position: fixed !important;
    top: 80px !important;
    left: 14px !important;
    right: 14px !important;
    width: auto !important;
    max-width: none !important;
    margin: 0 !important;
    box-sizing: border-box !important;
    transform-origin: top center !important;
  }
}

@media (max-width: 680px) {
  .livital-header-v2__nav {
    top: 72px !important;
    left: 6px !important;
    right: 6px !important;
  }
}

/* =========================================================
   CORREÇÃO DE SOBREPOSIÇÃO DOS CARDS FLUTUANTES SOBRE TEXTOS
========================================================= */

.hero-floating-card {
  pointer-events: none !important;
}

@media (max-width: 1400px) {
  .hero-floating-card,
  .hero-floating-card-one,
  .hero-floating-card-two {
    display: none !important;
  }
}

/* =========================================================
   SELETOR MULTILÍNGUE (i18n)
========================================================= */

.lang-selector {
  position: relative;
  display: inline-block;
}

.lang-btn-current {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.lang-btn-current:hover {
  background: rgba(255, 255, 255, 0.25);
}

.lang-btn-current i {
  font-size: 9px;
  transition: transform 0.2s ease;
}

.lang-selector.open .lang-btn-current i {
  transform: rotate(180deg);
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  width: 140px;
  background: #ffffff;
  border: 1px solid rgba(8, 16, 163, 0.12);
  border-radius: 12px;
  padding: 6px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  display: none;
  flex-direction: column;
  gap: 2px;
  z-index: 2000;
}

.lang-selector.open .lang-dropdown {
  display: flex;
  animation: langFadeIn 0.2s ease;
}

@keyframes langFadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 8px;
  background: transparent;
  border: none;
  color: #0810a3;
  font-size: 12px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s ease;
  width: 100%;
}

.lang-option:hover,
.lang-option.active {
  background: rgba(99, 234, 36, 0.15);
  color: #0810a3;
}

/* =========================================================
   BOTÃO VOLTAR AO TOPO (BACK TO TOP)
========================================================= */

.back-to-top-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #0810a3;
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 10px 25px rgba(8, 16, 163, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  z-index: 9990;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px) scale(0.9);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.back-to-top-btn.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.back-to-top-btn:hover {
  background: #63ea24;
  color: #0810a3;
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 14px 30px rgba(99, 234, 36, 0.45);
}

@media (max-width: 600px) {
  .back-to-top-btn {
    bottom: 20px;
    right: 18px;
    width: 42px;
    height: 42px;
    font-size: 16px;
  }
}




/* =======================================================
   ESTILOS ATUALIZADOS — FRONTPAGE, HEADER, MARÍTIMO & FOOTER SOCIAL
======================================================= */

/* Top Header links maiores */
#site-header-v2 .livital-header-v2__nav .nav-link,
.livital-header-v2__nav .nav-link {
  font-size: 1.08rem !important;
  font-weight: 600 !important;
  padding: 10px 18px !important;
  letter-spacing: -0.01em !important;
  transition: all 0.25s ease !important;
}

#site-header-v2 .livital-header-v2__nav .nav-link:hover,
#site-header-v2 .livital-header-v2__nav .nav-link.active {
  color: #63ea24 !important;
  transform: translateY(-1px);
}

/* Animação Marítima Global (Shanghai -> Brasil) */
.connection-route {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 32px;
}

.route-sea-line {
  position: absolute;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, rgba(99, 234, 36, 0.15), rgba(99, 234, 36, 0.9), rgba(99, 234, 36, 0.15));
  box-shadow: 0 0 10px rgba(99, 234, 36, 0.6);
  border-radius: 2px;
}

.cargo-ship-icon {
  position: relative;
  z-index: 2;
  font-size: 1.3rem;
  color: #63ea24;
  filter: drop-shadow(0 0 8px rgba(99, 234, 36, 0.85));
  animation: shipSailing 7s ease-in-out infinite alternate;
}

@keyframes shipSailing {
  0% {
    transform: translateX(-45px) translateY(0px) rotate(-1deg);
  }
  50% {
    transform: translateX(0px) translateY(-3px) rotate(1deg);
  }
  100% {
    transform: translateX(45px) translateY(0px) rotate(-1deg);
  }
}

/* Footer Social Networks Block */
.footer-social-links {
  margin-top: 22px;
}

.footer-social-title {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.footer-social-icons {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-social-icons a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.15rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.footer-social-icons a:hover {
  background: #63ea24;
  color: #0810a3;
  border-color: #63ea24;
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 6px 20px rgba(99, 234, 36, 0.4);
}

/* =======================================================
   ESTILOS DA SEÇÃO PORTFÓLIO COMPLETO LIVITAL
======================================================= */

.portfolio-section {
  position: relative;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.portfolio-heading {
  margin-bottom: 36px;
  text-align: center;
}

.portfolio-heading-content h2 {
  font-size: 2.2rem;
  color: #0f172a;
  margin: 10px 0 14px;
}

.portfolio-heading-content p {
  max-width: 760px;
  margin: 0 auto;
  color: #475569;
  font-size: 1.05rem;
}

/* Segment Tabs */
.portfolio-segment-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.portfolio-tab {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 50px;
  font-size: 0.98rem;
  font-weight: 600;
  color: #334155;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.portfolio-tab i {
  font-size: 1.1rem;
  color: #0810a3;

}

.portfolio-tab .tab-badge {
  font-size: 0.76rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 12px;
  background: #eff6ff;
  color: #1d4ed8;
}

.portfolio-tab .tab-badge.coming-soon {
  background: #f1f5f9;
  color: #64748b;

}

.portfolio-tab:hover {
  border-color: #0810a3;
  color: #0810a3;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(8, 16, 163, 0.1);
}

.portfolio-tab.active {
  background: linear-gradient(135deg, #0810a3 0%, #0d1bcf 100%);
  color: #ffffff;
  border-color: #0810a3;
  box-shadow: 0 8px 24px rgba(8, 16, 163, 0.25);
}

.portfolio-tab.active i {
  color: #63ea24;
}

.portfolio-tab.active .tab-badge {
  background: rgba(99, 234, 36, 0.25);
  color: #63ea24;
}

/* Controls: Search & Filter Pills */
.portfolio-controls {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 24px;
  margin-bottom: 36px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.portfolio-search-box {
  position: relative;
  margin-bottom: 20px;
}

.portfolio-search-box i.fa-magnifying-glass {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.1rem;
  color: #64748b;

}

.portfolio-search-box input {
  width: 100%;
  padding: 14px 44px 14px 48px;
  font-size: 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  background: #f8fafc;
  color: #0f172a;
  transition: all 0.25s ease;
  outline: none;
}

.portfolio-search-box input:focus {
  border-color: #0810a3;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(8, 16, 163, 0.1);
}

.portfolio-search-clear {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #94a3b8;
  font-size: 1.1rem;
  cursor: pointer;
  padding: 4px;
}

.portfolio-search-clear:hover {
  color: #0f172a;
}

.portfolio-group-filters {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.group-filter-pill {
  padding: 8px 16px;
  border-radius: 30px;
  background: #f1f5f9;
  border: 1px solid #cbd5e1;
  font-size: 0.88rem;
  font-weight: 600;
  color: #475569;
  cursor: pointer;
  transition: all 0.25s ease;
}

.group-filter-pill span {
  font-size: 0.78rem;
  opacity: 0.75;
}

.group-filter-pill:hover {
  background: #e2e8f0;
  color: #0f172a;
}

.group-filter-pill.active {
  background: #3ca312;
  color: #ffffff;
  border-color: #3ca312;
  box-shadow: 0 4px 12px rgba(60, 163, 18, 0.3);
}

/* Portfolio Group Block & List Layout */
.portfolio-group-block {
  margin-bottom: 40px;
}

.portfolio-group-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 12px;
  margin-bottom: 18px;
  border-bottom: 2px solid #e2e8f0;
}

.group-header-title {
  display: flex;
  align-items: center;
  gap: 12px;
}

.group-header-title i {
  font-size: 1.3rem;
  color: #3ca312;

}

.group-header-title h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: #0810a3;

  letter-spacing: -0.01em;
}

.group-count-badge {
  font-size: 0.82rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  background: #f1f5f9;
  color: #475569;

}

.portfolio-items-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.portfolio-item-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 20px 24px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.portfolio-item-card:hover {
  border-color: #3ca312;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
}

.portfolio-item-main {
  flex: 1;
  min-width: 0;
}

.portfolio-item-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
  flex-wrap: wrap;
}

.portfolio-item-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: #0f172a;

}

.portfolio-item-tag {
  font-size: 0.74rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  background: #f0fdf4;
  color: #166534;

  letter-spacing: 0.03em;
}

.portfolio-item-desc {
  font-size: 0.95rem;
  color: #475569;

  line-height: 1.55;
}

.portfolio-item-action {
  flex-shrink: 0;
}

.btn-tds-request {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: linear-gradient(135deg, #0810a3 0%, #3ca312 100%);
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 700;
  border-radius: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(8, 16, 163, 0.18);
  white-space: nowrap;
}

.btn-tds-request i {
  font-size: 1.05rem;
  color: #63ea24;
}

.btn-tds-request:hover {
  background: linear-gradient(135deg, #3ca312 0%, #0810a3 100%);
  transform: scale(1.03);
  box-shadow: 0 6px 20px rgba(60, 163, 18, 0.35);
  color: #ffffff;
}

/* Empty State & Coming Soon */
.portfolio-empty-state {
  text-align: center;
  padding: 60px 20px;
  background: #ffffff;
  border-radius: 20px;
  border: 1px dashed #cbd5e1;
}

.portfolio-empty-state i {
  font-size: 3rem;
  color: #94a3b8;
  margin-bottom: 16px;
}

.portfolio-empty-state h4 {
  font-size: 1.4rem;
  color: #0f172a;
  margin-bottom: 8px;
}

.portfolio-empty-state p {
  color: #64748b;
  margin-bottom: 20px;
}

.portfolio-coming-soon-card {
  text-align: center;
  padding: 70px 24px;
  background: #ffffff;
  border-radius: 24px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  max-width: 680px;
  margin: 0 auto;
}

.coming-soon-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #eff6ff;
  color: #0810a3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 20px;
}

.portfolio-coming-soon-card h3 {
  font-size: 1.6rem;
  color: #0f172a;
  margin-bottom: 10px;
}

.portfolio-coming-soon-card p {
  color: #475569;
  margin-bottom: 24px;
  font-size: 1.05rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .portfolio-item-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  
  .portfolio-item-action {
    width: 100%;
  }
  
  .btn-tds-request {
    width: 100%;
    justify-content: center;
  }

  .portfolio-group-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}



/* =======================================================
   ESTILOS — HERO PORTFÓLIO.HTML & PREVIEW SECTION NO INDEX
======================================================= */

/* Hero Banner na página portfolio.html */
.portfolio-hero {
  position: relative;
  background: linear-gradient(135deg, #0810a3 0%, #050b6d 100%);
  padding: 140px 0 60px;
  color: #ffffff;
  overflow: hidden;
  border-radius: 0 0 28px 28px;
}

.portfolio-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1.5px, transparent 2px);
  background-size: 40px 40px;
  opacity: 0.3;
}

.portfolio-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.portfolio-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 16px;
}

.portfolio-breadcrumb a {
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.2s ease;
}

.portfolio-breadcrumb a:hover {
  color: #63ea24;
}

.portfolio-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(99, 234, 36, 0.18);
  border: 1px solid rgba(99, 234, 36, 0.4);
  color: #63ea24;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.portfolio-hero-content h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.portfolio-hero-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
}

/* Preview Section no index.html */
.portfolio-preview-section {
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.portfolio-preview-heading {
  text-align: center;
  margin-bottom: 44px;
}

.portfolio-preview-heading h2 {
  font-size: 2.2rem;
  color: #0f172a;
  margin: 10px 0 14px;
}

.portfolio-preview-heading p {
  max-width: 720px;
  margin: 0 auto;
  color: #475569;
  font-size: 1.05rem;
}

.portfolio-segments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.portfolio-segment-card {
  position: relative;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
}

.portfolio-segment-card:hover {
  transform: translateY(-6px);
  border-color: #3ca312;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
}

.portfolio-segment-card.featured {
  border-color: rgba(60, 163, 18, 0.4);
  background: linear-gradient(180deg, #ffffff 0%, #f0fdf4 100%);
}

.portfolio-segment-card .segment-card-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  bottom: auto;
  height: auto;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 12px;
  background: #dcfce7;
  color: #15803d;
}

.segment-card-badge.status {
  background: #f1f5f9;
  color: #64748b;
}

.segment-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: #eff6ff;
  color: #0810a3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.portfolio-segment-card.featured .segment-card-icon {
  background: #dcfce7;
  color: #166534;
}

.portfolio-segment-card h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 10px;
}

.portfolio-segment-card p {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.55;
  margin-bottom: 18px;
  flex: 1;
}

.segment-card-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.segment-card-tags span {
  font-size: 0.74rem;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 12px;
  background: #f1f5f9;
  color: #475569;
}

.segment-card-btn {
  width: 100%;
  justify-content: center;
  padding: 12px 18px;
  font-size: 0.92rem;
  font-weight: 700;
  border-radius: 12px;
}

.segment-card-btn.outline {
  background: transparent;
  color: #0810a3;
  border: 2px solid #0810a3;
}

.segment-card-btn.outline:hover {
  background: #0810a3;
  color: #ffffff;
}

/* Main CTA Card */
.portfolio-main-cta {
  margin-top: 10px;
}

.main-cta-box {
  background: linear-gradient(135deg, #0810a3 0%, #0b1aee 100%);
  border-radius: 20px;
  padding: 28px 36px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 0 12px 32px rgba(8, 16, 163, 0.22);
}

.main-cta-text {
  display: flex;
  align-items: center;
  gap: 20px;
}

.main-cta-text i {
  font-size: 2.4rem;
  color: #63ea24;
  flex-shrink: 0;
}

.main-cta-text strong {
  display: block;
  font-size: 1.15rem;
  margin-bottom: 4px;
}

.main-cta-text span {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
}

.main-cta-btn {
  background: #63ea24;
  color: #0810a3;
  font-weight: 800;
  padding: 14px 26px;
  border-radius: 12px;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(99, 234, 36, 0.35);
  transition: all 0.3s ease;
}

.main-cta-btn:hover {
  background: #ffffff;
  color: #0810a3;
  transform: scale(1.04);
}

@media (max-width: 900px) {
  .main-cta-box {
    flex-direction: column;
    align-items: flex-start;
  }
  .main-cta-btn {
    width: 100%;
    justify-content: center;
  }
}


/* ==========================================================================
   AJUSTE DE POSICIONAMENTO DO BADGE DESTAQUE DO MÊS (TOPO DIREITO)
   ========================================================================== */
.product-card-top {
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  display: flex !important;
  justify-content: flex-end !important;
  align-items: center !important;
  gap: 10px !important;
  z-index: 10;
}

.product-featured-badge {
  order: 1;
}

.product-details-trigger {
  order: 2;
}

/* ==========================================================================
   CARDS DE SEGMENTOS ENQUADRADOS ("ENQUADRAR OS SEGMENTOS")
   ========================================================================== */
.portfolio-segments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

@media (min-width: 1024px) {
  .portfolio-segments-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.segment-framed-card {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  position: relative;
}

.segment-framed-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(12, 45, 72, 0.12);
  border-color: rgba(49, 141, 25, 0.35);
}

.segment-framed-card.active {
  border: 2px solid #318d19;
  box-shadow: 0 15px 35px rgba(49, 141, 25, 0.18);
}

.segment-framed-card.active::before {
  content: 'SEGMENTO ATIVO';
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 5;
  background: #318d19;
  color: #ffffff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(49, 141, 25, 0.4);
}

.segment-card-image {
  position: relative;
  height: 180px;
  width: 100%;
  overflow: hidden;
  background: #0f172a;
}

.segment-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.segment-framed-card:hover .segment-card-image img {
  transform: scale(1.08);
}

.segment-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.1) 0%, rgba(15, 23, 42, 0.75) 100%);
}

.segment-card-badge {
  position: absolute;
  bottom: 12px;
  right: 12px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  color: #0c2d48;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.segment-card-badge i {
  color: #318d19;
}

.segment-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.segment-card-kicker {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #318d19;
  margin-bottom: 6px;
}

.segment-card-title {
  font-size: 18px;
  font-weight: 800;
  color: #0c2d48;
  margin-bottom: 10px;
  line-height: 1.3;
}

.segment-card-desc {
  font-size: 13px;
  color: #64748b;
  line-height: 1.55;
  margin-bottom: 20px;
  flex-grow: 1;
}

.segment-card-action {
  margin-top: auto;

}

.btn-segment-explore {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 10px 16px;
  border-radius: 10px;
  background: #f8fafc;
  color: #0c2d48;
  font-size: 13px;
  font-weight: 700;
  border: 1px solid #e2e8f0;
  transition: all 0.25s ease;
}

.segment-framed-card:hover .btn-segment-explore {
  background: #318d19;
  color: #ffffff;
  border-color: #318d19;
}

.segment-framed-card:hover .btn-segment-explore i {
  transform: translateX(4px);
}

/* ==========================================================================
   ESTILOS DE BANNER DE SEGMENTO E CONTROLES DE PORTFÓLIO
   ========================================================================== */
.portfolio-segment-header-banner {
  background: linear-gradient(135deg, #0c2d48 0%, #1e3a5f 100%);
  border-radius: 20px;
  padding: 32px 40px;
  color: #ffffff;
  margin-bottom: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  box-shadow: 0 15px 35px rgba(12, 45, 72, 0.15);
  position: relative;
  overflow: hidden;
}

.portfolio-segment-header-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(49, 141, 25, 0.25) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.segment-banner-info {
  max-width: 680px;
  position: relative;
  z-index: 2;
}

.segment-banner-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #63ea24;
  margin-bottom: 8px;
}

.segment-banner-info h3 {
  font-size: 26px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 8px;
}

.segment-banner-info p {
  font-size: 14px;
  color: #e2e8f0;
  line-height: 1.6;

}

.segment-banner-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 16px 28px;
  border-radius: 16px;
  min-width: 140px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.stat-number {
  font-size: 32px;
  font-weight: 900;
  color: #63ea24;
  line-height: 1;
}

.stat-label {
  font-size: 11px;
  font-weight: 700;
  color: #cbd5e1;
  text-transform: uppercase;
  margin-top: 4px;
}

@media (max-width: 768px) {
  .portfolio-segment-header-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
  }
  .segment-banner-stat {
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    padding: 12px 20px;
  }
  .stat-label {
    margin-top: 0;
  }
}

/* ==========================================================================
   OTIMIZAÇÕES DESKTOP (PC) E RESPONSIVIDADE
   ========================================================================== */
@media (min-width: 1024px) {
  .container {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 32px;
    padding-right: 32px;
  }

  .portfolio-items-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 20px;
  }

  .portfolio-item-card {
    height: 100%;
    margin-bottom: 0;
  }

  .product-grid-premium {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }

  .footer-premium-main {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.4fr;
    gap: 48px;
  }
}


/* ==========================================================================
   CORREÇÃO DEFINITIVA DE FOTOS CORTADAS (OBJECT-FIT CONTAIN & ASPECT-RATIO)
   ========================================================================== */
.product-premium-image,
.product-card-premium .product-premium-image {
  width: 100% !important;
  aspect-ratio: 3 / 2 !important;
  height: auto !important;
  min-height: auto !important;
  max-height: none !important;
  overflow: hidden !important;
  background: #061338 !important;
}

.product-premium-image img,
.product-card-premium .product-premium-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center !important;
}

.product-modal-image img {
  object-fit: contain !important;
}


/* ==========================================================================
   CORREÇÃO DEFINITIVA DO BADGE DE SEGMENTO (CANCELAMENTO DE BOTTOM/TOP DUPLO)
   ========================================================================== */
.segment-card-badge {
  position: absolute !important;
  top: auto !important;
  bottom: 12px !important;
  right: 12px !important;
  left: auto !important;
  height: auto !important;
  width: auto !important;
  max-width: max-content !important;
  background: rgba(255, 255, 255, 0.94) !important;
  backdrop-filter: blur(8px) !important;
  color: #0c2d48 !important;
  padding: 5px 12px !important;
  border-radius: 999px !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
  z-index: 5 !important;
  writing-mode: horizontal-tb !important;
}


/* ==========================================================================
   CARDS DE PRODUTOS ENRIQUECIDOS COM ÍCONES E BADGES DE PERFORMANCE (.portfolio-rich-card)
   ========================================================================== */
.portfolio-items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}

.portfolio-rich-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  padding: 24px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.portfolio-rich-card:hover {
  transform: translateY(-4px);
  border-color: rgba(49, 141, 25, 0.3);
  box-shadow: 0 15px 35px rgba(12, 45, 72, 0.1);
}

.rich-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.rich-card-icon-badge {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;

}

.rich-card-feature-tag {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 5px;

}

.badge-eco {
  background: #dcfce7;
  color: #15803d;

}

.badge-tech {
  background: #e0f2fe;
  color: #0369a1;

}

.badge-perf {
  background: #fef3c7;
  color: #b45309;

}

.badge-cost {
  background: #f3e8ff;
  color: #6b21a8;

}

.badge-safe {
  background: #fce7f3;
  color: #be185d;

}

.badge-norm {
  background: #f1f5f9;
  color: #475569;
}

.group-icon-avatar {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;

}

.portfolio-group-header {
  border-left: 4px solid #318d19;
  padding-left: 14px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.rich-card-body {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.rich-card-category {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #318d19;
  margin-bottom: 6px;

}

.rich-card-title {
  font-size: 18px;
  font-weight: 800;
  color: #0c2d48;
  margin-bottom: 8px;
  line-height: 1.35;
}

.rich-card-desc {
  font-size: 13px;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 20px;

}

.rich-card-footer {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid #f1f5f9;
}


/* ==========================================================================
   PADRONIZAÇÃO UNIFORME DE ALTURA DOS CARDS DE SEGMENTO (16:9 E 200PX)
   ========================================================================== */
.segment-card-image {
  position: relative !important;
  width: 100% !important;
  height: 200px !important;
  aspect-ratio: 16 / 9 !important;
  overflow: hidden !important;
  background: #0f172a !important;
  border-radius: 20px 20px 0 0 !important;
}

.segment-card-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block !important;
}

.livital-header-v2__iso-badge {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  visibility: visible !important;
}


/* ==========================================================================
   ROTA ESTÁTICA COM NAVIO SEM ANIMAÇÃO (BRASIL -> SHANGHAI)
   ========================================================================== */
.connection-route .cargo-ship-icon,
.cargo-ship-icon,
.connection-route i {
  animation: none !important;
  transform: none !important;
}


/* ==========================================================================
   ROTA ESTÁTICA COM LINHA E BARCO ENTRE BRASIL E SHANGHAI (SEM ANIMAÇÃO)
   ========================================================================== */
.world-connection {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 16px !important;
  width: 100% !important;
  margin-bottom: 24px !important;
}

.world-point {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  flex-shrink: 0 !important;
}

.world-point strong {
  white-space: nowrap !important;
  font-size: 15px !important;
  color: #ffffff !important;
}

.world-point small {
  display: block !important;
  white-space: nowrap !important;
}

.connection-route {
  flex-grow: 1 !important;
  position: relative !important;
  height: 32px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 80px !important;
}

.route-sea-line {
  position: absolute !important;
  left: 0 !important;
  right: 0 !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  height: 2px !important;
  background: linear-gradient(90deg, rgba(99, 234, 36, 0.2), rgba(99, 234, 36, 0.9), rgba(99, 234, 36, 0.2)) !important;
  box-shadow: 0 0 8px rgba(99, 234, 36, 0.5) !important;
  border-radius: 2px !important;
}

.cargo-ship-icon,
.connection-route .cargo-ship-icon,
.connection-route i {
  position: relative !important;
  z-index: 5 !important;
  font-size: 1.25rem !important;
  color: #63ea24 !important;
  filter: drop-shadow(0 0 8px rgba(99, 234, 36, 0.85)) !important;
  animation: none !important;
  transform: none !important;
}


/* ==========================================================================
   ROTA MARÍTIMA ESTÁTICA COM LINHA E NAVIO SEM ANIMAÇÃO (BRASIL <-> SHANGHAI)
   ========================================================================== */
.world-connection {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 12px !important;
  width: 100% !important;
  margin-bottom: 24px !important;
}

.world-point-brasil,
.world-point-asia,
.world-point {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  flex-shrink: 0 !important;
  min-width: auto !important;
}

.world-point strong {
  white-space: nowrap !important;
  font-size: 15px !important;
  color: #ffffff !important;
  display: block !important;
  word-break: normal !important;
}

.world-point small {
  display: block !important;
  white-space: nowrap !important;
  font-size: 11px !important;
  color: rgba(255, 255, 255, 0.7) !important;
}

.connection-route {
  flex: 1 1 auto !important;
  position: relative !important;
  height: 32px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 60px !important;
  margin: 0 8px !important;
}

.route-sea-line {
  position: absolute !important;
  left: 0 !important;
  right: 0 !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  height: 2px !important;
  background: linear-gradient(90deg, rgba(99, 234, 36, 0.2), rgba(99, 234, 36, 0.9), rgba(99, 234, 36, 0.2)) !important;
  box-shadow: 0 0 8px rgba(99, 234, 36, 0.5) !important;
  border-radius: 2px !important;
}

.cargo-ship-icon,
.connection-route .cargo-ship-icon,
.connection-route i {
  position: relative !important;
  z-index: 5 !important;
  font-size: 1.25rem !important;
  color: #63ea24 !important;
  filter: drop-shadow(0 0 8px rgba(99, 234, 36, 0.85)) !important;
  animation: none !important;
  transform: none !important;
}


/* ==========================================================================
   AJUSTES SOLICITADOS: REMOÇÃO DE BOTÃO IDIOMA DO CABEÇALHO, CARDS COMPACTOS E FOOTER
   ========================================================================== */

/* 1. Ocultar seletor de idioma interno do cabeçalho (mantendo apenas o superior) */
.livital-header-v2__lang,
#lang-selector-mobile {
  display: none !important;
}

/* 2. Redimensionamento elegante e proporcional dos Cards em Destaque no Desktop */
@media (min-width: 1024px) {
  .product-grid-premium {
    max-width: 1180px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    gap: 24px !important;
  }

  .product-card-premium .product-premium-image {
    aspect-ratio: 3 / 2 !important;
    height: auto !important;
    max-height: none !important;
    width: 100% !important;
  }

  .product-card-premium .product-premium-content {
    padding: 20px 22px 22px !important;
  }

  .product-card-premium .product-category {
    font-size: 11px !important;
    min-height: 26px !important;
    padding: 0 10px !important;
    margin-bottom: 8px !important;
  }

  .product-card-premium h3,
  .product-card-premium .product-title {
    font-size: 21px !important;
    margin-bottom: 8px !important;
    line-height: 1.3 !important;
  }

  .product-card-premium p,
  .product-card-premium .product-description {
    font-size: 13px !important;
    line-height: 1.5 !important;
    margin-bottom: 14px !important;
  }

  .product-card-premium .product-features-list {
    gap: 6px !important;
    margin-bottom: 16px !important;
  }

  .product-card-premium .product-features-list li {
    font-size: 12px !important;
  }
}

/* 3. Margens e alinhamento limpo no Rodapé (Footer Edge Spacing) */
.site-footer .container,
footer.site-footer .container {
  max-width: 1240px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 32px !important;
  padding-right: 32px !important;
}

.footer-legal {
  max-width: 1240px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding: 24px 0 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.12) !important;
}

.footer-legal-copy {
  padding-left: 0 !important;
}

.footer-legal-links {
  padding-right: 0 !important;
}

@media (max-width: 768px) {
  .site-footer .container {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}


/* ==========================================================================
   CORREÇÃO DEFINITIVA DE FOTOS EM DESTAQUE (PROPORÇÃO EXATA 3:2 SEM CORTE)
   ========================================================================== */
.product-premium-image,
.product-card-premium .product-premium-image {
  position: relative !important;
  width: 100% !important;
  aspect-ratio: 3 / 2 !important;
  height: auto !important;
  min-height: auto !important;
  max-height: none !important;
  overflow: hidden !important;
  background: #061338 !important;
}

.product-premium-image img,
.product-card-premium .product-premium-image img {
  position: relative !important;
  z-index: 2 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center !important;
  display: block !important;
}
