@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600&family=Poppins:wght@400;600&display=swap');

:root {
  --verde-principal: #00543D;
  --verde-claro: #C5DDD6;
  --fundo-claro: #fefefe;
  --preto: #111;
  --cinza: #777;
}

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

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: var(--fundo-claro);
  color: var(--preto);
  line-height: 1.6;
}
/* HEADER */
header {
  position: sticky;
  top: 0;
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}
header.shrink {
  height: 50px;
}

header.shrink .logo img {
  height: 50px;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.logo img {
  height: 80%;
  width: auto;
  object-fit: contain;
}

#menu-toggle {
  display: none;
}

.menu-icon {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--preto);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  align-items: center;
  font-family: 'Playfair Display', serif;
  font-size: larger;
  color: #1b3c36;
}

.nav-links a {
  text-decoration: none;
  color: var(--preto);
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--verde-principal);
}

/* AGENDAR */
.agendar-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.agendar-btn {
  background-color: var(--verde-principal);
  color: var(--verde-claro);
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.85rem;
  text-align: center;
  line-height: 150%;
  white-space: nowrap;
  display: inline-block;
  transition: background 0.3s ease;
}

.agendar-btn:hover {
  background-color: #003f2e;
  color: #ffffff;
}

header.shrink .agendar-container{
  height: 50px;
}

header.shrink .agendar-btn{
  height: 45px;
  align-items: center;
  justify-content: center;
  font-size: x-small;
}

/* SECTIONS */
.section {
  padding: 80px 20px;
  max-width: 960px;
  margin: auto;
  text-align: center;
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--verde-principal);
  border-bottom: 2px solid var(--verde-claro);
  display: inline-block;
}

.section p,
.section ul,
.section blockquote {
  margin-top: 1rem;
  color: var(--preto);
}

.section ul {
  list-style: disc;
  padding-left: 1.5rem;
}

.section blockquote {
  background-color: #f0f8f6;
  padding: 1rem;
  border-left: 4px solid var(--verde-principal);
  font-style: italic;
  margin-top: 1rem;
}

/* INÍCIO */
.inicio {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background-color: var(--verde-claro);
  padding: 0;
}

.Home-imagem {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.Home-imagem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* HERO TEXT */
.hero-text {
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
  color: #3a6324;
  max-width: 650px;
  z-index: 2;
  animation: fadeInLeft 1.2s ease-out forwards;
  opacity: 0;
  text-align: left;
  font-family: 'Playfair Display', serif;
}

.hero-box {
  background-color: #bce4c4;
  padding: 8px 20px;
  border-radius: 30px;
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.9rem;
  font-family: 'Playfair Display', serif;
  color: #003f2e;
  box-shadow: 0 0 5px rgba(0,0,0,0.2);
}

.hero-text h2 {
  font-size: 1rem;
  font-family: 'Playfair Display', serif;
  margin: 0;
}

.hero-text h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.4;
}

.hero-text p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.btn-agendar {
  background-color: #bce4c4;
  color: #1b3c36;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Playfair Display', serif;
  transition: background-color 0.3s ease;
}

.btn-agendar::before {
    font-size: 1.2rem;
}

.btn-agendar:hover {
  background-color: #a2c8bd;
}

/* FORMULÁRIO */
form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 400px;
  margin: auto;
}

input,
textarea {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
}

button {
  background-color: var(--verde-principal);
  color: white;
  border: none;
  padding: 0.75rem;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s ease;
}

button:hover {
  background-color: #003f2e;
}

/* RODAPÉ */
footer {
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  background-color: #f4f4f4;
  color: var(--cinza);
}

/* MENU MOBILE */
@media (max-width: 768px) {
  .menu-icon {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    padding: 1rem 1.5rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    gap: 1rem;
    z-index: 999;
  }

  #menu-toggle:checked + .menu-icon + .nav-links {
    display: flex;
  }

  .nav-links li {
    width: 100%;
    padding: 0.5rem 0;
  }
}

/* ANIMAÇÕES */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30%) translateY(-50%);
  }
  to {
    opacity: 1;
    transform: translateX(0) translateY(-50%);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* NOVO: Procedimentos em Grade */
.procedimentos-grid {
  padding: 60px 20px;
  background-color: #fff;
  text-align: center;
  font-family: 'Playfair Display', serif;
}

.procedimentos-grid h2 {
  font-size: 1.8rem;
  color: #1b3c36;
  margin-bottom: 2rem;
}

.grade-procedimentos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.card-proc {
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  height: 350px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  position: relative;
  animation: fadeInUp 1s ease forwards;
  transition: transform 0.3s ease;
}

.card-proc:hover {
  transform: translateY(-5px);
}

.card-proc.destaque {
  grid-row: span 2;
  height: 100%;
  min-height: 500px;
}

.card-proc.destaque-horizontal {
  grid-column: span 2;
  min-height: 250px;
}

.card-proc .overlay {
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  padding: 1.2rem;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-align: left;
}

.card-proc h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #fff;
}

.card-proc p {
  font-size: 0.95rem;
  margin-bottom: 1rem;
  color: #eee;
}

.card-proc a {
  background-color: #1b3c36;
  color: white;
  padding: 8px 16px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  width: fit-content;
  font-size: 0.9rem;
  transition: background 0.3s ease;
}

.card-proc a:hover {
  background-color: #144e3c;
}

/* Responsivo */
@media (max-width: 768px) {
.card-proc.destaque {
  grid-column: span 2;
  min-height: 250px;
}
.card-proc {
  grid-column: span 2;
  min-height: 250px;
}
.card-proc2 {
  grid-column: span 2;
  min-height: 250px;
}
.card-proc3 {
  grid-column: span 2;
  min-height: 250px;
}
.card-proc4 {
  grid-column: span 2;
  min-height: 250px;
}
.card-proc.destaque-horizontal {
  grid-column: span 2;
  min-height: 250px;
}
}

/* Banner Naturalidade */
.banner-naturalidade {
  background-color: #bce4c4;
  padding: 60px 20px;
  color: #1b3c36;
}

.banner-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 20px;
}

.banner-titulo,
.banner-texto {
  flex: 1 1 48%;
  font-family: 'Playfair Display', serif;
}

.banner-titulo h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 0;
}

.banner-texto p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: #1b3c36;
}

.btn-banner-agendar {
  font-family: 'Playfair Display', serif;
  background-color: #1b3c36;
  color: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  display: inline-block;
  width: auto;
  white-space: nowrap;
  transition: background-color 0.3s ease;
}

.btn-banner-agendar:hover {
  background-color: #144e3c;
}

@media (max-width: 768px) {
  .banner-grid {
    flex-direction: column;
    text-align: center;
  }
  .banner-titulo,
  .banner-texto {
    flex: 1 1 100%;
  }
}


/* Procedimento em Destaque */
.procedimentos-destaque {
  padding: 80px 20px;
  background-color: #ffffff;
  font-family: 'Playfair Display', serif;
}

.container-destaque {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  align-items: stretch;
  gap: 40px;
  height: auto;
}

.container-destaque .imagem,
.container-destaque .conteudo {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.container-destaque .imagem {
  height: auto;
}

.container-destaque .imagem img {
  width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.container-destaque h2 {
  font-size: 1.8rem;
  color: var(--verde-principal);
  margin-bottom: 1rem;
}

.container-destaque .descricao {
  font-size: 1rem;
  margin-bottom: 2rem;
  color: var(--preto);
}

.topicos {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.topico {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.topico img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: contain;
  border: 2px solid var(--verde-principal);
  background-color: #fff;
  padding: 5px;
}

.topico h3 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--verde-principal);
}

.topico p {
  margin: 0.3rem 0 0;
  font-size: 0.95rem;
  color: var(--preto);
}

.btn-agendar-destaque {
  background-color: #1b3c36;
  color: #fff;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  display: inline-block;
  transition: background-color 0.3s ease;
  width: fit-content;
}

.btn-agendar-destaque:hover {
  background-color: #144e3c;
}

@media (max-width: 768px) {
  .container-destaque {
    flex-direction: column;
  }
  .container-destaque .imagem,
  .container-destaque .conteudo {
    width: 100%;
    max-width: 100%;
  }
  .container-destaque .imagem img {
    height: auto;
  }
}

/* Confira Resultados */
.resultados {
  padding: 60px 20px;
  text-align: center;
  background-color: #fdfdfd;
}

.resultados h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--verde-principal);
}

.slider {
  position: relative;
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
}

.slides {
  display: flex;
  transition: transform 0.5s ease;
}

.slides img {
  width: calc(100% / 3);
  object-fit: cover;
  border-radius: 10px;
  padding: 0 10px;
}

.paginacao {
  margin-top: 10px;
}

.dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 6px;
  background-color: #ccc;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s;
}

.dot.active {
  background-color: var(--verde-principal);
}

@media (max-width: 768px) {
  .slides img {
    width: 100%;
    padding: 0;
  }
}


/* Imagens Tratamento */
.imagens-tratamento {
  background-color: #fff;
  padding: 0;
  margin: 0;
}

.linha-tratamento {
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}

.tratamento {
  position: relative;
  flex: 1;
  border-left: 1px solid #ccc;
  overflow: hidden;
  height: 400px;
}

.tratamento img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.4s ease;
}

.tratamento:first-child {
  border-left: none;
}

/* Overlay invisível que aparece no hover */
.info-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #bce4c4;
  font-family: 'Playfair Display', serif;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  box-sizing: border-box;
  opacity: 0;
  transition: opacity 0.4s ease;
  background: rgba(0, 0, 0, 0.5);
}

.tratamento:hover .info-overlay {
  opacity: 1;
}

.info-overlay .titulo {
  font-size: 1rem;
  font-weight: bold;
  margin-top: 10px;
}

.info-overlay .btn-agendar {
  font-size: 0.9rem;
  background-color: #bce4c4;
  color: #1b3c36;
  padding: 6px 16px;
  border-radius: 20px;
  text-decoration: none;
  margin-bottom: 10px;
  transition: background-color 0.3s ease;
}

.info-overlay .btn-agendar:hover {
  background-color: #a0cdbc;
}

/* Responsivo */
@media (max-width: 768px) {
 .info-overlay .titulo {
  font-size: 0,1rem;
  font-weight: bold;
  margin-top: 1px;
}

  .tratamento {
    width: 100%;
    height: auto;
    border-top: 1px solid #ccc;
  }

  .tratamento:first-child {
    border-top: none;
  }
}

/* Etapas de Tratamento ------------------------------------------------------------------------------------------*/
.etapas-processo {
  padding: 80px 20px;
  background-color: #fff;
  font-family: 'Playfair Display', serif;
}

.etapas-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding-bottom: 20px;
}

.etapa-card {
  flex: 1 1 calc(33.33% - 20px);
  min-width: 280px;
  max-width: 400px;
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  padding: 30px 20px;
  text-align: center;
  box-sizing: border-box;
  transition: transform 0.3s ease;
}

.etapa-card:hover {
  transform: translateY(-5px);
}

.etapa-card img {
  width: 100%;
  height: auto;
  max-height: 100px;
  object-fit: contain;
  border-radius: 8px;
  margin-bottom: 15px;
}

.numero-circulo {
  width: 50px;
  height: 50px;
  border: 2px solid #1b3c36;
  color: #1b3c36;
  font-size: 1.2rem;
  font-weight: bold;
  border-radius: 50%;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.etapa-card h3 {
  font-size: 1.1rem;
  color: #1b3c36;
  margin-bottom: 10px;
  font-weight: 600;
}

.etapa-card p {
  font-size: 0.9rem;
  color: #333;
  line-height: 1.4;
  overflow-wrap: break-word;
}

@media (max-width: 768px) {
  .etapas-cards {
    flex-direction: column;
    overflow-x: hidden;
  }

  .etapa-card {
    flex: 1 1 100%;
    min-width: 100%;
    max-width: 100%;
    padding: 20px;
  }

  .numero-circulo {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .etapa-card img {
    max-height: 80px;
  }
}

/* Como Funciona ---------------------------------------------------------------------------*/
.como-funciona-completo {
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: #fff;
}

.como-funciona-completo h2 {
  margin-bottom: 40px;
}

.como-funciona-completo .etapas-cards {
  margin-top: 0;
}
/* Relatos tipo carrossel com transição automática --------------------------------------------------------*/
.relatos-carrossel {
  padding: 80px 20px;
  background-color: #fff;
  text-align: center;
  font-family: 'Playfair Display', serif;
}

.relatos-carrossel h2 {
  font-size: 2rem;
  color: var(--verde-principal);
  margin-bottom: 1rem;
}

.relatos-carrossel p {
  font-size: 1rem;
  color: var(--preto);
  margin-bottom: 2rem;
}

.relatos-container {
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.relatos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  transition: transform 0.6s ease-in-out;
}

.relato {
  background-color: #1b3c36;
  color: #bce4c4;
  padding: 20px;
  border-radius: 20px;
  font-style: italic;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  min-height: 100px;
}

/* RESPONSIVO: 1 por vez -------------------------------------------------*/
@media (max-width: 768px) {
  .relatos-grid {
    grid-template-columns: 1fr;
  }
}
/*Endereco e contato -----------------------------------------------------*/
.banner-footer {
  background-color: #bce4c4;
  color: #144e3c;
  padding: 40px 20px;
  font-family: 'Playfair Display', serif;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: nowrap; /* 🔒 impede quebra de linha */
}

.footer-col {
  flex: 1 1 25%;
  min-width: 0;
  background-color: #bce4c4;
  color: #144e3c;
}

.footer-col h4 {
  gap: 8px;
  margin-bottom: 10px;
  font-size: 1.0rem;
  font-weight: 600;
}

.footer-logo {
  width: 75px;
  margin-bottom: 10px;
}

.descricao {
  font-size: 0.6rem;
  line-height: 1.5;
}

.contato-menor {
  font-size: 0.9rem;
  line-height: 1.4;
  
}

.footer-col i {
  font-size: 1.1rem;
  color: #144e3c;
}


/* Mobile: empilhar colunas */
@media (max-width: 768px) {
  .footer-row {
    flex-direction: column;
  }

  .footer-col {
    width: 100%;
  }
}
/* Banner Naturalidade2 -----------------------------------------------------------------------------------*/
.banner-naturalidade2 {
  background-color: #bce4c4;
  padding: 60px 20px;
  color: #1b3c36;
}

.banner-grid2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 20px;
}

.banner-titulo2,
.banner-texto2 {
  flex: 1 1 48%;
  font-family: 'Playfair Display', serif;
}

.banner-titulo2 h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 0;
}

.banner-texto2 p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: #1b3c36;
}

.btn-banner-agendar {
  font-family: 'Playfair Display', serif;
  background-color: #1b3c36;
  color: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  display: inline-block;
  width: auto;
  white-space: nowrap;
  transition: background-color 0.3s ease;
}

.btn-banner-agendar:hover {
  background-color: #144e3c;
}

@media (max-width: 768px) {
  .banner-grid2 {
    flex-direction: column;
    text-align: center;
  }
  .banner-titulo2,
  .banner-texto2 {
    flex: 1 1 100%;
  }
}
/* Banner Naturalidade3 ----------------------------------------------------------------------*/
.banner-naturalidade3 {
  background-color: #bce4c4;
  padding: 60px 20px;
  color: #1b3c36;
}

.banner-grid3 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 20px;
}

.banner-titulo3,
.banner-texto3 {
  flex: 1 1 48%;
  font-family: 'Playfair Display', serif;
}

.banner-titulo3 h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 0;
}

.banner-texto3 p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: #1b3c36;
}

.btn-banner-agendar {
  font-family: 'Playfair Display', serif;
  background-color: #1b3c36;
  color: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  display: inline-block;
  width: auto;
  white-space: nowrap;
  transition: background-color 0.3s ease;
}

.btn-banner-agendar:hover {
  background-color: #144e3c;
}

@media (max-width: 768px) {
  .banner-grid3 {
    flex-direction: column;
    text-align: center;
  }
  .banner-titulo3,
  .banner-texto3 {
    flex: 1 1 100%;
  }
}

/* NOVO: Procedimentos em Grade---------------------------------------------------------------------2 */
.card-proc2 {
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  height: 350px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  position: relative;
  animation: fadeInUp 1s ease forwards;
  transition: transform 0.3s ease;
}

.card-proc2:hover {
  transform: translateY(-5px);
}

.card-proc2.destaque {
  grid-row: span 2;
  height: 100%;
  min-height: 500px;
}

.card-proc2.destaque-horizontal {
  grid-column: span 2;
  min-height: 250px;
}

.card-proc2 .overlay {
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  padding: 1.2rem;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-align: left;
}

.card-proc2 h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #fff;
}

.card-proc2 p {
  font-size: 0.95rem;
  margin-bottom: 1rem;
  color: #eee;
}

.card-proc2 a {
  background-color: #1b3c36;
  color: white;
  padding: 8px 16px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  width: fit-content;
  font-size: 0.9rem;
  transition: background 0.3s ease;
}

.card-proc2 a:hover {
  background-color: #144e3c;
}
/* NOVO: Procedimentos em Grade---------------------------------------------------------------------3 */
.card-proc3 {
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  height: 350px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  position: relative;
  animation: fadeInUp 1s ease forwards;
  transition: transform 0.3s ease;
}

.card-proc3:hover {
  transform: translateY(-5px);
}

.card-proc3.destaque {
  grid-row: span 2;
  height: 100%;
  min-height: 500px;
}

.card-proc3.destaque-horizontal {
  grid-column: span 2;
  min-height: 250px;
}

.card-proc3 .overlay {
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  padding: 1.2rem;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-align: left;
}

.card-proc3 h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #fff;
}

.card-proc3 p {
  font-size: 0.95rem;
  margin-bottom: 1rem;
  color: #eee;
}

.card-proc3 a {
  background-color: #1b3c36;
  color: white;
  padding: 8px 16px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  width: fit-content;
  font-size: 0.9rem;
  transition: background 0.3s ease;
}

.card-proc3 a:hover {
  background-color: #144e3c;
}

/* NOVO: Procedimentos em Grade---------------------------------------------------------------------4 */
.card-proc4 {
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  height: 350px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  position: relative;
  animation: fadeInUp 1s ease forwards;
  transition: transform 0.3s ease;
}

.card-proc4:hover {
  transform: translateY(-5px);
}

.card-proc4.destaque {
  grid-row: span 2;
  height: 100%;
  min-height: 500px;
}

.card-proc4.destaque-horizontal {
  grid-column: span 2;
  min-height: 250px;
}

.card-proc4 .overlay {
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  padding: 1.2rem;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-align: left;
}

.card-proc4 h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #fff;
}

.card-proc4 p {
  font-size: 0.95rem;
  margin-bottom: 1rem;
  color: #eee;
}

.card-proc4 a {
  background-color: #1b3c36;
  color: white;
  padding: 8px 16px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  width: fit-content;
  font-size: 0.9rem;
  transition: background 0.3s ease;
}

.card-proc4 a:hover {
  background-color: #144e3c;
}

#contato {
  display: flex;
  flex-direction: column;
  align-items: center;
}