/* Paleta de Cores */
:root {
    --marron-claro: #fcebe3;
    --cinza-gelo: #f8f9fa;
    --gradiente-sutil: linear-gradient(to top right,#ffffff, #e2c4af, #ffffff);
}

body {
    background: var(--gradiente-sutil);
    background-color: var(--gradiente-sutil);
    font-family: Arial, sans-serif;
}

.navbar {
    /*background: linear-gradient(to bottom right, #e2c4af, black);*/
    border-bottom: 1px solid rgba(248, 182, 134, 0.5); /* Borda sutil */
}

footer {
    min-height: 100px;
    padding: 5px 60px 5px 60px;
}

footer a,  footer a:visited {
    text-decoration: none;
    color: white;
}

h1, h2, h3 {
    color: #5a3e36; /* Marrom escuro */
}

p {
    font-size: 16pt;
}

.navbar-nav li {
    font-size: 14pt;
}

.content {
    scroll-margin-top: 70px; /* Ajuste para o tamanho do cabeçalho */
    padding: 100px 20px; /* Apenas para visualização melhor */
}

/* Galeria estilo Instagram */
.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    justify-content: center;
}

.gallery img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 5px;
    border: solid 5px white;
    transition: transform 0.3s ease-in-out;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.gallery img:hover {
    transform: scale(1.05);
}

#criadora-img{
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border: solid 5px white;
    border-radius: 15px;
    transition: transform 0.3s ease-in-out;
    box-shadow: 0px 4px 6px rgba(10, 10, 10, 0.2);

}

#secao-contato a {
    text-decoration: none;
    color: black;
}

.whatsapp-button, .instagram-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    z-index: 1000;
    animation: pulse 1.5s infinite alternate;
}

.whatsapp-button img, .instagram-button img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.instagram-button {
    left: 20px;
}

.instagram-button img {
    border-radius: 25%;
}

.quebra_linha_titulo{
    display: none;
}

@keyframes pulse {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

@media (max-width: 1000px) {
  .img-fluid-flex {
    display: none;
  }
}

@media (min-width: 1000px) {
  .img-fluid-flex-inverso {
    display: none;
  }
}

@media (max-width: 300px) {
  .quebra_linha_titulo {
    display: block;
  }
}