body {
    font-family: 'Arial', sans-serif;
    background-image: url(/static/imagens/bgs/fundo.jpg);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover; /* ou use 'auto' se preferir o tamanho original */
    background-attachment: fixed; /* Faz com que a imagem role junto com a página */
    scroll-behavior: smooth;
}


.hero-about {
    background-image: linear-gradient(rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.7)),
        url('/static/imagens/thumbs/melhorcomchopp.png');
    background-size: cover;
    background-position: center;
}

.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.7)),
        url('/static/imagens/thumbs/melhorcomchopp.png');
    background-size: cover;
    background-position: center;
}

.logo-text {
    font-family: 'Alfa Slab One', cursive;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #ffcc28;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.timeline-item {
    position: relative;
    padding-left: 60px;
    margin-bottom: 30px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    height: 100%;
    width: 2px;
    background: #db383c;
}

.timeline-icon {
    position: absolute;
    left: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #db383c;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}
/*Card Amarelo*/
.team-card-amarelo,
.beer-card-amarelo {
    background-color: #2d2d2d;
    border-left: 4px solid #e9da4d;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.beer-card-amarelo::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, #e9da4d, transparent);
    transition: 0.5s;
}

.beer-card-amarelo:hover::before {
    left: 100%;
}

.beer-card-amarelo:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px #e9da4d;
}

.team-card-amarelo:hover,
.beer-card-amarelo:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px #e9da4d;
}

/*Card verde*/
.team-card-verde,
.beer-card-verde {
    background-color: #2d2d2d;
    border-left: 4px solid #1f6332ab;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.team-card-verde:hover,
.beer-card-verde:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px #1f6332;
}
.beer-card-verde::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, #1f63329d, transparent);
    transition: 0.5s;
}

.beer-card-verde:hover::before {
    left: 100%;
}

.beer-card-verde:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px #1f6332;
}

/*Card Roxo*/
.team-card-roxo,
.beer-card-roxo {
    background-color: #2d2d2d;
    border-left: 4px solid #4d1f63;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.team-card-roxo:hover,
.beer-card-roxo:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px #4d1f63;
}

.beer-card-roxo::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, #4d1f63, transparent);
    transition: 0.5s;
}

.beer-card-roxo:hover::before {
    left: 100%;
}

.beer-card-roxo:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px #4d1f63;
}



.process-step {
    position: relative;
    padding: 30px;
    background: #2d2d2d;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(219, 56, 60, 0.3);
}

.process-step::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 30px;
    height: 30px;
    background: #2d2d2d;
    z-index: 1;
}

.footer {
    background-color: #3f252a;
}

.mobile-menu {
    transition: all 0.3s ease;
}

.values-card {
    background: linear-gradient(135deg, #3f252a 0%, #2d2d2d 100%);
    border-left: 4px solid #db383c;
    transition: all 0.3s ease;
}

.values-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(219, 56, 60, 0.2);
}

.distributor-card {
    background-color: #2d2d2d;
    border-left: 4px solid #db383c;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.distributor-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(219, 56, 60, 0.1), transparent);
    transition: 0.5s;
}

.distributor-card:hover::before {
    left: 100%;
}

.distributor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(219, 56, 60, 0.2);
}
/*--------- INICIO Contato ---------*/

.card {
    background-color: #101827;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #db383c;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item {
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(219, 56, 60, 0.3);
}

.map-marker {
    color: #db383c;
    animation: pulse-slow 2s infinite;
}

.floating-beer {
    animation: float 6s ease-in-out infinite;
}

.section-divider {
    height: 100px;
    background: linear-gradient(to bottom, #1a1a1a, #3f252a);
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #db383c;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 99;
}

.back-to-top.visible {
    opacity: 1;
}

.back-to-top:hover {
    transform: translateY(-5px);
    background-color: #ffcc28;
    color: #3f252a;
}
/* Produtos Home */

       
        .beer-section {
            position: relative;
            padding: 60px 0;
            transition: all 0.3s ease;
            border-bottom: 1px solid rgba(255, 204, 40, 0.1);
            margin-bottom: 1.5rem;
        }
        
        .beer-image-container {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100%;
        }
        
        .beer-image {
            filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.5));
            transition: all 0.3s ease;
            height: 300px;
            object-fit: contain;
            z-index: 2;
        }
        
        .beer-section:hover .beer-image {
            transform: scale(1.1);
        }
        
        .beer-fan {
            position: absolute;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(219,56,60,0.2) 0%, rgba(255, 204, 40, 0.102) 50%, rgba(63,37,42,0) 70%);
            border-radius: 50%;
            opacity: 0;
            transition: opacity 0.5s ease;
            z-index: 1;
        }
        
        .beer-section:hover .beer-fan {
            opacity: 1;
        }
        
        .beer-name {
            font-family: 'Special Elite', cursive;
            position: relative;
            display: inline-block;
        }
        
        .beer-name::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #ffcc28;
            transition: width 0.3s ease;
        }
        
        .beer-section:hover .beer-name::after {
            width: 100%;
        }
        
        .beer-spec {
            border-left: 2px solid #db383c;
            padding-left: 8px;
            margin-bottom: 8px;
        }

        /* Catalogo */

        .card-prod {
    background-color: #1f2937;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}