/* ============================================
   MEU CONSÓRCIO DIGITAL - LANDING PAGE PREMIUM
   Identity: Professional & Vehicle Focused
   ============================================ */

:root {
  --primary-blue: #087443;
  --primary-dark: #064e3b;
  --primary-light: #e9f8ef;
  --accent: #b4975a;
  --primary: var(--primary-blue);
  --secondary: #f5f8f6;
  --text-dark: #1a1a1a;
  --text-light: #444444;
  --text-muted: #555555;
  --border: #cccccc;
  --success: #10b981;
  --white: #ffffff;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background: var(--white);
  overflow-x: hidden;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: 0 2px 8px rgba(6,78,59,0.12);
  z-index: 1000;
  height: 80px;
  display: flex;
  align-items: center;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-img {
    height: 35px;
    width: auto;
}

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav-links a {
  color: var(--text-dark);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: color 0.3s ease;
  text-transform: uppercase;
}

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

.nav-item {
  position: relative;
}

.dropdown-menu {
  display: block;
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  background: var(--white);
  border: 1px solid #eee;
  border-radius: 4px;
  min-width: 220px;
  box-shadow: 0 8px 16px rgba(6,78,59,0.12);
  z-index: 999;
  margin-top: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
}

.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.dropdown-menu a {
  display: block;
  padding: 12px 20px;
  color: var(--text-dark);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: background 0.3s ease, color 0.3s ease;
  text-transform: none;
  white-space: nowrap;
}

.dropdown-menu a:hover {
  background: var(--primary-light);
  color: var(--primary-blue);
}

/* ============================================
   MOBILE MENU - HAMBURGER
   ============================================ */

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
  background: none;
  border: none;
  padding: 0;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    box-shadow: 0 8px 16px rgba(6,78,59,0.12);
    z-index: 998;
  }

  .nav-links.active {
    max-height: 500px;
  }

  .nav-links li {
    border-bottom: 1px solid #eee;
  }

  .nav-links a {
    display: block;
    padding: 16px 20px;
    font-size: 14px;
  }

  .dropdown-menu {
    position: static;
    display: none;
    box-shadow: none;
    border: none;
    background: #f9f9f9;
    min-width: auto;
    margin-top: 0;
  }

  .dropdown-menu.active {
    display: block;
  }

  .dropdown-menu a {
    padding: 12px 20px 12px 40px;
    font-size: 13px;
  }

  .nav-item:hover .dropdown-menu {
    display: none;
  }

  .header-container {
    justify-content: space-between;
  }

  .logo-text {
    font-size: 16px;
  }
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  margin-top: 80px;
  background: linear-gradient(rgba(6, 78, 59, 0.78), rgba(2, 44, 34, 0.90));
  color: var(--white);
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  font-size: 56px;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.1;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-content p {
  font-size: 20px;
  margin-bottom: 35px;
  opacity: 0.95;
  line-height: 1.6;
  max-width: 600px;
}

.hero-image {
  position: relative;
  height: auto;
  max-height: 500px;
  border-radius: 12px;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,0.5));
}

.cta-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 45px;
}

.btn {
  padding: 16px 36px;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
  background: #f0f0f0;
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-3px);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.stat {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(12px);
  padding: 25px;
  border-radius: 4px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.2);
}

.stat-value {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 5px;
  color: var(--white);
}

.stat-label {
  font-size: 13px;
  font-weight: 600;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
    }
    .hero-image {
        display: none;
    }
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 32px;
  }
  .cta-buttons {
    flex-direction: column;
    gap: 10px;
  }
  .btn {
    width: 100%;
    padding: 14px 20px;
  }
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .section-title {
    font-size: 28px;
    margin-bottom: 40px;
  }
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  .how-it-works-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .step::after {
    content: '↓';
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    top: auto;
    bottom: -25px;
  }
}

/* ============================================
   SIMULATOR SECTION (NEW POSITION & LAYOUT)
   ============================================ */

.simulator {
  padding: 80px 20px;
  background: #f0f4f8;
  position: relative;
}

.simulator-container {
  max-width: 1100px;
  margin: 0 auto;
  background: var(--white);
  padding: 0;
  border-radius: 12px;
  color: var(--text-dark);
  box-shadow: 0 20px 50px rgba(6,78,59,0.12);
  display: flex;
  overflow: hidden;
}

.simulator-form-side {
    flex: 1.2;
    padding: 50px;
}

.simulator-result-side {
    flex: 0.8;
    background: var(--primary-blue);
    color: var(--white);
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.simulator-title {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--primary-blue);
}

.simulator-subtitle {
  margin-bottom: 40px;
  color: var(--text-muted);
}

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

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

label {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
  font-size: 14px;
  color: var(--primary-blue);
  text-transform: uppercase;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select {
  width: 100%;
  padding: 14px;
  border: 2px solid #eee;
  border-radius: 4px;
  font-size: 15px;
  transition: border-color 0.3s ease;
}

input:focus, select:focus {
  outline: none;
  border-color: var(--primary-blue);
}

.slider-container {
  margin: 20px 0;
}

input[type="range"] {
  width: 100%;
  height: 8px;
  background: #eee;
  border-radius: 5px;
  outline: none;
  -webkit-appearance: none;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  background: var(--primary-blue);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.simulation-result-content h3 {
    font-size: 24px;
    margin-bottom: 30px;
    border-bottom: 2px solid rgba(255,255,255,0.2);
    padding-bottom: 15px;
    text-transform: uppercase;
}

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

.result-label {
    display: block;
    font-size: 13px;
    text-transform: uppercase;
    opacity: 0.8;
    margin-bottom: 5px;
}

.result-value {
    font-size: 28px;
    font-weight: 800;
    display: block;
}

.btn-submit {
  width: 100%;
  background: var(--primary-blue);
  color: var(--white);
  font-size: 18px;
  padding: 18px;
  border: none;
  border-radius: 4px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 20px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 59, 163, 0.3);
}

@media (max-width: 992px) {
    .simulator-container {
        flex-direction: column;
    }
    .simulator-result-side {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    .simulator-form-side {
        padding: 30px 20px;
    }
}

/* ============================================
   VEHICLE CARDS SECTION
   ============================================ */

.vehicles {
    padding: 100px 20px;
    background: var(--white);
}

.vehicles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 40px auto 0;
}

.vehicle-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
}

.vehicle-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(6,78,59,0.12);
}

.vehicle-card img {
    width: 100%;
    height: 220px;
    object-fit: contain;
    padding: 20px;
    background: transparent;
}

.vehicle-info {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background: transparent;
}

.vehicle-info h3 {
    font-size: 22px;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.vehicle-info p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.btn-card {
    margin-top: auto;
    background: var(--primary-blue);
    color: var(--white);
    padding: 12px;
    text-align: center;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    transition: background 0.3s ease;
}

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

/* ============================================
   LEGAL DISCLAIMER
   ============================================ */
.legal-disclaimer {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 40px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
}

/* ============================================
   REST OF SECTIONS (EXISTING)
   ============================================ */

.benefits { padding: 100px 20px; background: #f8f9fa; }
.section-container { max-width: 1200px; margin: 0 auto; }
.section-title { font-size: 40px; font-weight: 800; text-align: center; margin-bottom: 60px; color: var(--primary-blue); text-transform: uppercase; position: relative; padding-bottom: 15px; }
.section-title::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 80px; height: 4px; background: var(--accent); }
.benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.benefit-card { background: var(--white); padding: 40px 30px; border-radius: 8px; text-align: center; box-shadow: 0 10px 30px rgba(0,0,0,0.05); transition: all 0.4s ease; border-bottom: 4px solid transparent; }
.benefit-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(6,78,59,0.12); border-bottom: 4px solid var(--primary-blue); }
.benefit-icon { width: 70px; height: 70px; background: var(--primary-light); border-radius: 4px; display: flex; align-items: center; justify-content: center; margin: 0 auto 25px; font-size: 32px; color: var(--primary-blue); }
.benefit-card h3 { font-size: 22px; font-weight: 700; margin-bottom: 15px; color: var(--primary-blue); }
.benefit-card p { color: var(--text-light); font-size: 15px; line-height: 1.7; }

.how-it-works { padding: 100px 20px; background: var(--white); }
.how-it-works-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 40px; margin-top: 60px; }
.step { text-align: center; position: relative; }
.step-number { width: 60px; height: 40px; background: var(--primary-blue); color: var(--white); border-radius: 4px; display: flex; align-items: center; justify-content: center; font-size: 28px; font-weight: 800; margin: 0 auto 25px; box-shadow: 0 8px 16px rgba(0, 82, 204, 0.2); }
.step h3 { font-size: 20px; font-weight: 700; margin-bottom: 15px; color: var(--primary-blue); }
.step p { color: var(--text-light); font-size: 15px; line-height: 1.6; }
.step::after { content: '→'; position: absolute; right: -30px; top: 30px; font-size: 30px; color: var(--primary-light); font-weight: bold; }
.step:last-child::after { display: none; }

.comparison { padding: 100px 20px; background: #f8f9fa; }
.comparison-container { width: 100%; overflow-x: auto; margin-top: 50px; border-radius: 8px; box-shadow: 0 15px 40px rgba(0,0,0,0.08); -webkit-overflow-scrolling: touch; }
.comparison-table { width: 100%; border-collapse: collapse; background: var(--white); min-width: 600px; }
.comparison-table th { background: var(--primary-blue); color: var(--white); padding: 25px; text-align: left; font-weight: 700; font-size: 16px; text-transform: uppercase; }
.comparison-table td { padding: 22px 25px; border-bottom: 1px solid #eee; font-size: 15px; }
.comparison-table tr:nth-child(even) { background: #fafafa; }
.comparison-table .highlight { color: var(--primary-blue); font-weight: 800; }

.testimonials { padding: 100px 20px; background: var(--white); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 35px; margin-top: 60px; }
.testimonial { background: #f8f9fa; padding: 40px; border-radius: 8px; box-shadow: 0 5px 15px rgba(0,0,0,0.03); border-left: 5px solid var(--primary-blue); }
.testimonial-stars { color: #f59e0b; font-size: 16px; margin-bottom: 20px; }
.testimonial-text { font-style: italic; font-size: 16px; margin-bottom: 25px; color: var(--text-dark); }
.testimonial-author { font-weight: 800; color: var(--primary-blue); margin-bottom: 5px; }
.testimonial-role { font-size: 13px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }

.faq { padding: 100px 20px; background: var(--white); }
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item { margin-bottom: 15px; border: 1px solid #eee; border-radius: 4px; overflow: hidden; }
.faq-question { width: 100%; padding: 20px 25px; background: var(--white); border: none; display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-size: 17px; font-weight: 700; color: var(--primary-blue); text-align: left; transition: background 0.3s ease; }
.faq-answer { padding: 0 25px; max-height: 0; overflow: hidden; transition: all 0.3s ease; background: #fcfcfc; }
.faq-item.active .faq-answer { max-height: 500px; }
.faq-answer p { padding: 20px 0; color: var(--text-light); font-size: 15px; }

footer { background: #0a1128; color: var(--white); padding: 80px 20px 30px; }
.footer-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 50px; }
.footer-logo-img { height: 40px; width: auto; margin-bottom: 20px; }
.footer-col p { opacity: 0.7; font-size: 14px; line-height: 1.6; }
.footer-col h4 { font-size: 18px; margin-bottom: 25px; text-transform: uppercase; letter-spacing: 1px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: var(--white); text-decoration: none; opacity: 0.7; transition: opacity 0.3s ease; font-size: 14px; }
.footer-bottom { max-width: 1200px; margin: 60px auto 0; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.1); text-align: center; font-size: 13px; opacity: 0.5; }

.logo-wrapper { display: flex; align-items: center; gap: 10px; }
.logo-text { font-size: 18px; font-weight: 700; color: #003366; white-space: nowrap; }
.footer-logo-text { color: var(--white); font-size: 20px; }


/* ============================================
   BLOG PAGE STYLES
   ============================================ */

.blog-hero {
  margin-top: 80px;
  background: linear-gradient(rgba(6, 78, 59, 0.78), rgba(2, 44, 34, 0.90));
  color: var(--white);
  padding: 80px 20px;
  text-align: center;
}

.blog-hero-container {
  max-width: 1200px;
  margin: 0 auto;
}

.blog-hero h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 15px;
}

.blog-hero p {
  font-size: 18px;
  opacity: 0.9;
}

.blog-section {
  padding: 80px 20px;
  background: var(--white);
}

.blog-articles {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.blog-card {
  background: var(--white);
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 30px;
  transition: all 0.4s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.blog-card:hover {
  box-shadow: 0 15px 40px rgba(6,78,59,0.12);
  transform: translateY(-5px);
}

.blog-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  font-size: 13px;
}

.blog-category {
  background: var(--primary-light);
  color: var(--primary-blue);
  padding: 5px 12px;
  border-radius: 20px;
  font-weight: 700;
  text-transform: uppercase;
}

.blog-date {
  color: var(--text-muted);
  font-weight: 600;
}

.blog-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 15px;
  line-height: 1.4;
}

.blog-excerpt {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.blog-content {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 15px;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 4px;
}

.blog-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
  border-top: 1px solid #eee;
}

.blog-author {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
}

.blog-read-more {
  background: var(--primary-blue);
  color: var(--white);
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 700;
  font-size: 13px;
  transition: background 0.3s ease;
  text-transform: uppercase;
}

.blog-read-more:hover {
  background: var(--primary-dark);
}

.no-articles {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-light);
  font-size: 18px;
}

/* ============================================
   CONTACT PAGE STYLES
   ============================================ */

.contact-hero {
  margin-top: 80px;
  background: linear-gradient(rgba(6, 78, 59, 0.78), rgba(2, 44, 34, 0.90));
  color: var(--white);
  padding: 80px 20px;
  text-align: center;
}

.contact-hero-container {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-hero h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 15px;
}

.contact-hero p {
  font-size: 18px;
  opacity: 0.9;
}

.contact-section {
  padding: 80px 20px;
  background: #f8f9fa;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-form-side {
  background: var(--white);
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.contact-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 30px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.contact-form .form-group {
  display: flex;
  flex-direction: column;
}

.contact-form label {
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  font-size: 14px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: inherit;
  font-size: 14px;
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(0, 82, 204, 0.1);
}

.contact-form textarea {
  resize: vertical;
}

.contact-info-side {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.contact-info-item {
  background: var(--white);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.contact-info-item h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 15px;
}

.contact-info-item p {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.contact-social-links {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.contact-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary-blue);
  color: var(--white);
  padding: 12px 20px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  transition: background 0.3s ease;
}

.contact-social-btn:hover {
  background: var(--primary-dark);
}

.contact-social-btn svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 768px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

/* ============================================
   ABOUT PAGE STYLES
   ============================================ */

.about-hero {
  margin-top: 80px;
  background: linear-gradient(rgba(6, 78, 59, 0.78), rgba(2, 44, 34, 0.90));
  color: var(--white);
  padding: 80px 20px;
  text-align: center;
}

.about-hero-container {
  max-width: 1200px;
  margin: 0 auto;
}

.about-hero h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 15px;
}

.about-hero p {
  font-size: 18px;
  opacity: 0.9;
}

.about-section {
  padding: 80px 20px;
  background: var(--white);
}

.about-content {
  max-width: 900px;
  margin: 0 auto;
}

.about-text {
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.8;
}

.about-text p {
  margin-bottom: 25px;
}

.about-text h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-blue);
  margin-top: 40px;
  margin-bottom: 20px;
}

.about-values {
  list-style: none;
  margin-bottom: 30px;
}

.about-values li {
  padding: 12px 0;
  padding-left: 30px;
  position: relative;
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.6;
}

.about-values li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 800;
  font-size: 18px;
}

.about-social-links {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--primary-blue);
  color: var(--white);
  padding: 15px 25px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  transition: all 0.3s ease;
}

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

.social-btn svg {
  width: 24px;
  height: 24px;
}

/* ============================================
   SOCIAL LINKS IN FOOTER
   ============================================ */

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

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--white);
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--primary-blue);
  transform: scale(1.1);
}

.social-links svg {
  width: 20px;
  height: 20px;
}


/* ============================================
   LEGAL PAGES STYLES
   ============================================ */

.hero-legal {
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-legal .hero-container {
  grid-template-columns: 1fr;
  text-align: center;
}

.hero-legal h1 {
  font-size: 48px;
  margin-bottom: 10px;
}

.hero-legal p {
  font-size: 16px;
  opacity: 0.9;
}

.legal-content {
  padding: 80px 20px;
  background: var(--white);
}

.legal-article {
  margin-bottom: 50px;
  line-height: 1.8;
}

.legal-article h2 {
  font-size: 28px;
  color: var(--primary-blue);
  margin-bottom: 20px;
  margin-top: 40px;
  border-bottom: 3px solid var(--primary-light);
  padding-bottom: 10px;
}

.legal-article h3 {
  font-size: 20px;
  color: var(--primary-dark);
  margin-top: 25px;
  margin-bottom: 15px;
}

.legal-article p {
  font-size: 15px;
  color: var(--text-light);
  margin-bottom: 15px;
  text-align: justify;
}

.legal-article ul {
  margin-left: 30px;
  margin-bottom: 15px;
}

.legal-article li {
  font-size: 15px;
  color: var(--text-light);
  margin-bottom: 10px;
  line-height: 1.7;
}

.legal-article a {
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.legal-article a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

.legal-notice-box {
  background: var(--primary-light);
  border-left: 5px solid var(--primary-blue);
  padding: 25px;
  border-radius: 8px;
  margin-top: 50px;
}

.legal-notice-box h3 {
  color: var(--primary-blue);
  margin-bottom: 15px;
  font-size: 18px;
}

.legal-notice-box p {
  color: var(--text-dark);
  font-size: 14px;
}

@media (max-width: 768px) {
  .hero-legal h1 {
    font-size: 32px;
  }

  .legal-article h2 {
    font-size: 22px;
  }

  .legal-article h3 {
    font-size: 18px;
  }

  .legal-article p,
  .legal-article li {
    font-size: 14px;
  }

  .legal-content {
    padding: 40px 20px;
  }
}

/* ============================================
   CONSENT POPUP STYLES
   ============================================ */

.consent-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 3px solid var(--primary-blue);
  box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.15);
  z-index: 2000;
  padding: 25px 20px;
  animation: slideUp 0.4s ease-out;
  max-height: 300px;
  overflow-y: auto;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.consent-popup.hidden {
  display: none;
}

.consent-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.consent-content {
  flex: 1;
}

.consent-content h3 {
  font-size: 18px;
  color: var(--primary-blue);
  margin-bottom: 10px;
  font-weight: 800;
}

.consent-content p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 10px;
}

.consent-links {
  font-size: 13px;
  margin-top: 10px;
}

.consent-links a {
  color: var(--primary-blue);
  text-decoration: none;
  margin-right: 20px;
  font-weight: 600;
  transition: color 0.3s ease;
}

.consent-links a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

.consent-actions {
  display: flex;
  gap: 15px;
  flex-shrink: 0;
  align-items: center;
}

.consent-btn {
  padding: 12px 24px;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.consent-btn-accept {
  background: var(--primary-blue);
  color: var(--white);
}

.consent-btn-accept:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 82, 204, 0.2);
}

.consent-btn-reject {
  background: transparent;
  color: var(--primary-blue);
  border: 2px solid var(--primary-blue);
}

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

.consent-btn-settings {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 10px 16px;
}

.consent-btn-settings:hover {
  border-color: var(--primary-blue);
  color: var(--primary-blue);
}

.consent-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.3s ease;
}

.consent-close:hover {
  color: var(--primary-blue);
}

@media (max-width: 1024px) {
  .consent-container {
    flex-direction: column;
    gap: 20px;
  }

  .consent-actions {
    width: 100%;
    justify-content: flex-end;
  }

  .consent-btn {
    padding: 10px 18px;
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .consent-popup {
    padding: 20px 15px;
    padding-top: 40px;
    max-height: none;
  }

  .consent-container {
    flex-direction: column;
    gap: 15px;
  }

  .consent-content h3 {
    font-size: 16px;
  }

  .consent-content p {
    font-size: 13px;
  }

  .consent-links {
    font-size: 12px;
  }

  .consent-links a {
    display: block;
    margin-bottom: 8px;
    margin-right: 0;
  }

  .consent-actions {
    width: 100%;
    flex-direction: column;
    gap: 10px;
  }

  .consent-btn {
    width: 100%;
    padding: 12px;
    font-size: 13px;
  }

  .consent-close {
    top: 10px;
    right: 15px;
  }
}

/* ============================================
   SETTINGS MODAL STYLES
   ============================================ */

.consent-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2100;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.consent-modal-overlay.hidden {
  display: none;
}

.consent-modal {
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  animation: slideDown 0.3s ease-out;
}

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

.consent-modal-header {
  padding: 30px;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.consent-modal-header h2 {
  font-size: 24px;
  color: var(--primary-blue);
  margin: 0;
}

.consent-modal-close {
  background: none;
  border: none;
  font-size: 28px;
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.3s ease;
}

.consent-modal-close:hover {
  color: var(--primary-blue);
}

.consent-modal-body {
  padding: 30px;
}

.consent-category {
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.consent-category:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.consent-category h3 {
  font-size: 16px;
  color: var(--primary-blue);
  margin-bottom: 10px;
  font-weight: 700;
}

.consent-category p {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 15px;
  line-height: 1.6;
}

.consent-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
}

.toggle-switch {
  position: relative;
  width: 50px;
  height: 26px;
  background: #ccc;
  border-radius: 13px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.toggle-switch.active {
  background: var(--success);
}

.toggle-switch::after {
  content: '';
  position: absolute;
  width: 22px;
  height: 22px;
  background: var(--white);
  border-radius: 50%;
  top: 2px;
  left: 2px;
  transition: left 0.3s ease;
}

.toggle-switch.active::after {
  left: 26px;
}

.toggle-label {
  font-size: 14px;
  color: var(--text-dark);
  font-weight: 600;
}

.consent-modal-footer {
  padding: 20px 30px;
  border-top: 1px solid #eee;
  display: flex;
  justify-content: flex-end;
  gap: 15px;
}

.consent-modal-btn {
  padding: 12px 24px;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.consent-modal-btn-cancel {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
}

.consent-modal-btn-cancel:hover {
  border-color: var(--primary-blue);
  color: var(--primary-blue);
}

.consent-modal-btn-save {
  background: var(--primary-blue);
  color: var(--white);
}

.consent-modal-btn-save:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 82, 204, 0.2);
}

@media (max-width: 768px) {
  .consent-modal {
    width: 95%;
    max-height: 90vh;
  }

  .consent-modal-header {
    padding: 20px;
  }

  .consent-modal-header h2 {
    font-size: 20px;
  }

  .consent-modal-body {
    padding: 20px;
  }

  .consent-modal-footer {
    padding: 15px 20px;
    flex-direction: column;
  }

  .consent-modal-btn {
    width: 100%;
  }
}

/* Screen Reader Only - Para acessibilidade */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* V5 — conteúdo editorial profundo e CTAs responsivos */
.deep-content { max-width: 1120px; margin: 0 auto; padding: 92px 24px 40px; color: var(--text-dark); }
.deep-content-header { max-width: 820px; margin: 0 auto 38px; text-align: center; }
.deep-content-header .eyebrow { color: var(--primary-blue); font-weight: 800; letter-spacing: .12em; text-transform: uppercase; font-size: 12px; }
.deep-content-header h2 { color: var(--primary-blue); font-size: clamp(30px, 4vw, 46px); line-height: 1.1; margin: 14px 0; }
.deep-content-header p { color: var(--text-muted); font-size: 18px; }
.deep-section { max-width: 920px; margin: 0 auto 42px; }
.deep-section h2 { color: var(--primary-blue); font-size: clamp(24px, 3vw, 34px); line-height: 1.2; margin: 0 0 16px; border-left: 5px solid var(--accent); padding-left: 16px; }
.deep-section h3 { color: var(--primary-dark); font-size: 20px; margin: 24px 0 8px; }
.deep-section p { font-size: 17px; line-height: 1.85; color: #374151; margin-bottom: 16px; }
.editorial-image-grid { max-width: 1120px; margin: 34px auto 56px; display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 22px; }
.editorial-image-grid figure { margin: 0; background: #fff; border: 1px solid #dce8df; border-radius: 18px; overflow: hidden; box-shadow: 0 14px 35px rgba(6,78,59,.08); }
.editorial-image-grid img { display: block; width: 100%; height: auto; aspect-ratio: 1200/620; object-fit: cover; }
.editorial-image-grid figcaption { padding: 12px 16px 15px; color: var(--primary-dark); font-size: 13px; font-weight: 700; }
.content-cta-row { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 14px; margin: 30px auto 44px; max-width: 920px; clear: both; }
.content-cta { display: inline-flex; justify-content: center; align-items: center; min-height: 48px; max-width: 100%; padding: 14px 24px; background: var(--primary-blue); color: #fff !important; border-radius: 999px; text-decoration: none; font-weight: 800; letter-spacing: .02em; text-align: center; line-height: 1.25; transition: transform .2s ease, background .2s ease, box-shadow .2s ease; box-shadow: 0 10px 22px rgba(6,78,59,.18); }
.content-cta:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 14px 28px rgba(6,78,59,.24); }
.deep-faq { border-top: 1px solid #dce8df; padding-top: 32px; }
.segment-card { min-height: 100%; }
@media (max-width: 800px) { .editorial-image-grid { grid-template-columns: 1fr; gap: 18px; } .deep-content { padding: 64px 18px 28px; } .deep-section p { font-size: 16px; line-height: 1.75; } .content-cta { width: 100%; } }


/* MCD-UI-2026: ajustes globais de leitura e consentimento */
h1 {
  max-width: min(100%, 920px) !important;
  font-size: clamp(2rem, 4.2vw, 3.9rem) !important;
  line-height: 1.08 !important;
}
.consent-popup {
  padding: 0.75rem 1rem !important;
}
.consent-container {
  gap: 1rem !important;
}
.consent-content h3 {
  font-size: 0.95rem !important;
  margin-bottom: 0.25rem !important;
}
.consent-content p {
  font-size: 0.78rem !important;
  line-height: 1.35 !important;
  margin-bottom: 0.35rem !important;
}
.consent-links {
  font-size: 0.72rem !important;
  margin-top: 0.35rem !important;
}
.consent-btn {
  min-height: 36px !important;
  padding: 0.45rem 0.75rem !important;
  font-size: 0.7rem !important;
}
@media (max-width: 768px) {
  h1 {
    max-width: 100% !important;
    font-size: clamp(1.75rem, 8vw, 2.55rem) !important;
    line-height: 1.1 !important;
  }
  .consent-popup {
    padding: 1.6rem 0.75rem 0.65rem !important;
  }
  .consent-container {
    gap: 0.55rem !important;
  }
  .consent-content h3 {
    font-size: 0.86rem !important;
  }
  .consent-content p {
    font-size: 0.68rem !important;
    line-height: 1.3 !important;
  }
  .consent-links {
    font-size: 0.64rem !important;
  }
  .consent-links a {
    margin-bottom: 3px !important;
  }
  .consent-actions {
    gap: 0.4rem !important;
  }
  .consent-btn {
    min-height: 32px !important;
    padding: 0.35rem 0.55rem !important;
    font-size: 0.64rem !important;
  }
}


/* MCD-SIM-2026: entradas livres com orientação clara e validação visível */
.sim-v28-card__field-note {
  display: block;
  margin-top: 0.35rem;
  color: var(--text-muted, #557067);
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.4;
}
.sim-v28-card__field-help {
  margin: 0.55rem 0 0;
  color: var(--text-muted, #557067);
  font-size: 0.78rem;
  line-height: 1.45;
}
.sim-v28-money-input {
  border: 2px solid rgba(6, 78, 59, 0.22) !important;
  background: #fbfefc !important;
  font-size: clamp(1rem, 2vw, 1.15rem) !important;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.sim-v28-money-input:focus {
  border-color: var(--primary-blue, #087f5b) !important;
  box-shadow: 0 0 0 4px rgba(8, 127, 91, 0.12) !important;
}
.sim-v28-card__next:disabled {
  cursor: not-allowed;
  opacity: 0.48;
}
@media (max-width: 600px) {
  .sim-v28-card__field-note,
  .sim-v28-card__field-help {
    font-size: 0.72rem;
  }
  .sim-v28-money-input {
    min-height: 50px !important;
    font-size: 1rem !important;
  }
}
