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

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

a {
  text-decoration: none;
  color: #274062;
  transition: color 0.3s;
}

a:hover {
  color: #003d82;
}

img {
  max-width: 100%;
  height: auto;
}

/* Tipografia */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.5em;
  color: #052639;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

/* Botões */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  font-size: 1rem;
}

.btn-primary {
  background-color: #052639;
  color: #fff;
}

.btn-primary:hover {
  background-color: #052639;
  color: #fff;
}

.btn-outline {
  background-color: transparent;
  border: 2px solid #274062;
  color: #274062;
}

.btn-outline:hover {
  background-color: #f0f7ff;
}

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

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 15px 0;
}

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

.logo img {
  height: 40px;
}

.header-contact {
  display: flex;
  gap: 20px;
}

.contact-link {
  color: #333;
  font-weight: 500;
}

.contact-link i {
  margin-right: 5px;
  color: #274062;
}

/* Hero Section */
.hero-section {
  padding: 120px 0 80px;
  background: linear-gradient(to right, #f8f9fa, #e9ecef);
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: flex;
  align-items: center;
  gap: 40px;
}

.hero-text {
  flex: 1;
}

.hero-text h2 {
  margin-bottom: 20px;
}

.hero-text h2 span {
  color: #274062;
}

.hero-text p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 30px;
  max-width: 600px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
}

.hero-image {
  flex: 1;
  position: relative;
}

.hero-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.hero-card {
  position: absolute;
  background-color: #fff;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.hero-card-1 {
  bottom: -20px;
  left: -20px;
}

.hero-card-2 {
  top: -20px;
  right: -20px;
}

.hero-card-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-bottom: 5px;
}

.hero-card-1 .hero-card-indicator {
  background-color: #28a745;
}

.hero-card-2 .hero-card-indicator {
  background-color: #274062;
}

.hero-card-title {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 5px;
}

.hero-card-value {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a1a1a;
}

.hero-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to top, #fff, transparent);
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h1 {
  margin-bottom: 15px;
}

.section-header span {
  color: #052639;
}

.section-header p {
  max-width: 800px;
  margin: 0 auto;
  color: #000;
  font-size: 1.1rem;
}

/* Benefits Section */
.benefits-section {
  padding: 80px 0;
  background-color: #fff;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.benefit-card {
  background-color: #f8f9fa;
  padding: 30px;
  border-radius: 10px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.benefit-icon {
  font-size: 2rem;
  color: #d5b554;
  margin-bottom: 20px;
}

.benefit-card h3 {
  margin-bottom: 15px;
}

.benefit-card p {
  color: #555;
}

/* Use Cases Section */
.use-cases-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.use-case-card {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}

.use-case-card:hover {
  transform: translateY(-5px);
}

.use-case-icon {
  width: 60px;
  height: 60px;
  background-color: #e6f7ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
  color: #274062;
}

.use-case-card h3 {
  margin-bottom: 10px;
}

.use-case-card p {
  color: #555;
}

.use-cases-feature {
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
}

.use-cases-feature-text {
  flex: 1;
  padding: 40px;
  align-content: center;
}

.use-cases-feature-text ul {
  list-style: none;
  margin-top: 20px;
}

.use-cases-feature-text li {
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
}

.use-cases-feature-text li::before {
  content: "✓";
  color: #274062;
  margin-right: 10px;
}

.use-cases-feature-image {
  flex: 1;
  min-height: 300px;
}

.use-cases-feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Why Choose Section */
.why-choose-section {
  padding: 80px 0;
  background-color: #fff;
}

.why-choose-content {
  display: flex;
  align-items: center;
  gap: 60px;
}

.why-choose-image {
  flex: 1;
  position: relative;
}

.why-choose-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.why-choose-card {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  max-width: 250px;
}

.why-choose-card-title {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.why-choose-text {
  flex: 1;
}

.why-choose-text h2 {
  margin-bottom: 20px;
}

.why-choose-text > p {
  margin-bottom: 30px;
  color: #555;
}

.why-choose-reasons {
  display: grid;
  gap: 25px;
}

.why-choose-reason {
  display: flex;
  gap: 20px;
}

.why-choose-reason-icon {
  width: 50px;
  height: 50px;
  background-color: #e6f7ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #274062;
  flex-shrink: 0;
}

.why-choose-reason-text h3 {
  margin-bottom: 5px;
}

.why-choose-reason-text p {
  color: #555;
}

/* Simulator Section */
.simulator-section {
  padding: 60px 0;
  background: linear-gradient(to bottom, #f8f9fa, #fff);
}

.simulator-container {
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  display: flex;
}

.simulator-form {
  flex: 3;
  padding: 40px;
}

.simulator-form h3 {
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 25px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 1rem;
  transition: border-color 0.3s;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
select:focus {
  border-color: #274062;
  outline: none;
}

input[type="range"] {
  width: 100%;
  margin: 10px 0;
}

.range-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: #777;
}

.simulator-result {
  flex: 2;
  background-color: #052639;
  color: #fff;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.simulator-result h3 {
  color: #fff;
  margin-bottom: 30px;
}

.result-item {
  margin-bottom: 20px;
}

.result-label {
  color: #aaa;
  font-size: 0.9rem;
  margin-bottom: 5px;
}

.result-value {
  font-size: 1.5rem;
  font-weight: 700;
}

.result-highlight {
  padding-top: 20px;
  border-top: 1px solid #333;
}

.result-highlight .result-value {
  color: #d5b554;
  font-size: 1.8rem;
}

.result-note {
  margin-top: 20px;
  background-color: #152a46;
  padding: 15px;
  border-radius: 6px;
}

.result-note p {
  font-size: 0.8rem;
  color: #ccc;
  margin-bottom: 0;
}

/* Adicionar estilos para o novo painel de benefícios */
.simulator-benefits {
  flex: 2;
  background-color: #1a1a1a;
  color: #fff;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.simulator-benefits h3 {
  color: #fff;
  margin-bottom: 20px;
}

.benefits-intro {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 30px;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.benefit-icon {
  width: 40px;
  height: 40px;
  background-color: #274062;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.benefit-text h4 {
  color: #d5b554;
  margin-bottom: 5px;
  font-size: 1.1rem;
}

.benefit-text p {
  color: #aaa;
  font-size: 0.9rem;
  margin-bottom: 0;
}

.benefits-note {
  margin-top: auto;
  background-color: #333;
  padding: 15px;
  border-radius: 6px;
  font-size: 0.9rem;
  color: #ccc;
}

/* Testimonials Section */
.testimonials-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.testimonial-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
}

.testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-info h3 {
  margin-bottom: 0;
  font-size: 1.1rem;
}

.testimonial-info p {
  color: #777;
  margin-bottom: 5px;
}

.testimonial-stars {
  color: #ffc107;
}

.testimonial-text {
  font-style: italic;
  color: #555;
}

/* FAQ Section */
.faq-section {
  padding: 80px 0;
  background-color: #fff;
}

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

.faq-item {
  border-bottom: 1px solid #eee;
}

.faq-question {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

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

.faq-toggle {
  color: #274062;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.faq-answer p {
  padding: 0 0 20px;
  color: #555;
}

.faq-item.active .faq-toggle i {
  transform: rotate(45deg);
}

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

/* Footer */
.footer {
  background-color: #F3F3F3;
  color: #fff;
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

.footer-about {
  grid-column: span 2;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-logo img {
  height: 40px;
}

.footer-about p {
  color: #000;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #333;
  border-radius: 50%;
  color: #fff;
  transition: background-color 0.3s;
}

.footer-social a:hover {
  background-color: #274062;
}

.footer h3 {
  color: #000;
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.footer-links ul {
  list-style: none;
}

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

.footer-links a {
  color: #000;
  transition: color 0.3s;
}

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

.footer-contact ul {
  list-style: none;
}

.footer-contact li {
  display: flex;
  margin-bottom: 15px;
  color: #000;
}

.footer-contact i {
  margin-right: 10px;
  color: #d5b554;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #333;
  color: #777;
  font-size: 0.9rem;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
  background-color: #fff;
  margin: 15% auto;
  padding: 30px;
  border-radius: 10px;
  max-width: 500px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  position: relative;
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 1.5rem;
  cursor: pointer;
}

.modal-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.modal-header i {
  font-size: 1.5rem;
  color: #dc3545;
  margin-right: 10px;
}

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

.modal-body {
  margin-bottom: 20px;
}

.modal-footer {
  text-align: right;
}

/* Loading indicator */
.loading-indicator {
  display: inline-flex;
  align-items: center;
  margin-top: 5px;
  font-size: 0.9rem;
  color: #666;
}

.loading-indicator i {
  margin-right: 5px;
  color: #274062;
}

/* Responsividade */
@media (max-width: 992px) {
  .hero-content,
  .why-choose-content,
  .use-cases-feature {
    flex-direction: column;
  }

  .hero-image,
  .why-choose-image {
    margin-top: 40px;
  }

  .simulator-container {
    flex-direction: column;
  }

  .why-choose-card {
    bottom: -20px;
    right: 20px;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.7rem;
  }

  .header-contact {
    display: none;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-about {
    grid-column: span 1;
  }
}

@media (max-width: 576px) {
  .simulator-section {
    padding: 60px 0;
  }

@media (max-width: 576px) {
  .hero-section,
  .benefits-section,
  .use-cases-section,
  .why-choose-section,
  .testimonials-section,
  .faq-section {
    padding: 60px 0;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-card {
    padding: 10px;
  }

  .hero-card-1 {
    bottom: -10px;
    left: -10px;
  }

  .hero-card-2 {
    top: -10px;
    right: -10px;
  }

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

  .simulator-form,
  .simulator-result {
    padding: 20px;
  }
}
