.bg-offwhite{
    background-color: #F4F6E7;
}
.color-offwhite{
    color: #F4F6E7;
}
.bg-brown{
    background-color: #8D442B;
}
.color-brown{
    color: #8D442B;
}

.color-white{
    color: #fff;
}

html {
    scroll-behavior: smooth;
}

/* Botão marrom com comportamento de hover */
.btn.btn-brown {
    background: #8D442B; 
    border-color: #8D442B; 
    color: #fff;
}
.btn.btn-brown:hover, .btn.btn-brown:focus {
    background: transparent; 
    color: #8D442B;
}

/* Botão transparente branco com hover marrom */
.btn.btn-transparent-white:hover, .btn.btn-transparent-white:focus {
    color: #8D442B !important;
}

/* Links do header com hover marrom */
.navbar .navbar-nav > li > a:hover,
.navbar .navbar-nav > li > a:focus {
    color: #8D442B !important;
}

/* Ícones sociais do header com hover marrom */
.header-social-icon a:hover svg path,
.header-social-icon a:focus svg path {
    fill: #8D442B !important;
}

@media (min-width: 992px) {
    .big-text1 {
        font-size: 2.5rem;
        line-height: 2.7rem;
    }

    .big-text2 {
        font-size: 1.8rem;
        line-height: 2.0rem;
    }
}

/* Ícones SVG com cor controlável */
.icon-brown {
    color: #8D442B;
}

.icon-brown path {
    fill: currentColor;
}

/* Logo do rodapé responsiva */
.footer-logo-responsive {
    width: 180px;
    height: auto;
    max-width: 100%;
}

@media (min-width: 992px) {
    .footer-logo-responsive {
        width: 220px;
    }
}

@media (max-width: 576px) {
    .footer-logo-responsive {
        width: 100%;
    }
}

/* Botão flutuante de WhatsApp */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.whatsapp-float:hover {
    background-color: #25D366;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    transform: scale(1.15);
    filter: none;
}

.whatsapp-float svg {
    width: 48px;
    height: 48px;
}

/* Responsivo para mobile */
@media (max-width: 768px) {
    .footer-logo-link {
        display: block;
        width: 100%;
        text-align: center;
    }

    .whatsapp-float {
        width: 48px;
        height: 48px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float svg {
        width: 40px;
        height: 40px;
    }

}