/* ========================================
   COMPONENTES REUTILIZÁVEIS - BASE LOJA
   ======================================== */

/* Barra de Promoção */
.promo-bar {
    background: linear-gradient(90deg, #4A90E2 0%, #357ABD 100%);
    color: white;
    text-align: center;
    padding: 10px 0;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
}

/* Navbar */
.navbar-toggler-mobile {
    background: transparent;
    border: none;
    color: #2D3436;
    font-size: 24px;
    padding: 0;
    cursor: pointer;
    display: none;
    z-index: 10;
}

.navbar-brand-logo {
    height: 45px;
    width: auto;
    object-fit: contain;
}

.search-container {
    display: flex;
    width: 100%;
    border: 2px solid #E8E8E8;
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.3s;
}

.search-input {
    flex: 1;
    border: none;
    padding: 12px 18px;
    font-family: 'Quicksand', sans-serif;
    font-size: 14px;
    outline: none;
}

.search-button {
    border: none;
    color: white;
    padding: 0 18px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.theme-cart-icon,
.theme-user-icon {
    position: relative;
    color: #2D3436;
    font-size: 22px;
    transition: all 0.3s;
    text-decoration: none;
}

.theme-cart-icon:hover,
.theme-user-icon:hover {
    transform: scale(1.1);
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #E74C3C;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: bold;
}

/* Footer */
.footer-section-title {
    font-family: 'Poppins', 'Roboto', sans-serif;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    font-size: 17px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 3px solid rgba(255,255,255,0.3);
    padding-bottom: 12px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.footer-section-icon {
    margin-right: 8px;
}

.footer-list {
    list-style: none;
    padding: 0;
}

.footer-list-item {
    margin-bottom: 10px;
}

.footer-link {
    text-decoration: none;
    transition: all 0.3s;
    font-size: 14px;
    display: flex;
    align-items: center;
    font-family: 'Open Sans', sans-serif;
    padding: 6px 0;
}

.footer-link:hover {
    padding-left: 8px;
}

.footer-link-icon {
    font-size: 14px;
    margin-right: 10px;
}

.footer-contact-item {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer-contact-icon {
    flex-shrink: 0;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.footer-contact-text {
    flex: 1;
}

.footer-contact-label {
    font-size: 12px;
    opacity: 0.8;
    margin-bottom: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-contact-value {
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.footer-social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s;
    text-decoration: none;
}

.footer-social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.footer-bottom {
    background: rgba(0,0,0,0.2);
    padding: 20px 0;
    margin-top: 40px;
}

.footer-copyright {
    font-size: 14px;
    opacity: 0.9;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
    z-index: 1000;
    transition: all 0.3s;
    text-decoration: none;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.7);
    color: white;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
    }
    50% {
        box-shadow: 0 6px 30px rgba(37, 211, 102, 0.8);
    }
}

/* Hero Carousel */
.carousel-wrapper {
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    margin-bottom: 40px;
    margin-top: 0;
    overflow: hidden;
}

.hero-carousel {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.carousel-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    transition: opacity 0.8s ease-in-out;
    top: 0;
    left: 0;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-button-container {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.product-info-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    display: flex;
}

.product-carousel-content {
    width: 100%;
    max-width: 1200px;
    padding: 0 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.product-carousel-text {
    flex: 1;
    max-width: 500px;
}

.product-carousel-promo {
    font-family: 'Fredoka', sans-serif;
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.product-carousel-title {
    font-family: 'Fredoka', sans-serif;
    font-weight: 900;
    margin-bottom: 20px;
    font-size: 56px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    line-height: 1.1;
    letter-spacing: -1px;
    transition: opacity 0.3s ease;
}

.product-carousel-desc {
    font-family: 'Quicksand', sans-serif;
    font-size: 20px;
    margin-bottom: 35px;
    line-height: 1.8;
    font-weight: 600;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.product-carousel-link {
    display: inline-block;
    font-family: 'Fredoka', sans-serif;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    letter-spacing: 1px;
}

.product-carousel-image-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 380px;
}

.product-carousel-image {
    max-height: 380px;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 12px 24px rgba(0,0,0,0.3));
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    padding: 25px;
    box-sizing: border-box;
    transition: opacity 0.3s ease;
}

.product-carousel-prev,
.product-carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(123, 104, 238, 0.8);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(123, 104, 238, 0.4);
    z-index: 15;
}

.product-carousel-prev {
    left: 20px;
}

.product-carousel-next {
    right: 20px;
}

.product-carousel-prev:hover,
.product-carousel-next:hover {
    background: rgba(123, 104, 238, 1);
    transform: translateY(-50%) scale(1.1);
}

.carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    gap: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .navbar-toggler-mobile {
        display: block !important;
    }
    
    .product-carousel-content {
        flex-direction: column;
        padding: 0 40px;
    }
    
    .product-carousel-title {
        font-size: 36px;
    }
    
    .product-carousel-desc {
        font-size: 16px;
    }
}
