*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --green-dark:  #1b4332;
      --green-mid:   #2d6a4f;
      --green-light: #52b788;
      --green-pale:  #d8f3dc;
      --earth:       #7c4e2a;
      --earth-light: #c9834e;
      --cream:       #f8f4ec;
      --text-dark:   #1a1a1a;
      --text-mid:    #3a3a3a;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Segoe UI', system-ui, sans-serif;
      background: var(--cream);
      color: var(--text-dark);
      overflow-x: hidden;
    }

    /* ── NAV ── */
    nav {
      position: fixed; top: 0; width: 100%; z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: 1rem 2.5rem;
      background: transparent;
      transition: background .35s, box-shadow .35s;
    }
    nav.scrolled {
      background: rgba(27, 67, 50, .95);
      box-shadow: 0 2px 20px rgba(0,0,0,.25);
      backdrop-filter: blur(8px);
    }
    .nav-logo {
      display: flex; align-items: center; gap: .6rem;
      text-decoration: none;
    }
    .nav-logo .leaf { font-size: 1.7rem; }
    .nav-logo span {
      font-size: 1.1rem; font-weight: 700;
      color: #fff; letter-spacing: .04em;
    }
    .nav-links { display: flex; gap: 1.8rem; list-style: none; }
    .nav-links a {
      text-decoration: none; color: rgba(255,255,255,.88);
      font-size: .9rem; font-weight: 500; letter-spacing: .03em;
      transition: color .2s;
    }
    .nav-links a:hover { color: var(--green-light); }

    /* ── HERO ── */
    #hero {
      position: relative; height: 100vh;
      display: flex; align-items: center; justify-content: center;
      text-align: center;
      background:
        linear-gradient(to bottom, rgba(0,0,0,.45) 0%, rgba(0,0,0,.25) 55%, rgba(0,0,0,.65) 100%),
        url('https://images.unsplash.com/photo-1448375240586-882707db888b?w=1600&q=80') center/cover no-repeat;
    }
    .hero-content { padding: 0 1.5rem; }
    .hero-badge {
      display: inline-block;
      background: var(--green-light); color: var(--green-dark);
      font-size: .78rem; font-weight: 700; letter-spacing: .12em;
      text-transform: uppercase; border-radius: 999px;
      padding: .35rem 1rem; margin-bottom: 1.2rem;
    }
    #hero h1 {
      font-size: clamp(2.4rem, 6vw, 4.5rem);
      color: #fff; line-height: 1.1;
      text-shadow: 0 2px 20px rgba(0,0,0,.4);
      margin-bottom: .8rem;
    }
    #hero p {
      font-size: clamp(1rem, 2.2vw, 1.25rem);
      color: rgba(255,255,255,.88);
      max-width: 620px; margin: 0 auto 2.2rem;
      line-height: 1.7;
    }
    .hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
    .btn {
      display: inline-block; text-decoration: none;
      padding: .85rem 2rem; border-radius: 999px;
      font-size: .95rem; font-weight: 700; letter-spacing: .04em;
      transition: transform .2s, box-shadow .2s;
      cursor: pointer; border: none;
    }
    .btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.25); }
    .btn-primary { background: var(--green-light); color: var(--green-dark); }
    .btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.7); }
    .btn-outline:hover { background: rgba(255,255,255,.12); }
    .scroll-down {
      position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
      color: rgba(255,255,255,.6); font-size: 1.5rem;
      animation: bounce 2s infinite;
    }
    @keyframes bounce {
      0%,100% { transform: translateX(-50%) translateY(0); }
      50%      { transform: translateX(-50%) translateY(8px); }
    }

    /* ── SECTION WRAPPER ── */
    section { padding: 6rem 1.5rem; }
    .section-title {
      text-align: center; margin-bottom: 3.5rem;
    }
    .section-title .kicker {
      display: inline-block; color: var(--green-mid);
      font-size: .78rem; font-weight: 700; letter-spacing: .14em;
      text-transform: uppercase; margin-bottom: .5rem;
    }
    .section-title h2 {
      font-size: clamp(1.8rem, 3.5vw, 2.6rem);
      color: var(--green-dark); line-height: 1.15;
    }
    .section-title p {
      color: var(--text-mid); max-width: 560px;
      margin: .8rem auto 0; font-size: 1.02rem; line-height: 1.7;
    }
    .container { max-width: 1120px; margin: 0 auto; }

    /* ── STATS BAR ── */
    #stats {
      background: var(--green-dark); padding: 3rem 1.5rem;
    }
    .stats-grid {
      display: flex; flex-wrap: wrap; justify-content: center; gap: 3rem;
      max-width: 900px; margin: 0 auto;
    }
    .stat { text-align: center; }
    .stat .num {
      font-size: 2.8rem; font-weight: 800; color: var(--green-light);
      line-height: 1;
    }
    .stat .label {
      color: rgba(255,255,255,.75); font-size: .88rem;
      margin-top: .3rem; letter-spacing: .04em;
    }

    /* ── ABOUT ── */
    #sobre { background: var(--cream); }
    .about-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 3.5rem; align-items: center;
      max-width: 1080px; margin: 0 auto;
    }
    .about-img {
      position: relative; border-radius: 1.5rem; overflow: hidden;
      aspect-ratio: 4/3; box-shadow: 0 24px 60px rgba(0,0,0,.18);
    }
    .about-img img { width: 100%; height: 100%; object-fit: cover; }
    .about-img .img-badge {
      position: absolute; bottom: 1.2rem; left: 1.2rem;
      background: var(--green-dark); color: #fff;
      border-radius: .8rem; padding: .7rem 1rem;
      font-size: .82rem; line-height: 1.4;
    }
    .about-img .img-badge strong { display: block; font-size: 1.2rem; }
    .about-text h2 {
      font-size: clamp(1.6rem, 3vw, 2.2rem);
      color: var(--green-dark); margin-bottom: 1rem; line-height: 1.2;
    }
    .about-text p {
      color: var(--text-mid); line-height: 1.75; font-size: 1rem;
      margin-bottom: 1.1rem;
    }
    .mission-block {
      border-left: 4px solid var(--green-light);
      background: var(--green-pale);
      border-radius: 0 .9rem .9rem 0;
      padding: 1.1rem 1.4rem;
      margin: 1.4rem 0;
    }
    .mission-block .mission-label {
      font-size: .72rem; font-weight: 700; letter-spacing: .14em;
      text-transform: uppercase; color: var(--green-mid);
      margin-bottom: .4rem;
    }
    .mission-block p {
      font-size: 1rem; color: var(--green-dark);
      font-weight: 600; line-height: 1.65;
      margin-bottom: 0 !important;
    }

    .feature-list { list-style: none; margin: 1.5rem 0 2rem; }
    .feature-list li {
      display: flex; align-items: flex-start; gap: .7rem;
      margin-bottom: .8rem; font-size: .97rem; color: var(--text-dark);
    }
    .feature-list .icon {
      color: var(--green-light); font-size: 1.1rem; flex-shrink: 0; margin-top: .1rem;
    }

    /* ── MISSÃO & VISÃO ── */
    #missao-visao { background: #f0f7f2; }
    #missao-visao .section-title .kicker { color: var(--green-mid); }
    #missao-visao .section-title h2 { color: var(--green-dark); }
    #missao-visao .section-title p  { color: var(--text-mid); }
    .mv-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 2rem; max-width: 900px; margin: 0 auto;
    }
    .mv-card {
      border-radius: 1.5rem; padding: 2.8rem 2.4rem;
      position: relative; overflow: hidden;
      transition: transform .3s, box-shadow .3s;
    }
    .mv-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,.3); }
    .mv-missao {
      background: linear-gradient(145deg, var(--green-mid), #1f5c40);
      border: 1.5px solid rgba(82,183,136,.35);
    }
    .mv-visao {
      background: linear-gradient(145deg, #7c4e2a, #5a3318);
      border: 1.5px solid rgba(201,131,78,.35);
    }
    .mv-card .mv-icon {
      font-size: 2.6rem; margin-bottom: 1rem; display: block;
    }
    .mv-card h3 {
      font-size: 1.4rem; font-weight: 800; color: #fff;
      margin-bottom: 1rem; letter-spacing: .02em;
    }
    .mv-missao h3::before {
      content: ''; display: block; width: 3rem; height: 4px;
      background: var(--green-light); border-radius: 4px;
      margin-bottom: .7rem;
    }
    .mv-visao h3::before {
      content: ''; display: block; width: 3rem; height: 4px;
      background: var(--earth-light); border-radius: 4px;
      margin-bottom: .7rem;
    }
    .mv-card p {
      color: rgba(255,255,255,.82); font-size: 1.02rem;
      line-height: 1.75; font-weight: 400;
    }
    @media (max-width: 640px) {
      .mv-grid { grid-template-columns: 1fr; }
    }

    /* ── PARQUE / TIMELINE ── */
    #parque { background: var(--green-dark); }
    #parque .section-title .kicker { color: var(--green-light); }
    #parque .section-title h2 { color: #fff; }
    #parque .section-title p  { color: rgba(255,255,255,.75); }
    .timeline {
      position: relative; max-width: 760px; margin: 0 auto;
      padding-left: 2rem;
    }
    .timeline::before {
      content: ''; position: absolute; left: 0; top: 0; bottom: 0;
      width: 3px; background: var(--green-light); border-radius: 3px;
      opacity: .45;
    }
    .tl-item {
      position: relative; margin-bottom: 2.6rem;
      padding-left: 1.8rem;
    }
    .tl-item:last-child { margin-bottom: 0; }
    .tl-dot {
      position: absolute; left: -2.55rem; top: .2rem;
      width: 1.1rem; height: 1.1rem; border-radius: 50%;
      background: var(--green-light);
      border: 3px solid var(--green-dark);
      box-shadow: 0 0 0 3px var(--green-light);
    }
    .tl-dot.highlight { background: var(--earth-light); box-shadow: 0 0 0 3px var(--earth-light); }
    .tl-year {
      font-size: .78rem; font-weight: 800; letter-spacing: .14em;
      text-transform: uppercase; color: var(--green-light);
      margin-bottom: .3rem;
    }
    .tl-year.highlight { color: var(--earth-light); }
    .tl-item h3 { font-size: 1.1rem; color: #fff; margin-bottom: .4rem; }
    .tl-item p  { color: rgba(255,255,255,.75); font-size: .95rem; line-height: 1.7; }
    .tl-badge {
      display: inline-block; margin-top: .6rem;
      background: rgba(255,255,255,.1); color: rgba(255,255,255,.7);
      font-size: .72rem; font-weight: 700; letter-spacing: .08em;
      text-transform: uppercase; padding: .25rem .8rem; border-radius: 999px;
    }
    .tl-badge.pending { background: rgba(201,131,78,.2); color: var(--earth-light); }

    /* ── PILARES ── */
    #pilares { background: #f0f7f2; }
    .pilares-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
      gap: 1.4rem;
      max-width: 900px; margin: 0 auto;
    }
    .pilar-card {
      background: #fff; border-radius: 1.2rem;
      padding: 2rem 1.5rem; text-align: center;
      box-shadow: 0 4px 20px rgba(0,0,0,.07);
      transition: transform .25s, box-shadow .25s;
    }
    .pilar-card:hover { transform: translateY(-5px); box-shadow: 0 14px 36px rgba(0,0,0,.12); }
    .pilar-card .p-icon { font-size: 2.2rem; margin-bottom: .7rem; }
    .pilar-card h3 { font-size: 1rem; color: var(--green-dark); font-weight: 700; }
    .pilar-card p  { font-size: .85rem; color: var(--text-mid); margin-top: .4rem; line-height: 1.5; }

    /* ── ATIVIDADES ── */
    #atividades { background: var(--cream); }
    .activities-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 1.5rem;
    }
    .act-card {
      background: #fff; border-radius: 1.2rem;
      overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,.07);
      transition: transform .3s, box-shadow .3s;
      cursor: pointer;
    }
    .act-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,.13); }
    .act-card .card-img { height: 180px; overflow: hidden; }
    .act-card .card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
    .act-card:hover .card-img img { transform: scale(1.07); }
    .act-card .card-body { padding: 1.3rem 1.4rem 1.6rem; }
    .act-card .card-icon { font-size: 1.6rem; margin-bottom: .5rem; }
    .act-card h3 { font-size: 1.1rem; color: var(--green-dark); margin-bottom: .4rem; font-weight: 700; }
    .act-card p  { font-size: .9rem; color: var(--text-mid); line-height: 1.55; }
    .act-card .tag {
      display: inline-block; margin-top: .8rem;
      background: var(--green-pale); color: var(--green-mid);
      font-size: .72rem; font-weight: 700; letter-spacing: .08em;
      text-transform: uppercase; padding: .25rem .7rem; border-radius: 999px;
    }

    /* ── MODAL ── */
    .modal-overlay {
      display: none; position: fixed; inset: 0; z-index: 200;
      background: rgba(0,0,0,.65); backdrop-filter: blur(4px);
      align-items: center; justify-content: center; padding: 1.5rem;
    }
    .modal-overlay.open { display: flex; }
    .modal {
      background: #fff; border-radius: 1.5rem;
      max-width: 520px; width: 100%;
      padding: 2.5rem; position: relative;
      animation: modalIn .25s ease;
    }
    @keyframes modalIn {
      from { opacity: 0; transform: scale(.94) translateY(20px); }
      to   { opacity: 1; transform: none; }
    }
    .modal-close {
      position: absolute; top: 1rem; right: 1rem;
      background: #f0f0f0; border: none; border-radius: 999px;
      width: 2.2rem; height: 2.2rem; font-size: 1.1rem;
      cursor: pointer; display: flex; align-items: center; justify-content: center;
      transition: background .2s;
    }
    .modal-close:hover { background: #e0e0e0; }
    .modal h3 { font-size: 1.4rem; color: var(--green-dark); margin-bottom: .8rem; }
    .modal p  { color: var(--text-mid); line-height: 1.7; font-size: .97rem; }

    /* ── ASSOCIE-SE BANNER ── */
    #associe {
      background: linear-gradient(135deg, var(--green-mid) 0%, var(--green-dark) 100%);
      padding: 5rem 1.5rem; text-align: center;
    }
    #associe h2 { font-size: clamp(1.8rem, 3.5vw, 2.4rem); color: #fff; margin-bottom: .8rem; }
    #associe p { color: rgba(255,255,255,.82); font-size: 1.05rem; max-width: 560px; margin: 0 auto 2rem; line-height: 1.7; }
    .associe-cards {
      display: flex; flex-wrap: wrap; gap: 1.2rem;
      justify-content: center; margin-bottom: 2.5rem;
    }
    .assoc-type {
      background: rgba(255,255,255,.12); border: 1.5px solid rgba(255,255,255,.25);
      border-radius: 1rem; padding: 1.2rem 1.6rem; min-width: 180px;
      color: #fff; text-align: left;
    }
    .assoc-type .at-icon { font-size: 1.5rem; margin-bottom: .4rem; }
    .assoc-type strong { display: block; font-size: 1rem; margin-bottom: .2rem; }
    .assoc-type span { font-size: .82rem; color: rgba(255,255,255,.7); line-height: 1.45; display: block; }

    /* ── DOAÇÃO ── */
    #doacao {
      background: linear-gradient(160deg, #0a2e1a 0%, var(--green-dark) 50%, #1a3a28 100%);
      padding: 6rem 1.5rem; text-align: center;
    }
    #doacao .kicker { color: var(--green-light); }
    #doacao h2 { color: #fff; font-size: clamp(1.8rem, 3.5vw, 2.4rem); margin-bottom: .8rem; }
    #doacao .doacao-sub {
      color: rgba(255,255,255,.8); font-size: 1.05rem;
      max-width: 560px; margin: 0 auto 3rem; line-height: 1.7;
    }
    .pix-card {
      background: rgba(255,255,255,.07);
      border: 1.5px solid rgba(255,255,255,.15);
      border-radius: 1.5rem; padding: 2.5rem 2rem;
      max-width: 460px; margin: 0 auto 2rem;
    }
    .pix-card .pix-label {
      color: rgba(255,255,255,.6); font-size: .8rem;
      font-weight: 700; letter-spacing: .14em;
      text-transform: uppercase; margin-bottom: 1.2rem;
    }
    .pix-logo {
      display: flex; align-items: center; justify-content: center;
      gap: .6rem; margin-bottom: 1.4rem;
    }
    .pix-logo .pix-icon {
      background: #32bcad; border-radius: .5rem;
      width: 2.4rem; height: 2.4rem;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.2rem; font-weight: 900; color: #fff;
    }
    .pix-logo span { color: #fff; font-size: 1.5rem; font-weight: 800; letter-spacing: .04em; }
    .pix-key-wrap {
      background: rgba(0,0,0,.3); border-radius: .9rem;
      padding: 1rem 1.2rem; margin-bottom: 1rem;
      display: flex; align-items: center; justify-content: space-between; gap: .8rem;
    }
    .pix-key-wrap .key-info { text-align: left; }
    .pix-key-wrap .key-type {
      font-size: .72rem; color: rgba(255,255,255,.5);
      text-transform: uppercase; letter-spacing: .1em; margin-bottom: .2rem;
    }
    .pix-key-wrap .key-value {
      font-size: 1.05rem; font-weight: 700; color: #fff;
      font-family: 'Courier New', monospace; letter-spacing: .04em;
    }
    .btn-copy {
      background: var(--green-light); color: var(--green-dark);
      border: none; border-radius: .6rem;
      padding: .55rem 1rem; font-size: .85rem; font-weight: 700;
      cursor: pointer; white-space: nowrap; flex-shrink: 0;
      transition: background .2s, transform .15s;
    }
    .btn-copy:hover { background: #74c9a0; transform: scale(1.04); }
    .btn-copy.copied { background: #b7e4c7; }
    .pix-beneficiary {
      color: rgba(255,255,255,.65); font-size: .88rem; margin-top: .4rem;
    }
    .pix-beneficiary strong { color: rgba(255,255,255,.9); }
    .doacao-note {
      color: rgba(255,255,255,.5); font-size: .82rem;
      max-width: 380px; margin: 1.5rem auto 0; line-height: 1.6;
    }

    /* ── GALLERY ── */
    #galeria { background: #f0f7f2; }
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1rem;
    }
    .gallery-grid .g-item {
      border-radius: 1rem; overflow: hidden;
      position: relative; cursor: pointer;
    }
    .gallery-grid .g-item img {
      width: 100%; height: 220px; object-fit: cover;
      transition: transform .4s;
    }
    .gallery-grid .g-item:first-child { grid-column: span 2; }
    .gallery-grid .g-item:first-child img { height: 340px; }
    .gallery-grid .g-item:hover img { transform: scale(1.05); }
    .gallery-grid .g-item .overlay {
      position: absolute; inset: 0;
      background: rgba(27,67,50,.55);
      display: flex; align-items: center; justify-content: center;
      opacity: 0; transition: opacity .3s;
      color: #fff; font-size: 2rem;
    }
    .gallery-grid .g-item:hover .overlay { opacity: 1; }

    /* ── LOCATION ── */
    #localizacao { background: var(--green-dark); color: #fff; }
    .loc-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 3rem; align-items: start;
      max-width: 1000px; margin: 0 auto;
    }
    .loc-info h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); color: #fff; margin-bottom: 1.2rem; }
    .loc-info p  { color: rgba(255,255,255,.78); line-height: 1.7; margin-bottom: 1rem; }
    .loc-detail  { display: flex; align-items: flex-start; gap: .8rem; margin-bottom: 1.1rem; }
    .loc-detail .icon { font-size: 1.3rem; flex-shrink: 0; margin-top: .15rem; }
    .loc-detail strong { color: #fff; display: block; }
    .loc-detail span   { color: rgba(255,255,255,.72); font-size: .93rem; }
    .map-box { border-radius: 1.2rem; overflow: hidden; box-shadow: 0 16px 40px rgba(0,0,0,.35); }
    .map-box iframe { width: 100%; height: 360px; border: none; display: block; }

    /* ── INSTAGRAM ── */
    #instagram { background: var(--cream); }
    .insta-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
      gap: 1rem;
    }
    .insta-card { border-radius: 1rem; overflow: hidden; position: relative; aspect-ratio: 1; cursor: pointer; }
    .insta-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
    .insta-card:hover img { transform: scale(1.08); }
    .insta-card .overlay {
      position: absolute; inset: 0;
      background: rgba(27,67,50,.6);
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      gap: .5rem; opacity: 0; transition: opacity .3s;
      color: #fff; font-size: .9rem;
    }
    .insta-card:hover .overlay { opacity: 1; }
    .insta-cta { text-align: center; margin-top: 2.5rem; }
    .insta-cta a {
      display: inline-flex; align-items: center; gap: .6rem;
      background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
      color: #fff; text-decoration: none;
      padding: .85rem 2rem; border-radius: 999px;
      font-weight: 700; font-size: .95rem;
      transition: transform .2s, box-shadow .2s;
    }
    .insta-cta a:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.25); }

    /* ── PARCEIROS ── */
    #parceiros { background: var(--cream); }
    .partners-grid {
      display: flex; flex-wrap: wrap; justify-content: center;
      gap: 1.2rem; max-width: 900px; margin: 0 auto;
    }
    .partner-card {
      background: #fff; border-radius: 1.2rem;
      padding: 1.6rem 2rem; text-align: center;
      box-shadow: 0 4px 20px rgba(0,0,0,.07);
      transition: transform .25s, box-shadow .25s;
      min-width: 200px; flex: 1 1 200px; max-width: 260px;
    }
    .partner-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.12); }
    .partner-card .p-icon { font-size: 2rem; margin-bottom: .6rem; }
    .partner-card h3 { font-size: .97rem; color: var(--green-dark); font-weight: 700; line-height: 1.3; }
    .partner-card span { font-size: .8rem; color: var(--text-mid); margin-top: .3rem; display: block; }
    .partners-cta { text-align: center; margin-top: 3rem; }
    .partners-cta p { color: var(--text-mid); margin-bottom: 1.2rem; font-size: .97rem; }
    /* ── CONTACT ── */
    #contato { background: #f0f7f2; }
    .contact-wrap {
      max-width: 680px; margin: 0 auto;
      background: #fff; border-radius: 1.5rem;
      box-shadow: 0 8px 40px rgba(0,0,0,.09);
      padding: 3rem;
    }
    .contact-wrap h2    { font-size: 1.8rem; color: var(--green-dark); margin-bottom: .5rem; }
    .contact-wrap .sub  { color: var(--text-mid); margin-bottom: 2rem; font-size: .97rem; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
    .form-group { margin-bottom: 1.2rem; }
    .form-group label {
      display: block; font-size: .85rem; font-weight: 600;
      color: var(--text-dark); margin-bottom: .4rem;
    }
    .form-group input,
    .form-group textarea,
    .form-group select {
      width: 100%; padding: .8rem 1rem;
      border: 1.5px solid #ddd; border-radius: .75rem;
      font-size: .95rem; font-family: inherit;
      background: #fafafa; color: var(--text-dark);
      transition: border-color .2s, box-shadow .2s;
      resize: vertical;
    }
    .form-group input:focus,
    .form-group textarea:focus,
    .form-group select:focus {
      outline: none;
      border-color: var(--green-light);
      box-shadow: 0 0 0 3px rgba(82,183,136,.2);
    }
    .form-submit {
      width: 100%; padding: 1rem;
      background: var(--green-mid); color: #fff;
      border: none; border-radius: .75rem;
      font-size: 1rem; font-weight: 700;
      cursor: pointer; transition: background .2s, transform .2s;
      margin-top: .5rem;
    }
    .form-submit:hover { background: var(--green-dark); transform: translateY(-1px); }
    .form-feedback {
      display: none; text-align: center;
      padding: 1rem; border-radius: .75rem;
      background: var(--green-pale); color: var(--green-dark);
      font-weight: 600; margin-top: 1rem;
    }
    .contact-channels { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2.5rem; }
    .channel-btn {
      display: inline-flex; align-items: center; gap: .5rem;
      text-decoration: none; border-radius: .75rem;
      padding: .7rem 1.2rem; font-size: .9rem; font-weight: 600;
      transition: transform .2s, box-shadow .2s;
    }
    .channel-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(0,0,0,.15); }
    .channel-btn.insta   { background: linear-gradient(135deg,#f09433,#dc2743,#bc1888); color: #fff; }
    .channel-btn.whats   { background: #25d366; color: #fff; }
    .channel-btn.email   { background: var(--green-pale); color: var(--green-dark); }

    /* ── FOOTER ── */
    footer {
      background: var(--green-dark); color: rgba(255,255,255,.7);
      text-align: center; padding: 2.5rem 1.5rem;
      font-size: .88rem; line-height: 1.7;
    }
    footer .footer-logo { font-size: 1.4rem; font-weight: 800; color: #fff; margin-bottom: .4rem; }
    footer .footer-sub  { font-size: .82rem; color: rgba(255,255,255,.5); margin-bottom: .6rem; }
    footer a { color: var(--green-light); text-decoration: none; }
    footer a:hover { text-decoration: underline; }

    /* ── BACK TO TOP ── */
    #back-top {
      position: fixed; bottom: 1.8rem; right: 1.8rem; z-index: 90;
      background: var(--green-mid); color: #fff;
      border: none; width: 3rem; height: 3rem; border-radius: 50%;
      font-size: 1.2rem; cursor: pointer;
      box-shadow: 0 4px 16px rgba(0,0,0,.2);
      display: flex; align-items: center; justify-content: center;
      opacity: 0; pointer-events: none;
      transition: opacity .3s, transform .2s;
    }
    #back-top.visible { opacity: 1; pointer-events: all; }
    #back-top:hover { transform: translateY(-3px); }

    /* ── RESPONSIVE ── */
    @media (max-width: 800px) {
      .about-grid, .loc-grid { grid-template-columns: 1fr; }
      .gallery-grid { grid-template-columns: 1fr 1fr; }
      .gallery-grid .g-item:first-child { grid-column: span 2; }
      .form-row { grid-template-columns: 1fr; }
      nav { padding: 1rem 1.2rem; }
      .nav-links { display: none; }
    }
    @media (max-width: 520px) {
      .gallery-grid { grid-template-columns: 1fr; }
      .gallery-grid .g-item:first-child { grid-column: span 1; }
      .stats-grid { gap: 2rem; }
      .contact-wrap { padding: 2rem 1.3rem; }
      .pilares-grid { grid-template-columns: 1fr 1fr; }
    }