/* ========================================================= */
/* ==================== PAGES HERO ========================= */
/* ========================================================= */

.pages-hero {
    width: 100%;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: var(--color-1);
    text-align: center;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Base Gradient (Applied to all via background classes) */
/* Integrando gradiente diretamente no background e removendo ::before */

.hero-elet {
    background:
        linear-gradient(135deg, rgba(0, 12, 26, 0.75) 0%, rgba(10, 60, 150, 0.8) 100%),
        url("../../assets/images/elet-curitiba-small.webp");
    background-size: cover;
    background-position: center;
}

.hero-quem-somos,
.hero-contato {
    background:
        linear-gradient(135deg, rgba(0, 12, 26, 0.75) 0%, rgba(10, 60, 150, 0.8) 100%),
        url("../../assets/images/elet-curitiba-small.webp");
    background-size: cover;
    background-position: center;
}

/* Tablet range (Matching home alignment/height logic) */
@media (min-width: 836px) {
    .hero-elet,
    .hero-quem-somos,
    .hero-contato {
        background-image:
            linear-gradient(135deg, rgba(0, 12, 26, 0.75) 0%, rgba(10, 60, 150, 0.8) 100%),
            url("../../assets/images/elet-curitiba-medium.webp");
    }
}

/* Telas maiores, desktops médios (980px+) */
@media (min-width: 980px) {
    .pages-hero {
        background-attachment: fixed;
    }

    .hero-elet,
    .hero-quem-somos,
    .hero-contato {
        background-image:
            linear-gradient(135deg, rgba(0, 12, 26, 0.79) 0%, rgba(10, 60, 150, 0.8) 100%),
            url("../../assets/images/elet-curitiba.webp");
    }
}

/* Wrapper do hero */
.pages-wrapper-hero {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 12px;
    padding-top: 60px;
}

/* Título específico para pages-hero */
.pages-hero-title {
    text-align: left;
}

/* H1 dentro do hero-title */
.pages-hero-title h1 {
    color: #fff;
    font-size: 38px;
    line-height: 1.2;
    letter-spacing: 0.5px;
    text-shadow: 2px 3px 7px rgba(0, 0, 0, 0.25);
    font-weight: 800;
}

@media (min-width: 780px) {
    .pages-hero-title h1 {
        font-size: 60px;
    }
}

/* Hero Breadcrumbs */
.hero-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.hero-breadcrumbs ol {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.hero-breadcrumbs li {
    display: flex;
    align-items: center;
}

.hero-breadcrumbs a {
    color: var(--light);
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
}

.hero-breadcrumbs a:hover {
    color: var(--color-1);
}

.hero-breadcrumbs .home-icon {
    width: 24px;
    height: 24px;
    fill: currentColor;
    margin-top: -2px;
}

.hero-breadcrumbs .separator {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    margin: 0 4px;
}

.hero-breadcrumbs .current-page {
    color: var(--color-1);
    font-weight: 700;
}

@media (min-width: 769px) {
    .hero-breadcrumbs {
        margin-top: 24px;
        font-size: 20px;
    }

    .hero-breadcrumbs .home-icon {
        width: 28px;
        height: 28px;
    }
}
