/* ============================================
   INSTITUTO RENASCER FEMININO — STYLE.CSS
   Identidade visual baseada na logo
   ============================================ */

/* --- GOOGLE FONTS --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600;700&family=Lato:wght@300;400;700&display=swap');

/* --- VARIÁVEIS DE COR (baseadas na logo) --- */
:root {
  --verde-primario: #2a8a7e;
  --verde-suave: #4db8a8;
  --verde-claro: #a8ddd7;
  --dourado: #c9a84c;
  --dourado-suave: #e8d5a3;
  --off-white: #f9f6f0;
  --terracota: #c4714a;
  --rosa-queimado: #c47a85;
  --lilas: #7a6b8a;
  --texto-escuro: #2c2c2c;
  --texto-medio: #555555;
  --texto-claro: #888888;
  --branco: #ffffff;
  --sombra: rgba(42, 138, 126, 0.15);
  --sombra-forte: rgba(0, 0, 0, 0.1);
}

/* --- RESET E BASE --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Lato', sans-serif;
  background-color: var(--off-white);
  color: var(--texto-escuro);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  line-height: 1.3;
  color: var(--verde-primario);
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
}

ul {
  list-style: none;
}

/* --- CONTAINER --- */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ============================================
   HEADER / NAVEGAÇÃO
   ============================================ */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px var(--sombra-forte);
  transition: all 0.3s ease;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 5%;
  max-width: 1400px;
  margin: 0 auto;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-area img {
  height: 60px;
  width: auto;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-text span:first-child {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--texto-medio);
}

.logo-text span:last-child {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--verde-primario);
  letter-spacing: 1px;
}

/* --- NAV MENU --- */
nav ul {
  display: flex;
  align-items: center;
  gap: 8px;
}

nav ul li a {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--texto-escuro);
  padding: 8px 12px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

nav ul li a:hover {
  color: var(--verde-primario);
  background: var(--verde-claro);
}

nav ul li.nav-cta a {
  background: var(--verde-primario);
  color: var(--branco);
  padding: 10px 20px;
  border-radius: 25px;
}

nav ul li.nav-cta a:hover {
  background: var(--dourado);
  color: var(--branco);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px var(--sombra);
}

/* --- HAMBURGER MENU --- */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  padding: 5px;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background: var(--verde-primario);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================
   BOTÕES
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 30px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-primary {
  background: var(--verde-primario);
  color: var(--branco);
  box-shadow: 0 4px 15px var(--sombra);
}

.btn-primary:hover {
  background: var(--verde-suave);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px var(--sombra);
  color: var(--branco);
}

.btn-secondary {
  background: transparent;
  color: var(--branco);
  border: 2px solid var(--branco);
}

.btn-secondary:hover {
  background: var(--branco);
  color: var(--verde-primario);
  transform: translateY(-3px);
}

.btn-dourado {
  background: var(--dourado);
  color: var(--branco);
  box-shadow: 0 4px 15px rgba(201, 168, 76, 0.3);
}

.btn-dourado:hover {
  background: #b8943e;
  transform: translateY(-3px);
  color: var(--branco);
}

.btn-outline {
  background: transparent;
  color: var(--verde-primario);
  border: 2px solid var(--verde-primario);
}

.btn-outline:hover {
  background: var(--verde-primario);
  color: var(--branco);
  transform: translateY(-3px);
}

/* ============================================
   HERO / BANNER PRINCIPAL
   ============================================ */
.hero {
  min-height: 100vh;
  background: linear-gradient(
    135deg,
    rgba(42, 138, 126, 0.92) 0%,
    rgba(77, 184, 168, 0.85) 40%,
    rgba(122, 107, 138, 0.80) 100%
  ),
  url('https://images.unsplash.com/photo-1573496359142-b8d87734a5a2?w=1800') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 20px 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--off-white);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.hero-content {
  max-width: 800px;
  color: var(--branco);
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--branco);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 8px 24px;
  border-radius: 20px;
  margin-bottom: 24px;
  backdrop-filter: blur(5px);
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--branco);
  font-weight: 700;
  margin-bottom: 12px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.hero h1 em {
  font-style: italic;
  color: var(--dourado-suave);
}

.hero p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.92);
  margin-bottom: 40px;
  font-weight: 300;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

/* --- NÚMEROS DE IMPACTO --- */
.hero-stats {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.3);
}

.stat-item {
  text-align: center;
  color: var(--branco);
}

.stat-number {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dourado-suave);
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  margin-top: 4px;
}

/* ============================================
   SEÇÕES GERAIS
   ============================================ */
section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  background: var(--verde-claro);
  color: var(--verde-primario);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 15px;
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--verde-primario);
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--texto-medio);
  max-width: 600px;
  margin: 0 auto;
}

.section-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--verde-primario), var(--dourado));
  border-radius: 2px;
  margin: 16px auto 0;
}

/* ============================================
   SEÇÃO QUEM SOMOS (HOME)
   ============================================ */
.quem-somos-preview {
  background: var(--branco);
}

.qs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.qs-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px var(--sombra-forte);
}

.qs-image-wrapper img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

.qs-image-badge {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: var(--verde-primario);
  color: var(--branco);
  padding: 16px 24px;
  border-radius: 12px;
  backdrop-filter: blur(5px);
}

.qs-image-badge strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
}

.qs-image-badge span {
  font-size: 0.8rem;
  opacity: 0.9;
}

.qs-content .section-tag {
  margin-bottom: 16px;
}

.qs-content h2 {
  margin-bottom: 20px;
}

.qs-content p {
  color: var(--texto-medio);
  margin-bottom: 16px;
  font-size: 1.05rem;
}

.qs-content blockquote {
  border-left: 4px solid var(--dourado);
  padding: 16px 20px;
  background: var(--off-white);
  border-radius: 0 10px 10px 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--verde-primario);
  margin: 24px 0;
  font-style: italic;
}

/* ============================================
   MISSÃO VISÃO VALORES
   ============================================ */
.mvv-section {
  background: linear-gradient(135deg, var(--verde-primario) 0%, var(--lilas) 100%);
  color: var(--branco);
}

.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.mvv-card {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease;
}

.mvv-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.18);
}

.mvv-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  display: block;
}

.mvv-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  color: var(--dourado-suave);
  margin-bottom: 16px;
}

.mvv-card p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
}

.valores-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 12px;
}

.valor-tag {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--branco);
  padding: 5px 14px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 700;
}

/* ============================================
   ÁREAS DE ATUAÇÃO — CARDS
   ============================================ */
.areas-section {
  background: var(--off-white);
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.area-card {
  background: var(--branco);
  border-radius: 20px;
  padding: 36px 28px;
  box-shadow: 0 4px 20px var(--sombra);
  transition: all 0.3s ease;
  border-bottom: 4px solid transparent;
  position: relative;
  overflow: hidden;
}

.area-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--verde-primario), var(--dourado));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.area-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px var(--sombra);
}

.area-card:hover::before {
  transform: scaleX(1);
}

.area-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--verde-claro), var(--verde-suave));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.area-card h3 {
  font-size: 1.25rem;
  color: var(--verde-primario);
  margin-bottom: 12px;
}

.area-card p {
  color: var(--texto-medio);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ============================================
   PROJETOS
   ============================================ */
.projetos-section {
  background: var(--branco);
}

.projetos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.projeto-card {
  background: var(--off-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px var(--sombra);
  transition: all 0.3s ease;
}

.projeto-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px var(--sombra);
}

.projeto-card-img {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.projeto-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.projeto-card:hover .projeto-card-img img {
  transform: scale(1.05);
}

.projeto-card-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.projeto-card-body {
  padding: 28px;
}

.projeto-tag {
  display: inline-block;
  background: var(--verde-claro);
  color: var(--verde-primario);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 10px;
  margin-bottom: 12px;
}

.projeto-card h3 {
  font-size: 1.3rem;
  color: var(--verde-primario);
  margin-bottom: 10px;
}

.projeto-card p {
  color: var(--texto-medio);
  font-size: 0.92rem;
  margin-bottom: 20px;
}

/* ============================================
   FRASE DESTAQUE
   ============================================ */
.frase-destaque {
  background: var(--off-white);
  padding: 60px 0;
}

.frase-inner {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.frase-inner blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--verde-primario);
  font-style: italic;
  line-height: 1.4;
  margin-bottom: 16px;
}

.frase-inner cite {
  color: var(--dourado);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ============================================
   DOE / APOIE SEÇÃO
   ============================================ */
.doe-section {
  background: linear-gradient(
    135deg,
    rgba(196, 113, 74, 0.9) 0%,
    rgba(196, 122, 133, 0.9) 100%
  ),
  url('https://images.unsplash.com/photo-1531206715517-5c0ba140b2b8?w=1800') center/cover;
  color: var(--branco);
  text-align: center;
}

.doe-section h2 {
  color: var(--branco);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px;
}

.doe-section p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.92);
  max-width: 650px;
  margin: 0 auto 40px;
}

.doe-formas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 40px;
}

.doe-forma-item {
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--branco);
  padding: 10px 24px;
  border-radius: 25px;
  font-size: 0.88rem;
  font-weight: 700;
  backdrop-filter: blur(5px);
}

/* ============================================
   PARCEIROS
   ============================================ */
.parceiros-section {
  background: var(--branco);
  text-align: center;
}

.parceiros-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  align-items: center;
  margin: 40px 0;
}

.parceiro-placeholder {
  width: 140px;
  height: 70px;
  background: var(--off-white);
  border: 2px dashed var(--verde-claro);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--texto-claro);
  font-size: 0.75rem;
  text-align: center;
  padding: 10px;
}

/* ============================================
   GALERIA
   ============================================ */
.galeria-section {
  background: var(--off-white);
}

.galeria-tabs {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.galeria-tab {
  padding: 10px 28px;
  border-radius: 25px;
  border: 2px solid var(--verde-primario);
  background: transparent;
  color: var(--verde-primario);
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Lato', sans-serif;
}

.galeria-tab.active,
.galeria-tab:hover {
  background: var(--verde-primario);
  color: var(--branco);
}

.galeria-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 16px;
}

.galeria-item {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--verde-claro);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 4px 15px var(--sombra);
  transition: transform 0.3s ease;
  position: relative;
}

.galeria-item:hover {
  transform: scale(1.02);
}

.galeria-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================
   TRANSPARÊNCIA
   ============================================ */
.transparencia-section {
  background: var(--branco);
}

.transparencia-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.transp-card {
  background: var(--off-white);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(42, 138, 126, 0.1);
}

.transp-card:hover {
  border-color: var(--verde-primario);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px var(--sombra);
}

.transp-card .transp-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: block;
}

.transp-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.transp-card p {
  color: var(--texto-medio);
  font-size: 0.88rem;
  margin-bottom: 20px;
}

.transp-card a {
  color: var(--verde-primario);
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: underline;
}

/* ============================================
   CONTATO
   ============================================ */
.contato-section {
  background: var(--off-white);
}

.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contato-info h2 {
  margin-bottom: 20px;
}

.contato-info p {
  color: var(--texto-medio);
  margin-bottom: 30px;
}

.contato-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contato-item-icon {
  width: 48px;
  height: 48px;
  background: var(--verde-claro);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contato-item-text strong {
  display: block;
  color: var(--verde-primario);
  font-weight: 700;
  margin-bottom: 4px;
}

.contato-item-text span {
  color: var(--texto-medio);
  font-size: 0.95rem;
}

/* --- FORMULÁRIO --- */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--texto-escuro);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid rgba(42, 138, 126, 0.2);
  border-radius: 10px;
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  color: var(--texto-escuro);
  background: var(--branco);
  transition: border-color 0.3s ease;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--verde-primario);
  box-shadow: 0 0 0 4px rgba(42, 138, 126, 0.1);
}

.form-group textarea {
  height: 140px;
  resize: vertical;
}

/* ============================================
   WHATSAPP FLUTUANTE
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--branco);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  animation: pulse 2s infinite;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  color: var(--branco);
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7); }
}

/* ============================================
   PAGE HERO (páginas internas)
   ============================================ */
.page-hero {
  min-height: 340px;
  background: linear-gradient(
    135deg,
    rgba(42, 138, 126, 0.95) 0%,
    rgba(122, 107, 138, 0.90) 100%
  ),
  url('https://images.unsplash.com/photo-1573496359142-b8d87734a5a2?w=1800') center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 20px 60px;
}

.page-hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--branco);
  margin-bottom: 16px;
}

.page-hero-content p {
  color: rgba(255,255,255,0.9);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  margin-top: 20px;
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
}

.breadcrumb a {
  color: rgba(255,255,255,0.7);
}

.breadcrumb a:hover {
  color: var(--branco);
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: #1a2e2b;
  color: rgba(255, 255, 255, 0.8);
  padding: 70px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand img {
  height: 60px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--verde-primario);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--verde-claro);
  margin-bottom: 20px;
  font-weight: 700;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: var(--verde-suave);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

/* ============================================
   ANIMAÇÕES
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ============================================
   RESPONSIVIDADE
   ============================================ */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .mvv-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  nav ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--branco);
    flex-direction: column;
    padding: 20px;
    gap: 4px;
    box-shadow: 0 10px 30px var(--sombra-forte);
    border-top: 2px solid var(--verde-claro);
  }

  nav ul.open {
    display: flex;
  }

  nav ul li a {
    display: block;
    padding: 12px 20px;
    border-radius: 8px;
  }

  .hamburger {
    display: flex;
  }

  .qs-grid,
  .contato-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    gap: 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  section {
    padding: 60px 0;
  }
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    justify-content: center;
    max-width: 300px;
  }

  .areas-grid,
  .projetos-grid {
    grid-template-columns: 1fr;
  }
}