* {

    margin: 0;
    padding: 0;

    box-sizing: border-box;

    font-family: Arial, sans-serif;

    text-decoration: none;

}


body {

    background: #ffffff;

}


/* =========================
   HEADER
========================= */

header {

    width: 100%;
    height: 100px;

    background: #ffffff;

    border-bottom: 3px solid #C62828;

    display: flex;

    align-items: center;

    position: fixed;

    top: 0;
    left: 0;

    z-index: 1000;

}


/* =========================
   LOGO
========================= */

header img {

    width: 100px;

    margin-left: 40px;

}


/* =========================
   MENU
========================= */

nav {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 45px;

    width: 100%;

}


nav a {

    color: #174A7E;

    font-size: 20px;

    font-weight: 600;

    position: relative;

    transition: 0.3s;

}


nav a:hover {

    color: #C62828;

    transform: translateY(-2px);

}


/* =========================
   PÁGINA SELECIONADA
========================= */

.pagina-selecionada {

    color: #C62828;

}


.pagina-selecionada::after {

    content: "";

    position: absolute;

    width: 100%;

    height: 3px;

    background: #C62828;

    bottom: -10px;

    left: 0;

    border-radius: 10px;

}





/* =========================
   HERO
========================= */

.hero-espaco {

    width: 100%;

    min-height: 70vh;

    margin-top: 100px;

    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;

    padding: 80px 20px;

    background:

        linear-gradient(
            rgba(23, 74, 126, 0.82),
            rgba(198, 40, 40, 0.72)
        ),

        url("./img/espaco/espaco-1.jpg");

    background-size: cover;

    background-position: center;

}


.hero-espaco-conteudo {

    max-width: 850px;

}


.hero-espaco span,
.sobre-espaco span,
.estrutura > span,
.fotos-espaco > span {

    color: #E6B84A;

    font-size: 16px;

    font-weight: bold;

    letter-spacing: 3px;

}


.hero-espaco h1 {

    color: #ffffff;

    font-size: 65px;

    margin: 20px 0;

}


.hero-espaco p {

    color: #ffffff;

    font-size: 22px;

    line-height: 1.6;

}


/* =========================
   SOBRE
========================= */

.sobre-espaco {

    width: 100%;

    padding: 120px 10%;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 80px;

}


.texto-sobre {

    width: 50%;

}


.texto-sobre h2 {

    color: #174A7E;

    font-size: 45px;

    margin: 20px 0 30px;

}


.texto-sobre p {

    color: #444444;

    font-size: 19px;

    line-height: 1.7;

    margin-bottom: 20px;

}


.imagem-sobre {

    width: 45%;

}


.imagem-sobre img {

    width: 100%;

    height: 450px;

    object-fit: cover;

    border-radius: 25px;

    border: 4px solid #E6B84A;

}


/* =========================
   ESTRUTURA
========================= */

.estrutura {

    padding: 100px 10%;

    text-align: center;

    background: #F5F5F5;

}


.estrutura h2 {

    color: #174A7E;

    font-size: 42px;

    margin: 20px 0 70px;

}


.cards-estrutura {

    display: flex;

    justify-content: center;

    gap: 50px;

}


.card-estrutura {

    width: 300px;

    min-height: 280px;

    padding: 40px 30px;

    background: #ffffff;

    border-radius: 20px;

    border: 2px solid #174A7E;

    transition: 0.3s;

}


.card-estrutura:hover {

    transform: translateY(-10px);

    box-shadow: 0 10px 25px rgba(23, 74, 126, 0.2);

}


.icone {

    font-size: 45px;

    margin-bottom: 20px;

}


.card-estrutura h3 {

    color: #C62828;

    font-size: 24px;

    margin-bottom: 15px;

}


.card-estrutura p {

    color: #444444;

    font-size: 17px;

    line-height: 1.6;

}


/* =========================
   FOTOS
========================= */

.fotos-espaco {

    padding: 120px 8%;

    text-align: center;

}


.fotos-espaco h2 {

    color: #174A7E;

    font-size: 42px;

    margin: 20px 0 60px;

}


.galeria-espaco {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    grid-auto-rows: 300px;

    gap: 25px;

}


.foto-espaco {

    overflow: hidden;

    border-radius: 20px;

    border: 3px solid #E6B84A;

}


.foto-espaco img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: 0.4s;

}


.foto-grande {

    grid-column: span 2;

    grid-row: span 2;

}


.foto-espaco:hover img {

    transform: scale(1.06);

}






/* =========================
   ESPAÇO DE DIVERSÃO
========================= */

.diversao-espaco {

    padding: 120px 8%;

    background: #F5F5F5;

    text-align: center;

}


.diversao-conteudo {

    max-width: 850px;

    margin: 0 auto 60px;

}


.diversao-conteudo span {

    color: #E6B84A;

    font-size: 16px;

    font-weight: bold;

    letter-spacing: 3px;

}


.diversao-conteudo h2 {

    color: #174A7E;

    font-size: 42px;

    margin: 20px 0 25px;

}


.diversao-conteudo p {

    color: #444444;

    font-size: 18px;

    line-height: 1.7;

}


/* =========================
   GALERIA
========================= */

.galeria-diversao {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 30px;

    max-width: 1100px;

    margin: 0 auto;

}


.foto-diversao {

    height: 450px;

    overflow: hidden;

    border-radius: 22px;

    border: 3px solid #E6B84A;

    background: #ffffff;

}


.foto-diversao img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;

    transition: 0.4s;

}


.foto-diversao:hover img {

    transform: scale(1.05);

}


/* =========================
   ITENS DE DIVERSÃO
========================= */

.itens-diversao {

    display: flex;

    justify-content: center;

    gap: 30px;

    max-width: 1000px;

    margin: 50px auto 0;

}


.item-diversao {

    flex: 1;

    padding: 30px 25px;

    background: #ffffff;

    border-radius: 18px;

    border: 2px solid #174A7E;

    transition: 0.3s;

}


.item-diversao:hover {

    transform: translateY(-7px);

    box-shadow: 0 10px 25px rgba(23, 74, 126, 0.15);

}


.item-diversao > span {

    display: block;

    font-size: 40px;

    margin-bottom: 15px;

}


.item-diversao h3 {

    color: #C62828;

    font-size: 22px;

    margin-bottom: 12px;

}


.item-diversao p {

    color: #444444;

    font-size: 16px;

    line-height: 1.5;

}





/* =========================
   CTA
========================= */

.cta-espaco {

    padding: 100px 20px;

    text-align: center;

    background: #174A7E;

    border-top: 5px solid #E6B84A;

}


.cta-espaco h2 {

    color: #ffffff;

    font-size: 42px;

    margin-bottom: 20px;

}


.cta-espaco p {

    color: #ffffff;

    font-size: 20px;

    max-width: 700px;

    line-height: 1.6;

    margin: 0 auto 35px;

}


.cta-espaco a {

    display: inline-block;

    background: #C62828;

    color: #ffffff;

    padding: 18px 35px;

    border-radius: 12px;

    font-size: 18px;

    font-weight: bold;

    transition: 0.3s;

}


.cta-espaco a:hover {

    transform: translateY(-5px);

    background: #E53935;

}




















/* ==================================================
   RESPONSIVIDADE
   PÁGINA ESPAÇO
================================================== */


/* =========================
   TABLET
========================= */

@media (max-width: 900px) {

    /* =========================
       HEADER
    ========================= */

    header {

        height: 85px;

    }


    header img {

        width: 110px;

        margin-left: 20px;

    }


    nav {

        gap: 20px;

    }


    nav a {

        font-size: 16px;

    }



    /* =========================
       HERO
    ========================= */

    .hero-espaco {

        min-height: calc(70vh);

        margin-top: 85px;

        padding: 70px 25px;

    }


    .hero-espaco h1 {

        font-size: 50px;

    }


    .hero-espaco p {

        font-size: 19px;

    }


    .hero-espaco span,
    .sobre-espaco span,
    .estrutura > span,
    .fotos-espaco > span {

        font-size: 14px;

        letter-spacing: 2px;

    }


    /* =========================
       SOBRE
    ========================= */

    .sobre-espaco {

        padding: 90px 7%;

        gap: 50px;

    }


    .texto-sobre h2 {

        font-size: 38px;

    }


    .texto-sobre p {

        font-size: 17px;

    }


    .imagem-sobre img {

        height: 380px;

    }


    /* =========================
       ESTRUTURA
    ========================= */

    .estrutura {

        padding: 80px 6%;

    }


    .estrutura h2 {

        font-size: 36px;

        margin-bottom: 50px;

    }


    .cards-estrutura {

        gap: 25px;

        flex-wrap: wrap;

    }


    .card-estrutura {

        width: 280px;

    }


    /* =========================
       FOTOS
    ========================= */

    .fotos-espaco {

        padding: 90px 6%;

    }


    .fotos-espaco h2 {

        font-size: 36px;

        margin-bottom: 45px;

    }


    .galeria-espaco {

        grid-auto-rows: 250px;

        gap: 18px;

    }


    /* =========================
       CTA
    ========================= */

    .cta-espaco {

        padding: 80px 25px;

    }


    .cta-espaco h2 {

        font-size: 36px;

    }


    .cta-espaco p {

        font-size: 18px;

    }




        /* =========================
       ESPAÇO DE DIVERSÃO
    ========================= */

    .diversao-espaco {

        padding: 90px 6%;

    }


    .diversao-conteudo h2 {

        font-size: 36px;

    }


    .diversao-conteudo p {

        font-size: 17px;

    }


    .foto-diversao {

        height: 350px;

    }


    .itens-diversao {

        gap: 20px;

    }


    .item-diversao {

        padding: 25px 20px;

    }

}


/* =========================
   CELULAR
========================= */

@media (max-width: 600px) {

    body {

        overflow-x: hidden;

    }


    /* =========================
       HEADER
       IGUAL AO 4-COTACAO
    ========================= */

    header {

        height: auto;

        min-height: 85px;

        padding: 15px;

        justify-content: center;

    }


    header img {

        display: none;

    }


    nav {

        width: 100%;

        gap: 12px;

        flex-wrap: wrap;

        justify-content: center;

        padding-left: 0;

    }


    nav a {

        font-size: 10px;

        font-weight: 700;

    }


    .pagina-selecionada::after {

        bottom: -6px;

    }

    /* =========================
       HERO
    ========================= */

    .hero-espaco {

        min-height: 65vh;

        margin-top: 75px;

        padding: 55px 18px;

    }


    .hero-espaco-conteudo {

        width: 100%;

        max-width: 100%;

    }


    .hero-espaco span,
    .sobre-espaco span,
    .estrutura > span,
    .fotos-espaco > span {

        font-size: 11px;

        letter-spacing: 2px;

    }


    .hero-espaco h1 {

        font-size: 36px;

        line-height: 1.15;

        margin: 15px 0;

    }


    .hero-espaco p {

        font-size: 16px;

        line-height: 1.5;

    }


    /* =========================
       SOBRE
    ========================= */

    .sobre-espaco {

        padding: 70px 20px;

        display: flex;

        flex-direction: column;

        gap: 35px;

    }


    .texto-sobre {

        width: 100%;

    }


    .texto-sobre h2 {

        font-size: 31px;

        line-height: 1.2;

        margin: 15px 0 25px;

    }


    .texto-sobre p {

        font-size: 16px;

        line-height: 1.6;

        margin-bottom: 16px;

    }


    .imagem-sobre {

        width: 100%;

    }


    .imagem-sobre img {

        width: 100%;

        height: 300px;

        border-radius: 18px;

        border-width: 3px;

    }


    /* =========================
       ESTRUTURA
    ========================= */

    .estrutura {

        padding: 70px 20px;

    }


    .estrutura h2 {

        font-size: 30px;

        line-height: 1.2;

        margin: 15px 0 40px;

    }


    .cards-estrutura {

        width: 100%;

        display: flex;

        flex-direction: column;

        align-items: center;

        gap: 20px;

    }


    .card-estrutura {

        width: 100%;

        max-width: 360px;

        min-height: auto;

        padding: 30px 22px;

        border-radius: 16px;

    }


    .icone {

        font-size: 38px;

        margin-bottom: 15px;

    }


    .card-estrutura h3 {

        font-size: 21px;

    }


    .card-estrutura p {

        font-size: 15px;

        line-height: 1.5;

    }


    /* =========================
       FOTOS
    ========================= */

    .fotos-espaco {

        padding: 70px 20px;

    }


    .fotos-espaco h2 {

        font-size: 30px;

        line-height: 1.2;

        margin: 15px 0 35px;

    }


    .galeria-espaco {

        display: grid;

        grid-template-columns: 1fr;

        grid-auto-rows: 250px;

        gap: 15px;

    }


    .foto-grande {

        grid-column: span 1;

        grid-row: span 1;

    }


    .foto-espaco {

        width: 100%;

        border-radius: 15px;

        border-width: 2px;

    }


    /* =========================
       CTA
    ========================= */

    .cta-espaco {

        padding: 70px 20px;

        border-top-width: 4px;

    }


    .cta-espaco h2 {

        font-size: 30px;

        line-height: 1.2;

    }


    .cta-espaco p {

        font-size: 16px;

        line-height: 1.5;

        margin-bottom: 30px;

    }


    .cta-espaco a {

        width: 100%;

        max-width: 320px;

        padding: 15px 20px;

        font-size: 16px;

    }

        /* =========================
       ESPAÇO DE DIVERSÃO
    ========================= */

    .diversao-espaco {

        padding: 70px 20px;

    }


    .diversao-conteudo {

        margin-bottom: 40px;

    }


    .diversao-conteudo span {

        font-size: 11px;

        letter-spacing: 2px;

    }


    .diversao-conteudo h2 {

        font-size: 30px;

        line-height: 1.2;

        margin: 15px 0 20px;

    }


    .diversao-conteudo p {

        font-size: 16px;

        line-height: 1.6;

    }


    /* =========================
       FOTOS
    ========================= */

    .galeria-diversao {

        grid-template-columns: 1fr;

        gap: 15px;

    }


    .foto-diversao {

        width: 100%;

        height: 300px;

        border-radius: 15px;

        border-width: 2px;

    }


    /* =========================
       ITENS
    ========================= */

    .itens-diversao {

        flex-direction: column;

        align-items: center;

        gap: 15px;

        margin-top: 35px;

    }


    .item-diversao {

        width: 100%;

        max-width: 360px;

        padding: 25px 20px;

    }


    .item-diversao > span {

        font-size: 35px;

    }


    .item-diversao h3 {

        font-size: 20px;

    }


    .item-diversao p {

        font-size: 15px;

    }

}


/* =========================
   CELULAR MUITO PEQUENO
========================= */

@media (max-width: 380px) {

    header img {

        width: 75px;

    }


    nav {

        gap: 8px;

        padding-left: 8px;

    }


    nav a {

        font-size: 11px;

    }


    .hero-espaco {

        padding: 45px 15px;

    }


    .hero-espaco span,
    .sobre-espaco span,
    .estrutura > span,
    .fotos-espaco > span {

        font-size: 10px;

        letter-spacing: 1.5px;

    }


    .hero-espaco h1 {

        font-size: 31px;

    }


    .hero-espaco p {

        font-size: 15px;

    }


    .texto-sobre h2 {

        font-size: 28px;

    }


    .estrutura h2,
    .fotos-espaco h2,
    .cta-espaco h2 {

        font-size: 27px;

    }


    .imagem-sobre img {

        height: 250px;

    }


    .card-estrutura {

        max-width: 300px;

        padding: 25px 18px;

    }


    .galeria-espaco {

        grid-auto-rows: 220px;

    }

}