
:root {
  --orange: #ff7107;
  --blue: #001c37;
  --white: #f7f5fb;
  --light-orange: #ffe0cc;
  --dark-orange: #e05a00;
  --light-blue: #3d2db3;
  --dark-blue: #0d0050;
  --gray: #f0f0f0;
  --dark-gray: #333333;
  --medium-gray: #666666;
  --light-gray: #cccccc;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--dark-gray);
  background-color: var(--white);
}

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

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.5em;
  color: var(--dark-blue);
}

p { margin-bottom: 1rem; }

a {
  text-decoration: none;
  color: var(--blue);
  transition: var(--transition);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-size: 1rem;
}

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

.btn-secondary {
  background-color: transparent;
  border: 2px solid #fff;
  color: #fff;
  padding: 10px 20px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.btn-secondary:hover { background-color: #ffffff; color: #001739fc; }

.btn-whatsapp { background-color: #25d366; color: white; }
.btn-whatsapp:hover { background-color: #128c7e; color: white; }

.btn-large { padding: 16px 32px; font-size: 1.1rem; }
.btn-full { width: 100%; }

/* Navigation */
.btn-login {
  background-color: var(--blue);
  color: white !important;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
  border: none;
  text-align: center;
  cursor: pointer;
  box-shadow: var(--shadow);
}
.btn-login:hover { background-color: var(--dark-blue); }

.nav-header {
  background-color: white;
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}

header .container, .nav-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background-color: white;
}

.menu-list {
  display: flex;
  list-style: none;
  gap: 5px;
}

.nav-menu ul li { margin-left: 30px; }
.nav-menu ul li a { color: var(--dark-gray); font-weight: 500; }
.nav-menu ul li a:hover { color: var(--orange); }

.btn-contato {
  background-color: var(--orange);
  color: white;
  padding: 8px 16px;
  border-radius: 50px;
}
.btn-contato:hover { background-color: var(--dark-orange); color: white; }

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--blue);
  background: none;
  border: none;
}

/* Hero */
.hero {
  position: relative;
  color: white;
  padding: 100px 0;
  height: 100vh;
  display: flex;
  align-items: center;
  background-size: contain;
  background-position: center right;
  background-repeat: no-repeat;
  background-color: #000d20f4;
}

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

.hero-content { flex: 1; max-width: 600px; padding-bottom: 50px; }
.hero-content h1 { font-size: 3rem; color: white; margin-bottom: 15px; }
.hero-content h2 { font-size: 1.8rem; color: var(--light-orange); margin-bottom: 20px; font-weight: 600; }
.hero-content p { font-size: 1.2rem; margin-bottom: 30px; }

.cta-buttons { display: flex; gap: 15px; padding-top: 20px; }

@keyframes fadeSlideUp {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}

.hero-content h1, .hero-content h2, .hero-content p, .hero-content .cta-buttons {
  opacity: 0;
  animation: fadeSlideUp 0.8s ease forwards;
}
.hero-content h1 { animation-delay: 0.2s; }
.hero-content h2 { animation-delay: 0.4s; }
.hero-content p { animation-delay: 0.6s; }
.hero-content .cta-buttons { animation-delay: 0.8s; }

/* Section Styles */
section {
  padding: 80px 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-header { text-align: center; margin-bottom: 50px; }

.section-header h2 {
  font-size: 2.2rem;
  color: var(--blue);
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.section-header h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--orange);
  border-radius: 2px;
}

.section-header p { font-size: 1.2rem; color: var(--medium-gray); }

/* About Section */
.sobre-section {
  background: linear-gradient(to right, #f9f9fb, #ffffff);
  padding: 80px 20px;
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
  z-index: 100;
  position: relative;
  overflow: hidden;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.text-area { flex: 1 1 55%; min-width: 300px; }
.image-area { flex: 1 1 40%; min-width: 280px; text-align: center; }

.image-area img {
  width: 100%;
  max-width: 380px;
  height: auto;
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  padding: 12px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.image-area img:hover { transform: scale(1.03); box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15); }

.title { font-size: 2.2rem; color: var(--blue); margin-bottom: 10px; }

.divider {
  width: 60px;
  height: 4px;
  background-color: #ff7107;
  margin-bottom: 20px;
  border-radius: 5px;
}

.subtitle { font-size: 1.125rem; color: #555; margin-bottom: 24px; line-height: 1.5; }
.description { font-size: 1rem; color: #444; margin-bottom: 16px; line-height: 1.6; }

.stats { display: flex; gap: 20px; flex-wrap: wrap; margin-top: 30px; }

.stat-item {
  background-color: white;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  flex: 1 1 150px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.stat-item:hover { transform: translateY(-6px); box-shadow: 0 10px 22px rgba(0, 0, 0, 0.1); }
.stat-item h3 { font-size: 2rem; color: #ff7107; margin-bottom: 5px; }
.stat-item p { font-size: 0.95rem; color: #555; }

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

.fade-left, .fade-right { opacity: 0; animation-fill-mode: both; animation-delay: 0s; }
.visible.fade-left { animation: fadeInLeft 0.8s ease-out both; }
.visible.fade-right { animation: fadeInRight 0.8s ease-out both; }

/* Vantagens */
.vantagens {
  position: relative;
  background: #fbfbfd;
  padding: 80px 20px 60px 20px;
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
  margin-top: -50px;
  z-index: 1;
}

.vantagens-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.vantagem-card {
  background-color: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
}

.vantagem-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s ease-out;
}

.vantagem-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.vantagem-card .icon {
  width: 70px;
  height: 70px;
  background-color: var(--light-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}
.vantagem-card:hover .icon { background-color: var(--orange); filter: brightness(1.2); transform: rotate(5deg); }
.vantagem-card .icon i { font-size: 30px; color: var(--orange); transition: color 0.3s ease; }
.vantagem-card:hover .icon i { color: white; }
.vantagem-card h3 { font-size: 1.3rem; margin-bottom: 15px; color: var(--blue); }
.vantagem-card p { color: var(--medium-gray); margin: 0; }

@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(50px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Simulação */
.simulacao { background-color: #fbfbfd; padding: 60px 0; }

.simulacao h2 { color: var(--blue); font-size: 2.2rem; margin-top: 30px; margin-bottom: 20px; text-align: center; }

.simulacao .fade-in { opacity: 0; transform: translateY(40px); transition: all 0.7s ease-out; }
.simulacao .fade-in.visible { opacity: 1; transform: translateY(0); }

.simulacao-content { display: flex; gap: 40px; }

.simulador {
  flex: 1;
  background-color: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.simulacao-info { flex: 1; }

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

.form-group label { display: block; margin-bottom: 8px; font-weight: 500; color: var(--dark-blue); }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--light-gray);
  border-radius: 5px;
  font-size: 1rem;
  transition: var(--transition);
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 2px rgba(255, 113, 7, 0.2);
}

.form-group textarea { min-height: 100px; resize: vertical; }

.checkbox-group { display: flex; align-items: center; gap: 10px; }
.checkbox-group input { width: auto; }

.info-card {
  background-color: white;
  border-radius: 10px;
  padding: 30px;
  height: 100%;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.info-card h3 { color: var(--blue); margin-bottom: 20px; }

.info-card ul { list-style: none; margin-bottom: 20px; }
.info-card ul li { margin-bottom: 10px; display: flex; align-items: center; }
.info-card ul li i { color: var(--orange); margin-right: 10px; }

.testimonial {
  background-color: var(--light-orange);
  padding: 20px;
  border-radius: 10px;
  position: relative;
}
.testimonial::before {
  content: "\201C";
  font-size: 4rem;
  position: absolute;
  top: -20px;
  left: 10px;
  color: var(--orange);
  opacity: 0.3;
}
.testimonial p { font-style: italic; margin-bottom: 15px; }
.testimonial-author { display: flex; flex-direction: column; }
.testimonial-author span:first-child { font-weight: 600; }
.testimonial-author span:last-child { font-size: 0.9rem; color: var(--medium-gray); }

/* CTA Section */
.cta-section {
  background-color: #000d20f4;
  color: white;
  text-align: center;
  padding: 50px 0;
  border-radius: 50px;
  z-index: 100;
  position: relative;
  overflow: hidden;
  min-height: unset;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(255,255,255,0.05), transparent 70%);
  animation: shine 5s infinite linear;
  z-index: 0;
  pointer-events: none;
}

@keyframes shine {
  0% { transform: translateX(-50%) translateY(-50%) scale(1); }
  100% { transform: translateX(150%) translateY(-50%) scale(1); }
}

.cta-content { position: relative; z-index: 1; }
.cta-content h2 { color: white; font-size: 2.2rem; margin-bottom: 15px; }
.cta-content p { font-size: 1.2rem; margin-bottom: 30px; max-width: 700px; margin-left: auto; margin-right: auto; }

.cta-section .fade-up { opacity: 0; transform: translateY(40px) scale(0.98); transition: all 0.8s ease-out; }
.cta-section .fade-up.visible { opacity: 1; transform: translateY(0) scale(1); }

.btn-white {
  background-color: white;
  color: var(--orange);
  padding: 14px 30px;
  font-weight: bold;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}
.btn-white:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15); }

/* Contato */
.contato { background-color: var(--blue); margin-top: -50px; padding: 80px 20px; }
.contato h2 { color: white; margin-top: 50px; font-size: 2.2rem; margin-bottom: 20px; text-align: center; }
.contato-content { display: flex; gap: 40px; }

.contato-form {
  flex: 1;
  background-color: white;
  border-radius: 10px;
  box-shadow: var(--shadow);
  padding: 30px;
}

.contato-info { flex: 1; }
.contato-metodos { margin-top: 20px; }

.contato-item { display: flex; align-items: center; margin-bottom: 20px; }
.contato-item i {
  width: 40px;
  height: 40px;
  background-color: var(--light-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  margin-right: 15px;
  font-size: 1rem;
}
.contato-item h4 { margin-bottom: 5px; color: var(--blue); }
.contato-item p { margin: 0; color: var(--medium-gray); }

.urgencia-box {
  background-color: var(--light-orange);
  padding: 20px;
  border-radius: 10px;
  margin-top: 30px;
}
.urgencia-box h4 { color: var(--dark-orange); margin-bottom: 10px; }
.urgencia-box .btn { margin-top: 15px; }

/* Footer */
footer { background-color: var(--blue); color: white; padding: 60px 0 20px; }

.footer-content { display: flex; justify-content: space-between; margin-bottom: 40px; }

.footer-logo h2 { color: white; font-size: 1.8rem; margin-bottom: 15px; }
.footer-logo p { color: var(--light-gray); max-width: 300px; }

.footer-links { display: flex; gap: 60px; }

.footer-column h3 {
  color: white;
  font-size: 1.2rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}
.footer-column h3::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--orange);
}

.footer-column ul { list-style: none; }
.footer-column ul li { margin-bottom: 10px; color: var(--light-gray); }
.footer-column ul li a { color: var(--light-gray); }
.footer-column ul li a:hover { color: var(--orange); }
.footer-column ul li i { margin-right: 10px; color: var(--orange); }

.social-icons { display: flex; gap: 15px; }
.social-icons a {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: var(--transition);
}
.social-icons a:hover { background-color: var(--orange); color: white; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p { margin: 0; color: var(--light-gray); }

.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: var(--light-gray); font-size: 0.9rem; }
.footer-legal a:hover { color: var(--orange); }

/* Scroll to top */
.scroll-to-top {
  position: fixed;
  bottom: 100px;
  right: 30px;
  z-index: 999;
  color: white;
  border-radius: 50%;
  padding: 15px;
  width: 50px;
  height: 50px;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: opacity 0.4s, transform 0.4s;
  background-color: var(--orange);
}
.scroll-to-top.show { display: flex; }
.scroll-to-top:hover { transform: translateY(-3px); background-color: #000336; }

/* WhatsApp Float */
.whatsapp-float { position: fixed; bottom: 30px; right: 25px; z-index: 999; }
.whatsapp-float a {
  width: 60px;
  height: 60px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
}
.whatsapp-float a:hover { transform: scale(1.1); }

/* FAQ */
.faq { background-color: var(--blue); padding: 180px 20px; margin-top: -60px; position: relative; }
.faq h2 { color: white; font-size: 2.2rem; margin-bottom: 20px; text-align: center; }
.faq p { text-align: center; margin-bottom: 40px; }

.faq .fade-in { opacity: 0; transform: translateY(30px); transition: all 0.6s ease-out; }
.faq .fade-in.visible { opacity: 1; transform: translateY(0); }

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

.faq-item {
  background-color: white;
  border-radius: 10px;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.faq-item:hover { box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08); transform: translateY(-2px); }

.faq-question {
  padding: 20px;
  background-color: white;
  font-weight: 600;
  color: var(--dark-blue);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}
.faq-question:hover { background-color: var(--gray); }
.faq-question i { color: var(--orange); transition: var(--transition); }

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-question { background-color: var(--light-orange); }
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-item.active .faq-answer { padding: 20px; max-height: 1000px; }

.faq-answer ul, .faq-answer ol { padding-left: 20px; margin-bottom: 10px; }
.faq-answer li { margin-bottom: 6px; }

/* Fraud Protection */
.fraud-protection { background-color: #ffe8d9; }

.protection-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }

.protection-card {
  background-color: white;
  border-radius: 10px;
  box-shadow: var(--shadow);
  padding: 30px;
  border-top: 4px solid var(--orange);
  transition: var(--transition);
}
.protection-card:hover { transform: translateY(-5px); }

.protection-card .icon {
  width: 60px;
  height: 60px;
  background-color: var(--light-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.protection-card .icon i { font-size: 24px; color: var(--orange); }
.protection-card h3 { font-size: 1.3rem; margin-bottom: 15px; color: var(--blue); }

.protection-card ul { list-style: none; margin-top: 15px; }
.protection-card ul li { margin-bottom: 10px; padding-left: 25px; position: relative; }
.protection-card ul li:before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--orange);
  position: absolute;
  left: 0;
}

.alert-box {
  background-color: #ffebee;
  border-left: 4px solid #f44336;
  padding: 20px;
  border-radius: 5px;
  margin-top: 40px;
}
.alert-box h3 { color: #d32f2f; display: flex; align-items: center; gap: 10px; }
.alert-box h3 i { color: #d32f2f; }

/* Animations */
.fade-up { opacity: 0; animation-fill-mode: both; }
.visible.fade-up { animation: fadeInUp 0.8s ease-out both; }

/* Responsive */
@media (max-width: 1058px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 70px;
    right: 20px;
    background: white;
    width: 220px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    padding: 20px;
    border-radius: 8px;
    z-index: 999;
  }
  .nav-menu.active { display: block; }
  .nav-menu ul { flex-direction: column; gap: 15px; }
  .menu-toggle { display: block; }
  .hero-content h1 { font-size: 2.2rem; }
  .hero-content h2 { font-size: 1.5rem; }
  .vantagens-grid { grid-template-columns: 1fr; }
  .footer-links { flex-direction: column; gap: 30px; }
  .footer-bottom { flex-direction: column; gap: 15px; text-align: center; }
  .protection-cards { grid-template-columns: 1fr; }
  .btn-login { display: none; }
}

@media (max-width: 992px) {
  .simulacao-content, .contato-content { flex-direction: column; }
  .footer-content { flex-direction: column; gap: 40px; }
  .footer-links { flex-wrap: wrap; gap: 30px; }
  .protection-cards { grid-template-columns: repeat(2, 1fr); }
  .vantagens-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hero .container { flex-direction: column; text-align: center; padding: 40px 20px; }
  .hero-content { max-width: 100%; margin-bottom: 30px; }
  .hero-content h1 { font-size: 2rem; }
  .hero-content h2 { font-size: 1.4rem; }
  .hero-content p { font-size: 1rem; }
  .cta-buttons { flex-direction: column; gap: 10px; align-items: center; }
  .hero { background-image: none !important; background-color: #000d20f4 !important; }
  .hero::after {
    content: "";
    display: block;
    background-image: url('../img/model14.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 300px;
    margin-top: 40px;
    border-radius: 10px;
  }
  .sobre-content { flex-direction: column; gap: 30px; text-align: center; }
  .vantagens-grid { grid-template-columns: 1fr; }
  .protection-cards { grid-template-columns: 1fr; }
}

@media (max-width: 576px) {
  .section-header h2 { font-size: 1.8rem; }
  .cta-buttons { flex-direction: column; gap: 15px; }
  .btn { width: 100%; }
}

/* Toast messages */
.toast-container {
  position: fixed;
  top: 80px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  min-width: 300px;
  max-width: 420px;
  padding: 16px 20px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  color: white;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: toastIn 0.3s ease;
}

.toast.success { background-color: #2e7d32; }
.toast.error   { background-color: #c62828; }

@keyframes toastIn {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Field validation states */
.field-error { display: block; font-size: 0.82rem; color: #c62828; margin-top: 4px; min-height: 1em; }
.input-error { border-color: #c62828 !important; box-shadow: 0 0 0 2px rgba(198,40,40,0.2) !important; }
.input-ok    { border-color: #2e7d32 !important; box-shadow: 0 0 0 2px rgba(46,125,50,0.15) !important; }

/* Simulação form centralizado (sem card lateral) */
.simulacao-single { justify-content: center; }
.simulacao-single .simulador { max-width: 560px; width: 100%; }

/* Contato single card */
.contato-single { justify-content: center; }
.contato-single .contato-info { flex: unset; width: 100%; max-width: 680px; }
.contato-single .info-card { border-radius: 16px; }
.contato-single .contato-metodos { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.contato-single .btn-whatsapp { display: block; text-align: center; margin-top: 24px; padding: 16px; font-size: 1.1rem; }

@media (max-width: 768px) {
  .contato-single .contato-metodos { grid-template-columns: 1fr; }
}

/* Extras extracted from inline styles */
.logo img { width: 130px; }
.footer-logo img { width: 150px; }
.footer-small { font-size: 14px; }
.simulacao-info .info-card h3 { color: #ff8b1f; }
.faq .section-header p { color: white; }
.contato .section-header p { color: white; }
