html, body {
    margin: 0;
    overflow-x: hidden;
    padding: 0;
    font-family: 'Merriweather', serif;
    background-color: #ffffff;
    color: #333333;
}

/*Config do top bar*/
.top-bar {
  background-color: #ffc107;
  color: #fff;
  padding: 10px 0;
  text-align: center;
  font-size: 0.9rem;
}

.top-bar i {
    margin-right: 6px;
}

.top-bar a {
    text-decoration: none;
}

.top-bar-social i {
    font-size: 1rem;
}

.top-bar-info span {
    margin-right: 15px;
    white-space: nowrap;
}

.container { /*fazer o conteúdo principal ocupar o espaço restante*/
    flex: 1;
}

/*Config do navbar*/
.navbar-dark .navbar-nav .nav-link {
    color: #fff;
    font-weight: bold;
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: #ffc107;
}

h1 {
    color: #ffc107;
}

.logo-hover img {
    transition: opacity 0.3s ease-in-out;
}

.logo-hover:hover img {
    content: url("/images/logo_mostarda.png");
}

/*Config da imagem de bem vindo nova*/
.hero-home {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: 600px;
  display: block;
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  padding: 20px;
  background-color: rgba(0,0,0,0.5);
  border-radius: 10px;
  width: 90%;
  max-width: 700px;
  text-align: center;
}

/*Configuração do carrosel de imagens na página inicial*/

.carousel {
    width: 80%;
    margin: 0 auto;
}

.carousel-inner img {
    max-width: 100%;
    max-height: 550px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/*Cards interativos página inicial 1*/

.container-cards {
    background-size: cover;
    background-position: center;
    padding: 50px 0;
    border-radius: 15px; /* Para um toque mais elegante */
}

.section-title {
    font-size: 50px;
    color: #ffc107;
    font-weight: bold;
    text-shadow: -1px -1px 0 #000,  
                 1px -1px 0 #000,  
                 -1px 1px 0 #000,  
                 1px 1px 0 #000;
    margin-bottom: 10px;
}


.section-subtitle {
    color: #333;
    font-weight: bold;
    margin-bottom: 40px;
}

.card-custom {
    background-color: rgba(255, 255, 255, 0.9); /* Transparência para destacar os cards sem esconder o fundo */
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-custom:hover {
    transform: translateY(-10px);
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
}

.icon-container {
    background-color: #ffc107;
    color: #fff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
}

.icon-custom {
    font-size: 30px;
}

.card-custom h3 {
    color: #333;
    font-weight: bold;
    margin-bottom: 15px;
}

.card-custom p {
    color: #666;
    margin-bottom: 20px;
}

.cta-link {
    color: #ffc107;
    font-weight: bold;
    text-decoration: none;
}

.cta-link i {
    margin-left: 5px;
}

.cta-link:hover {
    text-decoration: underline;
}


/*Configuração do rodape*/

footer {
    background-color: #343a40;
    color: #ffffff;
    padding: 50px 0;
    text-align: center;
    position: relative;
    width: 100%;
}

footer h5 {
    margin-bottom: 20px;
    font-weight: bold;
}

.payment-icons i,
.social-icons i {
    font-size: 2rem;
    margin-right: 15px;
}

.payment-icons i {
    color: #ffc107;
}

.social-icons i {
    color: #ffc107;
}

footer a:hover {
    color: #ffc107;
}

footer .col-md-4 p {
    margin-bottom: 5px;
}

footer .social-icons a {
    text-decoration: none;
}

/*Botão flutuante de WhatsApp*/

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    z-index: 1000;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #1ebc59;
}