/* Reset CSS */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Mulish", sans-serif;
  background-color: #f8f9fa;
  color: #333;
  line-height: 1.6;
}

/* Header Section */
.section-header {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  color: white;
  padding-bottom: 40px;
}

.section-header h1 {
  font-family: "Darker Grotesque", sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  text-align: center;
  padding: 60px 5%;
  max-width: 1000px;
  margin: 0 auto;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 5%;
  background-color: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

#header-logo {
  height: 50px;
}

.header-links {
  display: flex;
  gap: 30px;
}

.header-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.header-links a:hover {
  color: #ff6b35;
}

#button-especialista-header {
  background-color: #ff6b35;
  color: white;
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

#button-especialista-header:hover {
  background-color: #e55a2b;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

/* Solution Sections */
.solution-section {
  padding: 80px 5%;
  background: white;
}

.solution-section.alt-bg {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.solution-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

.solution-container.reverse {
  flex-direction: row-reverse;
}

.solution-container-full {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.solution-content {
  flex: 1;
  margin-bottom: 3rem;
}

.solution-content.full-width {
  flex: 1 1 100%;
  max-width: none;
}

.solution-content h2 {
  font-family: "Darker Grotesque", sans-serif;
  font-size: 2.8rem;
  color: #1e3c72;
  margin-bottom: 20px;
  font-weight: 700;
}

.solution-description {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 40px;
  line-height: 1.8;
}

.solution-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 3rem;
}

/* Carousel Styles */
.carousel-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.carousel {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  background: #f0f0f0;
}

.carousel-inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}

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

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
  color: white;
  padding: 20px;
  font-size: 1.2rem;
  font-weight: 600;
  text-align: center;
}

.carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(30, 60, 114, 0.7);
  color: white;
  border: none;
  padding: 15px 20px;
  cursor: pointer;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  z-index: 10;
  border-radius: 5px;
}

.carousel-control:hover {
  background: rgba(30, 60, 114, 0.9);
  transform: translateY(-50%) scale(1.1);
}

.carousel-control.prev {
  left: 20px;
}

.carousel-control.next {
  right: 20px;
}

.carousel-indicators {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background: #ff6b35;
  transform: scale(1.3);
}

.indicator:hover {
  background: rgba(255, 255, 255, 0.8);
}

.feature {
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #ff6b35;
  transition: all 0.3s ease;
}

.feature:hover {
  transform: translateX(10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.feature h3 {
  font-family: "Darker Grotesque", sans-serif;
  font-size: 1.6rem;
  color: #1e3c72;
  margin-bottom: 15px;
  font-weight: 600;
}

.feature ul {
  list-style: none;
}

.feature li {
  padding: 8px 0;
  color: #666;
  position: relative;
  padding-left: 25px;
  font-size: 1rem;
}

.feature li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #ff6b35;
  font-weight: bold;
}

.solution-image {
  max-width: 500px;
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Tech Grid */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.tech-item {
  background: white;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border-top: 3px solid #ff6b35;
}

.tech-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.tech-item h3 {
  font-family: "Darker Grotesque", sans-serif;
  font-size: 1.5rem;
  color: #1e3c72;
  margin-bottom: 10px;
  font-weight: 600;
}

.tech-item p {
  color: #666;
  font-size: 1rem;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  padding: 80px 5%;
  text-align: center;
  color: white;
}

.cta-section h2 {
  font-family: "Darker Grotesque", sans-serif;
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.cta-section p {
  font-size: 1.3rem;
  margin-bottom: 40px;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-primary,
.cta-secondary {
  padding: 15px 35px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.cta-primary {
  background-color: #ff6b35;
  color: white;
  box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
}

.cta-primary:hover {
  background-color: #e55a2b;
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(255, 107, 53, 0.4);
}

.cta-secondary {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

.cta-secondary:hover {
  background-color: white;
  color: #1e3c72;
}

/* Footer */
#section-footer {
  background-color: #0a1628;
  color: white;
  padding-top: 60px;
}

.footer {
  display: flex;
  justify-content: space-between;
  padding: 0 5% 40px;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-assinatura {
  flex: 1;
  min-width: 250px;
}

#footer-logo {
  height: 40px;
  margin-bottom: 20px;
}

#footer-cnpj, #footer-telefone, #footer-email {
  color: rgba(255, 255, 255, 0.7);
  margin: 5px 0;
  font-size: 0.9rem;
  line-height: 1.4;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
  flex: 1;
  min-width: 150px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 1rem;
}

.footer-links a:hover {
  color: #ff6b35;
}

.footer-inscricao {
  flex: 1.5;
  min-width: 300px;
}

#inscricao-text {
  font-size: 1.2rem;
  margin-bottom: 20px;
  font-weight: 600;
  color: #ff6b35;
}

#inscricao-input {
  width: 100%;
  padding: 12px 20px;
  margin-bottom: 15px;
  border: none;
  border-radius: 25px;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 1rem;
}

#inscricao-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

#inscricao-button {
  background-color: #ff6b35;
  color: white;
  padding: 12px 30px;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  font-size: 1rem;
}

#inscricao-button:hover {
  background-color: #e55a2b;
  transform: translateY(-2px);
}

#orange-line-footer {
  height: 2px;
  background: linear-gradient(90deg, #ff6b35 0%, #ff8c42 50%, #ff6b35 100%);
  margin-top: 40px;
}

#copyright-div {
  text-align: center;
  padding: 20px;
  background-color: #050a15;
}

#copyright {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

/* Responsividade */
@media (max-width: 968px) {
  .solution-container {
    flex-direction: column;
  }
  
  .solution-container.reverse {
    flex-direction: column;
  }
  
  .solution-image {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .section-header h1 {
    font-size: 2.5rem;
    padding: 40px 5%;
  }
  
  .header {
    flex-direction: column;
    gap: 20px;
    padding: 15px 5%;
  }
  
  .header-links {
    flex-direction: column;
    text-align: center;
    gap: 10px;
    width: 100%;
  }
  
  #button-especialista-header {
    width: 100%;
    text-align: center;
  }
  
  .solution-content h2 {
    font-size: 2rem;
  }
  
  .solution-description {
    font-size: 1.1rem;
  }
  
  .solution-features {
    grid-template-columns: 1fr;
  }
  
  .tech-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-primary,
  .cta-secondary {
    width: 100%;
    max-width: 300px;
  }
  
  .footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .footer-links {
    align-items: center;
  }
}