@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700;900&display=swap');

:root {
    /* colores */
    --cta-gradient-1: #05e172;
    --cta-gradient-2: #242525;
    --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: 36px;
    font-weight: var(--font-weight-bold);
    margin-bottom: 15px;
    font-style: italic;
    color: var(--cta-gradient-1);
}

h2 {
    font-size: 30px;
    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;
    
    background: var(--site-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

.header-site img {
    
    width: 180px;
}

@media screen and (max-width: 768px) {
    .header-site img {
        width: 120px;
    }
}

/* btn */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    position: relative;
    background: var(--cta-gradient-1);
    border: 3px solid transparent;
    color: black;
    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;
}
.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);  
    max-width: 600px;
    width: 100%;
}

/* 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-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}
@media screen and (max-width: 768px) {
    header{
        padding:  0 20px;
        position: relative;
        overflow-x: hidden;
        width: 100% !important;
        max-width: 100%;
        background-color: black;
    }
}


.elementor-video{
    width: 80%;
    position: absolute;
}
@media screen and (max-width: 768px) {
    .elementor-video{
        width: auto;
    }
}

.image-header-left{
    opacity: 0;
}
@media screen and (max-width: 768px) {
   .image-header-left{
    display: none;
   } 
}


header .container {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1200px;
    align-items: center;
}

@media screen and (max-width: 768px) {
    header .container video{
        height: 300px;
    }
    
}

header .bono-container  {
    display: flex;
    margin: 50px 0;
    align-items: center;
    flex: 0 1;
    gap: var(--spacing-xl);
    z-index: 1;
}

@media screen and (max-width: 768px) {
    header .bono-container {
        flex-direction: column;
        align-items: center;
        

    }

    header .bono-container img {
        width: 100%;
        max-width: 90%;
    }
    
}

header .bono-container .bono-content{
    background-color: #1a1a1ab0;
    width: 100%;
    max-width: 600px;
    text-align: center;
    padding: 20px;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

header .bono-container .bono-content hr {
    border-style: dashed;
}

header .bono-container .bono-content .claim {
    font-size: 24px;
    font-weight: var(--font-weight-bold);
}

header .bono-container .bono-content .claim span {
    color: var(--cta-gradient-1);
}

header .header-logo {
    width: 100%;
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xl);
}

header .header-logo img {
    /* width: auto; */
    height: 50px;
}

header .bono-container{
    display: flex;
    justify-content: center;
    width: 100%;
    
}

/* main */

main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}
section.info{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    padding: var(--spacing-container) 0 0 0;
}

section.info p{
    font-size: 16px;
    text-align: center;
    margin: var(--spacing-lg) 0;
}

section.info ul{
    margin-bottom: 35px;
}

section.info ul li{
    font-size: 24px;
    display: flex;
    align-items: center;
    margin: 25px 0;
}

section.info ul li i{
    color: var(--cta-gradient-1);
    margin-right: 30px;
    font-size: 50px;
}

@media screen and (max-width: 768px) {
    section.info ul {
        display: flex;
        flex-direction: column;
        max-width: 80%;
    }

    section.info ul li {
        font-size: 20px;
    }
    section.info ul li i {
        font-size: 30px;
        width: 50px;
    }
    
}

/* section promos */
.promos-a{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 var(--spacing-sm);
    color: var(--white);
    text-decoration: none;
}

.promos-a h2{
    margin-bottom: var(--spacing-lg);
}

.promos-a .promos-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-lg);
    margin-bottom: 35px;
}

@media screen and (max-width: 768px) {
    .promos-a .promos-container {
        flex-direction: column;
        align-items: center;
    }
    
}

.promos-a .promos-container img{
    width: 100%;
    max-width: 600px;
    object-fit: cover;
    height: auto;
    border-radius: var(--border-radius);
    transition: transform 0.3s ease-in-out;
}

@media screen and (max-width: 768px) {
    .promos-a .promos-container img {
        
        object-fit: contain;
    }
    
}

/* section videos */
section.videos h2{
    margin: 50px 0;
}

section.videos h2:first-child {
    margin-top: 0;
}

@media screen and (max-width: 768px) {
    section.videos iframe {
        width: 90%;
        height: 250px;
    }
    
}

/* section testimonios */
section.testimonios {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 40px 20px;
  background-color: var(--cta-gradient-1);
  color: black;
  text-align: center;
  overflow: hidden;
  position: relative;
  margin-top: 50px;
}

section.testimonios h2 {
  margin-bottom: 35px;
}

.testimonios-carousel {
  position: relative;
  width: 100%;
  max-width: 600px;
  height: 80px;
}

.testimonio {
  position: absolute;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  width: 100%;
  top: 0;
  left: 0;
}

.testimonio.active {
  opacity: 1;
}

.testimonio p {
  font-style: italic;
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.testimonio span {
  font-weight: bold;
}

/* fixed WPP */
.fixed-wpp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    width: 80px;
    height: 80px;
    background-color: var(--cta-gradient-1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    font-size: 40px;
    text-decoration: none;
    color: black;
    display: none;
}


/* 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: center;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    justify-content: center;

    & img {
        width: auto;
        max-width: 100px;
    }

}

.logo-footer{
    height: 50px;
    margin-top: 25px;
}

.footer-text {
    font-size: 12px;
    max-width: 1200px;
    text-align: center;
    margin-top: 15px;
    padding: 0 20px;
}












