/*
Theme Name: Konte Child Theme
Theme URI: http://konte.uix.store/
Author: UIX Themes
Author URI: http://uix.store
Description: A fully responsive Premium WordPress Theme with a pixel perfect design and extensive functionality
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: konte
Tags: one-column, two-columns, right-sidebar, custom-colors, custom-menu, featured-images, flexible-header, microformats, post-formats, rtl-language-support, sticky-post, threaded-comments, translation-ready
Template: konte
*/
/* Imagem centrada e 100% responsiva (desktop + mobile) */
.footer-imagem{
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px 12px;   /* espaço “respirável” no mobile */
  margin: 0 auto;
}

.footer-imagem img{
  width: 100%;
  max-width: 600px;     /* nunca passa de 600px */
  height: auto;         /* mantém proporção */
  display: block;       /* evita espaços estranhos */
}

/* Ajustes finos por breakpoint (opcional, mas ajuda) */
@media (max-width: 480px){
  .footer-imagem{
    padding: 12px 10px;
  }
  .footer-imagem img{
    max-width: 92vw;    /* garante margens em ecrãs pequenos */
  }
}

@media (min-width: 1024px){
  .footer-imagem{
    padding: 20px 12px;
  }
}
