/* =========================================================
   GIRO SUPREMO
   PÁGINA COMO ALUGAR
========================================================= */


/* =========================================================
   AJUSTES DO HEADER NESTA PÁGINA
========================================================= */

.menu-ativo {
    position: relative;

    color: #ffffff !important;
}


.menu-ativo::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;

    bottom: -18px;

    height: 3px;

    background: var(--red);
}


.menu .social-link svg {
    display: block;

    width: 23px;
    height: 23px;

    fill: #ffffff;
}


.wa-mini {
    color: #00d767;

    font-size: 20px;

    line-height: 1;
}



/* =========================================================
   HERO
========================================================= */

.alugar-hero {
    position: relative;

    min-height: 500px;

    display: flex;

    align-items: center;

    overflow: hidden;

    background:
        linear-gradient(
            110deg,
            #030405 0%,
            #08090a 50%,
            #141517 100%
        );
}


.alugar-hero::before {
    content: "";

    position: absolute;

    width: 620px;
    height: 620px;

    right: -100px;
    top: -180px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(237,16,27,.14),
            transparent 65%
        );

    pointer-events: none;
}


.alugar-hero::after {
    content: "";

    position: absolute;

    right: -120px;
    bottom: -150px;

    width: 650px;
    height: 260px;

    background: var(--red);

    opacity: .06;

    transform:
        rotate(-13deg);

    pointer-events: none;
}


.alugar-hero-bg {
    position: absolute;

    inset: 0;

    opacity: .18;

    background:
        repeating-linear-gradient(
            -20deg,
            transparent 0,
            transparent 80px,
            rgba(255,255,255,.018) 81px,
            rgba(255,255,255,.018) 82px
        );
}


.alugar-hero-content {
    position: relative;

    z-index: 5;

    min-height: 500px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 70px;
}


.alugar-hero-text {
    max-width: 720px;

    padding:
        65px 0;
}


.alugar-tag {
    display: block;

    margin-bottom: 16px;

    color: #bbbbbb;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 3px;
}


.alugar-hero h1 {
    max-width: 750px;

    margin-bottom: 20px;

    color: white;

    font-size:
        clamp(48px, 5vw, 76px);

    line-height: .96;

    font-weight: 900;

    font-style: italic;

    letter-spacing: -2px;
}


.alugar-hero h1 strong {
    display: block;

    color: var(--red);
}


.alugar-hero-text > p {
    max-width: 620px;

    color: #dddddd;

    font-size: 18px;

    line-height: 1.65;
}


.alugar-hero-text > p strong {
    color: var(--red);
}



/* =========================================================
   BOTÃO
========================================================= */

.alugar-btn {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    margin-top: 30px;

    padding:
        18px 25px;

    color: white;

    background:
        linear-gradient(
            135deg,
            #ff1723,
            #cc000a
        );

    border-radius: 8px;

    font-size: 13px;

    font-weight: 900;

    box-shadow:
        0 14px 35px
        rgba(237,16,27,.25);

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}


.alugar-btn:hover {
    transform:
        translateY(-3px);

    box-shadow:
        0 18px 40px
        rgba(237,16,27,.38);
}


.wa-circle {
    color: #ffffff;

    font-size: 17px;
}



/* =========================================================
   DECORAÇÃO HERO
========================================================= */

.hero-decoration {
    position: relative;

    min-width: 310px;

    padding:
        30px 0 30px 35px;

    border-left:
        1px solid
        rgba(255,255,255,.13);
}


.hero-decoration span {
    position: absolute;

    right: 0;
    top: -80px;

    color:
        rgba(255,255,255,.025);

    font-size: 190px;

    font-weight: 900;

    line-height: 1;
}


.hero-decoration p {
    position: relative;

    z-index: 2;

    color: #ffffff;

    font-size: 25px;

    font-weight: 900;

    font-style: italic;

    line-height: 1.1;
}



/* =========================================================
   HEADINGS
========================================================= */

.alugar-heading > span,
.dark-tag {
    position: relative;

    display: inline-block;

    padding-left: 55px;

    color: var(--red);

    font-size: 11px;

    font-weight: 900;

    letter-spacing: 1.3px;
}


.alugar-heading > span::before,
.dark-tag::before {
    content: "";

    position: absolute;

    left: 0;

    top: 50%;

    width: 43px;
    height: 3px;

    transform:
        translateY(-50%);

    background: var(--red);
}


.alugar-heading h2 {
    margin-top: 9px;

    color: #111111;

    font-size:
        clamp(30px, 3vw, 44px);

    font-weight: 900;

    font-style: italic;

    line-height: 1;
}


.alugar-heading h2 strong {
    color: var(--red);
}



/* =========================================================
   PROCESSO
========================================================= */

.processo {
    padding:
        70px 0 80px;

    color: #111111;

    background:
        linear-gradient(
            135deg,
            #ffffff,
            #eeeeee
        );
}


.processo-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0,1fr));

    gap: 17px;

    margin-top: 35px;
}


.processo-card {
    min-height: 255px;

    padding: 25px;

    background: #ffffff;

    border:
        1px solid
        rgba(0,0,0,.05);

    border-radius: 11px;

    box-shadow:
        0 10px 30px
        rgba(0,0,0,.055);

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}


.processo-card:hover {
    transform:
        translateY(-6px);

    box-shadow:
        0 18px 40px
        rgba(0,0,0,.10);
}


.processo-top {
    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 24px;
}


.numero {
    color: var(--red);

    font-size: 48px;

    font-weight: 900;

    font-style: italic;

    line-height: 1;
}


.processo-icone {
    width: 55px;
    height: 55px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #111111;

    font-size: 30px;

    border-radius: 50%;

    background: #f2f2f2;
}


.processo-card h3 {
    margin-bottom: 10px;

    color: #111111;

    font-size: 16px;

    font-weight: 900;
}


.processo-card p {
    color: #666666;

    font-size: 13px;

    line-height: 1.65;
}



/* =========================================================
   PRATICIDADE
========================================================= */

.praticidade {
    position: relative;

    overflow: hidden;

    padding:
        85px 0;

    background:
        linear-gradient(
            110deg,
            #050607,
            #101113
        );
}


.praticidade::after {
    content: "";

    position: absolute;

    left: -200px;
    bottom: -330px;

    width: 650px;
    height: 650px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(237,16,27,.12),
            transparent 67%
        );
}


.praticidade-grid {
    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        .9fr 1.4fr;

    align-items: center;

    gap: 85px;
}


.praticidade-texto h2 {
    margin:
        14px 0 20px;

    color: #ffffff;

    font-size:
        clamp(38px, 4vw, 58px);

    font-weight: 900;

    font-style: italic;

    line-height: .98;
}


.praticidade-texto h2 strong {
    color: var(--red);
}


.praticidade-texto p {
    max-width: 500px;

    color: #bbbbbb;

    font-size: 14px;

    line-height: 1.75;
}



/* =========================================================
   VANTAGENS
========================================================= */

.vantagens {
    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 25px;
}


.vantagem {
    min-height: 190px;

    padding:
        5px 10px;
}


.vantagem-icon {
    width: 58px;
    height: 58px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 18px;

    color: var(--red);

    border:
        2px solid var(--red);

    border-radius: 50%;

    font-size: 27px;

    font-weight: 900;
}


.vantagem h3 {
    color: #ffffff;

    font-size: 15px;

    font-weight: 900;

    line-height: 1.2;
}


.vantagem h3 strong {
    display: block;

    color: var(--red);
}


.vantagem p {
    margin-top: 10px;

    color: #999999;

    font-size: 12px;

    line-height: 1.6;
}



/* =========================================================
   INFORMAÇÕES
========================================================= */

.informacoes {
    padding:
        75px 0 85px;

    color: #111111;

    background:
        linear-gradient(
            135deg,
            #ffffff,
            #eeeeee
        );
}


.informacoes-grid {
    display: grid;

    grid-template-columns:
        repeat(4,minmax(0,1fr));

    gap: 17px;

    margin-top: 35px;
}


.info-card {
    min-height: 230px;

    padding: 26px;

    background: #ffffff;

    border:
        1px solid
        rgba(0,0,0,.05);

    border-radius: 11px;

    box-shadow:
        0 10px 30px
        rgba(0,0,0,.05);

    transition:
        transform .25s ease;
}


.info-card:hover {
    transform:
        translateY(-5px);
}


.info-icon {
    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 18px;

    color: var(--red);

    border:
        2px solid var(--red);

    border-radius: 8px;

    font-size: 24px;

    font-weight: 900;
}


.info-card h3 {
    margin-bottom: 13px;

    color: #111111;

    font-size: 15px;

    font-weight: 900;
}


.info-card p {
    color: #666666;

    font-size: 13px;

    line-height: 1.65;
}


.info-card p strong {
    color: var(--red);
}



/* =========================================================
   FAQ
========================================================= */

.faq {
    padding:
        80px 0 90px;

    background:
        linear-gradient(
            120deg,
            #050607,
            #111214
        );
}


.faq-top {
    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 30px;

    margin-bottom: 32px;
}


.faq h2 {
    margin-top: 10px;

    color: #ffffff;

    font-size:
        clamp(35px,4vw,52px);

    font-weight: 900;

    font-style: italic;
}


.faq h2 strong {
    color: var(--red);
}


.faq-whatsapp {
    display: flex;

    align-items: center;

    gap: 13px;

    padding-bottom: 8px;
}


.faq-whatsapp > span {
    color: var(--red);

    font-size: 35px;
}


.faq-whatsapp strong {
    display: block;

    color: var(--red);

    font-size: 10px;
}


.faq-whatsapp small {
    display: block;

    margin-top: 4px;

    color: #aaaaaa;

    font-size: 9px;
}



/* =========================================================
   FAQ GRID
========================================================= */

.faq-grid {
    display: grid;

    grid-template-columns:
        repeat(2,minmax(0,1fr));

    gap: 11px 30px;
}


.faq-item {
    overflow: hidden;

    border:
        1px solid #303236;

    border-radius: 6px;

    background:
        rgba(255,255,255,.015);

    transition:
        border-color .25s ease,
        background .25s ease;
}


.faq-item.aberto {
    border-color:
        rgba(237,16,27,.75);

    background:
        rgba(237,16,27,.035);
}


.faq-pergunta {
    width: 100%;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding:
        17px 19px;

    border: 0;

    background: transparent;

    color: #eeeeee;

    text-align: left;

    cursor: pointer;

    font-size: 13px;

    font-weight: 500;
}


.faq-pergunta b {
    color: #ffffff;

    font-size: 23px;

    font-weight: 400;

    transition:
        transform .25s ease,
        color .25s ease;
}


.faq-item.aberto
.faq-pergunta b {
    color: var(--red);

    transform:
        rotate(45deg);
}



/* =========================================================
   RESPOSTA FAQ
========================================================= */

.faq-resposta {
    display: grid;

    grid-template-rows: 0fr;

    transition:
        grid-template-rows .35s ease;
}


.faq-resposta > p {
    overflow: hidden;

    padding:
        0 19px;

    color: #aaaaaa;

    font-size: 12px;

    line-height: 1.65;

    transition:
        padding .35s ease;
}


.faq-item.aberto
.faq-resposta {
    grid-template-rows: 1fr;
}


.faq-item.aberto
.faq-resposta > p {
    padding:
        0 19px 19px;
}



/* =========================================================
   CTA FINAL
========================================================= */

.alugar-cta {
    position: relative;

    overflow: hidden;

    padding:
        65px 0;

    background:
        linear-gradient(
            110deg,
            #220002,
            #800008 55%,
            #250002
        );
}


.alugar-cta::after {
    content: "";

    position: absolute;

    right: -80px;
    top: -100px;

    width: 500px;
    height: 500px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(255,255,255,.10),
            transparent 65%
        );
}


.alugar-cta-content {
    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 50px;
}


.alugar-cta-content > div > span {
    color: #eeeeee;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;
}


.alugar-cta h2 {
    margin:
        8px 0 8px;

    color: #ffffff;

    font-size:
        clamp(37px,4vw,56px);

    font-weight: 900;

    font-style: italic;
}


.alugar-cta h2 strong {
    color: #ffffff;
}


.alugar-cta p {
    color: #dddddd;

    font-size: 14px;
}


.alugar-cta .alugar-btn {
    margin-top: 0;

    min-width: 300px;

    background: #ed101b;
}



/* =========================================================
   FOOTER MENU
========================================================= */

.footer-mini-menu {
    display: flex;

    align-items: center;

    gap: 24px;
}


.footer-mini-menu a {
    color: #777777;

    font-size: 11px;

    transition:
        color .2s ease;
}


.footer-mini-menu a:hover {
    color: var(--red);
}



/* =========================================================
   WHATSAPP FLUTUANTE
========================================================= */

.alugar-floating {
    color: #ffffff;

    font-size: 25px;

    font-weight: 900;
}



/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {

    .alugar-hero-content {
        gap: 30px;
    }


    .hero-decoration {
        min-width: 220px;
    }


    .processo-grid {
        grid-template-columns:
            repeat(2,1fr);
    }


    .praticidade-grid {
        grid-template-columns:
            1fr;
    }


    .vantagens {
        max-width: 750px;
    }


    .informacoes-grid {
        grid-template-columns:
            repeat(2,1fr);
    }


    .footer-mini-menu {
        display: none;
    }

}



/* =========================================================
   CELULAR
========================================================= */

@media (max-width: 700px) {

    .menu-ativo::after {
        display: none;
    }


    .alugar-hero {
        min-height: auto;
    }


    .alugar-hero-content {
        min-height: auto;

        display: block;
    }


    .alugar-hero-text {
        padding:
            65px 0;
    }


    .alugar-hero h1 {
        font-size: 45px;
    }


    .alugar-hero-text > p {
        font-size: 15px;
    }


    .hero-decoration {
        display: none;
    }


    .processo {
        padding:
            55px 0;
    }


    .processo-grid {
        grid-template-columns:
            1fr;
    }


    .processo-card {
        min-height: auto;
    }


    .praticidade {
        padding:
            65px 0;
    }


    .vantagens {
        grid-template-columns:
            1fr;
    }


    .vantagem {
        min-height: auto;
    }


    .informacoes {
        padding:
            60px 0;
    }


    .informacoes-grid {
        grid-template-columns:
            1fr;
    }


    .info-card {
        min-height: auto;
    }


    .faq {
        padding:
            65px 0;
    }


    .faq-top {
        align-items: flex-start;

        flex-direction: column;
    }


    .faq-grid {
        grid-template-columns:
            1fr;
    }


    .alugar-cta-content {
        align-items: flex-start;

        flex-direction: column;
    }


    .alugar-cta .alugar-btn {
        width: 100%;

        min-width: 0;
    }

 

}