/* =========
   RESET
========= */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
  cursor: url(/assets/arrowhead-rounded-outline.svg) 10 10, auto;
}

@font-face {
  font-family: "Cabinet Grotesk";
  src: url("fonts/CabinetGrotesk-Regular.woff2") format("woff2"),
       url("fonts/CabinetGrotesk-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Cabinet Grotesk";
  src: url("fonts/CabinetGrotesk-Bold.woff2") format("woff2"),
       url("fonts/CabinetGrotesk-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}


body {
  margin: 0;
  font-family: "Work Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial,
    sans-serif;
  color: #0b1b12;
  background: #fff;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
.container {
  width: min(1120px, 92%);
  margin-inline: auto;
}

/* =========
   TOKENS
========= */
:root {
  --green: #38b26f; /* fundo principal */
  --green-600: #2f855a;
  --blue: #2e67ff; /* bloco equipe */
  --blue-900: #1a3fa9;
  --pink: #d83b96; /* card rosa eventos */
  --yellow: #f6c446; /* card amarelo eventos */
  --cyan: #3fd7c8; /* chips/acentos */
  --offwhite: #f7f8f7;
  --ink: #0c1110;
  --muted: #5b6e64;
  --white: #ffffff;

  --radius-lg: 24px;
  --radius-xl: 28px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.nowrap {
  white-space: nowrap;
}

/* =========
   NAV
========= */
.nav {
  position: fixed;
  top: 16px;
  left: 0;
  right: 0;
  z-index: 50;
  transition: transform 0.5s ease, background-color 0.4s ease,
    border-radius 0.4s ease, width 0.5s ease, left 0.5s ease, right 0.5s ease;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border-radius: 40px;
  padding: 10px 12px;
  box-shadow: var(--shadow);

}
.nav__links a {
  font-weight: 400;
  margin-left: 10px;
  padding: 8px 10px;
  border-radius: 20px;
  transition: background 0.25s ease, transform 0.2s ease;
  letter-spacing: 0px;
}

#active{
  color: var(--green);
  font-weight: 700;
}

.nav__links a:hover {
  background: var(--green);
  transform: translateY(-1px);
  color: #fff !important;
  cursor: url(/assets/arrowhead-rounded-outline.svg) 10 10, auto;
}

.logo {
  display: block;
}

/* ========================
   MENU MOBILE SVG (NOVO)
======================== */
.menu-toggle {
  display: none; /* Escondido por padrão em telas grandes */
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0; 
  z-index: 1000;
}

.menu-icon {
  color: var(--green); /* Cor do ícone */
  transition: transform 0.3s ease;
}

/* Esconde o 'X' por padrão */
.close-lines {
  display: none;
}

/* Quando o menu está aberto, esconde as linhas do hambúrguer */
.nav--open .hamburger-lines {
  display: none;
}

/* Quando o menu está aberto, mostra o 'X' */
.nav--open .close-lines {
  display: block;
}

/* Efeito de rotação no ícone ao abrir/fechar */
.nav--open .menu-icon {
  transform: rotate(180deg);
}

/* Classe para evitar rolagem da página com menu aberto */
.no-scroll {
  overflow: hidden;
}


/* =========
   HERO
========= */
.hero {
  position: relative;
  padding-top: 200px;
  padding-bottom: 200px;
  background: var(--green);
  overflow: clip;
  border-radius: 0px 0px 60px 60px;
}
.pink {
  background: var(--pink) !important;
}
.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.rings {
  position: absolute;
  inset: 0;
  border-radius: 9999px;
  margin: auto;
  width: 1200px;
  height: 1200px;
  border: 2px solid rgba(255, 255, 255, 0.18);
  transform: translateY(0);
  animation-name: zoom-in-out;
  animation-duration: 10s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}
.rings--2 {
  width: 900px;
  height: 900px;
  opacity: 0.8;
}
.rings--3 {
  width: 620px;
  height: 620px;
  opacity: 0.6;
}
.rings--4 {
  width: 320px;
  height: 320px;
  opacity: 0.6;
}
.rings--5 {
  width: 120px;
  height: 120px;
  opacity: 0.6;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
}
.hero__title {
  font-family: "Cabinet Grotesk", system-ui;
  font-weight: 700;
  line-height: 1.05;
  font-size: clamp(28px, 4.4vw, 60px);
  letter-spacing: -0.02em;
  margin: 0 auto 14px;
  max-width: 820px;
}
.hero__desc {
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.9;
  max-width: 620px;
  margin: 0 auto 24px;
}
.hero__cta {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 18px;
  border: 2px solid rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, background 0.25s ease, box-shadow 0.25s ease;
  will-change: transform;
}
.btn--primary {
  background: #3681FF;
  color: var(--white); 
  cursor: url(/assets/arrowhead-rounded-outline.svg) 10 10, auto;
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 4px 4px 0px black;
  cursor: url(/assets/arrowhead-rounded-outline.svg) 10 10, auto;
}
.btn--ghost {
  background: #fff;
  color: #1f2937;
  border: none;
  cursor: url(/assets/arrowhead-rounded-outline.svg) 10 10, auto;
}
a {
  cursor: url(/assets/arrowhead-rounded-outline.svg) 10 10, auto;
}

/* =========
   FEATURES
========= */
.features {
  background: #fff;
  padding: 60px 0 120px;
  border-radius: 0px 0px 60px 60px;
}
.section__title {
  font-family: "Cabinet Grotesk", system-ui;
  font-size: clamp(46px, 3.6vw, 56px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 60px;
  color:#359657;
}
.features__grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(12, 1fr);
}
.feature-card {
  grid-column: span 4;
  background: #f2f4f3;
  border-radius: 18px;
  padding: 18px;
  transition: transform 0.2s ease, box-shadow 0.25s ease;
  min-height: 260px;
}
.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 8px 8px 0px black; 
}
.feature-card--highlight {
  background: var(--blue);
  color: #fff;
}
.feature-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 60px;

}
.feature-card__num {
  font-weight: 200;
  font-size: 42px;
}
.feature-card__arrow {
  font-size: 40px;
  opacity: 0.7;
  transition: transform 0.2s ease, box-shadow 0.25s ease;
  
}
.feature-card__arrow:hover{
transform: rotate(45deg);
}
.feature-card__title {
  font-family: "Cabinet Grotesk";
  font-weight: 700;
  margin: 18px 0 40px;
  font-size: 32px;
}
.feature-card__text {
  font-size: 14px;
  line-height: 1.5;
  color: inherit;
}

/* =========
   TEAM
========= */
.team {
  position: relative;
  background: var(--blue);
  padding: 70px 0 80px;
  color: #fff;
  overflow: clip;
  border-radius: 60px 60px 0px 0px;
}
.team__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    600px 600px at 70% 20%,
    rgba(255, 255, 255, 0.15),
    transparent 60%
  );
  pointer-events: none;
}
.section__title--light {
  color: #fff;
}
.team__grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(12, 1fr);
}
.team-card {
  grid-column: span 4;
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.25s ease;
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 8px 8px 0px black;
}
.team-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}
.team-card figcaption {
  padding: 14px 16px 18px;
}
.team-card h3 {
  margin: 0 0 4px;
  font-family: "Cabinet Grotesk";
  font-size: 24px;
}
.team-card p {
  margin: 0;
  font-size: 14px;
  opacity: 0.9;
}

/* =========
   EVENTS
========= */
.events {
  background: var(--green);
  padding: 70px 0 90px;
}
.events .section__title {
  color: #fff;
}
.events__grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(12, 1fr);
}
.event-card {
  grid-column: span 4;
  border-radius: 20px;
  padding: 20px;
  background: #fff;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.event-card:hover{
  transform: translateY(-5px);
  box-shadow: 8px 8px 0px black;
}
.event-card--pink {
  background: var(--pink);
  color: #fff;
}
.event-card--yellow {
  background: var(--yellow);
}
.event-card--blue {
  background: #4f7dff;
  color: #fff;
}
.event-card--green {
  background: #359657;
  color: #fff;
}
.event-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-weight: 600;
  font-size: 13px;
  width: 100%;
}


.event-card a{
  width: 100%;
}

.badge {
  padding: 6px 10px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
}
.event-card__title {
  font-family: "Cabinet Grotesk";
  font-size: 22px;
  margin: 10px 0 6px;
}
.event-card__desc {
  font-size: 14px;
  opacity: 0.95;
  margin-bottom: auto;
}

/* =========
   FOOTER
========= */
.footer {
  background: #f1f5f3;
}
.footer__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 52px 0;
}
.footer__cols {
  display: flex;
  gap: 80px;
  flex-wrap: wrap;
}
.footer__col h4 {
  font-family: "Cabinet Grotesk";
  font-size: 16px;
  margin: 0 0 10px;
  color: #359657;
}
.footer__col ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.footer__col a {
  font-size: 14px;
  color: #31473a;
  opacity: 0.9;
}
.footer__col a:hover {
  text-decoration: underline;
}
.footer__col ul li {
  padding-bottom: 12px;
}
#footer-text{
  font-size: 14px;
  color: #359657;
}

.footer__copy {
  border-top: 1px solid #e3e9e5;
  font-size: 13px;
  color: #3e5a4c;
  padding: 14px 0;
}

/* =========
   RESPONSIVO
========= */
@media (max-width: 1024px) {
  .feature-card,
  .team-card,
  .event-card {
    grid-column: span 6;
  }
  .team-card img {
    height: 260px;
  }
}

@media (max-width: 680px) {
  .nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  /* Mostra o botão do menu e esconde os links por padrão */
  .menu-toggle {
    display: block;
  }
  .nav__links {
    display: none;
  }

  /* Estilos do menu QUANDO ABERTO */
  .nav--open .nav__links {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(5px);
    z-index: 900;
  }
  
  /* Estilo dos links dentro do menu mobile */
  .nav--open .nav__links a {
    margin: 20px 0;
    font-size: 1.5rem;
    color: #333;
    font-weight: 700;
  }
  
  /* ... resto do CSS responsivo ... */
  .feature-card,
  .team-card,
  .event-card {
    grid-column: span 12;
  }
  .team-card img {
    height: 220px;
  }
  .hero{
    padding-top: 160px;
    padding-bottom: 60px;
    border-radius: 0px 0px 30px 30px;
  }
  .hero__cta {
    flex-direction: column;
  }
  .hero__bg{
    display: none;
  }
  .floating-label{
    display: none;
  }
  .section__title{
    text-align: center;
  }
  .team{
    border-radius: 30px 30px 0px 0px;
  }
  .team__grid{
    width: 100%;
  }
  .footer__inner{
    flex-direction: column;
    align-items: left;
    text-align: left;
    padding: 40px 20px;
  }
  .footer__cols{
    flex-direction: column;
    gap: 40px;
  }

}

/* =========
   ANIMAÇÕES E OUTROS
========= */
@keyframes zoom-in-out {
  from {
    transform: scale(1);
  }
  50% {
    transform: scale(1.5);
  }
  to {
    transform: scale(1);
  }
}

#green-space{
  width: 100%;
  height: 10px;
  border-radius: 0px 00px 60px 60px;
  padding: 60px 20px;
  background-color: var(--green);
}

.floating-label {
  position: absolute;
  padding: 8px 16px;
  background-color: var(--color);
  color: #fff;
  font-weight: 600;
  border-radius: 12px;
  animation: floatIn 1s ease forwards, floatMove 6s ease-in-out infinite;
  opacity: 0;
}
.floating-label1 {
  animation: floatIn 1s ease forwards, floatMove1 6s ease-in-out infinite;
}
.floating-label2 {
  animation: floatIn 1s ease forwards, floatMove2 6s ease-in-out infinite;
}
.floating-label3 {
  animation: floatIn 1s ease forwards, floatMove3 6s ease-in-out infinite;
}
@keyframes floatIn {
  from {
    transform: translateY(40px) scale(0.8);
    opacity: 0;
  }
  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

@keyframes floatMove {
  0%   { transform: translate(0px, 0px) rotate(0deg); }
  25%  { transform: translate(10px, -10px) rotate(2deg); }
  50%  { transform: translate(-10px, 10px) rotate(-2deg); }
  75%  { transform: translate(8px, -8px) rotate(1deg); }
  100% { transform: translate(0px, 0px) rotate(0deg); }
}

@keyframes floatMove1 {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
}

@keyframes floatMove2 {
  0% {
    transform: translate(0px, 0px);
  }
  50% {
    transform: translate(12px, -12px);
  }
  100% {
    transform: translate(0px, 0px);
  }
}

@keyframes floatMove3 {
  0% {
    transform: translate(0px, 0px);
  }
  25% {
    transform: translate(10px, -8px);
  }
  50% {
    transform: translate(15px, 0px);
  }
  75% {
    transform: translate(10px, 8px);
  }
  100% {
    transform: translate(0px, 0px);
  }
}


.hero__content-pink {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
}
.hero__video-wrapper {
    margin-top: 3rem;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background-color: #000;
}

.hero__video-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}
#hero-voluntariado{
  padding: 160px 0px 60px 0px;
}

.volunteer__title{
font-family: "Cabinet Grotesk", system-ui;
  font-weight: 700;
  line-height: 1.05;
  font-size: clamp(28px, 4.4vw, 60px);
  letter-spacing: -0.02em;
  margin: 0 auto 14px;
  max-width: 820px;
  text-align: center;
  color: #E03FA1;
  padding-bottom: 50px;
}
.contato__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    margin-top: 4rem;
}

@media (max-width: 992px) {
    .contato__grid {
        grid-template-columns: 1fr;
    }
}

.form__group {
    margin-bottom: 1.5rem;
}

.form__group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--c-text);
}

.form__group input,
.form__group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-family: 'Work Sans', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form__group input:focus,
.form__group textarea:focus {
    outline: none;
    border-color: var(--c-primary);
    box-shadow: 0 0 0 3px rgba(47, 128, 255, 0.2);
}

.form .btn {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
}

.social-highlight-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 6rem;
}

@media (max-width: 992px) {
    .social-highlight-grid {
        grid-template-columns: 1fr;
    }
}

.social-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    border-radius: 16px;
    background-color: #f9f9f9;
    border: 1px solid #eee;
    text-decoration: none;
    color: var(--c-heading);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.07);
}

.social-card__icon svg {
    display: block;
}

.social-card__content h3 {
    margin: 0 0 0.25rem 0;
    font-family: 'Cabinet Grotesk', sans-serif;
    font-size: 1.75rem;
}

.social-card__content p {
    margin: 0;
    color: #555;
    font-size: 1rem;
}

.social-card__action {
    background-color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 99px;
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid #ddd;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.social-card:hover .social-card__action {
    color: #fff;
}

.social-card--instagram:hover {
    border-color: #E1306C;
}
.social-card--instagram:hover .social-card__action {
    background-color: #E1306C;
    border-color: #E1306C;
}
.social-card--instagram .social-card__icon {
    color: #E1306C;
}

.social-card--linkedin:hover {
    border-color: #0A66C2;
}
.social-card--linkedin:hover .social-card__action {
    background-color: #0A66C2;
    border-color: #0A66C2;
}
.social-card--linkedin .social-card__icon {
    color: #0A66C2;
}
.social-card--youtube:hover {
    border-color: #FF0000;
}
.social-card--youtube:hover .social-card__action {
    background-color: #FF0000;
    border-color: #FF0000;
}
.social-card--youtube .social-card__icon {
    color: #FF0000;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
}
