/* Global Styles */
:root {
  --primary-color: #2c6bff;
  --primary-dark: #1a56e0;
  --secondary-color: #25d366;
  --text-dark: #333;
  --text-light: #666;
  --text-white: #fff;
  --bg-light: #f8f9fa;
  --bg-lighter: #ffffff;
  --border-color: #e1e4e8;
  --shadow-color: rgba(0, 0, 0, 0.1);
  --success-color: #28a745;
  --warning-color: #ffc107;
  --danger-color: #dc3545;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: var(--text-dark);
}

p {
  font-size: 1rem;
  color: var(--text-light);
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s;
}

a:hover {
  color: var(--primary-dark);
}

section {
  padding: 80px 0;
  position: relative;
}

.container {
  max-width: 1200px;
}

.btn {
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  transform: translateY(-2px);
}

.btn-block {
  display: block;
  width: 100%;
}

.section-header {
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

/* Navbar */
.navbar {
  padding: 15px 0;
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--primary-color);
}

.diia-brand {
  color: #000000;
  font-weight: 800;
  letter-spacing: -0.5px;
  background-color: #fff212;
  padding: 2px 6px;
  border-radius: 4px;
  font-style: normal;
  text-transform: lowercase;
}

.navbar-nav .nav-link {
  font-weight: 500;
  padding: 10px 15px;
  color: var(--text-dark);
}

.navbar-nav .nav-link:hover {
  color: var(--primary-color);
}

.btn-contato {
  background-color: var(--primary-color);
  color: white !important;
  border-radius: 8px;
  padding: 8px 20px !important;
  margin-left: 15px;
}

.btn-contato:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
}

/* Hero Section */
#hero {
  padding: 160px 0 80px;
  background-color: var(--bg-light);
  background-image: 
      radial-gradient(circle at 100% 0%, var(--primary-color) 0%, transparent 20%),
      radial-gradient(circle at 0% 100%, #fff212 0%, transparent 20%);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-text h1 {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-text h2 {
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 20px;
  color: var(--text-light);
}

.powered-by {
  background-color: rgba(255, 242, 18, 0.2);
  display: inline-block;
  padding: 8px 15px;
  border-radius: 6px;
  color: #333;
  font-weight: 500;
  border-left: 3px solid #fff212;
  margin-bottom: 20px;
}

.badge {
  padding: 8px 16px;
  font-size: 0.9rem;
  border-radius: 30px;
}

.hero-img {
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease;
}

.hero-img:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 50px rgba(0, 0, 0, 0.18);
}

.escassez {
  color: var(--danger-color);
  font-weight: 500;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.trust-badges span {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-light);
}

.trust-badges i {
  color: var(--success-color);
  margin-right: 8px;
}

/* Problemas Section */
.problema-card {
  background-color: var(--bg-lighter);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: all 0.3s ease;
  text-align: center;
  margin-bottom: 20px;
}

.problema-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.problema-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 2rem;
}

.problema-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
}

/* Solução Section */
.solucao-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

.solucao-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(44, 107, 255, 0.1);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.solucao-text h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

/* Benefícios Section */
.beneficio-card {
  background-color: var(--bg-lighter);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.beneficio-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.beneficio-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: rgba(44, 107, 255, 0.1);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 2rem;
  transition: all 0.3s ease;
}

.beneficio-card:hover .beneficio-icon {
  background-color: var(--primary-color);
  color: var(--text-white);
  transform: scale(1.1);
}

.beneficio-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.beneficio-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
}

/* Planos Section */
.plano-card {
  background-color: var(--bg-lighter);
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}

.plano-card.popular {
  border: 2px solid var(--primary-color);
  transform: scale(1.05);
  z-index: 2;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.plano-card.popular:hover {
  transform: scale(1.05) translateY(-10px);
}

.plano-badge {
  position: absolute;
  top: 30px;
  right: -35px;
  background-color: var(--primary-color);
  color: var(--text-white);
  font-weight: 600;
  padding: 8px 50px;
  transform: rotate(45deg);
  font-size: 0.9rem;
}

.plano-card h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.plano-preco {
  margin-bottom: 15px;
}

.plano-preco .valor {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--primary-color);
}

.plano-preco .periodo {
  font-size: 1.2rem;
  color: var(--text-light);
}

.plano-economia {
  font-size: 1rem;
  font-weight: 600;
  color: var(--success-color);
  margin-bottom: 25px;
}

.plano-features {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
  text-align: left;
}

.plano-features li {
  margin-bottom: 12px;
  padding-left: 30px;
  position: relative;
}

.plano-features li i {
  position: absolute;
  left: 0;
  top: 5px;
  color: var(--success-color);
}

.plano-detalhe {
  font-size: 0.9rem;
  margin-bottom: 25px;
  color: var(--text-light);
}

.garantia {
  margin-top: 50px;
}

.garantia-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.garantia h3 {
  font-size: 1.6rem;
  margin-bottom: 10px;
}

/* Depoimentos Section */
.depoimento-card {
  background-color: var(--bg-lighter);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.depoimento-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.depoimento-rating {
  margin-bottom: 20px;
}

.depoimento-rating i {
  color: var(--warning-color);
  font-size: 1.2rem;
  margin-right: 2px;
}

.depoimento-texto {
  font-size: 1rem;
  font-style: italic;
  margin-bottom: 20px;
  min-height: 120px;
}

.depoimento-autor {
  display: flex;
  align-items: center;
}

.depoimento-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
  border: 3px solid var(--primary-color);
}

.depoimento-autor h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.depoimento-autor span {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* FAQ Section */
.accordion-item {
  margin-bottom: 15px;
  border: none;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.accordion-button {
  padding: 20px 25px;
  font-weight: 600;
  background-color: var(--bg-lighter);
}

.accordion-button:not(.collapsed) {
  color: var(--primary-color);
  background-color: #eef2ff;
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-body {
  padding: 20px 25px;
  background-color: var(--bg-lighter);
}

/* CTA Section */
.cta-features {
  margin: 30px 0;
}

.cta-features div {
  margin-bottom: 10px;
  font-weight: 500;
}

.cta-features i {
  color: var(--success-color);
  margin-right: 10px;
}

.cta-urgencia {
  background-color: rgba(220, 53, 69, 0.1);
  color: var(--danger-color);
  padding: 15px 20px;
  border-radius: 10px;
  font-weight: 600;
  display: flex;
  align-items: center;
}

.cta-urgencia i {
  margin-right: 10px;
  font-size: 1.2rem;
}

.cta-form {
  background-color: var(--bg-lighter);
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.cta-form h3 {
  font-size: 1.6rem;
  margin-bottom: 20px;
  text-align: center;
}

.form-control {
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  background-color: #f8f9fa;
  margin-bottom: 15px;
}

.form-control:focus {
  box-shadow: 0 0 0 3px rgba(44, 107, 255, 0.25);
  border-color: var(--primary-color);
}

.form-control.is-invalid {
  background-image: none;
  border-color: var(--danger-color);
  padding-right: 15px;
}

.invalid-feedback {
  display: block;
  margin-top: -12px;
  margin-bottom: 15px;
}

.form-text {
  margin-top: -10px;
  margin-bottom: 15px;
  font-size: 0.85rem;
}

.form-seguranca {
  font-size: 0.9rem;
  color: var(--text-light);
}

.form-seguranca i {
  color: var(--success-color);
  margin-right: 5px;
}

/* Footer */
footer {
  background-color: #f8f9fa;
  border-top: 1px solid #eaeaea;
}

footer h4, footer h5 {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all 0.3s;
}

.social-icons a:hover {
  transform: translateY(-5px);
  background-color: var(--primary-dark);
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--text-light);
}

.footer-links a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid #eaeaea;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 991px) {
  .hero-text h1 {
      font-size: 2.5rem;
  }
  
  .hero-text h2 {
      font-size: 1.2rem;
  }
  
  .plano-card {
      margin-bottom: 30px;
  }
  
  .plano-card.popular {
      transform: scale(1);
  }
  
  .plano-card.popular:hover {
      transform: translateY(-10px);
  }
  
  .btn-contato {
      margin-left: 0;
      margin-top: 10px;
  }
  
  section {
      padding: 60px 0;
  }
  
  #hero {
      padding: 140px 0 60px;
  }
}

@media (max-width: 767px) {
  .hero-text h1 {
      font-size: 2rem;
  }
  
  .hero-text h2 {
      font-size: 1.1rem;
  }
  
  .section-header h2 {
      font-size: 2rem;
  }
  
  .trust-badges {
      flex-direction: column;
      gap: 10px;
  }
  
  .hero-img {
      margin-top: 40px;
  }
  
  .cta-form {
      padding: 30px 20px;
      margin-top: 40px;
  }
  
  footer [class^="col-"] {
      margin-bottom: 30px;
  }
} 