body {
    background: #f8f9fa;
}

section{
    padding: 20px 10px;
    
}

.hero {
    background: #fff;
    padding: 60px 0;
    min-height: 600px;
    text-align: left;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #111111 0.8%, rgba(17, 17, 17, 0.4) 30%, rgba(17, 17, 17, 0.2) 60%, transparent 100%);
    z-index: 2;
}
.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}
.hero .container {
    position: relative;
    z-index: 3;
    margin-left: 60px;
    margin-bottom: 15px;
}
.hero h1 {
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}
.hero .lead {
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
    font-size: 1.25rem;
    margin-bottom: 2rem;
}
.hero .btn-primary {
    background: #f3690c;
    border-color: #f3690c;
    border:solid 1px #FFF;
}
.hero .btn-primary:hover {
    background: #000000;
    border-color: #000000;
}
.hero .btn-outline-light {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
}
.hero .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid #fff;
}
.features {
    padding: 40px 0;
    background: #fdf6f1;
}
.features .display-4 {
    color: #f3690c !important;
}
.features h4 {
    color: #000000;
}

/* Seção Parallax */
.parallax-section {
    position: relative;
    height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('images/paralax.jpeg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}



.parallax-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(17, 17, 17, 0.8) 0%, rgb(193, 153, 43, 0.2) 50%, rgba(17, 17, 17, 0.5) 100%);
    z-index: 2;
}

.parallax-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #fff;
    padding: 2rem;
}

.parallax-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    color: #fff;
}

.parallax-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
    color: #fff;
    opacity: 0.9;
}

.parallax-btn {
    background: #25d366;
    border: 2px solid #fff;
    font-size: 1.1rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.parallax-btn:hover {
    background: #128c7e;
    border-color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    color: #fff;
}

/* Responsividade para dispositivos móveis */
@media (max-width: 768px) {
    .parallax-section {
        height: 400px;
    }
    
    .parallax-title {
        font-size: 2.2rem;
    }
    
    .parallax-subtitle {
        font-size: 1.1rem;
    }
    
    .parallax-btn {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }
    
    .parallax-bg {
        background-attachment: scroll;
    }
}

@media (max-width: 576px) {
    .parallax-section {
        height: 350px;
    }
    
    .parallax-title {
        font-size: 1.8rem;
    }
    
    .parallax-subtitle {
        font-size: 1rem;
    }
}

.footer {
    background: #000000;
    color: #fff;
    padding: 20px 0;
    text-align: center;
    border-top: 3px solid transparent;
    border-image: linear-gradient(45deg, #f7e27c, #c09a2a, #a17913) 1;    
}
.navbar {
    background: #000 !important;
    border-bottom: 2px solid #c09a2a;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.nav-link.active {
    color: #fff !important;
    font-weight: bold;
}
.navbar-brand {
    padding: 0;
    background-color: #000000;
    padding: 8px 12px 0 12px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    height: 75px;
    width: 200px;
    top: 0;
    border-radius: 0 0 10px 10px;
    border-bottom: 2px solid #c09a2a;
    z-index: 10;
    overflow: hidden;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
}
.navbar-brand img {
    width: 176px;
    height: auto;
}

@media (max-width: 575px) {
    .navbar-brand {
        padding: 12px 10px 0 10px;
        height: 66px;
        width: 170px;        
    }
    .navbar-brand img {
        width: 150px;
        height: auto;
    }    
}

.nav-link {
    color: #c09a2a !important;
}
.nav-link:hover {
    color: #c09a2a !important;
}
#formContato .btn-primary {
    background: #000000;
    border-color: #FFFFFF;
}
#formContato .btn-primary:hover {
    background: #000000;
    border-color: #000000;
}
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1050;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}
@media (max-width: 575px) {
    .whatsapp-float {
        width: 48px;
        height: 48px;
        bottom: 15px;
        right: 15px;
        font-size: 1.5rem;
    }
}
#lojas {
    padding: 40px 0 60px 0;
    
}
#contato {
    background: #c09a2a;
    background: linear-gradient(45deg,
    #f7e27c 0%,      /* tom bem claro dourado */
    #e6c84f 25%,     /* dourado claro */
    #c09a2a 50%,     /* dourado base */
    #a17913 75%,     /* dourado escuro */
    #e6c84f 100%     /* volta pro dourado claro */
    );

    padding-top: 40px;
    padding-bottom: 40px;
    margin-bottom: 40px;
}

#tags-seo{
    padding: 40px 0 60px 0;
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 16px;
}
.tag-cloud .tag {
    display: inline-block;
    background: #00000022;
    color: #000000;
    font-weight: 500;
    border-radius: 20px;
    padding: 8px 18px;
    font-size: 1rem;
    transition: background 0.2s, color 0.2s;
    border: 1px solid #00000044;
}
.tag-cloud .tag:hover {
    background: #c09a2a;
    color: #fff;
    cursor: pointer;
}
.navbar .d-flex {
    margin-left: auto;
}
.navbar .d-flex a {
    color: #c09a2a;
}
.navbar .d-flex a:hover {
    color: #ffffff;
}

.hero-cta .btn-primary{
    background: #c09a2a;
    border-color: #c09a2a;
    color: #000000;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0.75rem 1.5rem;
    border-radius: 15px;
}

.hero-cta .btn-primary:hover{
    background: #000000;
    border-color: #000000;
    color: #c09a2a;
}

.hero-benefits {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 2rem;
    background: rgba(255, 255, 255, 0.3);
    padding: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(5px);
    width: fit-content;
    max-width: 650px;
}
.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
}
.benefit-item i {
    font-size: 1.2rem;
    color: #28a745;
}
.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.hero-urgency {
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
    font-size: 1rem;
    background: #198754 ;
    padding: 0.75rem 1.5rem;
    border-radius: 15px;
    display: inline-block;
    margin-top: 1rem;
}
.hero-urgency i {
    color: #ffc107;
    margin-right: 0.5rem;
}

.whatsapp-btn {
    background: #198754  !important;
    border-color: #25D366 !important;
    color: white !important;
    text-shadow: none !important;
}

.whatsapp-btn:hover {
    background: #128C7E !important;
    border-color: #128C7E !important;
    color: white !important;
}

@media (max-width: 768px) {
    .hero .container {
        margin-left: 0;
        text-align: center;
    }
    .hero-cta {
        flex-direction: column;
    }
    .hero-cta .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    .hero-benefits {
        font-size: 1rem;
        margin: 0 auto 2rem auto;
    }
}
#depoimentos {
    background: #000000;
    padding: 40px 0 60px 0;
}
@media (max-width: 768px) {
    #depoimentos {
        padding: 40px 20px;
        margin: 20px 10px;
    }
    #depoimentos .row {
        margin: 0;
    }
    #depoimentos .col-md-6 {
        padding: 0 10px;
    }
}
.stars {
    font-size: 1.2rem;
}
.stars i {
    margin: 0 2px;
}
#depoimentos .card {
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#depoimentos .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15) !important;
}
#depoimentos .card-title {
    color: #c09a2a;
    font-weight: 600;
    margin-top: 1rem;
}
.product-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}
.product-image {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}
.product-content {
    padding: 1.5rem;
    text-align: center;
}
.product-content h4 {
    color: #000000;
    margin-bottom: 1rem;
}
.product-content p {
    color: #666;
    line-height: 1.6;
}
.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.hero-slideshow .hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}
.hero-slideshow .hero-image.active {
    opacity: 1;
} 