@import url('https://fonts.googleapis.com');

body, html {
    font-family: 'Poppins', Helvetica, sans-serif;
    overflow-x: hidden !important;
    scroll-behavior: smooth;
}

.header-bg {
    background-image: url('img/Authenti_Rnd_01.jpg');
    /* Replace with actual image */
    width: 100vw;
    height: 100vh;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    /* Gold */
}

.dark-bg {
    background-color: #0b180d;
    /* Dark green */
    color: #fffaf3;
}

.beige-bg {
    background-color: #fffaf3;
    /* Beige */
    color: #004d40;
}

.navbar-brand img {
    max-height: 50px;
    /* Adjust as needed */
}

.nav-link {
    color: #fffaf3 !important;
    /* Gold for menu links */
}

.navbar-toggler {
    border-color: #fffaf3;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23d4af37' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.logo {
    color: #a48a2d;
    font-size: 24px;
    font-weight: bold;
}

.btn-gold {
    background-color: #a48a2d;
    color: #004d40;
    border: none;
}

.btn-gold-outline {
    border: 2px solid #a48a2d;
    color: #a48a2d;
    background-color: transparent;
    border-radius: 0.75rem;
    font-weight: bold;
}

.btn-gold-outline:hover {
    border: 2px solid #a48a2d;
    color: #fffaf3;
    background-color: #a48a2d;
    border-radius: 0.75rem;
    font-weight: bold;
}

.btn-gold-outline.active {
    border: 2px solid #a48a2d;
    color: #fffaf3;
    background-color: #a48a2d;
    border-radius: 0.75rem;
    font-weight: bold;
}

.footer-bg {
    background-color: black;
    color: #fffaf3;
}

.txtGold {
    color: #a48a2d;
    font-weight: bold;
}

.image-wrapper {
    overflow: hidden;
    /* Esconde o overflow da imagem ao zoomar */
}

.imgZoom {
    transition: transform 0.3s ease;
    /* Transição suave para o zoom */
}

.imgZoom:hover {
    transform: scale(1.1);
    /* Aumenta o tamanho em 10% ao passar o mouse */
}

.card {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: transparent;
    background-clip: border-box;
    border: none;
    border-radius: .25rem;
    transition: transform 0.3s ease;
}

.card-title {
    margin-bottom: .75rem;
    font-weight: 300 !important;
    text-align: center;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: scale(1.1);
    cursor: pointer;
    color: #a48a2d !important;
}

/*.nav-pills .nav-link.active, .nav-pills .show>.nav-link, .page-item.active, .page-link{
    color: #a48a2d !important;
    background-color: #004d40 !important;
    font-weight: bold !important;
    border-color: #004d40 !important;
    border-radius: 0.7rem !important;
}

.nav-pills .nav-link {
    background: #fffaf3;
    border: 1px solid #004d40;
    border-radius: .25rem;
    color: #004d40 !important;
    border-radius: 0.7rem !important;
}*/

#whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    /* Cor verde do WhatsApp */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 1000;
    /* Garante que fique sobre outros elementos */
    animation: pulse 2s infinite ease-in-out;
    /* Adiciona a animação de pulsar a cada 2s */
}

#whatsapp-button:hover {
    transform: scale(1.2);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    animation: none;
    /* Pausa a animação ao hover para evitar conflito */
}

#whatsapp-button img {
    width: 40px;
    height: 40px;
}

.breadcrumb {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: .75rem 1rem;
    margin-bottom: 1rem;
    list-style: none;
    background-color: #eaefe9;
    border-radius: .25rem;
}

a {
    color: #004d40;
}

/* Estilização do Modal */
.modal-content {
    border-radius: 20px;
    border: none;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.modal-header {
    border-bottom: none;
    padding-top: 30px;
}

.modal-footer {
    border-top: none;
    padding-bottom: 30px;
}

/* Scroll suave para o texto jurídico */
.terminos-scroll {
    max-height: 300px;
    overflow-y: auto;
    background: #f1f3f5;
    padding: 20px;
    border-radius: 10px;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #495057;
}

/* Customização do scrollbar */
.terminos-scroll::-webkit-scrollbar {
    width: 6px;
}

.terminos-scroll::-webkit-scrollbar-thumb {
    background: #ced4da;
    border-radius: 10px;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
        /* Ajuste o valor para um pulsar sutil; aumente para mais visível */
    }

    100% {
        transform: scale(1);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .product-images {
        flex-direction: column;
    }

    .header-bg {
        width: 100vw;
        /* Resolve o problema da barra de endereços do Safari Mobile */
        height: 35vh !important; 
        height: 35svh !important; /* Small Viewport Height - O "jeito Safari" moderno */
    }
}