/*==========================================================
ARENASA
CALL TO ACTION
Version 1.0
PART 1
==========================================================*/

/*==========================================================
SECTION
==========================================================*/

.cta-section{

    position:relative;

    overflow:hidden;

    padding:130px 0;

    background:

        linear-gradient(
            rgba(5,12,8,.82),
            rgba(5,12,8,.88)
        ),

        url("../img/cta-bg.jpg");

    background-size:cover;

    background-position:center;

    background-attachment:fixed;

}

/*==========================================================
BACKGROUND EFFECT
==========================================================*/

.cta-section::before{

    content:"";

    position:absolute;

    inset:0;

    pointer-events:none;

    background:

        radial-gradient(

            circle at top left,

            rgba(212,175,55,.10),

            transparent 35%

        ),

        radial-gradient(

            circle at bottom right,

            rgba(36,110,72,.20),

            transparent 40%

        );

}

.cta-section::after{

    content:"";

    position:absolute;

    inset:0;

    pointer-events:none;

    opacity:.03;

    background-image:

        radial-gradient(#ffffff 1px, transparent 1px);

    background-size:12px 12px;

}

/*==========================================================
CONTAINER
==========================================================*/

.cta-section .container{

    position:relative;

    z-index:2;

    max-width:1200px;

    margin:auto;

    padding:0 30px;

}

/*==========================================================
CTA BOX
==========================================================*/

.cta-box{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:70px;

    padding:70px;

    border-radius:32px;

    background:rgba(10,28,19,.68);

    backdrop-filter:blur(18px);

    border:1px solid rgba(212,175,55,.20);

    box-shadow:

        0 30px 80px rgba(0,0,0,.35),

        inset 0 1px 0 rgba(255,255,255,.05);

}

/*==========================================================
CONTENT
==========================================================*/

.cta-content{

    flex:1;

}

.cta-subtitle{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:10px 24px;

    margin-bottom:24px;

    border-radius:100px;

    background:rgba(212,175,55,.08);

    border:1px solid rgba(212,175,55,.25);

    color:#D4AF37;

    font-size:14px;

    font-weight:600;

    text-transform:uppercase;

    letter-spacing:1px;

}

.cta-subtitle::before{

    content:"";

    width:8px;

    height:8px;

    border-radius:50%;

    background:#D4AF37;

    box-shadow:0 0 12px rgba(212,175,55,.8);

}

.cta-content h2{

    margin:0;

    color:#FFFFFF;

    font-family:'Cormorant Garamond',serif;

    font-size:56px;

    font-weight:700;

    line-height:1.15;

}

.cta-content p{

    margin-top:28px;

    color:rgba(255,255,255,.82);

    font-size:18px;

    line-height:1.9;

    max-width:680px;

}

/*==========================================================
ARENASA
CTA
PART 2
BUTTON
==========================================================*/

/*==========================================================
BUTTON GROUP
==========================================================*/

.cta-button{

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:center;

    gap:20px;

    min-width:300px;

}

/*==========================================================
COMMON BUTTON
==========================================================*/

.cta-button a{

    position:relative;

    overflow:hidden;

    width:100%;

    display:flex;

    align-items:center;

    justify-content:center;

    gap:14px;

    padding:18px 34px;

    border-radius:60px;

    text-decoration:none;

    font-size:17px;

    font-weight:700;

    transition:all .35s ease;

}

/*==========================================================
WHATSAPP
==========================================================*/

.btn-whatsapp{

    color:#FFFFFF;

    background:linear-gradient(
        135deg,
        #25D366,
        #128C7E
    );

    box-shadow:
        0 18px 45px rgba(18,140,126,.35);

}

.btn-whatsapp i{

    font-size:22px;

}

.btn-whatsapp:hover{

    transform:translateY(-5px);

    box-shadow:
        0 26px 55px rgba(18,140,126,.45);

}

/*==========================================================
OUTLINE
==========================================================*/

.btn-outline{

    color:#FFFFFF;

    border:2px solid rgba(212,175,55,.35);

    background:rgba(255,255,255,.03);

    backdrop-filter:blur(8px);

}

.btn-outline i{

    color:#D4AF37;

    font-size:18px;

}

.btn-outline:hover{

    transform:translateY(-5px);

    color:#10241B;

    background:#D4AF37;

    border-color:#D4AF37;

    box-shadow:
        0 20px 50px rgba(212,175,55,.30);

}

.btn-outline:hover i{

    color:#10241B;

}

/*==========================================================
SHINE EFFECT
==========================================================*/

.cta-button a::before{

    content:"";

    position:absolute;

    top:0;

    left:-120%;

    width:80%;

    height:100%;

    background:linear-gradient(

        120deg,

        transparent,

        rgba(255,255,255,.28),

        transparent

    );

    transform:skewX(-25deg);

    transition:all .8s ease;

}

.cta-button a:hover::before{

    left:140%;

}

/*==========================================================
FOCUS
==========================================================*/

.cta-button a:focus{

    outline:none;

}

.cta-button a:focus-visible{

    box-shadow:

        0 0 0 4px rgba(212,175,55,.20);

}

/*==========================================================
ARENASA
CTA
PART 3
HOVER • ANIMATION • RESPONSIVE
==========================================================*/

/*==========================================================
CTA BOX HOVER
==========================================================*/

.cta-box{

    transition:
        transform .45s ease,
        border-color .35s ease,
        box-shadow .35s ease;

}

.cta-box:hover{

    transform:translateY(-8px);

    border-color:rgba(212,175,55,.35);

    box-shadow:

        0 35px 90px rgba(0,0,0,.42),

        0 0 45px rgba(212,175,55,.08),

        inset 0 1px 0 rgba(255,255,255,.05);

}

/*==========================================================
TEXT HOVER
==========================================================*/

.cta-box:hover .cta-subtitle{

    background:rgba(212,175,55,.14);

}

.cta-box:hover h2{

    color:#F7E7A8;

    transition:.35s;

}

/*==========================================================
REVEAL ANIMATION
==========================================================*/

.cta-box{

    opacity:0;

    transform:translateY(50px);

}

.cta-box.show{

    opacity:1;

    transform:translateY(0);

    transition:

        opacity .8s ease,

        transform .8s ease,

        border-color .35s ease,

        box-shadow .35s ease;

}

/*==========================================================
RESPONSIVE
==========================================================*/

@media(max-width:1200px){

    .cta-box{

        gap:50px;

        padding:60px;

    }

}

@media(max-width:992px){

    .cta-box{

        flex-direction:column;

        text-align:center;

    }

    .cta-content{

        display:flex;

        flex-direction:column;

        align-items:center;

    }

    .cta-content h2{

        font-size:46px;

    }

    .cta-content p{

        max-width:100%;

    }

    .cta-button{

        width:100%;

        max-width:420px;

        min-width:unset;

    }

}

@media(max-width:768px){

    .cta-section{

        padding:90px 0;

        background-attachment:scroll;

    }

    .cta-section .container{

        padding:0 20px;

    }

    .cta-box{

        padding:45px 30px;

        border-radius:24px;

    }

    .cta-subtitle{

        font-size:13px;

    }

    .cta-content h2{

        font-size:38px;

    }

    .cta-content p{

        font-size:16px;

        line-height:1.8;

    }

    .cta-button a{

        padding:16px 28px;

        font-size:16px;

    }

}

@media(max-width:576px){

    .cta-section{

        padding:70px 0;

    }

    .cta-section .container{

        padding:0 18px;

    }

    .cta-box{

        padding:35px 24px;

    }

    .cta-content h2{

        font-size:32px;

        line-height:1.25;

    }

    .cta-content p{

        font-size:15px;

        margin-top:20px;

    }

    .cta-button{

        gap:16px;

    }

    .cta-button a{

        font-size:15px;

        border-radius:50px;

    }

}

@media(max-width:420px){

    .cta-content h2{

        font-size:28px;

    }

    .cta-subtitle{

        padding:8px 18px;

        font-size:12px;

    }

    .btn-whatsapp i{

        font-size:20px;

    }

    .btn-outline i{

        font-size:16px;

    }

}

/*==========================================================
END
==========================================================*/