/* Estilos principais da landing page */

/* Importação de fontes */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* Estilos gerais */
body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--background-color);
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Tipografia */
h1, h2, h3, h4, h5, h6 {
  margin-bottom: 0.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

.lead {
  font-size: 1.25rem;
  font-weight: 300;
}

.text-center {
  text-align: center;
}

/* Botões */
.btn {
  display: inline-block;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  user-select: none;
  border: 1px solid transparent;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

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

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

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

.btn-outline:hover {
  background-color: var(--primary-color);
  color: var(--text-white);
}

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

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--background-color);
  box-shadow: var(--shadow-sm);
  padding: 1rem 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 65px;
  width: auto;
  margin-top:3px;
  margin-bottom:3px;
}

.main-nav {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  align-items: center;
}

.nav-links li {
  margin-left: 1.5rem;
}

.nav-links a {
  color: var(--text-color);
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--primary-color);
}

.btn-login {
  background-color: var(--primary-color);
  color: var(--text-white) !important;
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
}

.btn-login:hover {
  background-color: var(--primary-dark);
  color: var(--text-white);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--text-color);
  margin: 5px 0;
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  padding: 8rem 0 4rem;
  background-color: var(--primary-light);
  position: relative;
  overflow: hidden;
}



.hero .container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
}

.hero-content {
  flex: 1;
  padding-right: 2rem;
  margin-bottom: 2rem;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: var(--text-light);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-form {
  flex: 0 0 350px;
}

.form-card {
  background-color: var(--background-color);
  border-radius: 0.5rem;
  box-shadow: var(--shadow);
  padding: 2rem;
}

.form-card h3 {
  margin-bottom: 1.5rem;
  text-align: center;
}

/* Seções gerais */
section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-subtitle {
  max-width: 700px;
  margin: 0 auto 1.5rem;
}

.section-divider {
  width: 80px;
  height: 4px;
  background-color: var(--primary-color);
  margin: 0 auto;
  border-radius: 2px;
}

/* Seção Sobre */
.about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.about-image {
  flex: 0 0 100%;
  max-width: 100%;
  margin-bottom: 2rem;
  position: relative;
}

.about-text {
  flex: 0 0 100%;
  max-width: 100%;
}

.about-image img {
  width: 100%;
  border-radius: 0.5rem;
  box-shadow: var(--shadow);
}

.experience-badge {
  position: absolute;
  bottom: -20px;
  right: 20px;
  width: 100px;
  height: 100px;
  background-color: var(--primary-color);
  color: var(--text-white);
  border-radius: 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
  box-shadow: var(--shadow);
}

.experience-badge .years {
  font-size: 1.5rem;
  font-weight: 700;
}

.experience-badge .text {
  font-size: 0.75rem;
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.stat-item {
  background-color: var(--primary-light);
  padding: 1.5rem;
  border-radius: 0.5rem;
  text-align: center;
}

.stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.stat-text {
  font-size: 0.875rem;
}

/* Seção Benefícios */
.benefits {
  background-color: var(--bg-light);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.benefit-card {
  background-color: var(--background-color);
  border-radius: 0.5rem;
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 3px solid var(--primary-color);
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.benefit-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.benefit-card h3 {
  margin-bottom: 1rem;
}

.rates-comparison {
  background-color: var(--background-color);
  border-radius: 0.5rem;
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.rates-comparison h3 {
  text-align: center;
  margin-bottom: 1.5rem;
}

.table-responsive {
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border-light);
}

.comparison-table th {
  font-weight: 600;
}

.comparison-table .highlight td {
  color: var(--primary-color);
  font-weight: 600;
}

.table-footnote {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 1rem;
}

/* Seção Como Funciona */
.steps-container {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
}

.step-item {
  background-color: var(--background-color);
  border-radius: 0.5rem;
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  text-align: center;
}

.step-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 30px;
  background-color: var(--primary-color);
  color: var(--text-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.step-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

/* Seção Contato/Simulação */
.contact {
  background-color: var(--primary-color);
  color: var(--text-white);
}

.contact .section-header {
  color: var(--text-white);
}

.contact .section-divider {
  background-color: var(--text-white);
  opacity: 0.5;
}

.contact-form-container {
  max-width: 800px;
  margin: 0 auto;
}

.contact-form {
  background-color: var(--background-color);
  border-radius: 0.5rem;
  padding: 2rem;
  box-shadow: var(--shadow);
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  margin: -0.5rem;
}

.form-group {
  flex: 0 0 100%;
  padding: 0.5rem;
  margin-bottom: 1rem;
}

.form-control {
  display: block;
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text-color);
  background-color: var(--background-color);
  background-clip: padding-box;
  border: 1px solid var(--border-color);
  border-radius: 0.25rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-color);
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 86, 179, 0.25);
}

.input-with-prefix {
  position: relative;
}

.input-with-prefix .prefix {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-light);
}

.input-with-prefix .form-control {
  padding-left: 2.5rem;
}

.form-disclaimer {
  font-size: 0.75rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 1rem;
}

.form-success-message {
  text-align: center;
  padding: 2rem;
}

.success-icon {
  width: 60px;
  height: 60px;
  background-color: var(--primary-light);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 1.5rem;
}

/* Seção Depoimentos */
.testimonial-slider {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.testimonial-container {
  overflow: hidden;
  border-radius: 0.5rem;
  box-shadow: var(--shadow);
  margin-bottom: 2rem;
}

.testimonial-slides {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-slide {
  flex: 0 0 100%;
  min-width: 100%;
}

.testimonial-card {
  background-color: var(--background-color);
  padding: 2rem;
  border-left: 4px solid var(--primary-color);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 4rem;
  color: var(--primary-light);
  font-family: Georgia, serif;
  line-height: 1;
  z-index: 0;
}

.testimonial-rating {
  color: var(--accent-color);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

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

.author-avatar {
  width: 50px;
  height: 50px;
  background-color: var(--primary-light);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-right: 1rem;
}

.author-info h4 {
  margin-bottom: 0.25rem;
}

.author-info p {
  color: var(--text-light);
  font-size: 0.875rem;
  margin-bottom: 0;
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-prev,
.testimonial-next {
  background-color: var(--primary-light);
  color: var(--primary-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-prev:hover,
.testimonial-next:hover {
  background-color: var(--primary-color);
  color: var(--text-white);
}

.testimonial-dots {
  display: flex;
  align-items: center;
  margin: 0 1rem;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--primary-light);
  border: none;
  margin: 0 0.25rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-dot.active {
  background-color: var(--primary-color);
  transform: scale(1.2);
}

/* Seção FAQ */
.faq {
  background-color: var(--bg-light);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--background-color);
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  background-color: transparent;
  border: none;
  padding: 1.5rem;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.faq-question h3 {
  margin-bottom: 0;
  font-size: 1.1rem;
}

.faq-icon {
  position: relative;
  width: 20px;
  height: 20px;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background-color: var(--primary-color);
  transition: all 0.3s ease;
}

.faq-icon::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  transform: translateY(-50%);
}

.faq-icon::after {
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  transform: translateX(-50%);
}

.faq-item.active .faq-question {
  background-color: var(--primary-light);
}

.faq-item.active .faq-question h3 {
  color: var(--primary-color);
}

.faq-item.active .faq-icon::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 1.5rem 1.5rem 1.5rem;
  max-height: 1000px;
}

.faq-cta {
  text-align: center;
  margin-top: 3rem;
}

.faq-cta p {
  margin-bottom: 1rem;
}

/* Footer */
.footer {
  background-color: var(--bg-footer);
  color: var(--text-white);
  padding: 5rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.footer-logo img {
  height: 40px;
  margin-right: 1rem;
  background-color: var(--text-white);
  padding: 0.25rem;
  border-radius: 0.25rem;
}

.footer h3, .footer h4 {
  color: var(--text-white);
  margin-bottom: 1.5rem;
}

.footer p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.5rem;
}

.contact-list li {
  display: flex;
  margin-bottom: 1rem;
}

.contact-list i {
  color: var(--primary-color);
  margin-right: 1rem;
  font-size: 1.25rem;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

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

.social-icons {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  color: var(--text-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
}

.payment-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.payment-method {
  background-color: var(--text-white);
  color: var(--text-dark);
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  font-weight: 700;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.875rem;
}

.footer-bottom a {
  color: var(--primary-color);
}

/* Modal */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1999;
  display: none;
}

.modal-dialog {
  width: 100%;
  max-width: 500px;
  background-color: var(--background-color);
  border-radius: 0.5rem;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transform: translateY(-50px);
  opacity: 0;
  transition: all 0.3s ease;
}

.modal.active {
  display: flex;
}

.modal.active .modal-overlay {
  display: block;
}

.modal.active .modal-dialog {
  transform: translateY(0);
  opacity: 1;
}

.modal-header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-header h3 {
  margin-bottom: 0;
}

.modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-light);
  transition: color 0.3s ease;
}

.modal-close:hover {
  color: var(--error-color);
}

.modal-body {
  padding: 1.5rem;
}

.error-message {
  background-color: rgba(220, 53, 69, 0.1);
  color: var(--error-color);
  padding: 1rem;
  border-radius: 0.25rem;
  margin-bottom: 1.5rem;
}

.forgot-password {
  color: var(--primary-color);
  font-size: 0.875rem;
}

/* Utilitários */
.mt-3 {
  margin-top: 1rem;
}

.mb-3 {
  margin-bottom: 1rem;
}

.text-center {
  text-align: center;
}

.text-white {
  color: #FFF;
}
/* Animações */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeIn 0.6s ease-out forwards;
}

/* Ícones personalizados */
[class^="icon-"] {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

.icon-money:before { content: "\f3d1"; }
.icon-check-list:before { content: "\f14a"; }
.icon-calendar:before { content: "\f133"; }
.icon-shield:before { content: "\f3ed"; }
.icon-mobile:before { content: "\f3cd"; }
.icon-lightning:before { content: "\f0e7"; }
.icon-calculator:before { content: "\f1ec"; }
.icon-analysis:before { content: "\f080"; }
.icon-document:before { content: "\f15c"; }
.icon-money-transfer:before { content: "\f53a"; }
.icon-check:before { content: "\f00c"; }
.icon-star:before { content: "\f005"; }
.icon-star-half:before { content: "\f089"; }
.icon-arrow-left:before { content: "\f053"; }
.icon-arrow-right:before { content: "\f054"; }
.icon-location:before { content: "\f3c5"; }
.icon-phone:before { content: "\f095"; }
.icon-mail:before { content: "\f0e0"; }
.icon-clock:before { content: "\f017"; }
.icon-facebook:before { content: "\f39e"; }
.icon-instagram:before { content: "\f16d"; }
.icon-linkedin:before { content: "\f0e1"; }
.icon-close:before { content: "\f00d"; }


  ul.checklist {
      list-style: none;
      padding: 0;
      max-width: 400px;
      overflow: hidden;
    }

    ul.checklist li {
      display: flex;
      align-items: center;
      padding: 10px 10px;
      transition: background 0.3s;
    }

    ul.checklist li:last-child {
      border-bottom: none;
    }

 

    ul.checklist li .icon {
      color: var(--accent-color);
      margin-right: 12px;
      font-size: 1.5rem;
    }

    ul.checklist li span {
      font-size: 1.1rem;
	  font-weight:700;
      color: var(--text-color);
    }
	
	.m-5 {
	margin-bottom: 5px !important;	
	}
	
.logo-texto {
padding:10px;
color: var(--primary-color);	
}

.form-label {
	font-size: 0.75rem;
	text-transform:uppercase;
	 color: var(--text-color);
}

.has-error .help-block {
	font-size: 0.70rem;
	text-transform:uppercase;
	 color: #F06;
}