/* ========================================
   PAGE HERO - Banner Minimalista para Páginas Internas
   ======================================== */

.page-hero {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #212529 0%, #343A40 50%, #212529 100%);
    padding: 200px 20px 80px;
    margin-top: 0;
}

@media (max-width: 768px) {
    .page-hero {
        padding: 160px 20px 60px;
    }
}

/* Background Pattern */
.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(214, 32, 39, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(214, 32, 39, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* Geometric Decorations */
.page-hero::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: pulse-slow 4s ease-in-out infinite;
}

.page-hero__container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding-top: 20px;
}

@media (max-width: 768px) {
    .page-hero__container {
        padding-top: 15px;
    }
}

/* Badge */
.page-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    margin-bottom: 24px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    animation: fadeInDown 0.6s ease-out;
}

.page-hero__badge i {
    font-size: 18px;
}

/* Title */
.page-hero__title {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 20px 0;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

/* Description */
.page-hero__description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 32px 0;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

/* CTA Buttons */
.page-hero__cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.6s backwards;
}

.page-hero__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.page-hero__btn--primary {
    background: #fff;
    color: #D62027;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.page-hero__btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
    background: #F0F4F8;
}

.page-hero__btn--secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.page-hero__btn--secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

.page-hero__btn i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.page-hero__btn:hover i {
    transform: translateX(4px);
}

/* Floating Icon */
.page-hero__icon {
    position: absolute;
    font-size: 120px;
    color: rgba(255, 255, 255, 0.08);
    pointer-events: none;
    z-index: 1;
}

.page-hero__icon--left {
    top: 20%;
    left: 5%;
    animation: float 6s ease-in-out infinite;
}

.page-hero__icon--right {
    bottom: 15%;
    right: 8%;
    animation: float 7s ease-in-out infinite 1s;
}

/* Breadcrumb Integration */
.page-hero__breadcrumb {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    z-index: 3;
    background: rgba(26, 35, 50, 0.3);
    padding: 8px 20px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.page-hero__breadcrumb a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-hero__breadcrumb a:hover {
    color: #fff;
}

.page-hero__breadcrumb i {
    font-size: 12px;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes pulse-slow {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.5;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .page-hero {
        min-height: 350px;
        padding: 160px 20px 60px;
    }

    .page-hero__breadcrumb {
        bottom: 15px;
        font-size: 12px;
        padding: 6px 16px;
    }

    .page-hero__title {
        font-size: 2rem;
    }

    .page-hero__description {
        font-size: 1.1rem;
    }

    .page-hero__cta {
        flex-direction: column;
        align-items: stretch;
    }

    .page-hero__btn {
        width: 100%;
        justify-content: center;
    }

    .page-hero__icon {
        font-size: 80px;
    }

    .page-hero__icon--left {
        left: -10%;
    }

    .page-hero__icon--right {
        right: -10%;
    }
}

@media (max-width: 480px) {
    .page-hero__title {
        font-size: 1.75rem;
    }

    .page-hero__description {
        font-size: 1rem;
    }

    .page-hero__badge {
        font-size: 12px;
        padding: 10px 20px;
    }
}

