:root {
    --text: #3f5965;
    --theme0: #698fff;
    --theme1: #417eb5;
    --theme2: #289db9;
    --theme3: #3f5965;
}

@media screen and (min-width: 1024px) {
    .content-row {
        width: 70%;
        margin-left: auto;
        margin-right: auto;
    }
}

.button-light {
    color: var(--text);
    background-color: var(--white);
    box-shadow: 0 0 0.25em 0.1em rgba(0, 0, 0, 0.09);
}

/* =================================== NAVIGATION SITE =================================== */

.navigation-site-content {
    background: linear-gradient(90deg, var(--theme1) 0%, var(--theme3) 100%);
    color: var(--white);
    padding: 0.5em;
}

.navigation-site-content > .content-row > .content {
    display: flex;
    align-items: center;
}

.navigation-site-content > .content-row > .content > .brand {
    display: flex;
    font-weight: bold;
    flex-grow: 1;
}

.navigation-site-content > .content-row > .content > .brand > .toggle {
    display: none;
    cursor: pointer;
}

.navigation-site-content > .content-row > .content > .link > a:not(:last-child) {
    margin-right: 1em;
}

.navigation-site-content > .content-row > .content > .link.hide {
    display: block;
}

@media screen and (max-width: 1024px) {
    .navigation-site-content > .content-row > .content > .link > a {
        display: block;
        padding: 1em;
        border-top: 0.1em solid;
    }

    .navigation-site-content > .content-row > .content > .link > a:not(:last-child) {
        margin-right: 0;
    }

    .navigation-site-content > .content-row > .content {
        padding: 0;
        display: block;
        border-bottom-right-radius: 0;
        border-bottom-left-radius: 0;
    }

    .navigation-site-content > .content-row > .content > .brand {
        padding: 0.25em 0.75em;
        margin: 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .navigation-site-content > .content-row > .content > .brand > .toggle {
        display: block;
    }

    .navigation-site-content > .content-row > .content > .link.hide {
        display: none;
    }
}

/* =================================== /NAVIGATION SITE =================================== */

/* =================================== NAVIGATION SAMPLE LINK =================================== */

.navigation.sample.link > a:not(:first-child) {
    display: block;
    margin-top: 0.75em;
}

.navigation.sample.link > a > i {
    color: hsla(240, 50%, 50%, 1);
    margin-right: 0.5em;
}

/* =================================== NAVIGATION SAMPLE LINK =================================== */

/* =================================== NAVIGATION SAMPLE SOCIAL =================================== */

.navigation.sample.social {
    display: flex;
    justify-content: space-between;
}

.navigation.sample.social > a {
    width: 3em;
}

.navigation.sample.social > a:not(:last-child) {
    margin-right: 0.75em;
}

/* =================================== /NAVIGATION SAMPLE SOCIAL =================================== */

/* =================================== /CUSTOM LIST V2 =================================== */

@media screen and (max-width: 1024px) {
    .hide-mobile {
        display: none;
    }
}

/* =================================== HERO SECTION =================================== */

.hero-section {
    display: flex;
    flex-direction: column;
    justify-content: center; /* Centraliza verticalmente */
    align-items: center;     /* Centraliza horizontalmente */
    text-align: center;      /* (opcional) Centraliza texto */
    padding: 1em 0;
    position: relative;
    height: 24em;
    object-fit: cover;
    /* background: url('/assets/image/capa5.jpg') center; */
}

.hero-section {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.hero-section .row {
    max-width: 40em;
    width: 100%;
    margin: 0 auto;
    padding: 0 2em;
    box-sizing: border-box;
    position: relative;
    z-index: 2;
}

.hero-section-title {
    font-size: 200%;
    color: var(--white);
    /* background: var(--theme1); */
    /* padding: 0.5em 0.75em; */
    border-radius: 1em;
}

.hero-section-content {
    text-align: justify;
    margin-top: 1em;
    font-size: 90%;
    /* max-width: 23.5em; */
    color: var(--white);
    /* background: var(--theme1); */
    /* padding: 0.5em 0.75em; */
    border-radius: 1em;
    font-weight: 200;
}

.hero-section .button {
    /* font-size: 125%; */
    margin-top: 0.75em;
}

.hero-section {
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* sombra preta com 40% de opacidade */
    z-index: 1;
}

.hero-section .row,
.hero-section .col,
.hero-section-title,
.hero-section-content,
.hero-section .button {
    position: relative;
    z-index: 2; /* garante que o texto fique acima do overlay */
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2.5em;
    color: white;
    background-color: transparent;
    border: none;
    padding: 0.25em 0.5em;
    cursor: pointer;
    z-index: 5;
    user-select: none;
    pointer-events: auto;
}

.carousel-arrow:hover {
    /* background-color: rgba(0, 0, 0, 0.6); */
}

.left-arrow {
    left: 1rem;
}

.right-arrow {
    right: 1rem;
}

@media screen and (max-width: 1024px) {
    .hero-section-title,
    .hero-section-content {
        padding: 0.5em 0.75em;
    }
}

@media screen and (max-width: 1024px) {
    .carousel-arrow {
        font-size: 2em;
        padding: 0.2em 0.4em;
    }

    .hero-section .row {
        padding: 0 1em;
    }
}

@media screen and (max-width: 1024px) {
    .hero-section .row {
        /* max-width: 25em; */
        padding: 0 1.5em;
    }

    .carousel-arrow {
        font-size: 1.5em;
        padding: 0.25em 0.4em;
    }

    .left-arrow {
        left: 0.5rem;
    }

    .right-arrow {
        right: 0.5rem;
    }
}

