.hero {
    color: var(--white);
    padding: 0;
    text-align: center;
    margin-top: 60px;
    position: relative;
    z-index: 1;
    height: 50vh;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-carousel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        transparent 0%,
        rgba(255, 255, 255, 0.002) 25%,
        transparent 50%,
        rgba(184, 134, 11, 0.008) 75%,
        transparent 100%
    );
    z-index: 1;
    pointer-events: none;
    mix-blend-mode: overlay;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    image-rendering: optimizeQuality;
    opacity: 0;
    transform: scale(1.01);
    transition: all 2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: contrast(1.12) saturate(1.18) brightness(1.08) 
            drop-shadow(0 0 1px rgba(0,0,0,0.1))
            hue-rotate(1deg);
    will-change: transform, opacity;
}

.carousel-slide.active {
    opacity: 1;
    transform: scale(1);
    filter: contrast(1.15) saturate(1.22) brightness(1.12) 
            drop-shadow(0 0 2px rgba(184,134,11,0.15))
            hue-rotate(2deg)
            blur(0px);
}

.carousel-slide:nth-child(1) {
    background-image: url('../carrossel1.jpg');
    filter: contrast(1.15) saturate(1.22) brightness(1.12) 
            drop-shadow(0 0 2px rgba(184,134,11,0.1))
            hue-rotate(2deg);
}

.carousel-slide:nth-child(1)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        rgba(184, 134, 11, 0.04) 0%,
        transparent 35%,
        transparent 65%,
        rgba(58, 58, 58, 0.02) 100%
    );
    z-index: 1;
}

.carousel-slide:nth-child(1)::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        ellipse at 30% 30%,
        rgba(255, 255, 255, 0.015) 0%,
        transparent 50%
    );
    z-index: 1;
}

.carousel-slide:nth-child(2) {
    background-image: url('../carrossel2.jpg');
    filter: contrast(1.18) saturate(1.25) brightness(1.14) 
            drop-shadow(0 0 3px rgba(184,134,11,0.08))
            hue-rotate(3deg)
            sepia(5%);
}

.carousel-slide:nth-child(2)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(184, 134, 11, 0.03) 0%,
        transparent 45%,
        rgba(255, 255, 255, 0.015) 100%
    );
    z-index: 1;
}

.carousel-slide:nth-child(2)::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: conic-gradient(
        from 45deg at 70% 20%,
        transparent 0deg,
        rgba(184, 134, 11, 0.01) 90deg,
        transparent 180deg
    );
    z-index: 1;
}

.carousel-slide:nth-child(3) {
    background-image: url('../carrossel3.jpg');
    filter: sepia(12%) saturate(1.28) brightness(1.16) contrast(1.20)
            drop-shadow(0 0 4px rgba(184,134,11,0.12))
            hue-rotate(4deg);
}

.carousel-slide:nth-child(3)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(184, 134, 11, 0.025) 0%,
        transparent 55%,
        rgba(58, 58, 58, 0.03) 100%
    );
    z-index: 1;
}

.carousel-slide:nth-child(3)::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle at 80% 80%,
        rgba(184, 134, 11, 0.02) 0%,
        transparent 40%
    ),
    linear-gradient(
        45deg,
        transparent 0%,
        rgba(255, 255, 255, 0.008) 50%,
        transparent 100%
    );
    z-index: 1;
}

.carousel-indicators {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 2;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.6);
    position: relative;
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.15);
    border-color: rgba(255, 255, 255, 0.8);
}

.indicator.active {
    background: var(--primary);
    border-color: rgba(255, 255, 255, 0.9);
    transform: scale(1.2);
    box-shadow: 0 0 8px rgba(184, 134, 11, 0.4);
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(58, 58, 58, 0.7);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    z-index: 2;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.carousel-nav:hover {
    background: rgba(184, 134, 11, 0.8);
    transform: translateY(-50%) scale(1.1);
}

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

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

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(58, 58, 58, 0.25) 0%, 
        rgba(58, 58, 58, 0.08) 25%, 
        rgba(184, 134, 11, 0.08) 50%, 
        rgba(58, 58, 58, 0.12) 75%, 
        rgba(58, 58, 58, 0.3) 100%);
    backdrop-filter: blur(0.5px);
    z-index: -1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, 
        transparent 30%, 
        rgba(58, 58, 58, 0.1) 75%, 
        rgba(58, 58, 58, 0.25) 100%);
    z-index: 0;
}

.hero h1, .hero p {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-family: sans-serif;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
    font-family: sans-serif;
    margin-bottom: 1rem;
} 