* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --background: #0679f7;
  --foreground: hsl(215, 25%, 15%);
  --primary: hsl(217, 91%, 60%);
  --primary-hover: hsl(217, 91%, 55%);
  --primary-foreground: hsl(0, 0%, 100%);
  --secondary: hsl(214, 100%, 97%);
  --secondary-foreground: hsl(217, 91%, 40%);
  --muted: hsl(214, 100%, 95%);
  --muted-foreground: hsl(215, 15%, 55%);
  --card: hsl(0, 0%, 100%);
  --card-foreground: hsl(215, 25%, 15%);
  --border: hsl(214, 32%, 91%);
  --hero-gradient: linear-gradient(
    135deg,
    hsl(217, 91%, 60%) 0%,
    hsl(230, 91%, 50%) 50%,
    hsl(245, 91%, 45%) 100%
  );
  --tech-gradient: linear-gradient(
    180deg,
    hsl(217, 91%, 60%) 0%,
    hsl(217, 91%, 45%) 100%
  );
  --section-gradient: linear-gradient(
    135deg,
    hsl(214, 100%, 97%) 0%,
    hsl(217, 91%, 95%) 100%
  );
  --card-shadow: 0 10px 40px -10px hsl(217, 91%, 60%, 0.2);
  --hero-shadow: 0 20px 60px -10px hsl(217, 91%, 60%, 0.3);
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --container-padding: 1rem;
  --section-padding: 6rem 0;
}

@media (min-width: 768px) {
  :root {
    --container-padding: 2rem;
  }
}

html {
  overflow-x: hidden !important;
}

body {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  line-height: 1.6;
  color: var(--foreground);
  overflow-x: hidden !important;
  background-color: (var(--background));
}

.bg_blue {
  background: #0679f7 url("../assets/bg.png") no-repeat center center;
  background-size: cover;
  width: 100%;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* Buttons */
.button-cta {
  background: linear-gradient(90deg, #00244c 0%, #0065d3 100%);
  border-radius: 2rem;
  padding: 0.8rem 5rem;
  position: relative;
  border: none;
  cursor: pointer;
  width: auto;
  transition: transform 0.2s, box-shadow 0.2s;
}

.button-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.button-cta-content {
  display: flex;
  flex-direction: row;
  gap: 5px;
  align-items: center;
  justify-content: center;
  flex: 1;
  position: relative;
}

.button-cta-content svg {
  stroke: #e0e0e0;
}

.button-cta-text {
  color: #e0e0e0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}

@media (max-width: 480px) {
  .button-cta {
    padding: 12px 20px;
  }
}

/* Cards */
.card {
  background-color: var(--card);
  border-radius: 1rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: var(--transition-smooth);
}

.card:hover {
  box-shadow: var(--card-shadow);
  transform: translateY(-4px);
}

.card-transparent {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: none;
}

.card-content {
  padding: 2rem;
}

/* Typography */
h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
}

p {
  font-size: 1.2rem;
  line-height: 1.2;
}

.text-primary {
  color: var(--primary);
}

.text-white {
  color: white;
}

.text-muted {
  color: var(--muted-foreground);
}

.text-blue-100 {
  color: hsl(217, 91%, 85%);
}

.text-blue-200 {
  color: hsl(217, 91%, 75%);
}

.text-xl {
  font-size: 1.25rem;
}

.text-2xl {
  font-size: 1.5rem;
}

.text-4xl {
  font-size: 2.25rem;
}

.text-lg {
  font-size: 1.125rem;
}

@media (min-width: 1024px) {
  h1 {
    font-size: 6rem;
    line-height: 4.8rem;
  }

  h2 {
    font-size: 4rem;
  }

  p {
    font-size: 1.4rem;
    line-height: 1.2;
  }
}

/* Layout */
.grid {
  display: grid;
  gap: 1rem;
}

.grid-cols-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

.md-grid-cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

.lg-grid-cols-2 {
  grid-template-columns: repeat(2, 1fr);
}

.lg-grid-cols-4 {
  grid-template-columns: repeat(4, 1fr);
}

.xl-grid-cols-6 {
  grid-template-columns: repeat(6, 1fr);
}

.gap-4 {
  gap: 1rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-8 {
  gap: 2rem;
}

.gap-12 {
  gap: 3rem;
}

.gap-16 {
  gap: 4rem;
}

.items-center {
  align-items: center;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.justify-center {
  justify-content: center;
}

/* Spacing */
.mb-3 {
  margin-bottom: 0.75rem;
}

.mt-3 {
  margin-top: 0.75rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mb-16 {
  margin-bottom: 4rem;
}

.pt-8 {
  padding-top: 2rem;
}

.pt-16 {
  padding-top: 4rem;
}

.pt-20 {
  padding-top: 5rem;
}

.pb-16 {
  padding-bottom: 4rem;
}

.py-24 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

/* Navbar Styles */
.navbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 1.5rem 0;
}

.nav-content {
  display: flex;
  justify-content: space-around;
  gap: 1rem;
  align-items: center;
  flex-direction: row;
}

.nav-logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
}

.logo-text {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
  padding: 0.25rem 0;
  font-size: 1.2rem;
}

.nav-link:hover {
  color: white;
}

.nav-link.active {
  color: white;
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -0.25rem;
  left: 0;
  right: 0;
  height: 2px;
  background: white;
  border-radius: 1px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .navbar {
    padding: 1rem 0;
  }

  /* .nav-content {
    flex-direction: column;
    gap: 0;
  } */

  .nav-links {
    gap: 1rem;
    padding: 0.5rem 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-link {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .nav-links {
    gap: 0.75rem;
  }

  .nav-link {
    font-size: 0.7rem;
  }
}

/* Sections */
.hero-section {
  min-height: 100vh;
  color: white;
  position: relative;
  overflow: hidden;
}

.hero-content-grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  min-height: 100vh;
  position: relative;
  align-content: center;
  padding-top: 8rem;
}

.tech-gradient {
  color: white;
}

.content-hero {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  z-index: 2;
}

.chamada-hero {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
}

.chamada-hero h1 {
  margin-top: -1.5rem;
  max-width: 450px;
  font-size: 6rem;
  line-height: 4rem;
}

.chamada-hero h1 span {
  font-size: 4rem;
  display: block;
  padding-left: 50px;
}

.image-hero {
  position: absolute;
  right: 0;
  top: 9rem;
  width: 100%;
  max-width: 950px;
  z-index: 1;
}

@media (max-width: 760px) {
  .content-hero {
    gap: 1rem;
  }
  .hero-content-grid {
    align-content: space-around;
    padding-top: 1rem;
  }

  .chamada-hero {
    align-items: start;
    justify-content: start;
  }

  .chamada-hero h1 {
    margin-top: 0;
    font-size: 3rem;
    max-width: 300px;
    line-height: 2.5rem;
  }

  .chamada-hero h1 span {
    font-size: 2.2rem;
    padding-left: 20px;
  }

  .image-hero {
    position: absolute;
    right: 0;
    bottom: 1rem;
    top: auto;
    width: 100%;
    max-width: 950px;
    z-index: 1;
  }
}

/* seção features */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.features-container {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 5rem;
}

.section-title {
  align-self: stretch;
  text-align: center;
  color: #a1d2ff;
  font-size: 3rem;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  letter-spacing: 0.21rem;
  line-height: 1.4;
}

.features-plataform {
  width: 100%;
  align-self: stretch;
  display: flex;
  justify-content: center;
  align-items: start;
  gap: 2rem;
  flex-wrap: wrap;
}

.card-feature-plataform {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0.6875rem;
  width: 100%;
  max-width: 350px;
  position: relative;
  padding-bottom: 60px;
}

.feature-text {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0;
  position: absolute;
  top: 35px;
  left: 60px;
}

.icon-plataform {
  width: 72.45px;
  height: 72.45px;
  object-fit: contain;
}

.title-plataform {
  align-self: stretch;
  color: white;
  font-size: 1.5rem;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  line-height: 1.5;
}

.description-plataform {
  color: white;
  font-size: 1rem;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .features-plataform {
    align-items: center;
  }
  .features-container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .features-grid {
    gap: 2rem;
  }

  .features-grid {
    justify-content: center;
    align-items: center;
  }
}

/* seção solution */
.solution-section {
  height: auto;
  padding: 150px 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: flex-end;
  gap: 280px;
  position: relative;
  overflow: hidden;
}

.solution-section div {
  display: flex;
  width: 100%;
  justify-content: end;
}

.solution-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../assets/bg-cta.png");
  background-repeat: no-repeat;
  pointer-events: none;
  background-size: contain;
  background-position: left;
}

.solution-align {
  display: flex;
  flex-direction: column;
  align-items: end;
  justify-content: end;
  gap: 3rem;
  max-width: 500px;
  width: 100%;
  z-index: 5;
}

.solution-heading {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  gap: 28px;
  position: relative;
  z-index: 1;
}

.solution-title {
  text-align: right;
  max-width: 520px;
  color: white;
}

.solution-title h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 1.5rem;
}

.solution-subtitle {
  text-align: right;
  color: white;
  font-size: 94px;
  font-weight: 400;
  line-height: 65px;
  text-transform: lowercase;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.solution-content {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  gap: 23px;
  position: relative;
  z-index: 1;
}

.solution-description {
  width: 100%;
  max-width: 400px;
  text-align: right;
  color: white;
  font-size: 1.2rem;
  line-height: 1.5;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

@media (max-width: 760px) {
  .solution-align {
    justify-content: space-evenly;
    gap: 10rem;
    max-width: 500px;
  }

  .solution-title {
    max-width: 300px;
  }

  .solution-title h1 {
    font-size: 2.5rem;
    line-height: 1;
    margin-bottom: 1.5rem;
  }

  .solution-section::before {
    background-size: contain;
    background-position: center;
  }
}

/* Responsividade */
@media (max-width: 1200px) {
  .solution-subtitle {
    font-size: 72px;
    line-height: 50px;
  }
}

@media (max-width: 900px) {
  .solution-section {
    height: auto;
    padding: 4rem 1rem;
    gap: 140px;
  }

  .solution-subtitle {
    font-size: 48px;
    line-height: 40px;
  }

  .solution-description {
    width: 100%;
    max-width: 331px;
  }
}

@media (max-width: 600px) {
  .solution-subtitle {
    font-size: 36px;
    line-height: 32px;
  }

  .solution-description {
    font-size: 20px;
    line-height: 28px;
  }
}

/* Responsividade */
@media (max-width: 1200px) {
  .solution-subtitle {
    font-size: 72px;
    line-height: 50px;
  }
}

@media (max-width: 900px) {
  .solution-section {
    height: auto;
    padding: 4rem 1rem;
    gap: 140px;
  }

  .solution-subtitle {
    font-size: 48px;
    line-height: 40px;
  }

  .solution-description {
    width: 100%;
    max-width: 331px;
  }
}

@media (max-width: 600px) {
  .solution-subtitle {
    font-size: 36px;
    line-height: 32px;
  }

  .solution-description {
    font-size: 20px;
    line-height: 28px;
  }
}

/* imagem */
.box_imagem_container {
  height: 500px;
}
.img-parallax {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Estilos para a seção de informações */
.info-section {
  display: flex;
  flex-direction: row;
  gap: 0px;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.image-container {
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  justify-content: flex-start;
  flex-shrink: 0;
  width: 840px;
  height: 426px;
  position: relative;
}

.info-image {
  align-self: stretch;
  flex-shrink: 0;
  height: 409.67px;
  position: relative;
  object-fit: cover;
  aspect-ratio: 824/409.67;
}

.text-container {
  display: flex;
  flex-direction: column;
  gap: 33px;
  align-items: flex-start;
  justify-content: flex-start;
  flex-shrink: 0;
  width: 346px;
  position: relative;
}

.info-heading {
  color: #ffffff;
  text-align: right;
  font-family: "Inter", sans-serif;
  font-size: 32px;
  line-height: 40px;
  font-weight: 400;
  position: relative;
  align-self: stretch;
  margin: 0;
}

/* Responsividade */
@media (max-width: 1024px) {
  .info-section {
    flex-direction: column;
    gap: 2rem;
  }

  .image-container {
    width: 100%;
    height: auto;
  }

  .info-image {
    height: auto;
    max-height: 400px;
  }

  .text-container {
    width: 100%;
    align-items: center;
  }

  .info-heading {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .info-heading {
    font-size: 28px;
    line-height: 36px;
  }

  .image-container,
  .text-container {
    padding: 0;
  }
}

@media (max-width: 480px) {
  .info-heading {
    font-size: 24px;
    line-height: 32px;
  }
}

/* Estilos para a seção de automação como serviço */
.automation-section {
  align-self: stretch;
  padding: 180px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 80px;
  background-color: #f8fafc;
}

.automation-heading {
  align-self: stretch;
  text-align: center;
  color: #4ea1ff;
  font-size: 48px;
  font-weight: 400;
  line-height: 48px;
  max-width: 780px;
  margin: 0 auto;
  padding: 0 20px;
}

.features-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  flex-wrap: wrap;
  align-content: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.feature-card {
  width: 240px;
  height: 260px;
  padding: 20px 24px;
  background: white;
  box-shadow: 6px 6px 8px rgba(0, 0, 0, 0.2);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 8px 8px 16px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  width: 68px;
  height: 68px;
  border-radius: 8px;
}

.feature-content {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.feature-title {
  align-self: stretch;
  text-align: center;
  color: #004590;
  font-size: 24px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  line-height: 24px;
  margin: 0;
}

.feature-description {
  text-align: center;
  color: #004590;
  font-size: 20px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  line-height: 1.4;
  margin: 0;
}

/* Ajustes específicos para os cards */
.feature-card:nth-child(2) .feature-icon {
  height: 61px;
}

.feature-card:nth-child(3) .feature-icon {
  height: 62px;
}

.feature-card:nth-child(3) .feature-content {
  align-items: flex-start;
}

.feature-card:nth-child(3) .feature-description {
  text-align: left;
  width: 100%;
}

/* Responsividade */
@media (max-width: 1024px) {
  .automation-section {
    padding: 120px 0;
    gap: 60px;
  }

  .automation-heading {
    font-size: 40px;
    line-height: 44px;
  }

  .features-grid {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .automation-section {
    padding: 80px 0;
    gap: 40px;
  }

  .automation-heading {
    font-size: 32px;
    line-height: 36px;
  }

  .features-grid {
    gap: 30px;
  }

  .feature-card {
    width: 100%;
    max-width: 300px;
    height: auto;
    min-height: 260px;
  }
}

@media (max-width: 480px) {
  .automation-heading {
    font-size: 28px;
    line-height: 32px;
  }

  .feature-title {
    font-size: 20px;
  }

  .feature-description {
    font-size: 18px;
  }
}

/* Estilos para a seção de call-to-action */
.cta-section {
  align-self: stretch;
  height: 750px;
  padding: 0 96px;
  /* background: #0065d3; */
  background-image: url("../assets/bg-blue.png");
  background-size: cover;
  background-position: center;
  background-blend-mode: overlay;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 41px;
  position: relative;
  overflow: hidden;
}

.cta-section img {
  position: absolute;
  bottom: 10%;
  left: 10%;
  width: max-content;
}

.cta-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  justify-content: flex-end;
  height: 100%;
  padding: 6rem 0;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.cta-heading {
  text-align: right;
  color: white;
  font-size: 94px;
  font-weight: 700;
  line-height: 72px;
  margin: 0;
}

.cta-info {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  gap: 24px;
}

.cta-description {
  width: 393px;
  color: white;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.4;
  text-align: right;
  margin: 0;
}

/* Responsividade */
@media (max-width: 1200px) {
  .cta-section {
    padding: 0 48px;
    height: auto;
    min-height: 750px;
  }

  .cta-section img {
    bottom: 5%;
    left: 5%;
    max-width: 120px;
  }

  .cta-heading {
    font-size: 72px;
    line-height: 60px;
  }
}

@media (max-width: 900px) {
  .cta-section {
    padding: 0 24px;
    align-items: center;
  }

  .cta-content {
    align-items: center;
  }

  .cta-heading {
    font-size: 60px;
    line-height: 50px;
    text-align: center;
  }

  .cta-info {
    align-items: center;
  }

  .cta-description {
    width: 100%;
    max-width: 393px;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .cta-heading {
    font-size: 48px;
    line-height: 42px;
  }

  .cta-description {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .cta-heading {
    font-size: 36px;
    line-height: 36px;
  }

  .cta-description {
    font-size: 16px;
  }
}

.section-white {
  background: white;
}

.section-footer {
  background-image: url("../assets/back_footer.png");
  background-size: cover;
}

.txt-container {
  max-width: 850px;
  position: relative;
  margin: auto;
  padding-top: 120px;
}

.txt-container h2 {
  color: #4ea1ff;
  text-align: center;
}

p.desc_processo {
  color: #004590;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.texto-e-ilustraes {
  width: 100%;
  position: relative;
  height: auto;
  text-align: left;
  font-size: 24px;
  color: #0065d3;
  display: flex;
  flex-direction: column;
  gap: 4rem;
  margin-top: 70px;
}
.ilustraes-icon {
  position: absolute;
  top: calc(50% - 1042.5px);
  left: calc(50% - 568.85px);
  width: 100%;
  height: auto;
  opacity: 0.82;
}

.card-ilus {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.card-ilus::before {
  content: "";
  position: absolute;
  bottom: -100px;
  left: 0;
  right: 0;
  height: 130px;
  background-image: url("../assets/after.png");
  background-size: 50%;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 1px;
}

.card-ilus:nth-child(odd)::before {
  transform: scaleX(-1);
  filter: FlipH; /* Suporte para alguns navegadores mais antigos */
  -ms-filter: "FlipH"; /* Para IE */
}

.card-ilus-img {
  max-width: 349px;
  position: relative;
  height: auto;
}

.card-ilus-content {
  width: 100%;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0.5rem;
}

.card-ilus-content button {
  margin-top: 15px;
}

.card-ilus-content h4 {
  font-weight: 700;
}

.descricao {
  font-size: 1rem;
  color: #061c2d;
  line-height: 1.4;
}

@media (min-width: 768px) {
  .card-ilus {
    flex-direction: row;
  }
}

@media (max-width: 768px) {
  .card-ilus-img {
    order: -1;
  }

  .card-ilus-content {
    order: 1;
  }
}

/* seção parceiros  */
.premios {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
  text-align: left;
  color: #fff;
  padding-bottom: 200px;
  background: var(--background);
}

.img-prem-pos {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
}

.premios-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 150px 0px 0;
  gap: 6rem;
  max-width: 1200px;
  margin: auto auto;
}

h2.title-premios {
  align-self: stretch;
  position: relative;
  font-size: 7rem;
  line-height: 1;
  font-weight: 700;
}

.premios-container {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: 4rem;
  text-align: center;
}

@media (max-width: 760px) {
  h2.title-premios {
    font-size: 3rem;
    align-self: center;
  }
  .premios-content {
    gap: 3rem;
  }

  .premios-container {
    gap: 2rem;
  }
}

.card-premio {
  width: 280px;
  position: relative;
  height: 275.3px;
}
.ramo-idb-icon {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  left: 0%;
  max-width: 100%;
  overflow: hidden;
  max-height: 100%;
}
.premios-content-txt {
  position: absolute;
  top: 60.14px;
  left: 33px;
  height: 155px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}
.premios-content-txt-align {
  align-self: stretch;
  position: relative;
  line-height: 24px;
}

.logo-idb {
  width: 215px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 20px;
  background-color: #fff;
  height: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5px 24px;
  box-sizing: border-box;
}

.logo-idb img {
  height: 30px;
  width: auto;
}

/* parceirros */
.parceiros-parent {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 0px 160px;
  gap: 4rem;
  font-size: 94px;
  margin-top: 120px;
}
h4.parceiros-title {
  position: relative;
  line-height: 1;
  font-weight: 700;
  color: #4ea1ff;
  font-size: 6rem;
  align-self: stretch;
}

.parceiros-container {
  height: auto;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: 1.5rem;
  max-width: 900px;
  margin: auto auto;
}
.parceiro-content {
  width: 200px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.3);
  border-radius: 40px;
  background-color: #fff;
  height: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  box-sizing: border-box;
}
.parceiro-content-img {
  position: relative;
  max-height: 100%;
  object-fit: cover;
}

@media (max-width: 960px) {
  h4.parceiros-title {
    align-self: auto;
    font-size: 3rem;
  }

  .parceiros-parent {
    padding: 0px 30px;
    gap: 2rem;
  }

  .parceiros-container {
    align-items: center;
    gap: 1rem;
  }

  .parceiro-content {
    width: 160px;
    height: 60px;
  }

  .parceiro-content-img {
    max-height: 30px;
  }
}

/* chamada final */
.section-rocket {
  width: 100%;
  height: auto;
  background-image: url("../assets/rocket.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top right;
  padding-top: 8rem;
}

.suaeta-container {
  box-sizing: border-box;
  width: 100%;
  height: auto;
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: start;
  justify-content: start;
  text-align: left;
  gap: 4rem;
}

h5.title-suaeta {
  width: 100%;
  max-width: 620px;
  position: relative;
  line-height: 4.5rem;
  font-size: 6rem;
  display: inline-block;
  font-weight: 700;
  color: #0065d3;
}

.iconsEta {
  width: 100%;
  height: 500px;
  position: relative;
  margin-top: 8rem;
}

.card-eta {
  box-shadow: 4.526431083679199px 4.526431083679199px 18.11px
    rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(2px);
  border-radius: 9.05px;
  width: fit-content;
  height: fit-content;
  padding: 2rem 3rem;
  max-width: 400px;
}

.card-eta.card-eficiencia {
  background-color: #4ea1ff;
  color: #e0e0e0;
  position: absolute;
  top: 0;
  right: 0;
}

.card-eta.card-economia {
  background-color: #dae6ffbf;
  color: #4ea1ff;
  position: absolute;
  top: 90px;
  left: 0;
}

.card-eta.card-manut {
  background-color: #0065d3;
  color: #e0e0e0;
  position: absolute;
  top: 190px;
  right: 0;
}

.card-eta.card-sobrecar {
  background-color: #dae6ffbf;
  color: #4ea1ff;
  position: absolute;
  top: 290px;
  left: 0;
}

.card-eta span {
  font-size: 3rem;
  font-weight: 700;
  line-height: 3rem;
}

.right-icon {
  width: 70px;
  position: absolute;
  top: -40px;
  right: -10px;
}

.left-icon {
  width: 70px;
  position: absolute;
  top: 15px;
  left: -30px;
}

.card-eta.card-economia .left-icon {
  top: -15px;
  left: -30px;
}

@media (max-width: 768px) {
  h5.title-suaeta {
    line-height: 3rem;
    font-size: 4rem;
  }

  .suaeta-container {
    flex-direction: column;
  }

  .iconsEta {
    height: 320px;
    margin-top: 2rem;
  }

  .card-eta {
    padding: 1rem 2rem;
    max-width: 300px;
  }

  .card-eta.card-eficiencia {
    top: 0;
    right: 0;
  }

  .card-eta.card-economia {
    top: 60px;
    left: 20px;
  }

  .card-eta.card-manut {
    top: 115px;
    right: 20px;
  }

  .card-eta.card-sobrecar {
    top: 175px;
    left: 45px;
  }

  .card-eta span {
    font-size: 2rem;
    line-height: 2rem;
  }

  .right-icon {
    width: 50px;
    top: -25px;
    right: -12px;
  }

  .left-icon {
    width: 50px;
    top: 15px;
    left: -25px;
  }
}

/* form */
.frame-wrapper {
  align-self: stretch;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  background-image: url("../assets/bg-moca.png");
  background-size: cover;
  background-position: top;
  padding: 0px 96px;
  box-sizing: border-box;
  margin-top: -80px;
  position: relative;
  font-size: 94px;
  color: #fff;
}

.bg-form {
  position: absolute;
  left: 0;
  top: 0;
  height: 400px;
  object-fit: cover;
  object-position: top;
  width: 100%;
}

.frame-group {
  width: 100%;
  max-width: 600px;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: flex-start;
  padding: 15rem 0;
  box-sizing: border-box;
  gap: 40px;
}

.frame-group h6 {
  color: #e0e0e0;
  font-size: 5rem;
  line-height: 4rem;
  margin-top: 100px;
  max-width: 500px;
}

#cta-form {
  width: 100%;
}

.formulario {
  border-radius: 16px;
  background: var(--background);
  background-image: url("../assets/bg-form.png");
  background-size: cover;
  background-position: top;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 1rem;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top;
  font-size: 20px;
  padding: 2rem;
}

.bg-form {
  display: none;
}

@media (max-width: 1024px) {
  .frame-group h6 {
    width: 100%;
    text-align: right;
    font-size: 2.6rem;
    line-height: 2.3rem;
    max-width: 100%;
    padding: 0 2rem 2rem 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-top: 50px;
  }
  .bg-form {
    display: block;
    height: 600px;
    object-fit: cover;
    object-position: top;
    width: 100%;
  }
  .frame-wrapper {
    align-self: auto;
    padding: 0px 0;
    margin-top: 80px;
    background-image: none;
  }
  .frame-group {
    margin-top: 0;
    padding-bottom: 0;
    max-width: 1100px;
  }
}

.formulario p {
  color: #e0e0e0;
}

.input-geral-parent {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 1rem;
  font-size: 1rem;
  width: 100%;
}
.input-geral {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 4px;
}
.label {
  font-size: 0.9rem;
  font-weight: 700;
}

/* Forms */
.input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--border);
  border-radius: 0.75rem;
  font-size: 1rem;
  transition: var(--transition-smooth);
  background: transparent;
  color: #e0e0e0;
}

.input:focus {
  outline: none;
  border-color: var(--primary);
}

/* seção final com cta */
.seo-fale-com-a-gente {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 6rem 0px;
  box-sizing: border-box;
  text-align: center;
}
.fale-com-a-gente-parent {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 50px;
}

.fale-com-a-gente-parent h4 {
  line-height: 3.2rem;
  font-size: 3rem;
  font-weight: 700;
  color: #4ea1ff;
}

.sac-parent {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: 1rem;
  font-size: 94px;
  color: #fff;
  width: 100%;
}

.box-sac {
  width: 100%;
  max-width: 350px;
  background-color: #0065d3;
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
  padding: 2rem;
  box-sizing: border-box;
  gap: 1rem;
  border-radius: 1.6rem;
  font-size: 1.2rem;
}

.box-sac h6 {
  font-weight: 700;
  font-size: 5rem;
  line-height: 1;
}

.box-sac p {
  color: #e0e0e0;
  font-size: 1rem;
}

.box-sac a {
  color: #e0e0e0;
  font-size: 1rem;
  font-weight: 700;
}

.box-footer {
  width: 100%;
  max-width: 350px;
  text-align: left;
  padding: 1rem;
}

.box-footer h6 {
  font-weight: 700;
  font-size: 2rem;
  line-height: 1;
}

.box-footer h5 {
  font-weight: 700;
  font-size: 1.5rem;
}

.box-footer p {
  color: #e0e0e0;
  font-size: 1rem;
  line-height:1.5rem;
}

.box-footer a {
  color: #e0e0e0;
}

@media (max-width: 760px) {
  .fale-com-a-gente-parent h4 {
    line-height: 2.2rem;
    font-size: 2rem;
  }

  .box-sac h6 {
    font-size: 3rem;
  }
}

/* Images */
.rounded-2xl {
  border-radius: 1rem;
}

.shadow-hero {
  box-shadow: var(--hero-shadow);
}

.w-full {
  width: 100%;
}

.h-auto {
  height: auto;
}

strong {
  font-weight: 700;
}

/* Animations */
@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

.animate-pulse {
  animation: pulse 2s ease-in-out infinite;
}

/* Utility Classes */
.relative {
  position: relative;
}

.z-10 {
  z-index: 10;
}

.overflow-hidden {
  overflow: hidden;
}

.min-h-80vh {
  min-height: 80vh;
}

.min-h-100vh {
  min-height: 100vh;
}

.max-w-sm {
  max-width: 12rem;
}

.max-w-lg {
  max-width: 32rem;
}

.max-w-3xl {
  max-width: 48rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.leading-tiny {
  line-height: 1;
}

.leading-medium {
  line-height: 1.2;
}

.leading-relaxed {
  line-height: 1.625;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

/* Estilos gerais para o slider */
.produtos-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 0 0 80px 0;
  height: 100%;
}

.txt-section-monit {
  float: right;
  margin-right:5%;
  margin-top:30px;
  bottom: 5%;
  right: 5%;
  width: 100%;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: end;
}

.txt-section-monit span {
  font-weight: 700;
  color: #4ea1ff;
  font-size: 3.5rem;
  line-height: 0.8;
  text-align: end;
}

.txt-section-monit span:last-child {
  color: #fff;
}

h2.title-slider {
  position: relative;
  font-size: 6rem;
  line-height: 1;
  font-weight: 700;
  color: #e0e0e0;
  text-align: right;
}

.categ_slide {
  color: #4ea1ff;
  font-size: 5rem;
  font-weight: 700;
  z-index: -1;
  line-height: 1;
}

.slider-container {
  height: 700px;
  position: relative;
  width: 100%;
  perspective: 1000px;
}

.slider-track {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.5s ease;
}

.slide {
  position: absolute;
  width: 60%;
  height: 400px;
  background: #0065d3;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  padding: 30px;
  transition: all 0.5s ease;
  display: flex;
  flex-direction: column;
  opacity: 0.8;
  transform: scale(0.85);
  filter: blur(4px);
  z-index: 1;
}

.slide.active {
  opacity: 1;
  transform: scale(1) translateX(0);
  filter: blur(0);
  z-index: 3;
}

/* .slide.active .categ_slide {
  display: block;
} */

/* .categ_slide {
  position: absolute;
  bottom: 100%;
  right: 0;
  color: #4ea1ff;
  font-size: 4rem;
  font-weight: 700;
  z-index: -1;
  line-height: 2;
  display: none;
} */

.slide.prev {
  transform: scale(0.85) translateX(-75%);
  filter: blur(4px);
  z-index: 2;
  cursor: pointer;
}

.slide.next {
  transform: scale(0.85) translateX(75%);
  filter: blur(4px);
  z-index: 2;
  cursor: pointer;
}

.slide-content {
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.image-slider {
  width: 100%;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-slider img {
  height: 500px;
  margin-top: -50px;
}

.txt-slider {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.slide h3 {
  font-size: 2rem;
  line-height: 1;
  color: #fff;
  margin-bottom: 0;
}

.slide p {
  font-size: 16px;
  line-height: 1.6;
  color: #fff;
  flex-grow: 1;
}

.slide .saiba-mais {
  align-self: flex-start;
  background: linear-gradient(90deg, #00244c 0%, #0065d3 100%);
  color: white;
  padding: 10px 20px;
  border-radius: 2rem;
  text-decoration: none;
  font-weight: 500;
  transition: transform 0.2s, box-shadow 0.2s;
  margin-top: 1rem;
  font-size: 0.9rem;
}

.slide .saiba-mais:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

@media (max-width: 760px) {
  .produtos-slider {
    padding: 40px 0 80px 0;
  }

  h2.title-slider {
    font-size: 3rem;
    line-height: 1;
  }

  .categ_slide {
    font-size: 2.5rem;
    line-height: 1;
  }

  .txt-section-monit {
    bottom: 110px;
    right: 30px;
    max-width: 300px;
  }

  .txt-section-monit span {
    font-size: 2.5rem;
    line-height: 0.8;
  }

  .slide {
    width: 80%;
    height: auto;
  }

  .slide-content {
    flex-direction: column;
  }

  .slide h3 {
    font-size: 1.2rem;
  }

  .slide p {
    font-size: 12px;
    line-height: 1.4;
  }

  .image-slider {
    width: 100%;
    height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .image-slider img {
    height: 300px;
    margin-top: -50px;
    width: auto;
  }

  .slider-container {
    margin-bottom: 100px;
  }
}

.slider-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  z-index: 10;
  pointer-events: none;
}

.slider-nav button {
  pointer-events: all;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
  margin: 0 20px;
}

.slider-nav button:hover {
  background: white;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.slider-nav button svg {
  width: 24px;
  height: 24px;
  stroke: #2b6cb0;
}

.slider-dots {
  display: flex;
  justify-content: center;
  margin-top: -100px;
  gap: 10px;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #cbd5e0;
  cursor: pointer;
  transition: all 0.3s;
}

.slider-dot.active {
  background: #2b6cb0;
  transform: scale(1.2);
}

/* botao backtotop */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #4ea1ff;
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(43, 108, 176, 0.3);
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: #2c5282;
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(43, 108, 176, 0.4);
}

.back-to-top:active {
  transform: translateY(0);
}

.back-to-top svg {
  width: 30px;
  height: 30px;
  stroke: white;
}

/* Vertical Timeline Styles */
/* .vertical-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 0;
}

.vertical-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 2.5rem;
  width: 4px;
  background: var(--primary);
  z-index: 1;
}

.process-step {
  display: flex;
  margin-bottom: 3rem;
  position: relative;
  z-index: 2;
}

.step-indicator {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-right: 2rem;
  flex-shrink: 0;
}

.step-icon {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  color: var(--primary);
  border: 3px solid var(--primary);
  position: relative;
  z-index: 2;
}

.step-number {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-top: -1.25rem;
  position: relative;
  z-index: 3;
  border: 3px solid white;
}

.step-content {
  background: white;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  flex-grow: 1;
  margin-top: 1rem;
}

.step-content h3 {
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.step-content p {
  color: var(--muted-foreground);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .vertical-timeline::before {
    left: 2rem;
  }

  .process-step {
    flex-direction: column;
    align-items: flex-start;
  }

  .step-indicator {
    flex-direction: row;
    margin-bottom: 1rem;
    margin-right: 0;
  }

  .step-number {
    margin-top: 0;
    margin-left: -1.25rem;
  }

  .step-content {
    margin-top: 0;
    margin-left: 5rem;
  }
}

@media (max-width: 480px) {
  .step-icon {
    width: 4rem;
    height: 4rem;
  }

  .step-content {
    margin-left: 4rem;
    padding: 1rem;
  }

  .step-content h3 {
    font-size: 1.1rem;
  }

  .step-content p {
    font-size: 0.9rem;
  }
} */
@media (max-width: 760px) {
  .botton-cat {
      position: absolute;
      right: 50px;
      top: 70px;
  }
}

.fixed-tabs-Whats {position: fixed;right: 0px;bottom: 100px;z-index: 100;z-index: 999;}
.aba-whatsphone {background: #1daa61;height: 60px;width: 75px;border-radius: 30px 0 0 30px;transition: 0.7s ease;box-shadow: 1px 1px 5px rgba(0,0,0,.45);}
.aba-whatsphone:hover {width: 230px;transition: 0.7s ease;}
.aba-whatsphone:hover #top {right: 185px;}
.aba-whatsphone-icone {background-image: url(https://iara-water.com/assets/icone_whats.png);background-repeat: no-repeat;width: 240px;background-size: 44px;background-position: 16px 7px; padding: 24px;}
.aba-whatsphone-icone a {color: #ffffff !important;font-weight: bold !important;font-size: 18px;line-height: 17px;margin-left: 52px;line-height: 15px !important;text-decoration: none;height: 60px;font-family: sans-serif;}
.aba-whatsphone-icone a strong {font-weight: normal !important;display: block;font-size: 16px;margin-left: 62px;}