:root {
    --azul: #5576A8;
    --azul-claro: #b7d2fc;
    --azul-menta: #d8f3dc;
    --terra: #e8a44a;
    --terra-escura: #b5621b;
    --creme: #faf7f2;
    --cinza: #335486;
    --branco: #ffffff;
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--creme);
    color: var(--cinza);
    overflow-x: hidden;
  }

  .hidden {
    display: none;
  }

  /* NAV */
  nav {
    position: fixed; top: 0; width: 100%; z-index: 100;
    background: rgba(250,247,242,0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(45,106,79,0.12);
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 5vw; height: 70px;
  }
  .nav-logo {
    display: flex; align-items: center; gap: 12px;
    text-decoration: none;
  }
  .nav-logo-icon {
    width: 42px; height: 42px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
  }
  
  .nav-logo-img {
    width: 80px; height: 65px;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
  }
  .nav-logo-text {
    font-family: 'DM Sans', serif;
    font-weight: 900;
    font-size: clamp(0.7rem, 2.5vw, 1.3rem);
    color: var(--azul);
    letter-spacing: 1px;
  }
  .nav-links {
    display: flex; gap: 36px; list-style: none;
  }
  .nav-links a {
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--cinza);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--azul); }
  .nav-cta {
    background: var(--azul);
    color: var(--branco) !important;
    padding: 10px 22px;
    border-radius: 6px;
    transition: background 0.2s !important;
  }
  .nav-cta:hover { background: var(--azul-claro) !important; color: var(--branco) !important; }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--azul) 0%, #1b4332 60%, #081c15 100%);
    display: flex; flex-direction: column;
    align-items: flex-start; justify-content: center;
    padding: 120px 10vw 80px;
    position: relative; overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute; top: -100px; right: -150px;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(82,183,136,0.18) 0%, transparent 70%);
  }
  .hero::after {
    content: '';
    position: absolute; bottom: -80px; left: 30%;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232,164,74,0.1) 0%, transparent 70%);
  }
  .hero-tag {
    display: inline-block;
    background: rgba(82,183,136,0.2);
    border: 1px solid rgba(82,183,136,0.5);
    color: var(--azul-claro);
    font-size: 0.78rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 28px;
    animation: fadeUp 0.8s ease forwards;
  }
  .hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 6vw, 5.5rem);
    font-weight: 900;
    color: var(--branco);
    line-height: 1.08;
    max-width: 700px;
    margin-bottom: 28px;
    animation: fadeUp 0.9s 0.1s ease both;
  }
  .hero h1 em {
    font-style: italic;
    color: var(--azul-claro);
  }
  .hero p {
    font-size: 1.15rem;
    font-weight: 300;
    color: rgba(255,255,255,0.75);
    max-width: 520px;
    line-height: 1.7;
    margin-bottom: 48px;
    animation: fadeUp 1s 0.2s ease both;
  }
  .hero-buttons {
    display: flex; gap: 16px; flex-wrap: wrap;
    animation: fadeUp 1s 0.3s ease both;
  }
  .btn-primary {
    background: var(--terra);
    color: var(--branco);
    padding: 16px 36px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    transition: transform 0.2s, background 0.2s;
  }
  .btn-primary:hover { background: var(--terra-escura); transform: translateY(-2px); }
  .btn-outline {
    border: 2px solid rgba(255,255,255,0.4);
    color: var(--branco);
    padding: 14px 36px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: border-color 0.2s, background 0.2s;
  }
  .btn-outline:hover { border-color: var(--azul-claro); background: rgba(82,183,136,0.1); }

  .hero-stats {
    position: absolute; right: 10vw; bottom: 80px;
    display: flex; gap: 48px;
    animation: fadeUp 1s 0.4s ease both;
  }
  .stat { text-align: center; }
  .stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--azul-claro);
    display: block;
    line-height: 1;
  }
  .stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.5);
    display: block;
    margin-top: 4px;
  }

  .scroll-indicator {
    position: absolute; bottom: 28px; left: 50%;
    transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    color: rgba(255,255,255,0.4); font-size: 0.7rem; letter-spacing: 2px;
    text-transform: uppercase; animation: bounce 2s infinite;
  }
  .scroll-line {
    width: 1px; height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  }

  /* ── ABOUT ── */
  .about {
    display: grid; grid-template-columns: 1fr 1fr;
    min-height: 80vh;
  }
  .about-image {
    background: linear-gradient(160deg, #52b788 0%, #6F8FB8 100%);
    display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden; min-height: 500px;
  }
  .about-image-inner {
    text-align: center; z-index: 2; position: relative;
    padding: 60px 40px;
  }
  .about-icon-large {
    width: 200px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border-radius: 50px;
    overflow: hidden;
    filter: drop-shadow(0 8px 24px rgba(0,0,0,0.2));
  }
  .about-icon-large img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
  }
  .about-image-caption {
    font-family: 'DM Sans', serif;
    font-size: 1.6rem;
    color: white;
    font-weight: 700;
  }
  .about-image-sub {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    margin-top: 8px;
  }
  .circle-deco {
    position: absolute; border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.1);
  }
  .circle-deco:nth-child(1) { width: 350px; height: 350px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
  .circle-deco:nth-child(2) { width: 500px; height: 500px; top: 50%; left: 50%; transform: translate(-50%,-50%); }

  .about-content {
    padding: 80px 7vw;
    display: flex; flex-direction: column; justify-content: center;
    background: var(--creme);
  }
  .section-eyebrow {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--azul);
    font-weight: 600;
    margin-bottom: 16px;
  }
  .section-eyebrow--centered {
    color: var(--azul-claro);
    text-align: center;
  }
  .mission-intro {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
  }
  .mission-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 900;
    color: var(--azul);
  }
  .flex-column-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .btn-primary-nowrap {
    white-space: nowrap;
  }
  .about-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 900;
    color: var(--cinza);
    line-height: 1.15;
    margin-bottom: 24px;
  }
  .about-content p {
    font-size: 1.02rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 18px;
  }
  .about-content p strong { color: var(--azul); }
  .founding-date {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--azul-menta);
    padding: 12px 20px;
    border-radius: 8px;
    margin-top: 16px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--azul);
    border-left: 3px solid var(--azul);
  }

  /* ── NUMBERS ── */
  .numbers {
    background: var(--cinza);
    padding: 80px 10vw;
  }
  .numbers-header { text-align: center; margin-bottom: 60px; }
  .numbers-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    color: var(--branco);
    font-weight: 900;
    margin-bottom: 12px;
  }
  .imgs-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    width: 80%;
    height: auto;
  }
  .imgs-grid img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 16px;
  }
  .numbers-header p { color: rgba(255,255,255,0.55); font-size: 0.95rem; }
  .numbers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
  }
  .number-card {
    background: rgba(255,255,255,0.04);
    padding: 48px 32px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.07);
    transition: background 0.3s;
  }
  .number-card:hover { background: rgba(82,183,136,0.1); }
  .number-icon { font-size: 2.4rem; margin-bottom: 16px; display: block; }
  .number-big {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--azul-claro);
    display: block;
    line-height: 1;
    margin-bottom: 10px;
  }
  .number-desc {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    line-height: 1.4;
  }

  /* ── SERVICES ── */
  .services {
    padding: 100px 10vw;
    background: var(--branco);
  }
  .services-header { text-align: center; margin-bottom: 60px; }
  .services-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 900;
    color: var(--cinza);
    margin-bottom: 14px;
  }
  .services-header p { color: #888; font-size: 1rem; max-width: 500px; margin: 0 auto; }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
  .service-card {
    padding: 40px 32px;
    border: 1px solid #e8e8e4;
    border-radius: 12px;
    transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
    position: relative; overflow: hidden;
  }
  .service-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(to right, var(--azul), var(--azul-claro));
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.3s;
  }
  .service-card:hover { box-shadow: 0 12px 40px rgba(45,106,79,0.1); transform: translateY(-4px); border-color: rgba(82,183,136,0.3); }
  .service-card:hover::before { transform: scaleX(1); }
  .service-emoji { font-size: 2.8rem; display: block; margin-bottom: 20px; }
  .service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--azul);
    margin-bottom: 12px;
  }
  .service-card p { font-size: 0.93rem; color: #777; line-height: 1.7; }

  /* ── MISSION ── */
  .mission {
    background: linear-gradient(135deg, var(--azul-menta) 0%, #b7e4c7 100%);
    padding: 100px 10vw;
    position: relative; overflow: hidden;
  }
  .mission::before {
    content: '"';
    position: absolute; top: -40px; left: 8vw;
    font-size: 20rem; font-family: 'Playfair Display', serif;
    color: rgba(45,106,79,0.06); line-height: 1;
    pointer-events: none;
  }
  .mission-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px;
  }
  .mission-block { text-align: center; padding: 20px; }
  .mission-block h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--azul);
    margin-bottom: 12px;
  }
  .mission-block p { color: #4a7c59; font-size: 0.93rem; line-height: 1.7; }

  /* ── GALERIA ── */
  .gallery {
    padding: 80px 0;
    background: var(--cinza);
    color: var(--creme);
    text-align: center;
  }

  .gallery-title {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--azul-menta);
    font-weight: 600;
    margin-bottom: 16px;
  }

  .gallery-block {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 900;
    color: var(--azul);
  }

  /* 🔥 FULL WIDTH */
  .gallery-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
  }

  /* 🔥 TRACK */
  .gallery-track {
    display: flex;
    width: max-content;
    animation: scrollGallery 22s linear infinite;

    /* 🔥 estabilidade */
    will-change: transform;
  }

  /* 🔥 PAUSA NO HOVER */
  .gallery-track:hover {
    animation-play-state: paused;
  }

  /* 🔥 IMAGENS */
  .gallery-track img {
    height: 400px;
    width: auto;
    object-fit: contain;
    margin: 0 20px;

    /* 🔥 estado base corrigido */
    transform: scale(1);
    transition: transform 0.3s ease, opacity 0.3s ease;

    /* 🔥 estabilidade */
    will-change: transform;
    pointer-events: auto;
  }

  /* 🔥 efeito geral (dim outras imagens) */
  .gallery-track:hover img {
    opacity: 0.5;
  }

  /* 🔥 imagem em foco */
  .gallery-track img:hover {
    transform: scale(1.1);
    opacity: 1;
    z-index: 3;
  }

  /* 🔥 animação contínua */
  @keyframes scrollGallery {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }

  /* ── MODAL ── */
  .image-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    padding: 40px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
  }

  /* 🔥 animação de entrada */
  .image-modal img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 12px;
    transform: scale(0.8);
    opacity: 0;
    transition: all 0.4s ease;
  }

  /* 🔥 ativo */
  .image-modal.active img {
    transform: scale(1);
    opacity: 1;
  }

  /* fechar */
  .close-modal {
    position: absolute;
    top: 20px;
    right: 40px;
    color: white;
    font-size: 40px;
    cursor: pointer;
  }

  /* setas */
  .modal-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 50px;
    color: white;
    cursor: pointer;
    padding: 10px;
    user-select: none;
    transition: 0.3s;
  }

  .modal-arrow:hover {
    color: #ccc;
  }

  .modal-arrow.left {
    left: 20px;
  }

  .modal-arrow.right {
    right: 20px;
  }
  /* ── COOPERADOS ── */
  .cooperados {
    padding: 100px 10vw;
    background: var(--creme);
  }
  .cooperados-header { text-align: center; margin-bottom: 60px; }
  .cooperados-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 900;
    color: var(--cinza);
    margin-bottom: 14px;
  }
  .cooperados-header p { color: #888; max-width: 520px; margin: 0 auto; }
  .coop-banner {
    background: var(--azul);
    border-radius: 16px;
    padding: 60px 80px;
    display: flex; align-items: center; justify-content: space-between;
    gap: 40px; flex-wrap: wrap;
  }
  .coop-banner-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--branco);
    font-weight: 900;
    margin-bottom: 12px;
  }
  .coop-banner-text p { color: rgba(255,255,255,0.7); font-size: 0.95rem; max-width: 420px; line-height: 1.6; }
  .coop-people {
    display: flex; gap: -10px;
  }
  .coop-avatar {
    width: 52px; height: 52px; border-radius: 50%;
    background: linear-gradient(135deg, var(--azul-claro), var(--terra));
    border: 3px solid var(--azul);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; margin-left: -10px;
    flex-shrink: 0;
  }
  .coop-avatar:first-child { margin-left: 0; }
  .coop-count {
    width: 52px; height: 52px; border-radius: 50%;
    background: var(--terra);
    border: 3px solid var(--azul);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.75rem; font-weight: 700;
    color: white; margin-left: -10px;
    text-align: center;
  }

  /* ── CONTACT ── */
  .contact {
    background: var(--cinza);
    padding: 100px 10vw;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center;
  }
  .contact-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 900;
    color: var(--branco);
    margin-bottom: 20px;
    line-height: 1.2;
  }
  .contact-text p { color: rgba(255,255,255,0.6); line-height: 1.8; margin-bottom: 32px; }
  .contact-info { display: flex; flex-direction: column; gap: 16px; }
  .contact-item {
    display: flex; align-items: center; gap: 14px;
    color: rgba(255,255,255,0.75); font-size: 0.95rem;
  }
  .contact-map {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .map-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 24px;
    padding: 32px;
  }
  .map-card img {
    width: 100%;
    max-width: 400px; /* opcional */
  }
  .contact-map-frame {
    width: 100%;
    min-height: 320px;
    border: 0;
    border-radius: 20px;
  }
  .contact-item img {
    width: 40px; height: 40px; flex-shrink: 0;
    background: rgba(82,183,136,0.15);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
  }
  .contact-item-icon {
    width: 40px; height: 40px; flex-shrink: 0;
    background: rgba(82,183,136,0.15);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
  }
  .contact-form {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 48px 40px;
  }
  .form-row { margin-bottom: 20px; }
  .form-label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.4);
    margin-bottom: 8px;
    font-weight: 500;
  }
  .form-input, .form-textarea {
    width: 100%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 14px 16px;
    color: var(--branco);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s;
  }
  .form-input:focus, .form-textarea:focus {
    border-color: var(--azul-claro);
  }
  .form-input::placeholder, .form-textarea::placeholder { color: rgba(255,255,255,0.25); }
  .form-textarea { resize: vertical; min-height: 120px; }
  .form-submit {
    width: 100%;
    background: var(--azul-claro);
    color: var(--branco);
    border: none;
    padding: 16px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    letter-spacing: 0.3px;
    transition: background 0.2s, transform 0.2s;
    margin-top: 8px;
  }
  .form-submit:hover { background: var(--azul); transform: translateY(-1px); }

  /* ── FOOTER ── */
  footer {
    position: relative;
    background: #0d1f16;
    padding: 48px 10vw 72px;
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 20px;
  }
  .footer-logo {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: 1.3rem;
    color: var(--azul-claro);
  }
  .footer-credit {
    position: absolute;
    right: 10vw;
    bottom: 12px;
    color: rgba(255,255,255,0.55);
    font-size: 0.82rem;
    white-space: nowrap;
  }
  .footer-logo-img {
    width: 80px; height: 65px;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
  }
  .footer-copy { color: rgba(255,255,255,0.3); font-size: 0.82rem; }
  .footer-social { display: flex; gap: 12px; }
  .footer-social img{

    width: 38px; height: 38px;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
    text-decoration: none;
    transition: background 0.2s;

  }
  .footer-social a {
    width: 38px; height: 38px;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
    text-decoration: none;
    transition: background 0.2s;
  }
  .footer-social a:hover { background: rgba(82,183,136,0.25); }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  @keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(8px); }
  }

  .menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
  }

  /* MOBILE */
  @media (max-width: 900px) {

    .menu-toggle {
      display: block;
    }

    .nav-links {
      position: absolute;
      top: 70px;
      right: 0;
      width: 100%;
      background: var(--creme);
      flex-direction: column;
      align-items: center;
      gap: 20px;
      padding: 20px 0;
      transition: all 0.3s ease;
      display: none;
    }

    .nav-links.active {
      display: flex;
    }
  }
  
  /* EDUCACAO AMBIENTAL */
  .education {
    background: var(--creme);
    padding: 100px 10vw;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center;
  }

  .education-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 900;
    color: var(--cinza);
    margin-bottom: 20px;
    line-height: 1.2;
  }
  .education-text p { color: var(--azul); line-height: 1.8; margin-bottom: 32px; }

  .contact-education {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .education-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 24px;
    padding: 32px;
  }
  .education-card img{

    width: 40%;
    min-height: 300px;
    border: 0;
    border-radius: 20px;

  }

  /* 📱 MOBILE FIRST (até 768px) */
  @media (max-width: 768px) {

    /* HERO */
    .hero {
      padding: 100px 20px 60px;
      align-items: center;
      text-align: center;
    }

    .hero h1 {
      font-size: 2.2rem;
    }

    .hero p {
      font-size: 1rem;
    }

    .hero-buttons {
      justify-content: center;
    }

    .hero-stats {
      position: static;
      flex-direction: column;
      gap: 20px;
      margin-top: 40px;
    }

    /* ABOUT */
    .about {
      grid-template-columns: 1fr;
    }

    .about-content {
      padding: 40px 20px;
    }

    /* SERVICES */
    .services {
      padding: 60px 20px;
    }

    .services-grid {
      grid-template-columns: 1fr;
    }

    /* NUMBERS */
    .numbers {
      padding: 60px 20px;
    }

    .mission-grid {
      grid-template-columns: 1fr;
      gap: 30px;
    }

    .numbers-grid {
      grid-template-columns: 1fr;
    }

    /* COOPERADOS */
    .coop-banner {
      flex-direction: column;
      padding: 30px 20px;
      text-align: center;
    }

    /* CONTACT */
    .contact {
      grid-template-columns: 1fr;
      padding: 60px 20px;
      gap: 40px;
    }

    /* EDUCAÇÃO */
    .education {
      grid-template-columns: 1fr;
      padding: 60px 20px;
    }

    /* 🔥 IMAGENS (ESSENCIAL) */
    .map-card img,
    .education-card img {
      width: 100%;   /* antes era 40% */
      height: auto;
    }

    /* GALERIA */
    .gallery-track img {
      height: 250px;
      margin: 0 10px;
    }

    /* NAV */
    nav {
      padding: 0 20px;
    }

    .nav-logo-img {
      width: 60px;
      height: auto;
    }

    /* FOOTER */
    footer {
      flex-direction: column;
      text-align: center;
    }

    .footer-credit {
      position: static;
      margin-top: 10px;
    }

    .nav-logo-text {
      font-size: 0.8rem;
      max-width: 180px;
      line-height: 1.2;
    }
  }