/* ========== RESET ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.5;
    background: #fff;
    color: #333;
}

/* ========== HEADER ========== */
.site-header {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 14px 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
}

.logo-wrap {
    display: flex;
    align-items: center;
}

.logo-link {
    display: block;
}

.logo-img {
    height: auto;
    width: 200px;
    display: block;
    object-fit: contain;
}

.header-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.btn {
    text-decoration: none;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 8px;
    display: inline-block;
}

.btn-blog {
    --accent: #47594E;
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
    padding: 10px 18px;
    border-radius: 999px;
    transition: transform 0.18s ease, background-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-blog:hover {
    animation: header-pulse 1s infinite;
    background-color: var(--accent);
    color: #fff;
    box-shadow: 0 12px 30px rgba(255, 255, 255, 0.16);
}

.btn-contact {
    --accent: #47594E;
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
    padding: 10px 18px;
    border-radius: 999px;
    transition: transform 0.18s ease, background-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-contact:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(71, 89, 78, 0.08);
}

.btn-contact:hover {
    animation: header-pulse 1s infinite;
    background-color: var(--accent);
    color: #fff;
    box-shadow: 0 12px 30px rgba(255, 255, 255, 0.16);
}

@keyframes header-pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.04);
    }

    100% {
        transform: scale(1);
    }
}

/* ========== BLOG ========== */
.blog {
  padding: 60px 10%;
}

.blog h1 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  text-align: center;
}

.post {
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 20px;
}

.post h2 {
    color: #fff;
  margin-bottom: 10px;
  text-align: center;
}
.post p {
    color: #fff;
  margin-bottom: 10px;
  text-align: center;
}
.post .btn {
  margin-top: 10px;
  display: inline-block;
  background: #47594E;
  color: #fff;
  padding: 8px 12px;
  border-radius: 6px;
  text-decoration: none;
}

/* ======= GALERIA ESTILO ESPELHO ======= */
.mirror-card {
  width: 100%;
  max-width: 720px;
  margin: 0 auto 24px;
  border-radius: 18px;
  padding: 18px;
  aspect-ratio: 1 / 1;
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 12px;
  background-color: #012e10;
  box-shadow: 0 8px 30px rgba(71,89,78,0.10), 0 0 60px rgba(71,89,78,0.06) inset;
  border: 1px solid rgba(255,255,255,0.06);
  backdrop-filter: blur(6px) saturate(120%);
  -webkit-backdrop-filter: blur(6px) saturate(120%);
  position: relative;
}

.mirror-media {
  display: grid;
  /* três colunas iguais para as duas imagens + vídeo */
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  align-items: stretch; /* faz as mídias preencherem a área disponível verticalmente */
  justify-items: center;
  padding: 6px;
}

/* agora as mídias dimensionam-se responsivamente para caber dentro da área reservada */
.mirror-media img,
.mirror-media video {
  width: 100%;
  height: 100%;
  object-fit: cover; /* mantém crop agradável */
  border-radius: 10px;
  box-shadow: 0 6px 18px rgb(241, 240, 240);
  border: 2px solid rgb(255, 255, 255);
  background-color: #fff;
}


.mirror-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 18px;
  box-shadow: 0 16px 60px rgba(71,89,78,0.10);
  filter: blur(16px);
  z-index: -1;
}

/* Remove fundo cinza dos posts com galeria */
.post {
  background: transparent;
  padding: 0;
  margin-bottom: 28px;
}



/* ========== FOOTER ========== */
.site-footer {
    background: #012e10;
    color: #fff;
    font-family: Arial, sans-serif;
    padding: 40px 10%;
}

/* Topo do footer: 3 colunas */
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
}

/* Coluna 1: Logo principal */
.footer-logo img {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    max-width: 280px;
    height: auto;
}

/* Coluna 2: Logos com texto */
.footer-logos {
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.footer-logos .logo-item {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #fff;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.footer-logos .logo-item:hover {
    transform: scale(1.05);
    opacity: 0.8;
}

.footer-logos .logo-item img {
    width: 50px;
    height: auto;
}

.footer-logos .logo-item span {
    color: #fff;
    font-size: 1rem;
}

/* Coluna 3: Contatos e mini mapa */
.footer-contacts {
    align-items: flex-start;
    text-align: left;
}
.footer-contacts p {
    margin: 6px 0;
}
.footer-contacts .mini-map iframe {
    width: 100%;
    height: 80px;
    border: 0;
    border-radius: 6px;
    margin-top: 8px;
}

/* Linha branca */
.footer-line {
    height: 2px;
    background-color: #fff;
    margin: 20px 0;
    width: 100%;
}

/* Rodapé inferior: direitos autorais e redes sociais */
.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

/* Link copyright */
.footer-bottom .copyright-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.2s ease;
}

.footer-bottom .copyright-link:hover {
    opacity: 0.7;
}

