@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700;900&display=swap');

:root {
    /* colores */
    --cta-gradient-1: #ff3399;
    --cta-gradient-2: #b1055b;
    --light-grey: #292d2e;
    --dark-grey: #232626;
    --white: #ffffff;

    /* fuentes */
    --font-family: 'Montserrat', sans-serif;
    --font-size: 16px;
    --font-weight-regular: 400;
    --font-weight-bold: 700;
    --font-weight-black: 900;

    /* espaciado */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 32px;
    --spacing-xl: 40px;
    --spacing-xxl: 48px;
    --spacing-container: 80px;

    /* border-radius */
    --border-radius: 16px;
  }

  /* scroll */
  ::-webkit-scrollbar {
    width: 15px;
}

::-webkit-scrollbar-track {
    background: var(--dark-grey);
}

::-webkit-scrollbar-thumb {
    background-color: var(--cta-gradient-1);
    border-radius: 6px;
}

  /* generales */

  body, html {
    overflow-x: hidden;
  }

  body * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    overflow: hidden;
  }

  body {
        font-family: var(--font-family);
        font-size: var(--font-size);
        font-weight: var(--font-weight-regular);
        color: var(--white);
        background: var(--light-grey);
        margin: 0;
        padding: 0;;
    }

p {
    font-size: var(--font-size);
    font-weight: var(--font-weight-regular);
    line-height: 1.2;
}

h1, h2, h3 {
    line-height: 1;
}

h1 {
    font-size: 26px;
    font-weight: var(--font-weight-regular);
    margin-bottom: 15px;
}

h2 {
    font-size: 22px;
    font-weight: var(--font-weight-bold);
}

h3 {
    font-size: 16px;
    font-weight: var(--font-weight-bold);
}

.desktop {
    display: none;
}


/*********
site
******/

:root {
    --site-bg: #150F1C;
}

.header-site {
    width: 100%;
    height: 80px;
    padding: 20px 16px;
    background: var(--site-bg);
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-site img {
    height: 100%;
    width: auto;
}

/* btn */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    position: relative;
    border-radius: var(--border-radius);
    background: linear-gradient(90deg, var(--cta-gradient-1), var(--cta-gradient-2));
    border: 3px solid transparent;
    color: white;
    font-weight: var(--font-weight-bold);
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
    padding: calc(var(--spacing-md)/2) var(--spacing-md);
    transition: all 0.6s;  
    margin-bottom: 50px;
}

.btn:hover {
    box-shadow: #ffffff 0px 0px 10px 3px;
}

.click {
    padding: 0 30px;
    text-align: center;
    cursor: pointer;
    border: 3px solid var(--main-bg);
    -moz-animation: shakeme 3s infinite;
    -o-animation: shakeme 3s infinite;    
    -webkit-animation: shakeme 3s infinite;
    animation: shakeme 3s infinite;
  }
  
  @keyframes shakeme {
    0% {
      scale: 1;
    }
    5% {
      scale: 0.5;
    }
    10% {
        scale: 1.1;
    }
    15% {
        scale: 0.8;
    }
    20% {
        scale: 1.15;
    }
    30% {
        scale: 1.1;
    }
  }

  .click:hover {
    animation: none;
  }

/* size btn */

.btn.btn-large {
    font-size: 26px;
    padding: var(--spacing-sm) var(--spacing-xl);
    gap: var(--spacing-sm);  
}

.btn.btn-medium {
    font-size: 22px;
    padding: var(--spacing-xs) var(--spacing-md);
}

.btn.btn-medium ::after {
    width: 12px;
    height: 12px;
}

/* section */

section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

section .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: strech;
    padding: var(--spacing-container) var(--spacing-sm);
    width: 100%;
    max-width: 996px;
}

@keyframes btn-animate {
    0% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(180deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes header-zoom{
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.03);
    }
    100% {
        transform: scale(1);
    }
}

/* header */

header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: var(--spacing-xl);
    padding: 50px 20px;
    background: url('../images/sports/bg.jpg') no-repeat center left;
    overflow: hidden;
}

header .container {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1200px;
}

header .bono-container  {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 0 1;
    gap: var(--spacing-xl);
}

header .header-logo {
    width: 100%;
    display: flex;
    position: relative;
    align-items: center;
    flex-direction: column;
    gap: var(--spacing-xl);
}

header .header-logo::after {
    content: '';
    display: block;
    position: relative;
    width: 100%;
    height: 1px;
    background: var(--green);
    margin-top: var(--spacing-xs);
}
header .header-logo img {
    width: auto;
    height: 50px;
}


header .bono-content {
    text-align: center;
    max-width: 500px;

    & h1 {
        font-size: 26px;
        font-weight: var(--font-weight-regular);
    }

    & .claim {
        font-size: 20px;
        font-weight: var(--font-weight-bold);
    }

    & .bono-value {
        display: flex;
        flex-direction: column;
        gap: var(--spacing-xs);
        font-size: 36px;
        line-height: .9;
        font-weight: var(--font-weight-black);
        color: var(--cta-gradient-1);
        margin: var(--spacing-sm) 0;
    }
}

.depositos-container{
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 600px;
    padding: 15px;
    text-decoration: none;
    color: white;
}

.bono-card{
    background: linear-gradient(90deg, var(--light-grey), #695e3e);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 25px;
    border-radius: 10px;
    width: 100%;
    height: 150px;
    width: 100%;
    border: 3px solid var(--cta-gradient-1);
}

.bono-card img{
    width: 150px;
}
.bono-card:hover{
    scale: 1.05;
    transition: all 0.6s;
}

.bono-card-content{
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.bono-card-content strong{
    font-size: 18px;
    font-weight: var(--font-weight-bold);
    color: white;
}

.bono-card-content small{
    font-size: 14px;
}

.bono-card-content span{
    font-size: 22px;
    font-weight: var(--font-weight-bold);
    color: var(--cta-gradient-1);
}

/* section games */

.games-a{
    text-decoration: none;
    color: white;
    width: 100%;
    display: flex;
    justify-content: center;
}

section.games {
    background: var(--light-grey);
}

.games-a-container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: var(--spacing-xl);
    padding: var(--spacing-xl);
}

.game{
    background-color: var(--dark-grey);
    border: 3px solid var(--cta-gradient-1);
    border-radius: 15px;
    width: 80%;
    margin: 0 auto;
}

.game img{
    width: 100%;
}

.games-a-container{
    display: flex;
    justify-content: center;
    max-width: 1200px;
    padding: 100px 50px;
}

.game:hover{
    scale: 1.1;
    transition: all 0.6s;
}

.games-a-container .game-content{
    padding: 15px;
}

.games-a-container .game-content h3{
    color: var(--cta-gradient-1);
    font-size: 18px;
    font-weight: var(--font-weight-bold);
    margin-bottom: 15px;
}

.games-a-container .content{
    padding: 0 25px;
    text-align: center;
}

.games-a-container .content h2{
    margin-bottom: 50px;
    font-size: 30px;
}

.games-a-container .content small{
    font-size: 22px;
    color: var(--cta-gradient-1);
}

/* footer */

footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: var(--dark-grey);
}

footer .container {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    align-items: center;
    padding: var(--spacing-container) var(--spacing-sm);
}

footer .container .legal {
    display: flex;
    justify-items: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    justify-content: center;

    & img {
        width: auto;
    }

    & .mayor {
        height: 32px;
    }

    & .loteria {
        width: auto;
        height: 37px;
    }

    & .text-legal {
        font-size: 14px;
        font-weight: var(--font-weight-bold);
        line-height: 1;
        text-transform: uppercase;
        flex: 0 1 240px;
        width: 240px;
        text-align: right;
    }

    & .help {
        height: 43px;
    }

    & .linea {
        height: 34px;
        
    }
}

.logo-footer{
    height: 50px;
    margin-top: 25px;
}

.footer-text {
    font-size: 12px;
    max-width: 1200px;
    text-align: center;
    margin-top: 15px;
    padding: 0 20px;
}


/* media queries */

/* desktop */

@media (min-width: 768px) {
    .desktop {
        display: block;
    }
    .mobile {
        display: none;
    }

    /* btn */
    /* size btn */

    .btn.btn-large {
        font-size: 31px;
        padding: var(--spacing-sm) var(--spacing-lg);
        gap: var(--spacing-sm);  
    }

    .btn.btn-medium {
        font-size: 28px;
        padding: var(--spacing-sm) var(--spacing-lg);
        max-width: 350px;
    }


    /* header */

    header{
        flex-direction: row;
    }
    
    header .container {
        justify-content: center;
    }

    header .desktop{
        animation: header-zoom 3s ease-in normal infinite;
    }

    header .header-logo {
        align-items: flex-start;
        flex: 0 1;
        width: min-content;
        padding-left: 25px;
    }

    header .bono-container {
        align-items: start;
        justify-content: center;
        gap: 75px;
        /* max-width: 800px; */
        flex: 1 1;
        padding-left: 25px;
    }
    
    
    header .bono-content {
        text-align: left;
        & h1 {
            font-size: 31px;
        }
    
        & .claim {
            font-size: 22px;
        }
    
        & .bono-value {
            font-size: 45px;
        }
    }

    .bono-card img{
        width: 200px;
    }

    /* section games */

    .games-a-container{
        flex-direction: row;
    }

    .games-a-container .content{
        text-align: left;
    }

    .game{
        max-width: 250px;
    }

footer .container .legal {
    gap: var(--spacing-md);
    align-items: center;

    & .mayor {
        height: 37px;
    }

    & .loteria {
        width: auto;
        height: 46px;
    }

    & .text-legal {
        font-size: 12px;
       text-align: center;
    }

    & .help {
        height: 50px;
    }

    & .linea {
        height: 47px;
        
    }
}

.fixed-qr{
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 999;
    width: 200px;
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 10px;
    text-transform: uppercase;
}

.fixed-qr span{
    color: white;
    font-weight: var(--font-weight-bold);
    padding: 10px 0;
}

.fixed-qr-top{
    background-color: var(--cta-gradient-1);
    border-radius: 10px 10px 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.fixed-qr-top img{
    width: 30px;
    height: 30px;
    margin-right: 10px;
}

.fixed-qr-bottom{
    background-color: var(--cta-gradient-1);
    border-radius: 0 0 10px 10px;
}
}














