body {
    background-color: #f8f9fa;
    font-family: Arial, sans-serif;
}

.card {
    border-radius: 10px;
}

.card-header {
    background-color: #007bff;
    color: white;
    font-size: 1.5rem;
    border-radius: 10px 10px 0 0;
    text-align: center;
}

.btn-primary {
    background-color: #007bff;
    border: none;
}

.is-invalid {
    border-color: #dc3545;
}

.invalid-feedback {
    color: #dc3545;
    font-size: 0.875em;
}

.imagem-personalizada {
    width: 300px;
    /* Largura fixa */
    height: 200px;
    /* Altura fixa */
    object-fit: cover;
    /* Ajusta a imagem sem distorcer */
    border-radius: 10px;
    /* Borda arredondada */
}

/* Imagem responsiva */
.imagem-responsiva {
    max-width: 12%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
}
/* Selo de Segurança google */
.selo-google {
    max-width: 60%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
}        

.vermelho-padrao-site {
    background-color: #9B0000 !important;
}

.topo-header {
    
}

/* Icones das redes sociais */
.social-icons {
  gap: 15px;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 10px; /* Cantos levemente arredondados */
  font-size: 1.8rem;
  text-decoration: none;
  color: white;
  transition: all 0.3s ease;
}

.social-icon.facebook {
  background-color: #3b5998; /* Azul do Facebook */
}

.social-icon.instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-icon.twitter {
  background-color: #1da1f2; /* Azul do Twitter */
}

.social-icon.youtube {
  background-color: #ff0000; /* Vermelho do YouTube */
}

.social-icon:hover {
  filter: brightness(1.2);
  transform: scale(1.1);
}
.imagem-container{
  height: 260px;            /* altura padronizada dos cards */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: .5rem;
  background: #fff;
}
.imagem-container img{
  max-height: 100%;
  width: auto;
  object-fit: contain;      /* respeita proporção, sem cortar */
}
.card .descricao{ margin-top: .75rem; }


/* ===== Layout com respiro e cantos arredondados ===== */
:root {
  --gutter: 20px;   /* distância das bordas */
  --radius: 18px;   /* raio padrão dos cantos */
}

/* afasta todo o conteúdo das bordas da janela */
body {
  padding: var(--gutter);
}

/* header e footer arredondados e com leve sombra */
header, footer {
  border-radius: var(--radius);
  overflow: hidden; /* garante que o fundo interno acompanhe o raio */
  box-shadow: 0 8px 24px rgba(0,0,0,.06);
}

/* evita conteúdo interno com cantos "quadrados" no header/footer */
header > *, footer > * {
  border-radius: inherit;
}

/* barra lateral (use o(s) seletor(es) que existir(em) no seu fragment) */
aside,
.sidebar,
.barra-lateral {
  border-radius: var(--radius);
  margin-left: var(--gutter);
  margin-right: var(--gutter);
}

/* cartões dentro da lateral também levemente arredondados */
aside .card,
.sidebar .card,
.barra-lateral .card {
  border-radius: calc(var(--radius) - 6px);
}

/* "quadradinhos flutuantes" (redes sociais, etc.) um pouco mais soltos */
.social-icon {
  border-radius: 12px;           /* já tinha 10px; fica mais suave */
  margin-left: 6px;
  margin-right: 6px;
}

/* se usar .container-fluid, mantém o respiro nas laterais em telas largas */
@media (min-width: 992px) {
  .container-fluid {
    padding-left: var(--gutter);
    padding-right: var(--gutter);
  }
}

.footer-links .footer-link {
    color: #fff;
    text-decoration: none;
    font-size: 1.00rem;
}

.footer-links .footer-link:hover {
    text-decoration: underline;
}
