@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
  --primary-color:        #FEAC0E;
  --white-color:          #ffffff;
  --dark-color:           #2667CF;

  --clear-color:          #0088e2;
  --blue-terciary:        #0d6efd;
  --about-bg-color:       #f2f2f2;

  --gray-color:           #909090;
  --link-color:           #404040;
  --p-color:              #666262;

  --base-font-family:     "Poppins", sans-serif;
  --font-weight-bold:     bold;
  --font-weight-normal:   normal;
  --font-weight-light:    300;
  --font-weight-thin:     100;

  --h1-font-size:         48px;
  --h2-font-size:         36px;
  --h3-font-size:         28px;
  --h4-font-size:         24px;
  --h5-font-size:         22px;
  --h6-font-size:         22px;
  --p-font-size:          18px;
  --base-font-size:       16px;
  --menu-font-size:       14px;
  --border-radius-large:  100%;
  --border-radius-small:  2px;
}

.strong-title-blue {
  color: #43DDFF !important;
}

.navbar-asbi {
  background-color: var(--dark-color) !important;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

/* Hero Section - Versão aprimorada */
.hero-section {
  padding: 140px 0 100px;
  background-color: var(--dark-color);
  color: var(--white-color); 
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.containerImgHero {
  width: 50%;
  align-items: center;
  display: flex;
  justify-content: center;
  text-align: center;
}

.hero-section h1 {
  color: var(--white-color);
  font-size: 3.5rem;
  margin-bottom: 20px;
  letter-spacing: -1.5px;
  line-height: 1.2;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.hero-section p.lead {
  font-size: 1.5rem;
  margin-bottom: 30px;
  color: var(--white-color);
  line-height: 1.6;
  max-width: 600px;
}

/* Botões no hero - versão aprimorada */
.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.hero-buttons .custom-btn {
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.hero-buttons .custom-btn.bg-color {
  background: var(--primary-color);
  color: var(--white-color);
  box-shadow: 0 4px 15px rgba(78, 107, 255, 0.4);
}

.hero-buttons .custom-btn.bg-color:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(78, 107, 255, 0.5);
}

.hero-buttons .custom-btn.bordered {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  background: transparent;
}

.hero-buttons .custom-btn.bordered:hover {
  background: var(--primary-color);
  color: var(--white-color);
  transform: translateY(-2px);
}

.hero-buttons .custom-btn.conhecaoapp:hover {
  background: var(--primary-color);
  color: var(--white-color);
  transform: translateY(-2px);
}

/* Features Section - Design aprimorado */
.features-section {
  padding: 100px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 2.5rem;
  color: var(--dark-color);
  margin-bottom: 15px;
}

.section-title p {
  color: var(--gray-color);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

.section-bg {
  background-color: var(--about-bg-color);
  position: relative;
  overflow: hidden;
}

.feature-card {
  background: var(--white-color);
  border-radius: 12px;
  padding: 35px;
  height: 100%;
  box-shadow: var(--card-shadow);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 25px;
  display: inline-flex;
  padding: 15px;
  background: #f3f0e2;
  border-radius: 12px;
}

.feature-card h3 {
  color: var(--dark-color);
  margin-bottom: 15px;
  font-size: 1.4rem;
}

.feature-card p {
  color: var(--gray-color);
  line-height: 1.7;
}

.container-videoBI {
  margin: 10%;
}

/* Screenshots Section - Design aprimorado */
.screenshots-section {
  padding: 100px 0;
  background: linear-gradient(to bottom, var(--about-bg-color) 0%, white 100%);
}

.screenshot-carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 30px;
  padding: 30px 0;
  scrollbar-width: none; /* Firefox */
}

.screenshot-carousel::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.screenshot-item {
  scroll-snap-align: center;
  flex: 0 0 auto;
  width: 80%;
  max-width: 300px;
  transition: transform 0.3s ease;
}

.screenshot-item:hover {
  transform: scale(1.05);
}

.screenshot-item img {
  border: none;
  transition: all 0.3s ease;
}

/* Integration Section - Design aprimorado */
.integration-section {
  padding: 100px 0;
  position: relative;
}

.integration-features {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.integration-features li {
  margin-bottom: 15px;
  font-size: 1.1rem;
  color: var(--gray-color);
  display: flex;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.integration-features i {
  color: var(--primary-color);
  margin-right: 15px;
  font-size: 1.3rem;
  min-width: 25px;
}

/* Testimonials - Design aprimorado */
.testimonials-section {
  padding: 100px 0;
  background-color: var(--about-bg-color);
}

.testimonial-card {
  background: var(--white-color);
  border-radius: 12px;
  padding: 35px;
  box-shadow: var(--card-shadow);
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.testimonial-content {
  margin-bottom: 25px;
  font-style: italic;
  color: var(--gray-color);
  line-height: 1.8;
  position: relative;
}

.testimonial-content::before {
  content: '"';
  font-size: 4rem;
  color: rgba(78, 107, 255, 0.1);
  position: absolute;
  top: -20px;
  left: -15px;
  font-family: serif;
  line-height: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-author img {
  width: 50px;
  height: 50px;
  object-fit: cover;
}

.testimonial-author h5 {
  color: var(--dark-color);
  margin-bottom: 5px;
  font-size: 1.1rem;
}

.testimonial-author span {
  color: var(--gray-color);
  font-size: 0.9rem;
}

/* CTA Section - Design aprimorado */
.cta-section {
  padding: 120px 0;
  background-color: var(--dark-color);
  color: var(--white-color);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.3;
  z-index: 0;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  color: var(--white-color);
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.cta-section .lead {
  color: rgba(255,255,255,0.85);
  font-size: 1.3rem;
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.cta-btn {
  padding: 16px 40px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.1rem;
  background: var(--primary-color);
  color: white;
  border: none;
  box-shadow: 0 10px 25px rgba(78, 107, 255, 0.5);
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background: var(--primary-hover);
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(78, 107, 255, 0.6);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .hero-section {
      padding: 120px 0 80px;
      text-align: center;
  }
  
  .hero-section p.lead {
      margin-left: auto;
      margin-right: auto;
  }
  
  .hero-image {
      margin-top: 50px;
      max-height: 400px;
  }
  
  .hero-buttons {
      justify-content: center;
  }
}

@media (max-width: 768px) {
  .hero-section h1 {
      font-size: 2.8rem;
      line-height: 1.3;
  }
  
  .hero-section p.lead {
      font-size: 1.25rem;
  }
  
  .section-title h2 {
      font-size: 2rem;
  }
  
  .screenshot-item {
      width: 85%;
  }
  
  .cta-section h2 {
      font-size: 2.2rem;
  }
}

@media (max-width: 576px) {
  .hero-section h1 {
      font-size: 2.2rem;
  }
  
  .hero-section p.lead {
      font-size: 1.1rem;
  }
  
  .hero-buttons .custom-btn {
      width: 100%;
  }
  
  .feature-card {
      padding: 25px;
  }
}
