/* =====================================================
   CURITIBA UNDERGROUND
   NOVA HOME
===================================================== */

html {
    scroll-behavior: smooth;
}

body.cu-home {
    margin: 0;
    padding: 0;
    background: #101010;
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
}

body.cu-home * {
    box-sizing: border-box;
}

.cu-site {
    background: #101010;
    min-height: 100vh;
}

.cu-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}


/* =====================================================
   HEADER
===================================================== */

.cu-header {
    height: 76px;
    background: #080808;
    border-bottom: 1px solid #242424;
    position: relative;
    z-index: 100;
}

.cu-header-inner {
    width: min(1180px, calc(100% - 40px));
    height: 100%;
    margin: 0 auto;

    display: flex;
    align-items: center;
}

.cu-logo {
    display: flex;
    align-items: center;
    width: 185px;
    margin-right: 55px;
}

.cu-logo img {
    display: block;
    max-width: 100%;
    max-height: 55px;
    object-fit: contain;
}

.cu-nav {
    display: flex;
    align-items: center;
    gap: 38px;
}

.cu-nav a {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .4px;
    transition: .2s;
}

.cu-nav a:hover {
    color: #ed1c24;
}

.cu-account {
    margin-left: auto;

    display: flex;
    align-items: center;
    gap: 8px;

    color: #fff;
    text-decoration: none;
    font-size: 13px;
}

.cu-account-icon {
    width: 25px;
    height: 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #fff;
    border-radius: 50%;
}

.cu-menu-button {
    display: none;

    background: transparent;
    border: 0;

    color: #fff;
    font-size: 25px;

    cursor: pointer;
}


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

.cu-hero {
    min-height: 520px;

    position: relative;

    display: flex;
    align-items: center;

    background:
        url("../images/hero.jpg")
        center center / cover no-repeat;

    overflow: hidden;
}

.cu-hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.94) 0%,
            rgba(0,0,0,.75) 40%,
            rgba(0,0,0,.25) 75%,
            rgba(0,0,0,.15) 100%
        );
}

.cu-hero-content {
    position: relative;
    z-index: 2;
}

.cu-hero-text {
    width: 600px;
    max-width: 100%;
}

.cu-hero-brand {
    font-size: 54px;
    line-height: .87;

    font-weight: 900;
    letter-spacing: -3px;

    margin-bottom: 25px;
}

.cu-hero h1 {
    margin: 0 0 18px;

    color: #fff;

    font-size: 33px;
    line-height: 1.1;

    font-weight: 900;
}

.cu-hero h1 span {
    color: #ed1c24;
}

.cu-hero p {
    color: #ddd;

    font-size: 16px;
    line-height: 1.6;

    margin: 0 0 27px;
}

.cu-hero-buttons {
    display: flex;
    gap: 12px;
}


/* =====================================================
   BOTÕES
===================================================== */

.cu-btn {
    min-height: 43px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 24px;

    text-decoration: none;
    text-transform: uppercase;

    font-size: 11px;
    font-weight: 800;
    letter-spacing: .3px;

    border-radius: 2px;

    transition: .2s;
}

.cu-btn-primary {
    color: #fff !important;
    background: #ed1c24;
    border: 1px solid #ed1c24;
}

.cu-btn-primary:hover {
    background: #c91118;
    border-color: #c91118;
}

.cu-btn-outline {
    color: #fff !important;
    background: rgba(0,0,0,.25);
    border: 1px solid #fff;
}

.cu-btn-outline:hover {
    background: #fff;
    color: #111 !important;
}


/* =====================================================
   NÚMEROS
===================================================== */

.cu-stats {
    background: #171717;
    border-top: 1px solid #292929;
    border-bottom: 1px solid #292929;

    padding: 31px 0;
}

.cu-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.cu-stat {
    min-height: 100px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;

    border-right: 1px solid #303030;
}

.cu-stat:last-child {
    border-right: 0;
}

.cu-stat-icon {
    color: #ed1c24;
    font-size: 27px;
    margin-bottom: 7px;
}

.cu-stat strong {
    color: #fff;

    font-size: 18px;
    line-height: 1.1;

    font-weight: 900;
}

.cu-stat span {
    color: #bcbcbc;

    margin-top: 5px;

    font-size: 11px;
    line-height: 1.3;

    font-weight: 700;
}


/* =====================================================
   PRÓXIMAS EXCURSÕES
===================================================== */

.cu-excursoes {
    padding: 55px 0 65px;
    background: #111;
}

.cu-section-title {
    display: flex;
    justify-content: space-between;
    align-items: center;

    margin-bottom: 24px;
}

.cu-section-title h2 {
    margin: 0;

    color: #fff;

    font-size: 25px;
    font-weight: 900;
}

.cu-section-title a {
    color: #aaa;
    text-decoration: none;
    font-size: 12px;
}

.cu-section-title a:hover {
    color: #fff;
}

.cu-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.cu-card {
    background: #181818;

    border: 1px solid #333;

    overflow: hidden;

    transition: transform .2s, border-color .2s;
}

.cu-card:hover {
    transform: translateY(-4px);
    border-color: #555;
}

.cu-card-image {
    width: 100%;
    aspect-ratio: 16 / 9;

    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    border-bottom: 1px solid #333;
}

.cu-card-content {
    padding: 19px;
}

.cu-card h3 {
    margin: 0 0 13px;

    color: #fff;

    font-size: 20px;
    font-weight: 900;
}

.cu-card-info {
    display: flex;
    flex-direction: column;

    margin-bottom: 20px;
}

.cu-card-info strong {
    color: #fff;
    font-size: 12px;
}

.cu-card-info span {
    color: #aaa;

    font-size: 11px;

    margin-top: 4px;
}

.cu-price {
    margin-bottom: 17px;
}

.cu-price small {
    display: block;

    color: #aaa;

    font-size: 11px;

    margin-bottom: 2px;
}

.cu-price strong {
    color: #fff;

    display: block;

    font-size: 24px;
    font-weight: 900;
}

.cu-card .cu-btn {
    width: 100%;
}


/* =====================================================
   FAIXA HISTÓRIA
===================================================== */

.cu-history-banner {
    min-height: 190px;

    position: relative;

    display: flex;
    align-items: center;

    background:
        url("../images/history.jpg")
        center center / cover no-repeat;
}

.cu-history-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.92),
            rgba(0,0,0,.4)
        );
}

.cu-history-banner .cu-container {
    position: relative;
    z-index: 2;
}

.cu-history-text {
    color: #fff;

    font-size: 22px;
    line-height: 1.2;

    font-weight: 900;
}

.cu-history-text span {
    display: block;

    color: #ed1c24;

    margin-top: 6px;

    font-size: 17px;
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 800px) {

    .cu-header {
        height: 68px;
    }

    .cu-logo {
        width: 145px;
        margin-right: 0;
    }

    .cu-nav {
        display: none;

        position: absolute;

        left: 0;
        right: 0;
        top: 68px;

        background: #090909;

        padding: 25px 20px;

        flex-direction: column;
        align-items: flex-start;

        gap: 20px;

        border-top: 1px solid #222;
        border-bottom: 1px solid #333;
    }

    .cu-nav.cu-nav-open {
        display: flex;
    }

    .cu-account {
        margin-left: auto;
        margin-right: 18px;
    }

    .cu-account span:last-child {
        display: none;
    }

    .cu-menu-button {
        display: block;
    }


    .cu-hero {
        min-height: 570px;
    }

    .cu-hero-overlay {
        background: rgba(0,0,0,.72);
    }

    .cu-hero-brand {
        font-size: 42px;
    }

    .cu-hero h1 {
        font-size: 28px;
    }

    .cu-hero p br {
        display: none;
    }

    .cu-hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cu-hero-buttons .cu-btn {
        width: 100%;
    }


    .cu-stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .cu-stat {
        border-right: 1px solid #303030;
        border-bottom: 1px solid #303030;

        padding: 20px 5px;
    }

    .cu-stat:nth-child(2n) {
        border-right: 0;
    }

    .cu-stat:nth-child(3),
    .cu-stat:nth-child(4) {
        border-bottom: 0;
    }


    .cu-cards {
        grid-template-columns: 1fr;
    }

    .cu-section-title h2 {
        font-size: 21px;
    }

}


/* =====================================================
   WORDPRESS / TEMA
===================================================== */

body.cu-home .site-header,
body.cu-home .top-header,
body.cu-home .main-navigation,
body.cu-home .news-ticker,
body.cu-home #masthead {
    display: none !important;
}