@charset "UTF-8";

/* estilo.css */

/* ===== CONTAINER PADRÃƒO (1400px) ===== */
.interface,
.galeria-container {
  background-image: url('../image/fundo.jpg');
  background-color: #f5f5f5;
  max-width: 1400px;
  margin: 0 auto 60px; 
  padding: 0 20px;
  border-radius: 0px; /* arredondamento */
}

/* ===== HEADER ===== */
.header-site {
  width: 100%;
  background-color: #fff;
  border-bottom: 1px solid #eee;
}

.interface {
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ===== GALERIA ===== */
.galeria-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 36px;
  padding-top: 20px;
  padding-bottom: 20px;
}

/* ===== BOX / CARD ===== */
.box-imagem {
  position: relative;
  flex: 0 1 calc(33.33% - 24px);
  border-radius: 4px;
  background: #fff;
  overflow: visible;
  z-index: 1;
  box-shadow: rgba(0, 0, 0, 0.45) 0px 30px 20px -20px;
}
/* ===== ÃREA DA IMAGEM ===== */
.box-imagem {
  width: 100%;
}

.box-imagem img {
  width: 100%;
  height: auto;              /*  mantém proporção natural */
  aspect-ratio: 1 / 1;       /* mantém formato do card */
  object-fit: cover;
  display: block;
  border-radius: 0 0 0 0;
}

/* ===== DESCRIÃ‡ÃƒO (ABAIXO DA IMAGEM) ===== */
.box-imagem .descricao {
    padding: 14px 16px;
    background: #fff;
    color: #000;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    border-radius: 0 0 0px 0px;
    text-align: center;
}

/* ===== BORDA ANIMADA ===== */
.box-imagem::before,
.box-imagem::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 0px;
  z-index: -1;

  background: linear-gradient(
    45deg,
    #ffea00,
    #00f700,
    #248bff,
    #fc00ff,
    #ffea00,
    #00f700,
    #248bff,
    #fc00ff,
    #ffea00,
    #00f700,
    #248bff,
    #fc00ff
  );
  background-size: 300%;
  animation: animarBorda 7s linear infinite;
}

/* ===== GLOW ===== */
.box-imagem::after {
  filter: blur(3px);
  opacity: 0.9;
}

/* ===== ANIMAÃ‡ÃƒO ===== */
@keyframes animarBorda {
  0% {
    background-position: 0%;
  }
  100% {
    background-position: 300%;
  }
}
/* ===== RESPONSIVIDADE ===== */

@media (max-width: 1024px) {
  .box-imagem {
    flex: 0 1 calc(50% - 20px);
  }

  .box-imagem img {
    width: 100%;
    height: auto;        /*  acompanha o card */
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
  }
}
@media (max-width: 640px) {
  .galeria-container {
    gap: 24px;
  }

  .box-imagem {
    flex: 0 1 100%;
  }

  .box-imagem img {
    width: 100%;
    height: auto;        /*  mantém proporção */
    aspect-ratio: 1 / 1;
    object-fit: cover;
  }

  .box-imagem .descricao {
    font-size: 13px;
    padding: 12px 14px;
    text-align: center;
  }

}
/* ===== RESET BÁSICO ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===== CONTAINER FLEX PADRÃO ===== */
.container-box-imagem {
  background-image: url('../image/fundo.jpg');
  background-color: #f5f5f5;

  max-width: 1400px;
  margin: 0 auto 70px;
  padding: 0 16px;

  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}

/* ===== CARD ===== */
.box-card {
  flex: 0 1 calc(33.33% - 18px);
  background: #fff;
  border-radius: 4px;
  overflow: hidden;

  display: flex;
  flex-direction: column;

  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.box-card:hover {
  transform: translateY(-0px);
}

/* ===== CONTAINER DA IMAGEM ===== */
.box-zoom {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* ===== IMAGEM ===== */
.box-zoom img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 0.8;
  object-fit: cover;
  display: block;

  transform: scale(1.08);
  transition: transform 0.6s ease, filter 0.6s ease;
}

/* ===== ZOOM CONTROLADO ===== */
.box-zoom:hover img {
  transform: scale(1.18);
  filter: brightness(1.05);
}

/* ===== DESCRIÇÃO ===== */
.box-descricao {
  padding: 16px;
}

.box-descricao h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: #222;
}

.box-descricao p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #555;
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 1024px) {
  .box-card {
    flex: 0 1 calc(50% - 20px);
  }
}

@media (max-width: 640px) {
  .box-card {
    flex: 0 1 100%;
  }
}

/* ===== Medias-Socias ===== */

*{
    margin: 0; 
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
footer {
    background-color: #242424; 
    padding: 100px 0; /* Mudei de 50px para 100px */
}
.container-footer{
    max-width: 1400px;
    padding: 0 4%;
    margin: auto;
}
.row-footer{
    display: flex;
    flex-wrap: wrap;
}

.footer-col{
    width: 25%;
    padding: 0 15px;
}
.footer-col h4{
    font-size: 22px;
    color: white;
    margin-bottom: 20px;
    font-weight: 500;
    position: relative;
    text-transform: uppercase;
}
.footer-col ul{
    list-style: none;
}
.footer-col ul li{
    margin: 10px 0;
}
.footer-col ul li a{
    font-size: 16px;
    
    color: white;
    text-decoration: none;
    font-weight: 300;
    display: block;
    transition: all 0.3s ease;
}
.footer-col h4 + ul li a{
    transition: all 0.3s ease;
}

.footer-menu ul li a{
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-menu ul li a:hover{
    color: #ff0000;
    padding-left: 6px;
}


.footer-col .medias-socias{
    margin-top: 30px;
}

.footer-col .medias-socias{
    margin-top: 30px;
    display: flex;
    gap: 10px;
}

.footer-col .medias-socias a{
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    text-decoration: none;
    transition: transform 0.35s ease, filter 0.35s ease;
}

/* Fundos oficiais */
.footer-col .medias-socias a.whatsapp { background: #25D366; }

.footer-col .medias-socias a.instagram {
    background: radial-gradient(circle at 30% 30%, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
}

.footer-col .medias-socias a.facebook { background: #1877F2; }
.footer-col .medias-socias a.youtube { background: #FF0000; }
.footer-col .medias-socias a.linkedin { background: #0A66C2; }

.footer-col .medias-socias a:hover{
    transform: scale(1.08);
    filter: brightness(1.15);
}


.footer-col .form-sub input::placeholder{
    color: white;
}

/* Responsivo */
@media (max-width: 800px) {
    .footer-col{
        width: 50%;
        margin-bottom: 30px;
    }
}
@media (max-width:600px) {
    .footer-col{
        width: 100%;
    }
}

/* fundos */
.medias-socias a.whatsapp { background: #25D366; }
.medias-socias a.instagram { background: #E1306C; }
.medias-socias a.facebook { background: #1877F2; }
.medias-socias a.youtube { background: #FF0000; }
.medias-socias a.linkedin { background: #0A66C2; }

.medias-socias a:hover {
    filter: brightness(1.1);
}

.medias-socias a {
    width: 44px;
    height: 44px;
    border-radius: 10px; /* controla o arredondado */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
}


.footer-col .medias-socias a{
    transition: all 0.35s ease;
}

/* ===== altura do rodapé ===== */

footer{
    position: relative;
    padding-bottom: 180px; /*  aumenta a altura do rodapé */
}

.footer-copy{
    position: absolute;
    bottom: 16px;            /* distância mínima do fundo */
    left: 0;
    width: 100%;

    text-align: center;
    font-size: 16px;
    color: #bdbdbd;
}


