/* ============================================
   MOOVE PROTEÇÃO VEICULAR - STYLE.CSS
   Design Premium | Mobile First | SEO Ready
   ============================================ */

/* ===== FONTES ===== */
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700;800&display=swap');

/* ===== RESET ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Sora', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #181868;
  line-height: 1.6;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul, ol {
  list-style: none;
}

/* ===== CONTAINER ===== */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 768px) {
  .container {
    padding: 0 32px;
  }
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #181868;
  background: rgba(24, 24, 104, 0.06);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: #181868;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.25rem;
  }
}

.section-desc {
  font-size: 1rem;
  color: #5a5a7a;
  max-width: 600px;
}

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

.text-center .section-desc {
  margin: 0 auto;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: inherit;
  border-radius: 12px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: center;
  white-space: nowrap;
}

.btn--primary {
  background: #181868;
  color: #ffffff;
  border-color: #181868;
}

.btn--primary:hover {
  background: #0f0f4a;
  border-color: #0f0f4a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(24, 24, 104, 0.25);
}

.btn--outline {
  background: transparent;
  color: #181868;
  border-color: #181868;
}

.btn--outline:hover {
  background: #181868;
  color: #ffffff;
  transform: translateY(-2px);
}

.btn--whatsapp {
  background: #25D366;
  color: #ffffff;
  border-color: #25D366;
}

.btn--whatsapp:hover {
  background: #1ebe5d;
  border-color: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}

.btn--ghost {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.3);
}

.btn--ghost:hover {
  border-color: #ffffff;
  transform: translateY(-2px);
}

.btn--full {
  width: 100%;
}

@media (max-width: 480px) {
  .btn {
    padding: 12px 24px;
    font-size: 0.85rem;
  }
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(24, 24, 104, 0.06);
  transition: background 0.3s;
}

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

@media (min-width: 768px) {
  header .container {
    height: 72px;
  }
}

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

.header__logo-img {
  height: 36px;
  width: auto;
  display: block;
}

.header__nav {
  display: none;
}

@media (min-width: 768px) {
  .header__nav {
    display: flex;
    align-items: center;
    gap: 32px;
  }

  .header__nav a {
    font-size: 0.9rem;
    font-weight: 500;
    color: #181868;
    transition: color 0.2s;
    position: relative;
  }

  .header__nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #181868;
    transition: width 0.2s;
  }

  .header__nav a:hover::after {
    width: 100%;
  }

  .header__nav .btn {
    padding: 10px 20px;
    font-size: 0.85rem;
  }
}

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

.header__whatsapp {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #25D366;
  color: white;
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  transition: all 0.2s;
}

.header__whatsapp:hover {
  background: #1ebe5d;
  transform: scale(1.03);
}

.header__whatsapp svg {
  width: 18px;
  height: 18px;
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

@media (min-width: 768px) {
  .hamburger {
    display: none;
  }
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #181868;
  border-radius: 2px;
  transition: all 0.3s;
}

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

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

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

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 64px;
  left: 0;
  width: 100%;
  height: calc(100vh - 64px);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  padding: 32px 24px;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (min-width: 768px) {
  .mobile-menu {
    display: none;
  }
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu a {
  font-size: 1.2rem;
  font-weight: 600;
  color: #181868;
  padding: 8px 0;
  border-bottom: 1px solid rgba(24, 24, 104, 0.06);
}

/* ===== HERO ===== */
.hero {
  padding: 120px 0 80px;
  background: linear-gradient(180deg, #f8f8ff 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(24, 24, 104, 0.03) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  position: relative;
  z-index: 1;
}

@media (min-width: 968px) {
  .hero {
    padding: 160px 0 100px;
  }

  .hero .container {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
  }
}

.hero__tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #181868;
  background: rgba(24, 24, 104, 0.08);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.hero__title {
  font-size: 2rem;
  font-weight: 800;
  color: #181868;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}

@media (min-width: 768px) {
  .hero__title {
    font-size: 2.75rem;
  }
}

@media (min-width: 1024px) {
  .hero__title {
    font-size: 3.25rem;
  }
}

.hero__desc {
  font-size: 1rem;
  color: #5a5a7a;
  margin-bottom: 32px;
  max-width: 520px;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .hero__desc {
    font-size: 1.1rem;
  }
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
  padding: 24px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(24, 24, 104, 0.06);
}

@media (max-width: 480px) {
  .hero__stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

.hero__stat {
  text-align: center;
}

.hero__stat-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: #181868;
}

.hero__stat-label {
  font-size: 0.75rem;
  color: #5a5a7a;
  font-weight: 500;
}

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

.hero__card {
  background: #181868;
  border-radius: 24px;
  padding: 40px 32px;
  color: #ffffff;
  width: 100%;
  max-width: 400px;
}

.hero__card-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.hero__card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.hero__card p {
  font-size: 0.9rem;
  opacity: 0.85;
  line-height: 1.6;
}

.hero__card-features {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero__card-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  opacity: 0.9;
}

.hero__card-features li::before {
  content: '✓';
  font-weight: 700;
  color: #25D366;
}

.hero__card--form {
  max-width: 440px;
}

.hero__card--form h3 {
  font-size: 1.15rem;
  margin-bottom: 4px;
}

.hero__card--form > p {
  font-size: 0.8rem;
  opacity: 0.75;
  margin-bottom: 20px;
}

.hero__card--form .form__group {
  margin-bottom: 12px;
}

.hero__card--form .form__group label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
  opacity: 0.85;
  color: #ffffff;
}

.hero__card--form .form__group label strong {
  color: #ff6b6b;
}

.hero__card--form .form__group input,
.hero__card--form .form__group select {
  width: 100%;
  padding: 10px 14px;
  font-size: 0.85rem;
  font-family: inherit;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  transition: all 0.2s;
}

.hero__card--form .form__group input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.hero__card--form .form__group input:focus,
.hero__card--form .form__group select:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.18);
}

.hero__card--form .form__group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  cursor: pointer;
}

.hero__card--form .form__group select option {
  color: #181868;
  background: #ffffff;
}

.hero__card--form .form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.hero__card--form .btn {
  margin-top: 8px;
  background: #25D366;
  border-color: #25D366;
  color: #ffffff;
  font-weight: 700;
}

.hero__card--form .btn:hover {
  background: #1ebe5d;
  border-color: #1ebe5d;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}

.hero__card-footer {
  text-align: center;
  font-size: 0.7rem;
  opacity: 0.6;
  margin-top: 12px;
}

@media (max-width: 480px) {
  .hero__stats {
    grid-template-columns: repeat(3, 1fr);
    padding: 16px;
  }

  .hero__stat-value {
    font-size: 1.25rem;
  }
}

/* ===== SECTION DEFAULT ===== */
.section {
  padding: 72px 0;
}

@media (min-width: 768px) {
  .section {
    padding: 100px 0;
  }
}

.section--light {
  background: #f8f8ff;
}

/* ===== BENEFITS ===== */
.benefits__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 40px;
}

@media (min-width: 768px) {
  .benefits__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

@media (min-width: 1024px) {
  .benefits__grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.benefit__card {
  background: #ffffff;
  border: 1px solid rgba(24, 24, 104, 0.06);
  border-radius: 16px;
  padding: 24px 16px;
  text-align: center;
  transition: all 0.3s ease;
}

.benefit__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(24, 24, 104, 0.08);
  border-color: rgba(24, 24, 104, 0.12);
}

.benefit__icon {
  width: 48px;
  height: 48px;
  background: rgba(24, 24, 104, 0.06);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 1.25rem;
}

.benefit__card h3 {
  font-size: 0.85rem;
  font-weight: 700;
  color: #181868;
  margin-bottom: 6px;
}

.benefit__card p {
  font-size: 0.78rem;
  color: #5a5a7a;
  line-height: 1.5;
}

/* ===== ABOUT ===== */
.about .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 768px) {
  .about .container {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
  }
}

.about__content h2 {
  margin-bottom: 20px;
}

.about__content p {
  color: #5a5a7a;
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.about__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.about__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 0.9rem;
}

.about__list li span {
  width: 24px;
  height: 24px;
  background: rgba(37, 211, 102, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.about__visual {
  background: #f8f8ff;
  border-radius: 24px;
  padding: 40px 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.about__stat {
  text-align: center;
  padding: 20px 16px;
  background: #ffffff;
  border-radius: 16px;
}

.about__stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: #181868;
}

.about__stat-label {
  font-size: 0.8rem;
  color: #5a5a7a;
  font-weight: 500;
  margin-top: 4px;
}

/* ===== COVERAGES ===== */
.coverage__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 40px;
}

@media (min-width: 600px) {
  .coverage__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 968px) {
  .coverage__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.coverage__card {
  background: #ffffff;
  border: 1px solid rgba(24, 24, 104, 0.06);
  border-radius: 16px;
  padding: 28px 24px;
  transition: all 0.3s;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.coverage__card:hover {
  border-color: rgba(24, 24, 104, 0.2);
  box-shadow: 0 8px 24px rgba(24, 24, 104, 0.06);
}

.coverage__icon {
  width: 44px;
  height: 44px;
  background: rgba(24, 24, 104, 0.06);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.coverage__info h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.coverage__info p {
  font-size: 0.85rem;
  color: #5a5a7a;
  line-height: 1.5;
}

/* ===== HOW IT WORKS ===== */
.steps__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 40px;
  counter-reset: step;
}

@media (min-width: 768px) {
  .steps__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.step__card {
  text-align: center;
  padding: 32px 24px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid rgba(24, 24, 104, 0.06);
  position: relative;
}

.step__number {
  width: 48px;
  height: 48px;
  background: #181868;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  margin: 0 auto 16px;
}

.step__card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.step__card p {
  font-size: 0.9rem;
  color: #5a5a7a;
}

/* ===== TESTIMONIALS ===== */
.testimonials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 40px;
}

@media (min-width: 768px) {
  .testimonials__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial__card {
  background: #ffffff;
  border: 1px solid rgba(24, 24, 104, 0.06);
  border-radius: 16px;
  padding: 28px 24px;
}

.testimonial__stars {
  color: #f59e0b;
  font-size: 1rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.testimonial__text {
  font-size: 0.9rem;
  color: #5a5a7a;
  line-height: 1.6;
  margin-bottom: 16px;
  font-style: italic;
}

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

.testimonial__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(24, 24, 104, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: #181868;
}

.testimonial__name {
  font-size: 0.85rem;
  font-weight: 700;
}

.testimonial__detail {
  font-size: 0.75rem;
  color: #5a5a7a;
}

/* ===== FAQ PREVIEW ===== */
.faq-preview__list {
  margin-top: 40px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.faq-preview__item {
  border: 1px solid rgba(24, 24, 104, 0.08);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-preview__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  color: #181868;
  text-align: left;
  transition: background 0.2s;
}

.faq-preview__question:hover {
  background: rgba(24, 24, 104, 0.03);
}

.faq-preview__question svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-preview__question[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

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

.faq-preview__answer.open {
  max-height: 300px;
  padding: 0 20px 18px;
}

.faq-preview__answer p {
  font-size: 0.9rem;
  color: #5a5a7a;
  line-height: 1.6;
}

.faq-preview__cta {
  text-align: center;
  margin-top: 32px;
}

/* ===== CTA FINAL ===== */
.cta-final {
  background: #181868;
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
}

.cta-final__title {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .cta-final__title {
    font-size: 2.25rem;
  }
}

.cta-final p {
  font-size: 1rem;
  opacity: 0.85;
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-final .btn--whatsapp {
  padding: 16px 40px;
  font-size: 1rem;
}

/* ===== FOOTER ===== */
.footer {
  background: #0f0f4a;
  color: rgba(255, 255, 255, 0.7);
  padding: 48px 0 24px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
  }
}

.footer__brand p {
  font-size: 0.85rem;
  margin-top: 12px;
  line-height: 1.6;
}

.footer__logo {
  font-size: 1.2rem;
  font-weight: 800;
  color: #ffffff;
}

.footer h4 {
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 16px;
}

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

.footer ul a {
  font-size: 0.85rem;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.footer ul a:hover {
  opacity: 1;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  opacity: 0.6;
}

@media (min-width: 768px) {
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
}

/* ===== BREADCRUMBS ===== */
.breadcrumbs {
  padding: 88px 0 16px;
  font-size: 0.8rem;
  color: #5a5a7a;
}

.breadcrumbs a {
  color: #181868;
  font-weight: 500;
}

.breadcrumbs span {
  margin: 0 6px;
}

/* ===== BLOG ===== */
.blog__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 40px;
}

@media (min-width: 600px) {
  .blog__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 968px) {
  .blog__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.blog__card {
  background: #ffffff;
  border: 1px solid rgba(24, 24, 104, 0.06);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s;
}

.blog__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(24, 24, 104, 0.08);
}

.blog__card-img {
  width: 100%;
  height: 200px;
  background: #f0f0f8;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5a5a7a;
  font-size: 0.85rem;
}

.blog__card-body {
  padding: 24px;
}

.blog__card-category {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #181868;
  opacity: 0.5;
  margin-bottom: 8px;
}

.blog__card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.blog__card p {
  font-size: 0.85rem;
  color: #5a5a7a;
  line-height: 1.5;
  margin-bottom: 16px;
}

.blog__card-meta {
  font-size: 0.75rem;
  color: #5a5a7a;
}

.blog__card a {
  color: inherit;
}

/* ===== FAQ PAGE ===== */
.faq__search {
  margin-top: 40px;
  margin-bottom: 32px;
}

.faq__search input {
  width: 100%;
  max-width: 600px;
  padding: 14px 20px;
  border: 2px solid rgba(24, 24, 104, 0.1);
  border-radius: 12px;
  font-family: inherit;
  font-size: 0.95rem;
  color: #181868;
  transition: border-color 0.2s;
}

.faq__search input:focus {
  outline: none;
  border-color: #181868;
}

.faq__categories {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.faq__category {
  padding: 8px 16px;
  border-radius: 100px;
  border: 1px solid rgba(24, 24, 104, 0.1);
  background: none;
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 600;
  color: #5a5a7a;
  cursor: pointer;
  transition: all 0.2s;
}

.faq__category:hover,
.faq__category.active {
  background: #181868;
  color: #ffffff;
  border-color: #181868;
}

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

.faq__item {
  border: 1px solid rgba(24, 24, 104, 0.08);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  color: #181868;
  text-align: left;
  transition: background 0.2s;
}

.faq__question:hover {
  background: rgba(24, 24, 104, 0.03);
}

.faq__question svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq__question[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 20px;
}

.faq__answer.open {
  max-height: 500px;
  padding: 0 20px 18px;
}

.faq__answer p {
  font-size: 0.9rem;
  color: #5a5a7a;
  line-height: 1.7;
}

/* ===== COTAÇÃO PAGE ===== */
.quote__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 768px) {
  .quote__grid {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
}

.quote__info h1 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .quote__info h1 {
    font-size: 2.5rem;
  }
}

.quote__info p {
  color: #5a5a7a;
  margin-bottom: 32px;
  font-size: 1rem;
}

.quote__contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.quote__contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: #f8f8ff;
  border-radius: 12px;
}

.quote__contact-item svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.quote__contact-item h4 {
  font-size: 0.85rem;
  font-weight: 700;
}

.quote__contact-item p {
  font-size: 0.85rem;
  color: #5a5a7a;
  margin: 0;
}

.quote__form {
  background: #ffffff;
  border: 1px solid rgba(24, 24, 104, 0.08);
  border-radius: 20px;
  padding: 32px 24px;
}

@media (min-width: 768px) {
  .quote__form {
    padding: 40px 32px;
  }
}

.quote__form h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.form__group {
  margin-bottom: 16px;
}

.form__group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: #181868;
}

.form__group input,
.form__group select,
.form__group textarea {
  width: 100%;
  padding: 12px 16px;
  font-size: 0.9rem;
  font-family: inherit;
  border: 2px solid rgba(24, 24, 104, 0.1);
  border-radius: 10px;
  background: #f8f8ff;
  color: #181868;
  transition: border-color 0.2s;
}

.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  outline: none;
  border-color: #181868;
  background: #ffffff;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* ===== BLOG POST PAGE ===== */
.post__header {
  margin-bottom: 32px;
}

.post__header h1 {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 12px;
}

@media (min-width: 768px) {
  .post__header h1 {
    font-size: 2.25rem;
  }
}

.post__meta {
  display: flex;
  gap: 16px;
  font-size: 0.85rem;
  color: #5a5a7a;
  flex-wrap: wrap;
}

.post__content {
  max-width: 720px;
}

.post__content p {
  margin-bottom: 20px;
  font-size: 0.95rem;
  color: #5a5a7a;
  line-height: 1.8;
}

.post__content h2 {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 32px 0 16px;
}

.post__content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 24px 0 12px;
}

.post__content ul,
.post__content ol {
  margin-bottom: 20px;
  padding-left: 20px;
}

.post__content li {
  margin-bottom: 8px;
  font-size: 0.95rem;
  color: #5a5a7a;
}

.post__content ul li {
  list-style: disc;
}

.post__content ol li {
  list-style: decimal;
}

.post__content a {
  color: #181868;
  font-weight: 600;
  text-decoration: underline;
}

/* ===== ANIMAÇÕES ===== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== UTILITIES ===== */
.mt-40 { margin-top: 40px; }
.mb-40 { margin-bottom: 40px; }
