/* ============================================
   LOURDES DE FÁTIMA – MODA & ESTILO
   Main Stylesheet
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400;1,700&family=DM+Sans:wght@300;400;500;600&display=swap');

/* --- CSS VARIABLES --- */
:root {
  --cream: #FAF7F2;
  --warm-white: #FFFDF9;
  --charcoal: #1C1C1C;
  --deep: #0D0D0D;
  --gold: #C9993A;
  --gold-light: #E8C06E;
  --rust: #B84B2F;
  --green: #2D6A4F;
  --text: #2C2C2C;
  --text-muted: #6B6B6B;
  --border: #E5DDD0;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;
  --radius: 4px;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.14);
  --transition: all 0.3s ease;
}

/* --- RESET & BASE --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--warm-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--gold); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--rust); }
ul { list-style: none; }

/* --- CONTAINER --- */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
}
.content-narrow { max-width: 800px; }

/* --- TYPOGRAPHY --- */
h1, h2, h3 { font-family: var(--font-display); line-height: 1.2; }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 900; }
h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 700; margin-bottom: 1.2rem; }
h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 0.6rem; }
p { margin-bottom: 1rem; }
em { font-style: italic; color: var(--gold); }

/* --- SECTION LABELS --- */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-label.light { color: var(--gold-light); }

/* --- BUTTONS --- */
.btn-primary {
  display: inline-block;
  background: var(--charcoal);
  color: #fff;
  padding: 0.85rem 2rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  border-radius: var(--radius);
  transition: var(--transition);
  border: 2px solid var(--charcoal);
}
.btn-primary:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}
.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--charcoal);
  padding: 0.85rem 2rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  border: 2px solid var(--charcoal);
  border-radius: var(--radius);
  transition: var(--transition);
}
.btn-outline:hover { background: var(--charcoal); color: #fff; }
.btn-outline-light {
  display: inline-block;
  background: transparent;
  color: #fff;
  padding: 0.85rem 2rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: var(--radius);
  transition: var(--transition);
  margin-top: 1.5rem;
}
.btn-outline-light:hover { background: rgba(255,255,255,0.15); border-color: #fff; color: #fff; }

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--warm-white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  padding-bottom: 1rem;
  gap: 1rem;
}
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--charcoal);
  letter-spacing: -0.01em;
}
.logo-sub {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}
.main-nav ul {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.main-nav a {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.03em;
  position: relative;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.main-nav a:hover::after,
.main-nav a.active::after { width: 100%; }
.main-nav a:hover, .main-nav a.active { color: var(--charcoal); }
.nav-cta {
  background: var(--charcoal) !important;
  color: #fff !important;
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius);
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold) !important; }
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--charcoal);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--charcoal);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(201,153,58,0.18) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(184,75,47,0.12) 0%, transparent 60%),
    linear-gradient(135deg, #1C1C1C 0%, #0D0D0D 100%);
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 700px;
  padding: 4rem 0;
}
.hero-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.2rem;
  padding: 0.3rem 0.8rem;
  border: 1px solid rgba(201,153,58,0.4);
  border-radius: 2px;
}
.hero-content h1 { color: #fff; margin-bottom: 1.2rem; }
.hero-content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 2rem;
  max-width: 520px;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero .btn-primary { background: var(--gold); border-color: var(--gold); }
.hero .btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); color: var(--charcoal); }
.hero .btn-outline { border-color: rgba(255,255,255,0.5); color: #fff; }
.hero .btn-outline:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.4);
  font-size: 1.2rem;
  animation: bounce 2s ease-in-out infinite;
  z-index: 2;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================================
   CATEGORIES
   ============================================ */
.categories {
  background: var(--cream);
  padding: 3rem 0;
  border-bottom: 1px solid var(--border);
}
.cat-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 1rem;
  text-align: center;
}
.cat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.2rem 0.5rem;
  border-radius: 8px;
  transition: var(--transition);
  cursor: default;
}
.cat-item:hover { background: #fff; box-shadow: var(--shadow); }
.cat-icon { font-size: 1.8rem; }
.cat-item span:last-child {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ============================================
   ABOUT TEASER
   ============================================ */
.about-teaser {
  padding: 6rem 0;
  background: var(--warm-white);
}
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.split-text p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}
.split-deco {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.deco-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transition: var(--transition);
}
.deco-card:hover { box-shadow: var(--shadow); }
.deco-card.accent { background: var(--charcoal); border-color: var(--charcoal); }
.deco-card.accent .deco-number { color: var(--gold-light); }
.deco-card.accent .deco-label { color: rgba(255,255,255,0.7); }
.deco-number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--gold);
  min-width: 80px;
}
.deco-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ============================================
   MISSION TEASER
   ============================================ */
.mission-teaser {
  background: var(--charcoal);
  padding: 6rem 0;
  text-align: center;
}
.mission-teaser h2 {
  color: #fff;
  max-width: 700px;
  margin: 0 auto;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}
.mission-teaser h2 em { color: var(--gold-light); }

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
  padding: 6rem 0;
  background: var(--cream);
}
.contact-section h2 { margin-bottom: 3rem; }
.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.contact-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--transition);
}
.contact-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.contact-icon { font-size: 2rem; margin-bottom: 1rem; }
.contact-card h3 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.contact-card p { font-size: 0.95rem; color: var(--text); margin: 0; }
.contact-card a { color: var(--charcoal); font-weight: 500; }
.contact-card a:hover { color: var(--gold); }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--deep);
  color: rgba(255,255,255,0.85);
  padding: 4rem 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo-name { color: #fff; font-size: 1.5rem; }
.footer-brand .logo-sub { color: var(--gold); }
.footer-desc {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  margin-top: 1rem;
  line-height: 1.6;
}
.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.footer-links ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a,
.footer-contact a {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-links a:hover,
.footer-contact a:hover { color: var(--gold-light); }
.footer-contact p { font-size: 0.9rem; color: rgba(255,255,255,0.65); margin-bottom: 0.4rem; }
.footer-bottom {
  padding: 1.2rem 0;
  text-align: center;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.35); margin: 0; }
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--gold); }

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  background: var(--charcoal);
  padding: 5rem 0;
  text-align: center;
}
.page-hero h1 { color: #fff; }
.page-hero p { color: rgba(255,255,255,0.7); margin-top: 0.8rem; font-size: 1.05rem; }
.page-hero .hero-tag { margin-bottom: 1rem; }
.mission-hero {
  background: linear-gradient(135deg, #1C1C1C 0%, #2D6A4F 100%);
}
.privacy-hero {
  background: linear-gradient(135deg, #1C1C1C 0%, #3D2B1F 100%);
}

/* ============================================
   PAGE CONTENT
   ============================================ */
.page-content {
  padding: 5rem 0;
}
.story-block {
  margin-bottom: 3.5rem;
}
.story-block p { color: var(--text-muted); font-size: 1.05rem; }

/* STYLED LIST */
.styled-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}
.styled-list li {
  padding: 0.5rem 0 0.5rem 1.5rem;
  position: relative;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  font-size: 1rem;
}
.styled-list li:last-child { border-bottom: none; }
.styled-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* VALUES GRID */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}
.value-item {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.8rem;
  transition: var(--transition);
}
.value-item:hover { box-shadow: var(--shadow); }
.value-icon { font-size: 2rem; margin-bottom: 0.8rem; }
.value-item h3 { color: var(--charcoal); margin-bottom: 0.5rem; }
.value-item p { font-size: 0.95rem; color: var(--text-muted); margin: 0; }

/* INFO TABLE */
.info-box {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2.5rem;
  margin-top: 2rem;
}
.info-box h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
  padding-bottom: 0.8rem;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}
.info-table { width: 100%; border-collapse: collapse; }
.info-table tr { border-bottom: 1px solid var(--border); }
.info-table tr:last-child { border-bottom: none; }
.info-table td { padding: 0.8rem 0.5rem; font-size: 0.9rem; vertical-align: top; }
.info-table td:first-child {
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.8rem;
  width: 35%;
  padding-right: 1rem;
}
.badge-ativa {
  display: inline-block;
  background: var(--green);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.25rem 0.7rem;
  border-radius: 20px;
}

/* MISSION STATEMENT */
.mission-statement {
  background: var(--cream);
  padding: 5rem 0;
  border-bottom: 1px solid var(--border);
}
.mission-big { max-width: 760px; margin: 0 auto; text-align: center; }
.mission-big blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  position: relative;
  padding: 0 2rem;
}
.mission-big blockquote::before {
  content: '"';
  position: absolute;
  top: -0.5rem;
  left: 0;
  font-size: 4rem;
  color: var(--gold);
  font-style: normal;
  line-height: 1;
}
.mission-big cite {
  font-size: 0.85rem;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* PILLARS */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 3rem 0;
}
.pillar-card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-top: 4px solid var(--gold);
  border-radius: 8px;
  padding: 2.5rem 2rem;
  transition: var(--transition);
}
.pillar-card:hover { box-shadow: var(--shadow-lg); }
.pillar-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: rgba(201,153,58,0.2);
  margin-bottom: 0.5rem;
  line-height: 1;
}
.pillar-card h3 { color: var(--charcoal); }
.pillar-card p { color: var(--text-muted); font-size: 0.95rem; }
.pillar-list { list-style: none; margin-top: 0.5rem; }
.pillar-list li {
  padding: 0.4rem 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}
.pillar-list li:last-child { border-bottom: none; }

/* CTA BLOCK */
.cta-block {
  background: var(--charcoal);
  color: #fff;
  padding: 3rem;
  border-radius: 12px;
  margin-top: 3rem;
}
.cta-block h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 0.5rem;
}
.cta-block p { color: rgba(255,255,255,0.7); margin-bottom: 1.5rem; }
.cta-block .btn-primary { background: var(--gold); border-color: var(--gold); }
.cta-block .btn-outline { border-color: rgba(255,255,255,0.5); color: #fff; }
.cta-block .btn-outline:hover { background: rgba(255,255,255,0.1); }

/* PRIVACY */
.privacy-intro {
  background: var(--cream);
  border-left: 4px solid var(--gold);
  padding: 1.5rem 2rem;
  border-radius: 0 8px 8px 0;
  margin-bottom: 3rem;
}
.privacy-intro p { color: var(--text); margin: 0; }
.privacy-section {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
}
.privacy-section:last-child { border-bottom: none; }
.privacy-section h2 {
  font-size: 1.4rem;
  color: var(--charcoal);
  margin-bottom: 1rem;
}
.privacy-section p, .privacy-section ul li { color: var(--text-muted); font-size: 0.98rem; }
.contact-info-block {
  background: var(--cream);
  padding: 1.5rem;
  border-radius: 8px;
  margin: 1rem 0;
  border: 1px solid var(--border);
}
.contact-info-block p { margin-bottom: 0.4rem; color: var(--text); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .cat-grid { grid-template-columns: repeat(4, 1fr); }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .pillars-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .menu-toggle { display: block; }
  .main-nav {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    z-index: 200;
    align-items: center;
    justify-content: center;
  }
  .main-nav.open { display: flex; }
  .main-nav ul {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
  .main-nav a { font-size: 1.4rem; color: #fff !important; }
  .split-layout { grid-template-columns: 1fr; gap: 3rem; }
  .values-grid { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .hero { min-height: 75vh; }
}

@media (max-width: 480px) {
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .cta-block { padding: 2rem 1.5rem; }
  .info-box { padding: 1.5rem; }
}
