/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  cursor: url("./Img/pen.png"), auto;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
}

img {
  max-width: 100%;
}

#contato {
  scroll-margin-top: 100px;
}

/* ===== HEADER ===== */
header {
  display: flex;
  padding: 0 40px;
  justify-content: space-between;
  height: 100px;
  width: 100%;
  border-bottom: 2px solid #658e48;
  backdrop-filter: blur(3px);
  position: fixed;
  top: 0;
  color: #ffffff;
  z-index: 1000;
  align-items: center;
}
header h1 {
  font-size: 30px;
}
.logo {
  display: flex;
  align-items: center;
  flex-direction: row;
}
.logo img {
  height: 60px;
  margin-right: 8px;
}
.navigation {
  display: flex;
  align-items: center;
}
.navigation ul {
  display: flex;
  align-items: center;
  list-style: none;
  padding-right: 20px;
}
.navigation ul li {
  margin-right: 20px;
}
.navigation ul li a {
  text-decoration: none;
  color: #ffffff;
  font-weight: bold;
  transition: color 0.3s ease;
}
.navigation ul li:hover a {
  color: #658e48;
  cursor: pointer;
}

/* ===== HAMBURGUER ===== */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1100;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition:
    transform 0.35s ease,
    opacity 0.25s ease,
    width 0.3s ease;
  transform-origin: center;
}
.hamburger.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger.is-open span:nth-child(2) {
  opacity: 0;
  width: 0;
}
.hamburger.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ===== MENU MOBILE ===== */
.mobile-nav {
  display: none;
  position: fixed;
  top: 100px;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  z-index: 999;
  flex-direction: column;
  padding: 2rem 2rem 3rem;
  overflow-y: auto;
  transform: translateY(-20px);
  opacity: 0;
  pointer-events: none;
  transition:
    transform 0.35s ease,
    opacity 0.3s ease;
}
.mobile-nav.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  margin-top: 1rem;
}
.mobile-nav ul li {
  border-bottom: 1px solid #658e48;
}
.mobile-nav ul li a {
  display: block;
  padding: 1.1rem 0.5rem;
  font-size: 1.2rem;
  font-weight: bold;
  color: #ffffff;
  text-decoration: none;
  transition:
    color 0.3s ease,
    padding-left 0.3s ease;
}
.mobile-nav ul li a:hover {
  color: #658e48;
  padding-left: 1rem;
}
body.menu-open {
  overflow: hidden;
}

/* ===== HERO / CONTENT ===== */
.content {
  padding: 20px;
  min-height: 100vh;
  width: 100%;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url("./Img/pexels-siarhei-nester-318033361-28530171.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.text {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 50%;
  flex-direction: column;
  color: #ffffff;
  padding-left: 100px;
}
.text h2 {
  font-size: 40px;
  margin-bottom: 20px;
}
.text p {
  font-size: 20px;
  margin-bottom: 20px;
}
.text button {
  padding: 10px 20px;
  font-size: 16px;
  background-color: #658e48;
  color: #f8f6f6;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  max-width: 200px;
  transition:
    background-color 0.6s ease,
    transform 0.6s ease;
}
.text button:hover {
  background-color: #6e9254;
  transform: scale(1.05);
}
.image {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
  flex-direction: column;
}
model-viewer {
  width: 300px;
  height: 300px;
  max-width: 100%;
}

/* ===== TEMPERATURA ===== */
.temp {
  position: absolute;
  top: 110px;
  right: 20px;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 5px 8px;
  border-radius: 5px;
  color: #cccaca;
  font-size: 14px;
  z-index: 10;
}
.current-temp,
.hour {
  margin-left: 5px;
}
.hour::before {
  content: "-";
  margin-right: 5px;
}

/* ===== SERVIÇOS ===== */
.services {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  flex-direction: column;
  margin-top: 20px;
  padding: 0 20px;
}
.cards {
  display: flex;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px 0;
}
.card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  width: 300px;
  max-width: 100%;
  min-height: 380px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
}
.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.card h3 {
  color: #595959;
  padding: 0 15px;
}
.card p {
  color: #969696;
  font-family: "Roboto Light", sans-serif;
  padding: 0 15px;
}
.card i {
  font-size: 70px;
  color: #070707;
}
.card button {
  padding: 10px 20px;
  font-size: 16px;
  background-color: #658e48;
  color: #ffffff;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  max-width: 200px;
  margin-top: auto;
  transition:
    background-color 0.6s ease,
    transform 0.6s ease;
}
.card button:hover {
  transform: scale(1.05);
}

/* ===== SOBRE ===== */
.about {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  color: white;
  background-image: url("./Img/aaaaaa.jpg");
  background-position: center;
  background-size: cover;
  min-height: 500px;
  width: 100%;
  text-align: left;
  padding: 40px 0;
}
.about h1 {
  margin-left: 30px;
  font-size: 66px;
  font-weight: 900;
}
.content-about {
  margin: 20px auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: rgba(0, 0, 0, 0.4);
  width: 80%;
  border-radius: 10px;
  text-align: center;
  padding: 20px;
}
.content-about img {
  width: 150px;
}
.iframe {
  border-radius: 10px;
  max-width: 100%;
}
.text-about {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  flex-direction: column;
  padding: 40px;
}
.text-about h3 {
  color: #658e48;
  font-size: 30px;
  font-weight: 300;
}
.paragraph {
  font-size: 20px;
  color: #7f7f7f;
  margin-top: 15px;
}
.about-extra {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 20px;
  padding: 20px;
}
.left-about {
  margin-left: 20px;
}
.left-about h2 {
  color: #7f7f7f;
  font-size: 30px;
  margin-bottom: 10px;
  font-weight: 900;
  width: 100%;
}
.left-about p {
  padding: 30px;
}
.left-about span {
  color: #7f7f7f;
  font-size: 20px;
  margin-bottom: 40px;
}
.citation {
  font-style: italic;
  font-weight: 900;
  color: #7f7f7f;
  font-size: 20px;
}
.right-about {
  width: 30%;
  min-width: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 1px solid #4a7a30;
  margin-right: 20px;
}
.right-about img {
  width: 250px;
  height: 250px;
  max-width: 100%;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
}
.right-about p {
  background-color: #4a7a30;
  color: #ffffff;
}
.right-text {
  background-color: #4a7a30;
  padding: 20px;
}
#violeta {
  font-weight: 900;
}

/* ===== CONTATO ===== */
.content-contact {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  flex-direction: column;
  color: #ffffff;
  padding: 120px 20px 60px;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url("./Img/pexels-siarhei-nester-318033361-28530171.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.content-contact > span {
  color: #4ba517;
  font-size: 1.1rem;
  display: block;
  margin-bottom: 8px;
}
.content-contact > h2 {
  color: #d4d2d2;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 40px;
  text-align: center;
}

/* ===== FORMULÁRIO ===== */
.formulário {
  width: 100%;
  max-width: 700px;
}
.formulário form {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.formulário input,
.formulário textarea {
  background-color: #f2f2f0;
  border: none;
  border-radius: 8px;
  padding: 18px 20px;
  font-size: 1rem;
  font-family: inherit;
  color: #333;
  width: 100%;
  outline: none;
  transition: box-shadow 0.2s ease;
}
.formulário input:focus,
.formulário textarea:focus {
  box-shadow: 0 0 0 2px #5a8f3c;
}
.formulário input::placeholder,
.formulário textarea::placeholder {
  color: #555;
}
.formulário input[name="nome"],
.formulário input[name="email"] {
  flex: 1 1 calc(50% - 8px);
  min-width: 220px;
}
.formulário input[name="assunto"] {
  flex: 1 1 100%;
}
.formulário textarea {
  flex: 1 1 100%;
  min-height: 160px;
  resize: vertical;
}
.formulário button[type="submit"] {
  flex: 1 1 100%;
  background-color: #5a8f3c;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 18px;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.formulário button[type="submit"]:hover {
  background-color: #4a7a30;
}
.formulário button[type="submit"]:disabled {
  background-color: #9bb98a;
  cursor: not-allowed;
}
#status-mensagem {
  flex: 1 1 100%;
  margin: 0;
  font-size: 0.95rem;
}

/* ===== REDES SOCIAIS (CONTATO) ===== */
.social {
  margin-top: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.social > span {
  color: #5a8f3c;
  font-size: 1rem;
  width: 100%;
  margin-bottom: 8px;
  text-align: center;
}
.social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #f2f2f0;
  color: #5a8f3c;
  text-decoration: none;
  font-size: 0;
}
.social a[href*="instagram"]::before {
  content: "";
  width: 22px;
  height: 22px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%235a8f3c" stroke-width="2"><rect x="2" y="2" width="20" height="20" rx="5"/><circle cx="12" cy="12" r="4"/><circle cx="17.5" cy="6.5" r="1"/></svg>')
    no-repeat center / contain;
}
.social a[href*="whatsapp"]::before {
  content: "";
  width: 22px;
  height: 22px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%235a8f3c"><path d="M12 2C6.48 2 2 6.48 2 12c0 1.85.5 3.58 1.38 5.08L2 22l5.05-1.33A9.93 9.93 0 0012 22c5.52 0 10-4.48 10-10S17.52 2 12 2zm0 18c-1.6 0-3.09-.46-4.35-1.26l-.31-.19-3.05.8.82-2.97-.2-.32A7.94 7.94 0 014 12c0-4.41 3.59-8 8-8s8 3.59 8 8-3.59 8-8 8zm4.4-5.6c-.24-.12-1.43-.7-1.65-.79-.22-.08-.38-.12-.54.12-.16.24-.62.79-.76.95-.14.16-.28.18-.52.06-.24-.12-1.01-.37-1.92-1.18-.71-.63-1.19-1.41-1.33-1.65-.14-.24-.02-.37.1-.49.11-.11.24-.28.36-.42.12-.14.16-.24.24-.4.08-.16.04-.3-.02-.42-.06-.12-.54-1.3-.74-1.78-.19-.46-.39-.4-.54-.4h-.46c-.16 0-.42.06-.64.3-.22.24-.84.82-.84 2s.86 2.32.98 2.48c.12.16 1.7 2.6 4.12 3.64.58.25 1.03.4 1.38.51.58.18 1.11.16 1.53.1.47-.07 1.43-.58 1.63-1.15.2-.57.2-1.05.14-1.15-.06-.1-.22-.16-.46-.28z"/></svg>')
    no-repeat center / contain;
}

/* ===== FOOTER ===== */
.footer {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background-color: #658e48;
  color: #ffffff;
  padding: 30px 20px;
}
.left,
.right {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 50%;
  text-align: center;
}
.right {
  border-left: 1px solid #00cc00;
}
.left iframe {
  border-radius: 10px;
  width: 400px;
  max-width: 100%;
  border: none;
  margin-top: 10px;
}
.left p {
  margin-top: 10px;
  font-size: 22px;
  color: #ffffff;
}
.socials {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.socials a {
  color: #ffffff;
  font-size: 24px;
  transition: color 0.3s ease;
}
.socials a:hover {
  color: #0a0a0a;
  cursor: pointer;
}
.socials a i {
  pointer-events: none;
}

/* ===== Seção 404 ===== */
.error-hero {
  min-height: 100vh;
  width: 100%;
  padding: 140px 20px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-image:
    linear-gradient(rgba(10, 15, 10, 0.72), rgba(10, 15, 10, 0.72)),
    url("https://scaranto.com.br/wp-content/uploads/2022/06/WhatsApp-Image-2022-06-20-at-20.24.33.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #ffffff;
}
.error-code {
  font-size: clamp(90px, 20vw, 180px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -2px;
  color: #ffffff;
}
.error-code span {
  color: #9ccb7a;
}
.error-seal {
  width: 90px;
  height: 90px;
  border: 3px solid #9ccb7a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px 0 20px;
}
.error-seal i {
  font-size: 34px;
  color: #9ccb7a;
}
.error-hero h2 {
  font-size: clamp(22px, 4vw, 32px);
  margin-bottom: 14px;
}
.error-hero p {
  max-width: 560px;
  font-size: 17px;
  color: #e4e4e4;
  margin-bottom: 34px;
  line-height: 1.6;
}
.error-hero p strong {
  color: #ffffff;
}
.error-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.btn-primary,
.btn-secondary {
  padding: 14px 28px;
  font-size: 16px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 700;
  transition:
    background-color 0.3s ease,
    transform 0.3s ease,
    color 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-primary {
  background-color: #658e48;
  color: #ffffff;
  border: 2px solid #658e48;
}
.btn-primary:hover {
  background-color: #7aa859;
  transform: scale(1.04);
}
.btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}
.btn-secondary:hover {
  background-color: #ffffff;
  color: #1c261a;
}

.quick-links {
  margin-top: 56px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.quick-links a {
  color: #cfe7bd;
  text-decoration: none;
  font-size: 14px;
  border-bottom: 1px solid transparent;
}
.quick-links a:hover {
  border-bottom-color: #cfe7bd;
}
.quick-links span {
  color: #6d6d6d;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  background-color: #658e48;
  color: #ffffff;
  padding: 30px 20px;
  text-align: center;
}
.footer p {
  font-size: 18px;
}
.socials {
  display: flex;
  gap: 15px;
  margin-top: 10px;
  justify-content: center;
}
.socials a {
  color: #ffffff;
  font-size: 22px;
}
.socials a:hover {
  color: #143c00;
}

@media (max-width: 768px) {
  header {
    padding: 0 20px;
  }
  header h1 {
    font-size: 20px;
  }
  .navigation {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .mobile-nav {
    display: flex;
  }
  .error-hero {
    padding: 120px 20px 50px;
  }
}

/* 2030 */
/* ===== HERO ===== */
.agenda-hero {
  min-height: 70vh;
  width: 100%;
  padding: 140px 20px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-image:
    linear-gradient(rgba(10, 20, 10, 0.68), rgba(10, 20, 10, 0.68)),
    url("https://cnr.org.br/site/wp-content/uploads/2026/06/CNR-abre-inscricoes-para-a-3a-edicao-do-Selo-Cartorio-Mulher.png");
  background-size: cover;
  background-position: center;
  color: #fff;
}
.eyebrow {
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #9ccb7a;
  margin-bottom: 16px;
}
.agenda-hero h1 {
  font-size: clamp(30px, 5vw, 54px);
  max-width: 780px;
  line-height: 1.15;
  margin-bottom: 20px;
}
.agenda-hero p {
  max-width: 620px;
  font-size: 17px;
  color: #e6e6e6;
  line-height: 1.7;
}

/* ===== INTRO ===== */
.intro {
  max-width: 820px;
  margin: 60px auto;
  padding: 0 24px;
  text-align: center;
}
.intro h2 {
  color: #4a7a30;
  font-size: 28px;
  margin-bottom: 16px;
}
.intro p {
  font-size: 17px;
  line-height: 1.8;
  color: #555;
}

/* ===== ODS GRID ===== */
.ods-section {
  background-color: #f5f6f2;
  padding: 60px 20px;
}
.section-title {
  text-align: center;
  margin-bottom: 40px;
}
.section-title span {
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #658e48;
  font-weight: 700;
}
.section-title h2 {
  font-size: 30px;
  color: #333;
  margin-top: 8px;
}
.ods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.ods-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ods-number {
  width: 46px;
  height: 46px;
  background-color: #658e48;
  color: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
}
.ods-card h3 {
  color: #333;
  font-size: 19px;
}
.ods-card p {
  color: #6b6b6b;
  font-size: 15px;
  line-height: 1.6;
}

/* ===== TIMELINE / AÇÕES ===== */
.acoes {
  max-width: 900px;
  margin: 70px auto;
  padding: 0 24px;
}
.acoes .section-title {
  text-align: left;
  margin-bottom: 30px;
}
.timeline-item {
  display: flex;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid #e2e2e2;
}
.timeline-item:last-child {
  border-bottom: none;
}
.timeline-icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border: 2px solid #658e48;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #658e48;
  font-size: 18px;
}
.timeline-text h4 {
  color: #333;
  font-size: 17px;
  margin-bottom: 6px;
}
.timeline-text p {
  color: #6b6b6b;
  font-size: 15px;
  line-height: 1.6;
}

/* ===== FAIXA CTA ===== */
.cta-band {
  background-color: #658e48;
  color: #fff;
  text-align: center;
  padding: 60px 20px;
}
.cta-band h2 {
  font-size: 26px;
  margin-bottom: 12px;
}
.cta-band p {
  max-width: 560px;
  margin: 0 auto 26px;
  color: #e7f0df;
  line-height: 1.6;
}
.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #fff;
  color: #4a7a30;
  padding: 14px 28px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.3s ease;
}
.btn-white:hover {
  transform: scale(1.04);
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  background-color: #4a7a30;
  color: #fff;
  padding: 30px 20px;
  text-align: center;
}
.footer p {
  font-size: 16px;
}
.socials {
  display: flex;
  gap: 15px;
  margin-top: 10px;
  justify-content: center;
}
.socials a {
  color: #fff;
  font-size: 22px;
}
.socials a:hover {
  color: #cfe7bd;
}

@media (max-width: 768px) {
  header {
    padding: 0 20px;
  }
  header h1 {
    font-size: 20px;
  }
  .navigation {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .mobile-nav {
    display: flex;
  }
  .agenda-hero {
    padding: 120px 20px 50px;
  }
  .acoes .section-title {
    text-align: center;
  }
}

/* ============================================
   RESPONSIVO — TABLET (até 1024px)
   ============================================ */
@media (max-width: 1024px) {
  header {
    padding: 0 24px;
  }
  .text {
    padding-left: 40px;
  }
  .text h2 {
    font-size: 34px;
  }
  .about h1 {
    font-size: 48px;
  }
  .content-about {
    width: 90%;
  }
  .about-extra {
    flex-direction: column;
  }
  .left-about,
  .right-about {
    margin: 0;
    width: 100%;
  }
  .left-about p {
    padding: 20px 0;
  }
  .right-about {
    max-width: 400px;
    padding: 20px 0;
  }
  .text-about {
    padding: 30px 20px;
  }
}

/* ============================================
   RESPONSIVO — MOBILE (até 768px)
   ============================================ */
@media (max-width: 768px) {
  /* HEADER */
  header {
    padding: 0 20px;
  }
  header h1 {
    font-size: 22px;
  }
  .logo img {
    height: 48px;
  }
  .navigation {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .mobile-nav {
    display: flex;
  }

  /* HERO */
  .content {
    flex-direction: column;
    justify-content: center;
    padding: 120px 20px 60px;
    text-align: center;
  }
  .text {
    width: 100%;
    padding-left: 0;
    align-items: center;
    text-align: center;
  }
  .text h2 {
    font-size: 28px;
  }
  .text p {
    font-size: 16px;
  }
  .image {
    display: none;
  }
  .temp {
    top: 105px;
    right: 10px;
    font-size: 12px;
  }

  /* SERVIÇOS */
  .services {
    padding: 0 20px;
  }
  .cards {
    flex-direction: column;
    align-items: center;
  }
  .card {
    width: 100%;
    max-width: 340px;
    min-height: auto;
    margin: 0;
  }
  .card img {
    height: 160px;
  }

  /* SOBRE */
  .about {
    min-height: 320px;
    justify-content: center;
    text-align: center;
  }
  .about h1 {
    font-size: 36px;
    margin-left: 0;
    padding: 0 20px;
  }
  .content-about {
    width: 92%;
    padding: 20px 15px;
  }
  .content-about img {
    width: 110px;
  }
  .text-about {
    padding: 20px;
  }
  .text-about h3 {
    font-size: 24px;
  }
  .paragraph {
    font-size: 16px;
  }
  .left-about h2 {
    font-size: 24px;
  }
  .left-about span,
  .citation {
    font-size: 16px;
  }
  .right-about img {
    width: 200px;
    height: 200px;
  }

  /* CONTATO */
  .content-contact {
    min-height: auto;
    padding: 100px 20px 50px;
  }
  .content-contact > h2 {
    font-size: 1.6rem;
    margin-bottom: 25px;
  }
  .formulário form {
    gap: 12px;
  }
  .formulário input[name="nome"],
  .formulário input[name="email"],
  .formulário input[name="assunto"],
  .formulário textarea {
    flex: 1 1 100%;
    min-width: 100%;
    font-size: 0.95rem;
    padding: 14px 16px;
  }
  .formulário textarea {
    min-height: 130px;
  }
  .formulário button[type="submit"] {
    padding: 14px;
    font-size: 1rem;
  }
  .social {
    gap: 12px;
    margin-top: 24px;
  }
  .social a {
    width: 44px;
    height: 44px;
  }

  /* FOOTER */
  .footer {
    flex-direction: column;
    padding: 30px 20px;
  }
  .left,
  .right {
    width: 100%;
  }
  .right {
    border-left: none;
    border-top: 1px solid #00cc00;
    margin-top: 20px;
    padding-top: 20px;
  }
  .left iframe {
    width: 100%;
    max-width: 350px;
    height: 220px;
  }
}

/* ============================================
   RESPONSIVO — CELULARES PEQUENOS (até 480px)
   ============================================ */
@media (max-width: 480px) {
  header {
    padding: 0 15px;
  }
  header h1 {
    font-size: 18px;
  }
  .logo img {
    height: 40px;
  }
  .text h2 {
    font-size: 24px;
  }
  .text p {
    font-size: 15px;
  }
  .card {
    max-width: 100%;
  }
  .card img {
    height: 140px;
  }
  .about h1 {
    font-size: 28px;
  }
  .text-about h3 {
    font-size: 20px;
  }
  .content-contact > h2 {
    font-size: 1.3rem;
  }
  .content-contact > span {
    font-size: 0.95rem;
  }
  .formulário input,
  .formulário textarea {
    padding: 12px 14px;
  }
  .left p {
    font-size: 18px;
  }
  .socials a {
    font-size: 20px;
  }
  .mobile-nav ul li a {
    font-size: 1.05rem;
  }
}

/* ===== ACESSIBILIDADE ===== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
