/* ══════════════════════════════════════════
   ACCEDEX — ESTILOS PRINCIPAIS
   Versão: 1.0.0
   ══════════════════════════════════════════ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,600;0,700;0,800;0,900;1,300;1,400&display=swap');

/* ── VARIÁVEIS ── */
:root {
  --green:        #1B4332;
  --green-mid:    #2D6A4F;
  --green-light:  #40916C;
  --green-xlight: #52B788;
  --beige:        #F5F0E8;
  --beige-mid:    #EDE5D5;
  --beige-dark:   #D4C5A9;
  --white:        #FFFFFF;
  --text-dark:    #1A2E1E;
  --text-mid:     #3D5A47;
  --text-muted:   #6B8F76;
  --border:       rgba(27,67,50,0.12);
  --border-beige: rgba(212,197,169,0.5);
  --shadow:       0 4px 24px rgba(27,67,50,0.10);
  --shadow-lg:    0 12px 48px rgba(27,67,50,0.18);
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--beige);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── LAYOUT ── */
.accedex-container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.accedex-section { padding: 6rem 5rem; }

/* ── TIPOGRAFIA ── */
h1,h2,h3,h4,h5,h6 { font-family: 'Montserrat', sans-serif; line-height: 1.12; }

.accedex-section-label {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--green-light);
  display: flex; align-items: center; gap: 0.8rem;
  margin-bottom: 1rem;
}
.accedex-section-label::before {
  content:''; display:block; width:24px; height:2px; background:var(--green-light);
}

.accedex-section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800; letter-spacing: -0.02em; color: var(--text-dark);
}
.accedex-section-title .accent { color: var(--green); }
.accedex-section-title .italic { font-style: italic; font-weight: 300; }
.accedex-section-body {
  font-size: 0.95rem; line-height: 1.78; color: var(--text-mid);
  max-width: 560px;
}

/* ── BOTÕES ── */
.accedex-btn, .wp-block-button__link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 2.2rem; font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  border: none; border-radius: 40px; cursor: pointer;
  transition: all 0.25s; font-family: 'Montserrat', sans-serif;
  text-decoration: none;
}
.accedex-btn-primary, .wp-block-button__link {
  background: var(--green); color: var(--beige);
}
.accedex-btn-primary:hover, .wp-block-button__link:hover {
  background: var(--green-mid); transform: translateY(-2px); box-shadow: var(--shadow);
  color: var(--beige);
}
.accedex-btn-outline {
  background: transparent; color: var(--green);
  border: 2px solid var(--green);
}
.accedex-btn-outline:hover { background: var(--green); color: var(--beige); transform: translateY(-2px); }
.accedex-btn-white {
  background: var(--beige); color: var(--green);
}
.accedex-btn-white:hover { background: var(--white); transform: translateY(-2px); box-shadow: var(--shadow); }

/* ── NAV ── */
#accedex-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 3rem;
  background: rgba(27,67,50,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: padding 0.3s;
}
#accedex-nav.scrolled { padding: 0.7rem 3rem; }
.nav-logo {
  display: flex; align-items: center; gap: 0.7rem;
}
.nav-logo-icon {
  width: 36px; height: 36px; background: var(--beige); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 1rem;
  flex-shrink: 0;
}
.nav-logo-text { font-size: 1.35rem; font-weight: 900; letter-spacing: 0.06em; color: var(--beige); }
.nav-logo-text span { color: var(--green-xlight); }
.nav-menu { display: flex; align-items: center; gap: 2rem; }
.nav-menu a {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(245,240,232,0.75); transition: color 0.2s;
}
.nav-menu a:hover, .nav-menu a.current-menu-item { color: var(--beige); border-bottom: 2px solid var(--green-xlight); padding-bottom: 1px; }
.nav-cta {
  background: var(--beige); color: var(--green);
  padding: 0.5rem 1.4rem; border-radius: 40px;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em;
  transition: all 0.2s; text-transform: uppercase;
}
.nav-cta:hover { background: var(--white); transform: translateY(-1px); color: var(--green); }
.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 4px;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--beige); transition: all 0.3s; }
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: var(--green); padding: 5.5rem 2.5rem 2.5rem;
  flex-direction: column; gap: 0;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 2rem; font-weight: 800; letter-spacing: 0.04em; color: var(--beige);
  border-bottom: 1px solid rgba(245,240,232,0.12); padding: 1.2rem 0; transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--green-xlight); }

/* ── HERO ── */
.accedex-hero {
  min-height: 100vh; background: var(--green);
  display: flex; align-items: center; padding: 7rem 5rem 5rem;
  position: relative; overflow: hidden;
}
.accedex-hero .hero-pattern {
  position: absolute; inset: 0; opacity: 0.04;
  background-image: radial-gradient(circle at 20% 50%, var(--beige) 1px, transparent 1px),
    radial-gradient(circle at 80% 20%, var(--beige) 1px, transparent 1px);
  background-size: 80px 80px, 120px 120px;
}
.hero-circle {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(245,240,232,0.08);
}
.hero-circle-1 { right:-100px; top:-100px; width:600px; height:600px; }
.hero-circle-2 { right:50px; top:50px; width:400px; height:400px; background:radial-gradient(circle,rgba(82,183,136,0.08) 0%,transparent 70%); }
.hero-circle-3 { right:160px; top:160px; width:200px; height:200px; background:rgba(82,183,136,0.12); border:none; }
.accedex-hero .hero-content { position: relative; max-width: 700px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: rgba(245,240,232,0.1); border: 1px solid rgba(245,240,232,0.2);
  color: var(--beige-dark); font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  padding: 0.4rem 1rem; border-radius: 40px; margin-bottom: 2rem;
}
.hero-badge span { color: var(--green-xlight); }
.accedex-hero h1 {
  font-size: clamp(2.5rem, 5.5vw, 5rem); font-weight: 900; line-height: 1.08;
  color: var(--beige); letter-spacing: -0.02em; margin-bottom: 1.5rem;
}
.accedex-hero h1 .accent { color: var(--green-xlight); }
.accedex-hero .hero-desc {
  font-size: 1rem; line-height: 1.78; color: rgba(245,240,232,0.7);
  max-width: 520px; margin-bottom: 2.5rem; font-weight: 300;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3.5rem; }
.hero-stats {
  display: flex; gap: 2.5rem; flex-wrap: wrap;
  padding-top: 2rem; border-top: 1px solid rgba(245,240,232,0.12);
}
.hero-stat-num { font-size: 1.8rem; font-weight: 900; color: var(--green-xlight); line-height: 1; }
.hero-stat-label { font-size: 0.72rem; font-weight: 500; color: rgba(245,240,232,0.5); margin-top: 0.2rem; }
.hero-star {
  position: absolute; color: rgba(245,240,232,0.3); font-size: 0.7rem;
  animation: accedex-twinkle 3s ease-in-out infinite;
}
@keyframes accedex-twinkle { 0%,100%{opacity:.3;transform:scale(1)} 50%{opacity:.8;transform:scale(1.2)} }

/* ── MARQUEE ── */
.accedex-marquee {
  overflow: hidden; background: var(--beige-mid);
  border-top: 1px solid var(--border-beige); border-bottom: 1px solid var(--border-beige);
  padding: 0.9rem 0;
}
.marquee-track {
  display: flex; white-space: nowrap;
  animation: accedex-marquee 30s linear infinite;
}
.marquee-item {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--text-muted);
  padding: 0 2.5rem; flex-shrink: 0; border-right: 1px solid var(--border-beige);
}
.marquee-item .dot { color: var(--green-light); margin-right: 0.5rem; }
@keyframes accedex-marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ── PILARES ── */
.pillars-wrap { background: var(--white); }
.pillars-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; margin-bottom: 4rem; }
.pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.pillar-card {
  background: var(--beige); border: 1px solid var(--border-beige);
  border-radius: 16px; padding: 2.2rem 1.8rem;
  position: relative; overflow: hidden; transition: all 0.3s;
}
.pillar-card::before {
  content:''; position:absolute; top:0; left:0; right:0; height:3px;
  background: linear-gradient(90deg, var(--green), var(--green-xlight));
  transform: scaleX(0); transform-origin: left; transition: transform 0.3s;
}
.pillar-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.pillar-card:hover::before { transform: scaleX(1); }
.pillar-icon { font-size: 2rem; margin-bottom: 1rem; }
.pillar-card h3 { font-size: 0.95rem; font-weight: 700; color: var(--green); margin-bottom: 0.6rem; }
.pillar-card p { font-size: 0.82rem; line-height: 1.65; color: var(--text-mid); }

/* ── MISSÃO / VISÃO ── */
.mv-wrap { background: var(--green); }
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; }
.mv-card { padding: 4rem 3.5rem; border-right: 1px solid rgba(245,240,232,0.1); }
.mv-card:last-child { border-right: none; }
.mv-label {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--green-xlight); margin-bottom: 1.5rem; display: flex; align-items: center; gap: 0.6rem;
}
.mv-label::before { content:'★'; }
.mv-card h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 700; color: var(--beige); line-height: 1.25; margin-bottom: 1.2rem; }
.mv-card h3 em { font-style: italic; font-weight: 300; color: var(--green-xlight); }
.mv-card p { font-size: 0.88rem; line-height: 1.75; color: rgba(245,240,232,0.65); }

/* ── STATS ── */
.stats-strip { display: grid; grid-template-columns: repeat(4,1fr); background: var(--beige-mid); border-top: 1px solid var(--border-beige); border-bottom: 1px solid var(--border-beige); }
.stat-cell { padding: 2.5rem 2rem; text-align: center; border-right: 1px solid var(--border-beige); }
.stat-cell:last-child { border-right: none; }
.stat-n { font-size: 2.8rem; font-weight: 900; color: var(--green); line-height: 1; }
.stat-l { font-size: 0.72rem; font-weight: 600; color: var(--text-muted); margin-top: 0.3rem; letter-spacing: 0.06em; }

/* ── TXILLA BANNER ── */
.txilla-banner {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-mid) 100%);
  margin: 0 5rem; border-radius: 20px; padding: 3.5rem 4rem;
  display: grid; grid-template-columns: 1fr auto; gap: 3rem; align-items: center;
  position: relative; overflow: hidden;
}
.txilla-banner::before {
  content: 'TXILLA'; position: absolute; right: 3rem; bottom: -1.5rem;
  font-size: 6rem; font-weight: 900; color: rgba(245,240,232,0.04); letter-spacing: 0.1em;
}
.txilla-pulse {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(82,183,136,0.2); border: 1px solid rgba(82,183,136,0.4);
  color: var(--green-xlight); font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  padding: 0.3rem 0.9rem; border-radius: 40px; margin-bottom: 1.2rem;
}
.txilla-pulse::before { content:'●'; font-size:0.5rem; animation: accedex-blink 1.5s infinite; }
@keyframes accedex-blink{0%,100%{opacity:1}50%{opacity:0.2}}
.txilla-banner h2 { font-size: clamp(1.6rem,2.5vw,2.2rem); font-weight: 800; color: var(--beige); line-height: 1.2; margin-bottom: 1rem; }
.txilla-banner p { color: rgba(245,240,232,0.7); line-height: 1.7; margin-bottom: 1.8rem; font-size: 0.9rem; }
.txilla-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.txilla-emoji { font-size: 5rem; }

/* ── PROJECTS LIST ── */
.projects-list { display: flex; flex-direction: column; }
.project-row {
  display: grid; grid-template-columns: 70px 1fr auto;
  align-items: center; gap: 2rem; padding: 1.8rem 0;
  border-bottom: 1px solid var(--border); transition: all 0.2s;
  cursor: pointer; position: relative;
}
.project-row:first-child { border-top: 1px solid var(--border); }
.project-row:hover { padding-left: 0.8rem; }
.project-row:hover .proj-arrow { opacity: 1; transform: translateX(0); }
.proj-num { font-size: 1.3rem; font-weight: 900; color: var(--green-xlight); opacity: 0.5; }
.proj-title { font-size: 1.05rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.3rem; }
.proj-desc { font-size: 0.82rem; color: var(--text-mid); }
.proj-tag {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  border: 1px solid var(--border); color: var(--text-muted);
  padding: 0.3rem 0.9rem; border-radius: 40px; white-space: nowrap;
}
.proj-arrow { position: absolute; right: 0; color: var(--green); font-size: 1.1rem; opacity: 0; transform: translateX(-8px); transition: all 0.2s; }

/* ── QUOTE ── */
.quote-wrap {
  background: var(--beige-mid); border-top: 1px solid var(--border-beige); border-bottom: 1px solid var(--border-beige);
  text-align: center; padding: 5rem;
}
.quote-mark { font-size: 5rem; line-height: 1; color: var(--green-xlight); opacity: 0.3; font-family: Georgia,serif; margin-bottom: -1rem; display: block; }
.quote-text { font-size: clamp(1.3rem,2.5vw,2rem); font-weight: 300; font-style: italic; line-height: 1.5; color: var(--text-dark); max-width: 820px; margin: 0 auto 1.8rem; }
.quote-author { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--green); }

/* ── BLOG ── */
.blog-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; margin-top: 3rem; }
.blog-card { background: var(--white); border: 1px solid var(--border-beige); border-radius: 16px; overflow: hidden; transition: all 0.3s; }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.blog-thumb { height: 160px; background: linear-gradient(135deg, var(--green) 0%, var(--green-mid) 100%); display: flex; align-items: center; justify-content: center; font-size: 3rem; overflow: hidden; }
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; }
.blog-body { padding: 1.5rem; }
.blog-cat { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--green-light); margin-bottom: 0.5rem; }
.blog-body h3 { font-size: 0.95rem; font-weight: 700; line-height: 1.4; color: var(--text-dark); margin-bottom: 0.5rem; }
.blog-body time { font-size: 0.73rem; color: var(--text-muted); }

/* ── CTA SECTION ── */
.cta-wrap { background: var(--green); text-align: center; padding: 6rem 5rem; position: relative; overflow: hidden; }
.cta-wrap::before { content:'★'; position:absolute; font-size:20rem; font-weight:900; color:rgba(255,255,255,0.02); top:50%; left:50%; transform:translate(-50%,-50%); pointer-events:none; }
.cta-wrap h2 { font-size: clamp(2rem,4vw,3.2rem); font-weight: 900; color: var(--beige); line-height: 1.12; max-width: 640px; margin: 1rem auto; }
.cta-wrap h2 em { font-style: italic; font-weight: 300; color: var(--green-xlight); }
.cta-wrap p { color: rgba(245,240,232,0.65); max-width: 480px; margin: 0 auto 2.5rem; line-height: 1.75; font-size: 0.95rem; }
.cta-wrap .accedex-section-label { justify-content: center; color: var(--green-xlight); }
.cta-wrap .accedex-section-label::before { background: var(--green-xlight); }

/* ── ABOUT ── */
.about-hero {
  background: var(--green); padding: 8rem 5rem 5rem;
  min-height: 65vh; display: flex; align-items: flex-end; position: relative; overflow: hidden;
}
.about-hero-deco { position: absolute; right: 0; top: 0; bottom: 0; width: 40%; background: radial-gradient(circle at 70% 40%, rgba(82,183,136,0.15) 0%, transparent 70%); }
.about-hero h1 { font-size: clamp(2.5rem,5vw,4.5rem); font-weight: 900; color: var(--beige); line-height: 1.08; max-width: 700px; position: relative; }
.about-hero h1 em { font-style: italic; font-weight: 300; color: var(--green-xlight); }
.about-hero p { color: rgba(245,240,232,0.7); max-width: 520px; line-height: 1.75; margin-top: 1.5rem; font-weight: 300; font-size: 1rem; position: relative; }

.values-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; margin-top: 3rem; }
.value-card { background: var(--white); border: 1px solid var(--border-beige); border-radius: 16px; padding: 2.2rem 1.8rem; text-align: center; transition: all 0.3s; }
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.value-icon { font-size: 2.2rem; margin-bottom: 1rem; }
.value-card h3 { font-size: 0.95rem; font-weight: 700; color: var(--green); margin-bottom: 0.6rem; }
.value-card p { font-size: 0.8rem; line-height: 1.62; color: var(--text-mid); }

.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 3rem; }
.team-card { background: var(--white); border: 1px solid var(--border-beige); border-radius: 16px; overflow: hidden; transition: all 0.3s; }
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.team-avatar { height: 180px; background: linear-gradient(135deg, var(--green) 0%, var(--green-mid) 100%); display: flex; align-items: center; justify-content: center; font-size: 4rem; overflow: hidden; }
.team-avatar img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.team-info { padding: 1.5rem; }
.team-info h4 { font-size: 0.95rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.3rem; }
.team-info span { font-size: 0.75rem; font-weight: 600; color: var(--green-light); }

/* ── PROJECTS PAGE ── */
.projects-hero { background: var(--green); padding: 8rem 5rem 5rem; min-height: 55vh; display: flex; align-items: flex-end; border-bottom: 3px solid var(--green-xlight); }
.projects-hero h1 { font-size: clamp(2.5rem,5vw,4.5rem); font-weight: 900; color: var(--beige); line-height: 1.08; max-width: 700px; }
.projects-hero h1 em { font-style: italic; font-weight: 300; color: var(--green-xlight); }
.projects-hero p { color: rgba(245,240,232,0.7); max-width: 520px; line-height: 1.75; margin-top: 1.2rem; font-weight: 300; }

.featured-wrap { background: var(--white); }
.featured-project { display: grid; grid-template-columns: 1fr 1fr; border-bottom: 1px solid var(--border-beige); }
.featured-project:last-child { border-bottom: none; }
.fp-visual { background: linear-gradient(135deg, var(--green) 0%, var(--green-mid) 100%); display: flex; align-items: center; justify-content: center; font-size: 6rem; min-height: 340px; position: relative; overflow: hidden; }
.fp-visual::after { content:''; position:absolute; inset:0; background:radial-gradient(circle at 40% 50%, rgba(82,183,136,0.3) 0%, transparent 60%); }
.fp-content { padding: 3.5rem; display: flex; flex-direction: column; justify-content: center; }
.fp-num { font-size: 3rem; font-weight: 900; color: var(--green-xlight); opacity: 0.2; line-height: 1; margin-bottom: 0.3rem; }
.fp-content h2 { font-size: 2rem; font-weight: 800; color: var(--text-dark); margin-bottom: 1rem; }
.fp-content p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.75; margin-bottom: 1.5rem; }
.fp-features { list-style: none; margin-bottom: 2rem; }
.fp-features li { font-size: 0.82rem; color: var(--text-mid); padding: 0.45rem 0; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 0.7rem; }
.fp-features li::before { content:'✦'; color: var(--green-light); font-size: 0.6rem; flex-shrink: 0; }

.units-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 3.5rem; }
.unit-card { background: var(--white); border-radius: 16px; padding: 2rem 1.8rem; border: 1px solid var(--border-beige); transition: all 0.3s; }
.unit-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--green-xlight); }
.unit-category { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--green-light); background: rgba(64,145,108,0.08); border-radius: 40px; padding: 0.25rem 0.8rem; display: inline-block; margin-bottom: 1rem; }
.unit-icon { font-size: 1.6rem; margin-bottom: 0.8rem; display: block; }
.unit-card h3 { font-size: 0.9rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.5rem; }
.unit-card p { font-size: 0.8rem; line-height: 1.62; color: var(--text-mid); }

.other-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 3rem; }
.other-card { background: var(--beige); border: 1px solid var(--border-beige); border-radius: 16px; padding: 2.2rem 2rem; transition: all 0.3s; }
.other-card:hover { background: var(--white); transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--green-xlight); }
.other-num { font-size: 2rem; font-weight: 900; color: var(--green-xlight); opacity: 0.3; margin-bottom: 0.5rem; }
.other-card h3 { font-size: 1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.7rem; }
.other-card p { font-size: 0.82rem; color: var(--text-mid); line-height: 1.62; }

/* ── CONTACTO ── */
.contact-hero { background: var(--green); padding: 8rem 5rem 5rem; border-bottom: 3px solid var(--green-xlight); }
.contact-hero h1 { font-size: clamp(2.5rem,5vw,4.5rem); font-weight: 900; color: var(--beige); line-height: 1.08; max-width: 600px; }
.contact-hero h1 em { font-style: italic; font-weight: 300; color: var(--green-xlight); }
.contact-hero p { color: rgba(245,240,232,0.7); max-width: 480px; line-height: 1.75; margin-top: 1rem; font-weight: 300; }
.contact-layout { display: grid; grid-template-columns: 1fr 1.4fr; }
.contact-info-side { background: var(--white); padding: 4rem; border-right: 1px solid var(--border-beige); display: flex; flex-direction: column; }
.contact-item { margin-bottom: 2rem; }
.contact-item-label { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--green-light); margin-bottom: 0.5rem; }
.contact-item p, .contact-item a { font-size: 0.92rem; color: var(--text-dark); line-height: 1.6; transition: color 0.2s; }
.contact-item a:hover { color: var(--green); }
.contact-form-side { background: var(--beige); padding: 4rem; }
.contact-form-side h3 { font-size: 1.6rem; font-weight: 800; color: var(--text-dark); margin-bottom: 2rem; }
.contact-form-side h3 em { font-style: italic; font-weight: 300; color: var(--green); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: 0.65rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.5rem; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; background: var(--white); border: 1.5px solid var(--border-beige); border-radius: 10px;
  padding: 0.85rem 1.1rem; color: var(--text-dark); font-family: 'Montserrat',sans-serif;
  font-size: 0.88rem; transition: border-color 0.2s, box-shadow 0.2s; outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--green-light); box-shadow: 0 0 0 3px rgba(64,145,108,0.1); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-success { display: none; background: rgba(64,145,108,0.1); border: 1px solid var(--green-light); border-radius: 10px; padding: 1.2rem; text-align: center; color: var(--green); font-weight: 600; font-size: 0.88rem; margin-top: 1rem; }
.form-success.show { display: block; }

/* ── FOOTER ── */
#accedex-footer { background: var(--text-dark); padding: 4rem 5rem 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-logo { font-size: 1.4rem; font-weight: 900; letter-spacing: 0.06em; color: var(--beige); margin-bottom: 1rem; }
.footer-logo span { color: var(--green-xlight); }
.footer-brand p { font-size: 0.82rem; color: rgba(245,240,232,0.45); line-height: 1.68; max-width: 230px; }
.footer-col h4 { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--green-xlight); margin-bottom: 1.2rem; }
.footer-col li { margin-bottom: 0.55rem; }
.footer-col a { font-size: 0.82rem; color: rgba(245,240,232,0.45); text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: var(--beige); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; font-size: 0.75rem; color: rgba(245,240,232,0.3); }

/* ── WORDPRESS BLOCKS ── */
.wp-block-image img { border-radius: 12px; }
.wp-block-quote { border-left: 4px solid var(--green); padding-left: 1.5rem; font-style: italic; color: var(--text-mid); }
.entry-content { max-width: 780px; margin: 0 auto; padding: 4rem 2rem; line-height: 1.78; }
.entry-content h1,.entry-content h2,.entry-content h3 { font-family: 'Montserrat',sans-serif; font-weight: 700; color: var(--text-dark); margin: 2rem 0 1rem; }
.entry-content p { color: var(--text-mid); margin-bottom: 1rem; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .accedex-section { padding: 5rem 2.5rem; }
  .accedex-hero { padding: 7rem 2.5rem 5rem; }
  .txilla-banner { margin: 0 2.5rem; }
  .pillars-intro { grid-template-columns: 1fr; gap: 2rem; }
  .units-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-hero,.projects-hero,.contact-hero { padding: 7rem 2.5rem 4rem; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-info-side { border-right: none; border-bottom: 1px solid var(--border-beige); }
  .contact-info-side,.contact-form-side { padding: 3rem 2.5rem; }
  .featured-project { grid-template-columns: 1fr; }
  .fp-content { padding: 2.5rem; }
  #accedex-footer { padding: 3rem 2.5rem 2rem; }
}
@media (max-width: 768px) {
  #accedex-nav { padding: 1rem 1.5rem; }
  .nav-menu { display: none; }
  .hamburger { display: flex; }
  .accedex-section { padding: 4rem 1.5rem; }
  .accedex-hero { padding: 6rem 1.5rem 4rem; }
  .hero-circle { display: none; }
  .pillars-grid,.values-grid,.other-grid { grid-template-columns: 1fr; }
  .mv-grid { grid-template-columns: 1fr; }
  .mv-card { border-right: none; border-bottom: 1px solid rgba(245,240,232,0.1); }
  .units-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .txilla-banner { margin: 0; border-radius: 0; padding: 2.5rem 1.5rem; grid-template-columns: 1fr; }
  .txilla-emoji { display: none; }
  .stats-strip { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  #accedex-footer { padding: 3rem 1.5rem 2rem; }
  .cta-wrap { padding: 5rem 1.5rem; }
  .about-hero,.projects-hero,.contact-hero { padding: 6rem 1.5rem 3rem; }
  .project-row { grid-template-columns: 50px 1fr; }
  .proj-tag { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-stats { gap: 1.5rem; }
  .quote-wrap { padding: 4rem 1.5rem; }
}
@media (max-width: 480px) {
  .team-grid { grid-template-columns: 1fr; }
  .stats-strip { grid-template-columns: 1fr; }
  .stat-cell { border-right: none; border-bottom: 1px solid var(--border-beige); }
}
