/* Home Page Specific Styles */

/* Hero Home */
.hero-home {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    padding: 4rem 0;
    text-align: center;
    color: var(--text-dark);
}

.hero-home .hero-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.hero-home .hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--dark-blue);
}

.hero-home .hero-description {
    font-size: 1rem;
    font-style: italic;
}

/* Main Cards Section */
.main-cards-section {
    padding: 4rem 0;
    background-color: var(--white);
}

.main-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.main-card {
    position: relative;
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    display: block;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.main-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.main-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.3;
    transition: var(--transition);
}

.main-card:hover .main-card-bg {
    opacity: 0.4;
    transform: scale(1.1);
}

.produtos-bg {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--primary-color) 100%);
    opacity: 0.8;
}

.main-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.7));
}

.main-card-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    text-align: center;
    color: var(--white);
}

.main-card-tag {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: bold;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pre-venda-tag {
    background: var(--primary-color);
    color: var(--white);
}

.produtos-tag {
    background: var(--secondary-color);
    color: var(--white);
}

.main-card-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.main-card-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.main-card-button {
    background: var(--white);
    color: var(--dark-blue);
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.main-card-button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* Carrossel de Logos */
.logos-carousel-section {
    padding: 4rem 0;
    background: var(--light-bg);
}

.logos-carousel-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.logos-carousel {
    display: flex;
    overflow: hidden;
    scroll-behavior: smooth;
    gap: 2rem;
    padding: 2rem 0;
}

.logo-slide {
    flex: 0 0 auto;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 12px;
    padding: 1rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.logo-slide:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-hover);
}

.logo-carousel-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
}

.carousel-btn:hover {
    background: var(--dark-blue);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn-prev {
    left: -25px;
}

.carousel-btn-next {
    right: -25px;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-color);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.carousel-indicator.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* Carrossel de Coleções */
.collections-carousel-section {
    padding: 4rem 0;
    background: var(--white);
}

.collections-carousel-wrapper {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    padding: 1rem 0;
}

.collections-carousel-wrapper::-webkit-scrollbar {
    height: 8px;
}

.collections-carousel-wrapper::-webkit-scrollbar-track {
    background: var(--light-bg);
    border-radius: 4px;
}

.collections-carousel-wrapper::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

.collections-carousel {
    display: flex;
    gap: 1.5rem;
    padding: 1rem;
    min-width: max-content;
}

.collection-card {
    flex: 0 0 280px;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
}

.collection-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.collection-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.collection-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.collection-card:hover .collection-card-image img {
    transform: scale(1.1);
}

.collection-card-content {
    padding: 1.5rem;
}

.collection-card-title {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
}

.collection-card-description {
    color: var(--text-light);
    font-size: 0.95rem;
}

.footer-link {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.footer-link:hover {
    text-decoration: underline;
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 768px) {
    .main-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .main-card {
        height: 300px;
    }

    .main-card-title {
        font-size: 2rem;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .carousel-btn-prev {
        left: 10px;
    }

    .carousel-btn-next {
        right: 10px;
    }

    .logo-slide {
        width: 150px;
        height: 150px;
    }

    .collection-card {
        flex: 0 0 240px;
    }
}

@media (max-width: 480px) {
    .hero-home .hero-title {
        font-size: 2rem;
    }

    .hero-home .hero-subtitle {
        font-size: 1.2rem;
    }

    .main-card-title {
        font-size: 1.5rem;
    }

    .main-card-description {
        font-size: 1rem;
    }
}

