






* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f4ecd8;
  color: #3a2f1b;
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #f4ecd8;
  padding: 15px 25px;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #ccc;
  z-index: 1000;
}

nav a {
  margin-left: 15px;
  text-decoration: none;
  font-weight: bold;
  color: #3a2f1b;
}


* =============================
   HERO COM FOTO
============================= */

.hero {
  height: 100vh;
  padding-top: 80px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;

  background-image: url("https://www.rosicostadf.com.br/img/foto.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  position: relative;
  color: white;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.hero h1,
.hero p,
.hero button {
  position: relative;
  z-index: 2;
}


button {
  padding: 12px 25px;
  background: #e17e27;
  border: none;
  color: white;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
}


.timeline {
  position: relative;
  height: 1400px;
  background: #ede2c4;
  padding-bottom: 300px; /* ✅ espaço para os últimos cards */
}


svg {
  position: absolute;
  width: 100%;
  height: 100%;
}

#path {
  fill: none;
  stroke: #7d539e;
  stroke-width: 4;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
}

.traveler {
  position: absolute;
  left: 50%;
  font-size: 28px;
  transform: translateX(-50%);
}

.milestone {
  position: absolute;
  width: 220px;
  background: white;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,.1);
}

.milestone.left {
  left: 10%;
}

.milestone.right {
  right: 10%;
}

.contact {
  padding: 100px 20px;
  background: #f4ecd8;
  text-align: center;
}

form {
  max-width: 400px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

input, textarea {
  padding: 12px;
  border-radius: 5px;
  border: 1px solid #ccc;
}


/* FORMULÁRIO DE CONTATO */
.contact-form {
  max-width: 500px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 15px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
  font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #7d539e;
}

.contact-form button {
  margin-top: 10px;
  padding: 15px;
  background: #e17e27;
  color: white;
  font-weight: bold;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background: #c96a18;
}


/* =============================
   MANIFESTO – DECLARAÇÃO
============================= */


.manifesto-section {
  background: linear-gradient(135deg, #f4ecd8, #ede2c4);
  padding: 140px 20px;
}

.manifesto {
  max-width: 820px;
  margin: auto;
  padding: 4rem 3.5rem;

  background: #ffffff;
  border-radius: 24px;

  box-shadow:
    0 15px 40px rgba(0,0,0,0.12);

  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: #3a2f1b;
  line-height: 1.8;
}

/* TÍTULO */
.manifesto h2 {
  font-size: 1.1rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 3rem;
  color: #7d539e;
}

/* TEXTO */
.manifesto p {
  font-size: 1.15rem;
  margin-bottom: 1.6rem;
}

/* PRIMEIRA FRASE EM DESTAQUE */
.manifesto p:first-of-type {
  font-size: 1.35rem;
  font-weight: 600;
  color: #7d539e;
}

/* FRASE-CHAVE FINAL */
.manifesto p:last-child {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 3px solid #e17e27;

  font-size: 1.35rem;
  font-weight: 700;
  color: #3a2f1b;
}

/* RESPONSIVO */
@media (max-width: 600px) {
  .manifesto {
    padding: 2.5rem 2rem;
  }

  .manifesto p:first-of-type,
  .manifesto p:last-child {
    font-size: 1.2rem;
  }
}



* =============================
   PROJETOS – EVIDÊNCIA
============================= */
.projects {
  padding: 100px 20px;
  background: #e6d8b8;
}

.projects h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 60px;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

.project {
  background: white;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0,0,0,.12);
  border-left: 6px solid #e17e27;
}

.project h3 {
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.project p {
  line-height: 1.6;
}

* =============================
   CTA – SEJA VOLUNTÁRIO
============================= */
.section-cta {
  text-align: center;
  margin-top: 60px;
}

.volunteer-btn {
  display: inline-block;
  padding: 16px 40px;
  background: #e17e27;
  color: white;
  font-weight: bold;
  font-size: 1.1rem;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.3s ease, transform 0.2s ease;
}

.volunteer-btn:hover {
  background: #c96a18;
  transform: translateY(-2px);
}


@media (max-width: 768px) {

  .milestone {
    position: relative;
    width: 85%;
    margin: 40px auto;
    left: auto !important;
    right: auto !important;
    opacity: 1;
    transform: none;
  }

  .timeline {
    height: auto;
    padding-bottom: 80px;
  }

  svg {
    display: none;
  }

  .traveler {
    display: none;
  }
}






.hero {
  min-height: 100vh;
  padding-top: 80px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;

  background: 
    linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
    url("https://www.rosicostadf.com.br/img/foto.jpg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  color: white;
}



/* =============================
   SECTION – REDES SOCIAIS
============================= */
.social-links {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.social {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: white;
  font-size: 22px;
  transition: 0.3s;
}

.social:hover {
  transform: scale(1.1);
}

/* Cores oficiais */
.instagram { background: #E1306C; }
.tiktok { background: #000; }
.facebook { background: #1877F2; }
.whatsapp { background: #25D366; }

.social-section {
  text-align: center;
  padding: 20px 0;
}

.social-title {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 600;
  color: #333;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
}
