/*==================================================
    GOOGLE FONTS
==================================================*/

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');


/*==================================================
    VARIABLES
==================================================*/

:root{

    --gold:#C8A24B;
    --gold-light:#E4C36A;

    --background:#0b0b0b;

    --white:#ffffff;

    --text:#E8E8E8;

    --gray:#B5B5B5;

    --green:#25D366;

    --green-hover:#1EBE5D;

}


/*==================================================
    RESET
==================================================*/

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    background:var(--background);

    color:var(--text);

    font-family:'Inter',sans-serif;

}


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

.hero{

    min-height:100vh;

    background:
    linear-gradient(
    90deg,
    rgba(0,0,0,.88),
    rgba(0,0,0,.70),
    rgba(0,0,0,.25)),
    url("../img/hero-karate.png");

    background-size:cover;

    background-position:center;

    display:flex;

    align-items:center;

}


/*==================================================
    CONTENEDOR
==================================================*/

.hero-container{

    width:min(1200px,220%);

    margin:auto;

}


/*==================================================
    LOGOS
==================================================*/

.hero-logos{

    display:flex;

    gap:60px;

    align-items:center;

    margin-bottom:70px;

    position:relative;

}

.logo{

    height:85px;

    object-fit:contain;

    transition:.3s;

}

.hero-logos::after{

    content:"";

    position:absolute;

    width:220px;

    height:2px;

    left:0;

    bottom:-30px;

    background:linear-gradient(
        90deg,
        transparent,
        var(--gold),
        transparent
    );

}

.logo:hover{

    transform:scale(1.03);

}

/*==================================================
    TEXTO
==================================================*/

.hero-text{

    max-width:650px;

}

.hero-text h1{

    font-family:'Cinzel',serif;

    font-size:3.4rem;

    line-height:1.25;

    margin-bottom:30px;

    font-size:3.8rem;

    max-width:720px;

}

.hero-text span{

    color:var(--gold);

}

.hero-text p{

    color:var(--gray);

    font-size:1.15rem;

    line-height:1.9;

    margin-bottom:45px;

    max-width:560px;

}



/*==================================================
    BOTON
==================================================*/

.btn-whatsapp{

    display:inline-flex;

    align-items:center;

    text-decoration:none;

    color:white;

    background:linear-gradient(
        180deg,
        #0d7230,
        #0d642f
    );

    padding:18px 35px;

    border-radius:14px;

    transition:.35s;

    box-shadow:
        0 15px 45px rgba(0,0,0,.35);

}

.btn-whatsapp:hover{

    transform:translateY(-5px);

    box-shadow:
        0 22px 45px rgba(0,0,0,.45);

}

.btn-whatsapp strong{

    display:block;

    font-size:1rem;

}

.btn-whatsapp span{

    font-size:.9rem;

}


/*==================================================
    RESPONSIVE
==================================================*/

@media(max-width:900px){

.hero{

    text-align:center;

}

.hero-logos{

    justify-content:center;

    gap:25px;

}

.logo{

    height:70px;

}

.hero-text{

    margin:auto;

}

.hero-text h1{

    font-size:2.3rem;

}

.hero-text p{

    font-size:1rem;

}

}
