/* Estilos para o Banner Principal Aprimorado */

/* Banner Principal */
.hero-enhanced {
    height: 100vh;
    min-height: 600px;
    background-image: url('../images/banners/campo-background.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    margin-top: var(--header-height);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(89, 40, 29, 0.3), rgba(217, 147, 61, 0.3));
}

.hero-content-enhanced {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 40px;
    text-align: center;
    color: var(--light-text);
    background-color: rgba(89, 40, 29, 0.7);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 2px solid var(--accent-color);
}

.hero-content-enhanced h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-family: 'Minister SH BOOK', 'Montserrat', sans-serif;
}

.hero-content-enhanced p {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.slogan-enhanced {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: var(--secondary-color);
    font-style: italic;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.btn-enhanced {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s ease;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn-primary-enhanced {
    background-color: var(--primary-color);
    color: var(--light-text);
    border: 2px solid var(--primary-color);
}

.btn-primary-enhanced:hover {
    background-color: transparent;
    color: var(--light-text);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(217, 26, 61, 0.3);
}

.btn-primary-enhanced::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.btn-primary-enhanced:hover::after {
    left: 100%;
}

/* Ondas decorativas na parte inferior */
.wave-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 1;
}

.wave-container svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

.wave-container .shape-fill-primary {
    fill: var(--primary-color);
}

.wave-container .shape-fill-secondary {
    fill: var(--secondary-color);
}

.wave-container .shape-fill-accent {
    fill: var(--accent-color);
}

/* Elementos decorativos */
.egg-decoration {
    position: absolute;
    width: 120px;
    height: 120px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    opacity: 0.8;
    z-index: 1;
    animation: float 6s ease-in-out infinite;
}

.egg-decoration.egg-1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.egg-decoration.egg-2 {
    top: 25%;
    right: 15%;
    width: 80px;
    height: 80px;
    animation-delay: 1s;
}

.egg-decoration.egg-3 {
    bottom: 20%;
    left: 20%;
    width: 100px;
    height: 100px;
    animation-delay: 2s;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0);
    }
}

/* Logo circular no banner */
.logo-circular {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    animation: pulse 3s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }
}

/* Media Queries para Responsividade */
@media (max-width: 1024px) {
    .hero-content-enhanced {
        max-width: 700px;
    }
    
    .logo-circular {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 768px) {
    .hero-content-enhanced h1 {
        font-size: 2.5rem;
    }
    
    .hero-content-enhanced p {
        font-size: 1.2rem;
    }
    
    .slogan-enhanced {
        font-size: 1.8rem;
    }
    
    .logo-circular {
        width: 100px;
        height: 100px;
        top: 10px;
        right: 10px;
    }
    
    .egg-decoration {
        display: none;
    }
}

@media (max-width: 576px) {
    .hero-enhanced {
        min-height: 500px;
    }
    
    .hero-content-enhanced {
        padding: 20px;
    }
    
    .hero-content-enhanced h1 {
        font-size: 2rem;
    }
    
    .slogan-enhanced {
        font-size: 1.5rem;
    }
    
    .btn-enhanced {
        padding: 12px 24px;
        font-size: 1rem;
    }
}
