/* ==================================================================== */
/* ====== Hero ======================================================== */
/* ==================================================================== */

.hero {
    width: 100%;
    min-height: 640px;
    height: 100svh;
    position: relative;
    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;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    text-align: left;
    padding: 0;
}

@media (min-width: 730px) {
    .hero {
        height: 100svh;
        align-items: center;
        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");
    }
}

@media (min-width: 980px) {
    .hero {
        background-attachment: fixed;
        background-image:
            linear-gradient(135deg, rgba(0, 12, 26, 0.75) 0%, rgba(10, 60, 150, 0.8) 100%),
            url("../../assets/images/elet-curitiba.webp");
    }
}

/* ====== Hero Wrapper ====== */
.hero-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 16px;
    padding-top: 128px;
    padding-bottom: 60px;
    text-align: left;
}

@media (min-width: 780px) {
    .hero-wrapper {
        width: 70%;
        height: 100%;
        align-items: flex-start;
        text-align: left;
        padding-top: 100px;
        padding-bottom: 0;
        justify-content: center !important;
    }
}

@media (min-width: 980px) {
}

/* ====== Hero Title ====== */
.hero-title {
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 2px;
    margin-bottom: 8px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.5px;
    text-shadow: 2px 3px 7px rgba(0, 0, 0, 0.25);
    max-width: 100%;
}

.hero-title h1 {
    color: var(--light);
    font-size: 34px;
}

@media (min-width: 320px) {
    .hero-title h1 {
        font-size: 38px;
    }
}

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

/* ====== Hero Subtitle ====== */
.hero-subtitle {
    font-family: sans-serif !important;
    font-size: 20px;
    color: #fff;
    font-weight: 400 !important;
    max-width: 600px;
    line-height: 1.5;
    margin-bottom: 16px;
    text-shadow: 1px 2px 6px rgba(0, 0, 0, 0.2);
}

@media (min-width: 780px) {
    .hero-subtitle {
        font-size: 24px;
        margin-bottom: 32px;
    }
}

/* ====== Hero CTA Wrapper ====== */
.hero-cta-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    margin-top: 16px;
    width: 100%;
}

@media (min-width: 836px) {
    .hero-cta-wrapper {
        flex-direction: row;
        gap: 20px;
        justify-content: flex-start;
        align-items: flex-start;
        width: auto;
    }
}

/* ====== Hero Primary CTA ====== */
.hero .cta-button {
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-radius: 20px;
    font-size: 18.5px;
    width: 286px;
    height: 52px;
    padding: 0;
    background-color: var(--color-1);
    border: 3px solid var(--color-1);
    color: var(--light);
    transition: all 0.3s ease;
}

.hero .cta-button:hover {
    background-color: transparent !important;
    color: var(--color-1) !important;
    transform: translateY(-2px);
    backdrop-filter: blur(20px);
}

.hero .cta-button span {
    color: inherit;
}

.hero .cta-button svg,
.hero .cta-button svg path {
    color: inherit;
    fill: currentColor !important;
    width: 24px !important;
    height: 24px !important;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.hero .cta-button:hover svg {
    transform: scale(1.1);
}

/* ====== Hero Secondary CTA ====== */
.secundary-cta-button {
    z-index: 2;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 286px;
    height: 52px;
    gap: 10px;
    color: var(--light);
    font-weight: 600;
    border-radius: 20px;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    font-size: 20.5px;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.secundary-cta-button:hover {
    background-color: var(--light) !important;
    color: var(--color-2) !important;
    transform: translateY(-2px);
}

.secundary-cta-button svg,
.secundary-cta-button svg path {
    color: inherit;
    fill: currentColor !important;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.secundary-cta-button span {
    color: inherit;
}

.secundary-cta-button:hover svg {
    transform: scale(1.1);
}
