/* NAVBAR */
header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.1rem 3rem;
  z-index: 100;
  background: rgba(9, 16, 31, 0.48);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background-color 0.25s ease, padding 0.25s ease;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav .nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  flex-wrap: wrap;
  align-items: center;
  transition: max-height 0.25s ease, opacity 0.25s ease;
}

nav .nav-links li a {
  text-decoration: none;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: opacity 0.25s ease, color 0.25s ease;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  width: 42px;
  height: 42px;
  position: relative;
  z-index: 105;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  position: absolute;
  width: 100%;
  height: 3px;
  background: #ffffff;
  border-radius: 999px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle span {
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.nav-toggle span::before {
  content: '';
  top: -10px;
}

.nav-toggle span::after {
  content: '';
  top: 10px;
}

.nav-toggle.active span {
  background-color: transparent;
}

.nav-toggle.active span::before {
  transform: translateY(10px) rotate(45deg);
}

.nav-toggle.active span::after {
  transform: translateY(-10px) rotate(-45deg);
}

nav ul li a:hover {
  opacity: 0.7;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
}

.logo img {
  width: 110px;
}

.nav-btn {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  background-color: #2a5584;
  color: white;
  border: 1px solid transparent;
  padding: 1rem 1.5rem;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: 0.3s ease;
}

.nav-btn:hover {
  background-color: transparent;
  color: #2a5584;
  border-color: #2a5584;
}

section {
  width: 100%;
  padding: 5rem 4rem;
}

.section-intro {
  max-width: 840px;
  margin: 0 auto 3rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.section-intro h1 {
  font-size: clamp(2.5rem, 4vw, 3.4rem);
  line-height: 1.05;
}

.section-intro p {
  color: #5a636f;
  font-size: 1.05rem;
  line-height: 1.8;
}

/* HERO */
.hero {
  width: 100%;
  min-height: 92vh;
  padding: 8rem 4rem 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: linear-gradient(180deg, rgba(14, 23, 38, 0.82), rgba(14, 23, 38, 0.45)), url('../img/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 21, 35, 0.15), rgba(13, 21, 35, 0.72));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  justify-content: center;
  align-items: center;
}

.hero-copy {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: baseline;
  flex-direction: column;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #ffffff;
  font-size: 0.95rem;
  border-radius: 999px;
  margin-bottom: 1.75rem;
}

.hero-copy h1 {
  font-size: clamp(2.8rem, 5vw, 4.6rem);
  color: #ffffff;
  line-height: 1.05;
  margin-bottom: 1.4rem;
}

.hero-copy h1 span {
  background: linear-gradient(135deg, #ff5d1d, #ff3d00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.hero-copy p {
  font-size: 1.05rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  max-width: 44rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-circle {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(255, 65, 0, 0.08);
  z-index: 1;
}

.hero-main-img {
  position: relative;
  width: 100%;
  max-width: 500px;
  border-radius: 1.5rem;
  box-shadow: 0 40px 100px rgba(18, 25, 37, 0.22);
  z-index: 2;
}

.hero-visual-card {
  position: absolute;
  bottom: 2rem;
  right: 1.5rem;
  width: min(260px, 100%);
  padding: 1.2rem 1.25rem;
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 25px 60px rgba(18, 25, 37, 0.12);
  z-index: 3;
}

.hero-visual-card span {
  display: block;
  font-weight: 700;
  color: #121212;
  margin-bottom: 0.4rem;
}

.hero-visual-card p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.55;
}

.hero-btn {
    background: linear-gradient(135deg, #ff5d1d, #ff3d00);
    color: white;
    padding: 1rem 1.8rem;
    border-radius: 0.95rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 18px 35px rgba(255, 77, 32, 0.2);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }


  .hero-btn + .hero-btn {
    margin-left: 0;
  }

  .hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 45px rgba(255, 77, 32, 0.25);
  }

  .hero-btn.secondary {
    background: rgba(255, 255, 255, 0.16);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(10px);
    box-shadow: 0 18px 35px rgba(255, 255, 255, 0.22);
  }

  .hero-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.28);
  }

/* ABOUT US */
.about-us {
  width: 100%;
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.about-us-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 3rem;
  align-items: start;
}

.about-us-text {
  grid-column: 1;
  grid-row: 1;
}

.about-us-text h1 {
  font-size: clamp(2.4rem, 4vw, 3rem);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 1rem;
}

.about-us-text h1::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 5rem;
  height: 0.4rem;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff4100, #f09d03);
}

.about-us-image {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-us-image img {
  width: 100%;
  max-width: 520px;
  border-radius: 1.5rem;
}

.mission-vision-values {
  grid-column: 1 / -1;
  grid-row: 2;
}

/* MISSION, VISION, VALUES */
.mission-vision-values {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.mvv-card {
  background-color: rgba(255, 255, 255, 0.96);
  padding: 2rem;
  border-radius: 1.5rem;
  box-shadow: 0 25px 50px rgba(18, 25, 37, 0.08);
  border: 1px solid rgba(42, 85, 132, 0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mvv-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 65px rgba(18, 25, 37, 0.14);
}

.mvv-icon-wrapper {
  width: 68px;
  height: 68px;
  background-color: rgba(42, 85, 132, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: #ff4100;
  padding: 1rem;
  margin-bottom: 1.5rem;
}

.mvv-card h2 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #5597dd, #2a5584);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.mvv-card p {
  color: #575757;
  line-height: 1.75;
}

/* ERP SOLUTIONS */
.erp {
  width: 100%;
  padding: 5rem 4rem;
  background-color: #f9f9f9;
  margin: 5rem 0;
}

.erp-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.erp-card {
  background-color: white;
  border-radius: 1.75rem;
  box-shadow: 0 35px 85px rgba(18, 25, 37, 0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.erp-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 40px 95px rgba(18, 25, 37, 0.18);
}

.erp-card-top {
  padding: 2.2rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.erp-card-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.95);
  border-radius: 999px;
  padding: 0.6rem 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.erp-card-top h2 {
  font-size: clamp(2.4rem, 3.2vw, 3.2rem);
  color: white;
  margin: 0;
  line-height: 1;
}

.erp-card-top img {
  width: min(180px, 80%);
  max-width: 100%;
  height: auto;
  margin: 0;
}

.erp-card-top p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 32rem;
}

.erp-card-features {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.erp-card-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
}

.erp-card-features li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  color: #2d2d2d;
}

.erp-card-features li i {
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(240, 157, 3, 0.16);
  color: rgb(240, 157, 3);
}

.erp-card .erp-btn {
  width: 100%;
  padding: 1rem 1.5rem;
  border-radius: 0 0 1.75rem 1.75rem;
  border: none;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
  margin: 0;
}

.erp-card .erp-btn:hover {
  transform: translateY(-1px);
}

.erp-card-blue .erp-card-top {
  background: linear-gradient(135deg, #1f4a7d, #3c6daa);
}

.erp-card-blue .erp-btn {
  background-color: #2a5584;
  color: white;
}

.erp-card-blue .erp-btn:hover {
  background-color: #133a61;
}

.erp-card-orange .erp-card-top {
  background: linear-gradient(135deg, #ff4100, #f69a1d);
}

.erp-card-orange .erp-btn {
  background-color: #ff4100;
  color: white;
}

.erp-card-orange .erp-btn:hover {
  background-color: #d83b08;
}

/* PRODUCTS SECTION */
.products {
  width: 100%;
  padding: 5rem 4rem;
  margin-bottom: 2rem;
  background-image: url('../img/product-bg.png');
  background-size: 100%;
}

.products-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 3rem;
}

.products-text h1 {
  font-size: clamp(2.4rem, 4vw, 3rem);
  margin-bottom: 1.5rem;
  font-family: 'Poppins', sans-serif;
}

.products-text p {
  font-size: 1.05rem;
  color: #555;
  margin-bottom: 2rem;
  line-height: 1.75;
  font-family: 'Inter', sans-serif;
}

.carousel {
  flex: 1;
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
}

.carousel-inner {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-item {
  min-width: 100%;
  height: 450px; 
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

.carousel-ctrl {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  padding: 12px;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  z-index: 10;
  transition: 0.3s;
}

.carousel-ctrl:hover { background-color: rgb(240, 157, 3); color: white; }
.carousel-ctrl.prev { left: 1rem; }
.carousel-ctrl.next { right: 1rem; }

/* DIGITAL CERTIFIED */
.digital-certified {
  width: 100%;
  padding: 5rem 4rem;
  margin-bottom: 9rem;
}

.digital-certified-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.digital-certified-text h1 {
  font-size: clamp(2.4rem, 4vw, 3rem);
  margin-bottom: 1.5rem;
  font-family: 'Poppins', sans-serif;
}

.digital-certified-text p {
  font-size: 1.05rem;
  color: #555;
  margin-bottom: 2rem;
  line-height: 1.75;
  font-family: 'Inter', sans-serif;
  max-width: 42rem;
}

.digital-certified-image img {
  width: 100%;
  display: block;
  border-radius: 1.5rem;
}

/* PONTO ELETRÔNICO */
.ponto {
  width: 100%;
  padding: 5rem 4rem;
  background-color: #f9f9f9;
  margin-bottom: 2rem;
}

.ponto-container {
  max-width: 1200px;
  margin: 0 auto;
  
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.ponto-container h1 {
  font-size: clamp(2.4rem, 4vw, 3rem);
  margin-bottom: 1rem;
  font-family: 'Poppins', sans-serif;
}

.ponto-container > p {
  font-size: 1.05rem;
  color: #555;
  margin-bottom: 3rem;
  line-height: 1.75;
  font-family: 'Inter', sans-serif;
  max-width: 42rem;
  text-align: center;
}

.ponto-card {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.ponto-card > div {
  background-color: white;
  padding: 2.2rem 2rem;
  border-radius: 1.75rem;
  box-shadow: 0 35px 85px rgba(18, 25, 37, 0.12);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ponto-card > div:hover {
  transform: translateY(-10px);
  box-shadow: 0 40px 95px rgba(18, 25, 37, 0.18);
}

.ponto-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1rem;
  display: block;
}

.ponto-card h2 {
  font-size: 1.6rem;
  color: #121212;
  margin: 0;
  font-family: 'Poppins', sans-serif;
}

.ponto-card > div > p {
  font-size: 1rem;
  color: #666;
  line-height: 1.75;
  margin: 0;
  flex-grow: 1;
}

.ponto-card .nav-btn {
  width: 100%;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* SUPPORT CONTACT */
.support-contact {
  width: 100%;
  padding: 5rem 4rem;
  background-color: #f8f8f8;
}

.support-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.support-card {
  background-color: white;
  padding: 2.8rem 1.75rem;
  border-radius: 1.5rem;
  box-shadow: 0 30px 60px rgba(18, 25, 37, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.support-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 35px 70px rgba(18, 25, 37, 0.12);
}

.support-card h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #121212;
}

.support-card p {
  font-size: 1rem;
  color: #666;
  margin-bottom: 2rem;
  line-height: 1.75;
}

/* FOOTER */
footer {
  background: linear-gradient(135deg, #0f1f3a, #1a3a52);
  color: white;
  padding: 5rem 4rem 2rem;
}

.footer-logo {
  width: 100%;
}

.footer-logo img {
  width: 35%;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-info p {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: #c4c4c4;
  line-height: 1.75;
  margin-bottom: 1.5rem;
  max-width: 25rem;
  margin-top: 1.5rem;
}

  .footer-links h3,
  .footer-contact-info h3 {
    color: white;
    font-size: 1.05rem;
    margin-bottom: 1.25rem;
  }

.footer-links ul li a {
  color: #c4c4c4;
}

.footer-links ul li a:hover { color: rgb(240, 157, 3); }

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  transition: transform 0.25s ease, background-color 0.25s ease;
}

.social-links a:hover {
  transform: translateY(-2px);
  background-color: rgb(240, 157, 3);
}

.footer-contact-info p {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: #c4c4c4;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.footer-contact-info i {
  color: rgb(240, 157, 3);
  width: 18px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1.75rem;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: #777;
}

@media (max-width: 980px) {
  header {
    padding: 1rem 1.5rem;
  }

  .digital-certified,
  .support-contact,
  footer {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  nav {
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: space-between;
    align-items: center;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    width: 100%;
    display: none;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(9, 16, 31, 0.85);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links li a {
    display: block;
    width: 100%;
    padding: 0.8rem 0;
    text-align: center;
  }

  .nav-actions {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 1rem;
  }

  .products-container {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .products-text {
    text-align: center;
    width: 100%;
  }

  .carousel {
    width: 100%;
    max-width: 680px;
    margin: 0 auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-copy,
  .section-intro {
    width: 100%;
    text-align: center;
  }

  .hero-content {
    align-items: center;
  }

  .about-us-image {
    display: none;
  }

  .digital-certified-container,
  .support-container,
  .footer-container,
  .about-us-container {
    grid-template-columns: 1fr;
  }

  .mission-vision-values {
    grid-template-columns: 1fr;
  }

  .ponto-card {
    grid-template-columns: 1fr;
  }

  .carousel-item {
    height: 320px;
  }

  .hero {
    padding-top: 6rem;
  }

  .hero-copy h1 {
    font-size: 2.85rem;
  }

  .hero-btn,
  .nav-btn,
  .erp-btn {
    width: 100%;
  }
}
