/* ============================================================
   L&G Limpezas de Condomínios, estilos do site
   Mobile-first, identidade real (azul #234169 + turquesa #A8DADC)
   ============================================================ */

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--lg-font-body);
  font-weight: var(--lg-weight-regular);
  font-size: var(--lg-size-body);
  line-height: var(--lg-leading-normal);
  color: var(--lg-text-primary);
  background: var(--lg-color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--lg-link);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--lg-link-hover);
}

img, svg {
  max-width: 100%;
  display: block;
}

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

.container-narrow {
  max-width: 820px;
}

/* ===== BOTÕES PILL (padrão da marca) ===== */

.btn-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--lg-color-primary);
  color: var(--lg-text-on-dark);
  font-family: var(--lg-font-body);
  font-weight: var(--lg-weight-bold);
  font-size: 1rem;
  border: none;
  border-radius: var(--lg-radius-pill);
  padding: 14px 28px;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.15s ease;
  text-decoration: none;
  line-height: 1;
  text-align: center;
}

.btn-pill:hover {
  background: var(--lg-color-secondary);
  color: var(--lg-text-on-dark);
  transform: translateY(-1px);
}

.btn-pill-sm {
  padding: 10px 20px;
  font-size: 0.9rem;
}

.btn-pill-block {
  display: flex;
  width: 100%;
  padding: 16px 28px;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--lg-color-primary);
  color: var(--lg-color-primary);
  background: transparent;
  font-family: var(--lg-font-body);
  font-weight: var(--lg-weight-bold);
  font-size: 1rem;
  border-radius: var(--lg-radius-pill);
  padding: 12px 26px;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
  line-height: 1;
}

.btn-ghost:hover {
  background: var(--lg-color-primary);
  color: var(--lg-text-on-dark);
}

/* ===== TOPBAR ===== */

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--lg-color-white);
  border-bottom: 1px solid #eef1f5;
  backdrop-filter: blur(8px);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.brand-name {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-name strong {
  font-family: var(--lg-font-heading);
  font-weight: var(--lg-weight-black);
  font-size: 1.25rem;
  color: var(--lg-color-primary);
  letter-spacing: 0.02em;
}

.brand-name small {
  font-size: 0.7rem;
  color: var(--lg-text-muted);
  margin-top: 2px;
  font-weight: var(--lg-weight-medium);
  letter-spacing: 0.04em;
}

.nav {
  display: none;
  gap: 24px;
}

.nav a {
  color: var(--lg-color-primary);
  font-weight: var(--lg-weight-medium);
  font-size: 0.95rem;
}

@media (min-width: 992px) {
  .nav { display: inline-flex; }
}

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

.hero {
  background: linear-gradient(135deg, #234169 0%, #1B2A3F 100%);
  color: var(--lg-text-on-dark);
  padding: 56px 0 64px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(168, 218, 220, 0.22) 0%, transparent 65%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-block;
  background: var(--lg-color-accent-1);
  color: var(--lg-color-primary);
  font-weight: var(--lg-weight-bold);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: var(--lg-tracking-title);
  padding: 6px 14px;
  border-radius: var(--lg-radius-pill);
  margin-bottom: 16px;
}

.title-hero {
  font-family: var(--lg-font-heading);
  font-weight: var(--lg-weight-black);
  font-size: 2.1rem;
  line-height: 1.1;
  margin: 0 0 20px;
  color: var(--lg-text-on-dark);
  letter-spacing: -0.01em;
}

.lead {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.92);
  margin: 0 0 28px;
  max-width: 540px;
  line-height: 1.55;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.hero .btn-ghost {
  border-color: var(--lg-color-accent-1);
  color: var(--lg-color-accent-1);
}

.hero .btn-ghost:hover {
  background: var(--lg-color-accent-1);
  color: var(--lg-color-primary);
}

.hero-stats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  border-top: 1px solid rgba(168, 218, 220, 0.3);
  padding-top: 22px;
}

.hero-stats li {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-num {
  font-family: var(--lg-font-heading);
  font-weight: var(--lg-weight-black);
  font-size: 2rem;
  color: var(--lg-color-accent-1);
  line-height: 1;
}

.stat-lbl {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.78);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.3;
}

/* Hero art card */
.hero-art {
  display: none;
}

@media (min-width: 992px) {
  .hero-inner {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 56px;
  }
  .title-hero {
    font-size: 3rem;
  }
  .hero-art {
    display: block;
  }
}

.hero-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(168, 218, 220, 0.32);
  border-radius: 20px;
  padding: 28px;
  backdrop-filter: blur(10px);
}

.hero-card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.hero-pill {
  background: var(--lg-color-accent-1);
  color: var(--lg-color-primary);
  font-weight: var(--lg-weight-bold);
  font-size: 0.85rem;
  padding: 6px 14px;
  border-radius: var(--lg-radius-pill);
}

.hero-card-line {
  height: 1px;
  background: rgba(168, 218, 220, 0.32);
  margin: 18px 0;
}

.hero-card-quote {
  font-style: italic;
  color: var(--lg-text-on-dark);
  margin: 0 0 22px;
  font-size: 1.05rem;
  line-height: 1.5;
}

.hero-card-foot {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--lg-color-accent-1);
  font-weight: var(--lg-weight-medium);
  letter-spacing: 0.04em;
}

/* ===== SEÇÃO GENÉRICA ===== */

.section-eyebrow {
  display: inline-block;
  font-family: var(--lg-font-heading);
  font-weight: var(--lg-weight-bold);
  font-size: 0.78rem;
  color: var(--lg-color-secondary);
  text-transform: uppercase;
  letter-spacing: var(--lg-tracking-title);
  margin-bottom: 12px;
}

.section-eyebrow-dark {
  color: var(--lg-color-accent-1);
}

.section-eyebrow-light {
  color: var(--lg-color-accent-1);
}

.title-section {
  font-family: var(--lg-font-heading);
  font-weight: var(--lg-weight-black);
  font-size: 1.8rem;
  line-height: 1.15;
  color: var(--lg-color-primary);
  margin: 0 0 14px;
  letter-spacing: -0.005em;
}

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

.title-section-dark, .title-section-light {
  color: var(--lg-text-on-dark);
}

.section-lead {
  font-size: 1.05rem;
  color: var(--lg-text-muted);
  max-width: 680px;
  margin: 0 0 32px;
  line-height: 1.6;
}

/* ===== DORES ===== */

.section-pain {
  background: var(--lg-color-accent-2);
  padding: 64px 0;
}

.pain-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

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

.pain-card {
  background: var(--lg-color-white);
  border-radius: var(--lg-radius-md);
  padding: 28px 24px;
  box-shadow: var(--lg-shadow-sm);
  border-top: 4px solid var(--lg-color-primary);
}

.pain-num {
  font-family: var(--lg-font-heading);
  font-weight: var(--lg-weight-black);
  font-size: 1.4rem;
  color: var(--lg-color-accent-1);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.pain-card h3 {
  font-family: var(--lg-font-heading);
  font-weight: var(--lg-weight-bold);
  font-size: 1.1rem;
  color: var(--lg-color-primary);
  margin: 0 0 10px;
  line-height: 1.3;
}

.pain-card p {
  margin: 0;
  color: var(--lg-text-muted);
  font-size: 0.96rem;
  line-height: 1.55;
}

/* ===== SERVIÇOS ===== */

.section-services {
  background: var(--lg-color-white);
  padding: 72px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

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

.service-card {
  background: var(--lg-color-white);
  border: 1px solid #eef1f5;
  border-radius: var(--lg-radius-md);
  padding: 30px 26px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--lg-shadow-md);
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--lg-radius-sm);
  background: var(--lg-color-accent-2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.service-card h3 {
  font-family: var(--lg-font-heading);
  font-weight: var(--lg-weight-bold);
  font-size: 1.15rem;
  color: var(--lg-color-primary);
  margin: 0 0 10px;
  line-height: 1.3;
}

.service-promise {
  color: var(--lg-text-muted);
  font-size: 0.96rem;
  margin: 0 0 16px;
  line-height: 1.55;
}

.service-points {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid #eef1f5;
  padding-top: 14px;
}

.service-points li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
  font-size: 0.92rem;
  color: var(--lg-color-primary);
  line-height: 1.45;
}

.service-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--lg-color-accent-1);
}

/* ===== DIFERENCIAIS (bloco azul) ===== */

.section-diff {
  background: var(--lg-color-primary);
  color: var(--lg-text-on-dark);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}

.section-diff::before {
  content: "";
  position: absolute;
  bottom: -160px;
  left: -120px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(168, 218, 220, 0.18) 0%, transparent 65%);
  pointer-events: none;
}

.diff-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 32px;
  position: relative;
  z-index: 1;
}

@media (min-width: 992px) {
  .diff-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
  }
}

.diff-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(168, 218, 220, 0.25);
  border-radius: var(--lg-radius-md);
  padding: 26px 22px;
}

.diff-num {
  font-family: var(--lg-font-heading);
  font-weight: var(--lg-weight-black);
  font-size: 2.6rem;
  color: var(--lg-color-accent-1);
  line-height: 1;
  margin-bottom: 12px;
}

.diff-num-icon {
  font-size: 0;
  margin-bottom: 12px;
  height: 36px;
  display: flex;
  align-items: center;
}

.diff-card h3 {
  font-family: var(--lg-font-heading);
  font-weight: var(--lg-weight-bold);
  font-size: 1rem;
  color: var(--lg-text-on-dark);
  margin: 0 0 8px;
  text-transform: lowercase;
}

.diff-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  line-height: 1.55;
}

/* ===== PROCESSO ===== */

.section-process {
  background: var(--lg-color-bg-soft);
  padding: 72px 0;
}

.process-list {
  list-style: none;
  margin: 32px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

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

.process-item {
  background: var(--lg-color-white);
  border-radius: var(--lg-radius-md);
  padding: 28px 24px;
  box-shadow: var(--lg-shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.process-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--lg-color-primary);
  color: var(--lg-text-on-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--lg-font-heading);
  font-weight: var(--lg-weight-black);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.process-item h3 {
  font-family: var(--lg-font-heading);
  font-weight: var(--lg-weight-bold);
  font-size: 1.1rem;
  color: var(--lg-color-primary);
  margin: 0 0 8px;
}

.process-item p {
  margin: 0;
  color: var(--lg-text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

/* ===== FAQ ===== */

.section-faq {
  background: var(--lg-color-white);
  padding: 72px 0;
}

.faq-item {
  border: 1px solid #eef1f5;
  border-radius: var(--lg-radius-md);
  margin-bottom: 12px;
  background: var(--lg-color-white);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.faq-item[open] {
  border-color: var(--lg-color-accent-1);
  box-shadow: var(--lg-shadow-sm);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 22px;
  font-family: var(--lg-font-heading);
  font-weight: var(--lg-weight-bold);
  color: var(--lg-color-primary);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-family: var(--lg-font-heading);
  font-weight: var(--lg-weight-black);
  font-size: 1.4rem;
  color: var(--lg-color-secondary);
  flex-shrink: 0;
  transition: transform 0.2s ease;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--lg-text-muted);
  font-size: 0.96rem;
  line-height: 1.6;
}

/* ===== CONTACTO ===== */

.section-contact {
  background: linear-gradient(135deg, #234169 0%, #1B2A3F 100%);
  color: var(--lg-text-on-dark);
  padding: 72px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}

@media (min-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
  }
}

.contact-info p {
  font-size: 1.02rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.6;
  margin: 0 0 24px;
  max-width: 520px;
}

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-list li {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(168, 218, 220, 0.25);
  border-radius: var(--lg-radius-md);
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-list strong {
  font-family: var(--lg-font-heading);
  font-weight: var(--lg-weight-bold);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: var(--lg-tracking-title);
  color: var(--lg-color-accent-1);
}

.contact-list a, .contact-list span {
  color: var(--lg-text-on-dark);
  font-weight: var(--lg-weight-medium);
  font-size: 1rem;
  line-height: 1.4;
}

.contact-list a:hover {
  color: var(--lg-color-accent-1);
}

.contact-form {
  background: var(--lg-color-white);
  border-radius: var(--lg-radius-md);
  padding: 28px;
  box-shadow: var(--lg-shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field span {
  font-family: var(--lg-font-heading);
  font-weight: var(--lg-weight-bold);
  font-size: 0.85rem;
  color: var(--lg-color-primary);
}

.field input {
  border: 1px solid #d8e0ea;
  border-radius: var(--lg-radius-sm);
  padding: 12px 14px;
  font-family: var(--lg-font-body);
  font-size: 0.96rem;
  color: var(--lg-color-primary);
  background: var(--lg-color-white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field input:focus {
  outline: none;
  border-color: var(--lg-color-secondary);
  box-shadow: 0 0 0 3px rgba(51, 122, 183, 0.18);
}

.form-note {
  margin: 6px 0 0;
  font-size: 0.85rem;
  color: var(--lg-text-muted);
  text-align: center;
  line-height: 1.5;
}

/* ===== FOOTER ===== */

.footer {
  background: var(--lg-color-night);
  color: rgba(255, 255, 255, 0.85);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding: 56px 20px 36px;
}

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

.footer-brand .brand-name strong {
  color: var(--lg-color-white);
}

.footer-brand .brand-name small {
  color: var(--lg-color-accent-1);
}

.footer-brand p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.55;
  max-width: 320px;
}

.footer-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

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

.footer-cols h4 {
  font-family: var(--lg-font-heading);
  font-weight: var(--lg-weight-bold);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: var(--lg-tracking-title);
  color: var(--lg-color-accent-1);
  margin: 0 0 14px;
}

.footer-cols a, .footer-cols span {
  display: block;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.92rem;
  margin-bottom: 6px;
  line-height: 1.45;
}

.footer-cols a:hover {
  color: var(--lg-color-accent-1);
}

.footer-bar {
  background: rgba(0, 0, 0, 0.25);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 14px 0;
}

.footer-bar-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
}

@media (min-width: 600px) {
  .footer-bar-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
