/* ==============================
   CUIDARPERTO - CSS PRINCIPAL
============================== */
/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* VARIÁVEIS */
:root {
  --primary: #2c3e50;
  --primary-color: #2c3e50;
  --secondary: #27ae60;
  --secondary-color: #27ae60;
  --accent: #3498db;
  --accent-color: #3498db;
  --bg: #f8f9fa;
  --light-bg: #f8f9fa;
  --white: #ffffff;
  --text: #2c3e50;
  --text-dark: #2c3e50;
  --text-light: #7f8c8d;
  --muted: #7f8c8d;
  --border: #dfe6e9;
  --border-color: #dfe6e9;
  --warning-color: #f39c12;
  --shadow: 0 2px 10px rgba(0,0,0,.1);
  --radius: 12px;
  --radius-sm: 8px;
}
/* BASE */
body {
  font-family: Inter, system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}
.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}
/* ==========================
   HEADER
========================== */
.market-header {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
}
.market-header-content {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
/* LOGO */
.header-logo img {
  height: 42px;
  width: auto;
  display: block;
}
/* NAV */
.market-nav {
  display: flex;
  gap: 24px;
}
.market-nav a {
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  text-decoration: none;
}
.market-nav a:hover {
  color: #2563eb;
}
/* ==========================
   HERO
========================== */
.hero {
  background: linear-gradient(135deg, #2c3e50, #3498db);
  color: white;
  padding: 72px 0;
  text-align: center;
}
.hero-title {
  font-size: 42px;
  margin-bottom: 16px;
}
.hero-subtitle {
  max-width: 700px;
  margin: auto;
  opacity: .9;
}
/* ==========================
   BOTÕES
========================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  min-height: 44px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.1s ease;
}
.btn.primary {
  background: #22c55e;
  color: #ffffff;
}
.btn.primary:hover {
  background: #16a34a;
}
.btn.secondary {
  background: #2563eb;
  color: #ffffff;
}
.btn.secondary:hover {
  background: #1d4ed8;
}
/* ==========================
   FOOTER
========================== */
.site-footer {
  background: #0f172a;
  color: #cbd5e1;
  padding: 64px 0 0;
}
.site-footer .footer-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
  margin-bottom: 40px;
}
.site-footer .footer-brand strong {
  font-size: 18px;
  color: #ffffff;
  display: block;
  margin-bottom: 8px;
}
.site-footer .footer-brand p {
  font-size: 14px;
  max-width: 360px;
  line-height: 1.6;
}
.site-footer .footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.site-footer .footer-links a {
  color: #94a3b8;
  font-size: 14px;
  text-decoration: none;
}
.site-footer .footer-links a:hover {
  color: #ffffff;
}
.site-footer .footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
}
.site-footer .footer-bottom p {
  text-align: center;
  font-size: 13px;
  color: #94a3b8;
}
/* ==========================
   MOBILE (DEFINITIVO)
========================== */
@media (max-width: 768px) {
  /* HEADER COMPACTO */
  .market-header-content {
    flex-direction: column;
    height: auto;
    padding: 12px 0;
    gap: 8px;
  }
  .header-logo img {
    height: 32px;
  }
  .market-nav {
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
  }
  /* HERO CONTROLADO */
  .hero {
    padding: 40px 0;
  }
  .hero-title {
    font-size: 26px;
    line-height: 1.2;
  }
  .hero-subtitle {
    font-size: 15px;
    margin-bottom: 16px;
  }
}
```

---

## 📋 PRÓXIMOS PASSOS

**1. Substitua o arquivo `style.css` no servidor**

**2. Limpe o cache do navegador:**
- **Ctrl + Shift + R** (recarregar forçado)

**3. Acesse a página de cadastro:**
```
https://cuidarperto.com.br/cuidador/cadastro

/* ==========================
   FOOTER GRID – FIX DEFINITIVO
========================== */

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

.footer-col h3,
.footer-col h4 {
  color: #ffffff;
  margin-bottom: 16px;
}

.footer-descricao {
  color: #94a3b8;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 12px;
}

.footer-slogan {
  color: #60a5fa;
  font-style: italic;
  font-size: 14px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-contato {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contato li {
  margin-bottom: 12px;
  color: #94a3b8;
}

.footer-contato a {
  color: #94a3b8;
  text-decoration: none;
}

.footer-contato a:hover,
.footer-links a:hover {
  color: #60a5fa;
}

/* MOBILE */
@media (max-width: 768px) {
  .footer-grid {
    gap: 28px;
  }
}
