@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,400,500,600,700,800');
@import url('https://fonts.googleapis.com/css?family=Josefin+Sans:100i,300,400,600,700');


:root {
    --shiny-cta-bg: #200000;
    --shiny-cta-bg-subtle: #1a1818;
    --shiny-cta-fg: #ffffff;
    --shiny-cta-highlight: #ff0008;
    --shiny-cta-highlight-subtle: #8484ff;
  }


/* Scrollbar */
::-webkit-scrollbar {
    height: 10px;
    width: 10px;
}

::-webkit-scrollbar-thumb {
    background-color: #dd0107;
    border-radius: 6px;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    color: white;
    text-decoration: none;
    scroll-behavior: smooth;
    font-family: 'Josefin Sans', sans-serif;
}

body {
    background: black;
}

/* Navigation */
.nav-container {
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    background-color: black;
    z-index: 1;
}

.nav {
    width: 100%;
    height: 100%;
    max-width: 1280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media screen and (max-width: 350px) {
    .nav {
        scale: 0.8;
    }
    
}

@media screen and (min-width: 768px) {
    .nav {
        justify-content: space-between;
    }
}

.logos-container {
    display: flex;
    align-items: center;
    gap: 50px;
    width: 100%;
}

@media screen and (max-width: 768px) {
    .logos-container {
        gap: 25px;
        justify-content: center;
    }
}

.logos-container img {
    height: 50px;
    width: auto;
    max-width: 150px;
}

@media screen and (max-width: 768px) {
    .logos-container img {
        height: 30px;
    }
}

.separador {
    height: 50px;
    width: 1px;
    background: white;
}

.logo {
    font-size: 35px;
    font-weight: 700;
}

@media screen and (max-width: 768px) {
    .logo {
        font-size: 25px;
    }
}

.nav ul {
    display: none;
}

@media screen and (min-width: 768px) {
    .nav ul {
        display: flex;
        align-items: center;
    }
}

.nav ul li {
    font-size: 20px;
    padding: 0 25px;
    border-right: 1px solid white;
}

.nav ul li:last-child {
    border-right: none;
}

.nav ul li:hover {
    color: #dd0107;
}

/* Hero Section */
.hero-container {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url("../img/main_img.png") no-repeat left top/cover;
    flex-direction: column;
    gap: 25px;
    padding: 35px;
}

h1, h2 {
    font-weight: 400;
}

h1 {
    font-size: 50px;
}

@media screen and (min-width: 768px) {
    h1 {
        font-size: 90px;
    }
}

h2 {
    font-size: 25px;
}

.span-regular {
    font-weight: 400;
}

/* Bonus Section */
.bonus-container {
    width: 100%;
    padding: 50px 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

@media screen and (min-width: 768px) {
    .bonus-container {
        padding: 100px 0;
    }
}

/* Cards Section */
.cards-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    position: relative;
    max-width: 1280px;
    margin-bottom: 50px;
    gap: 25px;
}

.cards-container i {
    font-size: 25px;
    cursor: pointer;
}

.carrusel, .carrusel2 {
    display: flex;
    width: 100%;
    gap: 50px;
    overflow-x: scroll;
    overflow-y: hidden;
    scroll-behavior: smooth;
    padding-bottom: 50px;
}

.card {
    width: 280px;
    height: 380px;
    background: rgba(221, 1, 7, 0.1);
    border: 1px solid #dd0107;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
}

@media screen and (max-width: 350px) {
    .card {
        width: 220px;
    }
    
}

@media screen and (min-width: 768px) {
    .card {
        width: 300px;
    }
}

.card img {
    height: 60px;
    width: auto;
    max-width: 180px;
}

.bonus {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.bonus p {
    font-size: 30px;
}

.bonus span {
    font-size: 40px;
    font-weight: 700;
}

@media screen and (max-width: 350px) {

    .bonus span {
        font-size: 30px;
    }
    
}

@property --gradient-angle {
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
  }
  
  @property --gradient-angle-offset {
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
  }
  
  @property --gradient-percent {
    syntax: "<percentage>";
    initial-value: 5%;
    inherits: false;
  }
  
  @property --gradient-shine {
    syntax: "<color>";
    initial-value: white;
    inherits: false;
  }

/* .card-cta {
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(90deg,#f40303,#ff3030,#f76d6d,#f40303);
    background-size: 400%;
    cursor: pointer;
    border-radius: 20px;
    color: white;
    font-size: 20px;
} */

.header-cta{
    width: 100%;
    max-width: 350px;
    margin-top: 50px;
}

.main-cta{
    width: 350px;
    height: 60px;
}

.card-cta {
    --animation: gradient-angle linear infinite;
    --duration: 3s;
    --shadow-size: 2px;
    text-align: center;
    isolation: isolate;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    outline-offset: 4px;
    padding: 1rem 5rem;
    font-family: inherit;
    font-size: 1.125rem;
    line-height: 1.2;
    border: 1px solid transparent;
    border-radius: 360px;
    color: var(--shiny-cta-fg);
    background: linear-gradient(var(--shiny-cta-bg), var(--shiny-cta-bg))
        padding-box,
      conic-gradient(
          from calc(var(--gradient-angle) - var(--gradient-angle-offset)),
          transparent,
          var(--shiny-cta-highlight) var(--gradient-percent),
          var(--gradient-shine) calc(var(--gradient-percent) * 2),
          var(--shiny-cta-highlight) calc(var(--gradient-percent) * 3),
          transparent calc(var(--gradient-percent) * 4)
        )
        border-box;
    box-shadow: inset 0 0 0 1px var(--shiny-cta-bg-subtle);
  
    &::before,
    &::after,
    span::before {
      content: "";
      pointer-events: none;
      position: absolute;
      inset-inline-start: 50%;
      inset-block-start: 50%;
      translate: -50% -50%;
      z-index: -1;
    }
  
    &:active {
      translate: 0 1px;
    }
  }
  
  /* Dots pattern */
  .card-cta::before {
    --size: calc(100% - var(--shadow-size) * 3);
    --position: 2px;
    --space: calc(var(--position) * 2);
    width: var(--size);
    height: var(--size);
    background: radial-gradient(
        circle at var(--position) var(--position),
        white calc(var(--position) / 4),
        transparent 0
      )
      padding-box;
    background-size: var(--space) var(--space);
    background-repeat: space;
    mask-image: conic-gradient(
      from calc(var(--gradient-angle) + 45deg),
      black,
      transparent 10% 90%,
      black
    );
    border-radius: inherit;
    opacity: 0.4;
    z-index: -1;
  }
  
  /* Inner shimmer */
  .card-cta::after {
    --animation: shimmer linear infinite;
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(
      -50deg,
      transparent,
      var(--shiny-cta-highlight),
      transparent
    );
    mask-image: radial-gradient(circle at bottom, transparent 40%, black);
    opacity: 0.6;
  }
  
  .card-cta span {
    z-index: 1;
  
    &::before {
      --size: calc(100% + 1rem);
      width: var(--size);
      height: var(--size);
      box-shadow: inset 0 -1ex 2rem 4px var(--shiny-cta-highlight);
      opacity: 0;
    }
  }
  
  /* Animate */
  .card-cta {
    --transition: 800ms cubic-bezier(0.25, 1, 0.5, 1);
    transition: var(--transition);
    transition-property: --gradient-angle-offset, --gradient-percent,
      --gradient-shine;
  
    &,
    &::before,
    &::after {
      animation: var(--animation) var(--duration),
        var(--animation) calc(var(--duration) / 0.4) reverse paused;
      animation-composition: add;
    }
  
    span::before {
      transition: opacity var(--transition);
      animation: calc(var(--duration) * 1.5) breathe linear infinite;
    }
  }
  
  .card-cta:is(:hover, :focus-visible) {
    --gradient-percent: 20%;
    --gradient-angle-offset: 95deg;
    --gradient-shine: var(--shiny-cta-highlight-subtle);
  
    &,
    &::before,
    &::after {
      animation-play-state: running;
    }
  
    span::before {
      opacity: 1;
    }
  }
  
  @keyframes gradient-angle {
    to {
      --gradient-angle: 360deg;
    }
  }
  
  @keyframes shimmer {
    to {
      rotate: 360deg;
    }
  }
  
  @keyframes breathe {
    from,
    to {
      scale: 1;
    }
    50% {
      scale: 1.2;
    }
  }
/* Content Section */
.content-title {
    width: 100%;
    max-width: 1280px;
}

.content-title h2 {
    font-size: 35px;
    font-weight: 700;
}

.content-title hr {
    width: 130px;
    margin: 15px 0 50px 0;
    border: 3px solid white;
}

.cd-headline.clip .cd-words-wrapper {
    overflow: hidden;
    vertical-align: bottom;
}

.cd-headline.clip {
    width: 100%;
}

@media screen and (min-width: 768px) {
    .cd-headline.clip {
        text-align: center;
    }
}

.cd-headline b {
    display: none;
}

.cd-headline b.is-visible {
    display: inline;
}

.cd-words-wrapper {
    border-right: 1px solid white;
}

b {
    color: #dd0107;
}

.is-hidden {
    display: none;
}

/* Description Section */
.descripcion-section {
    width: 100%;
    background: url("../img/bg-descripcion.png") no-repeat right top/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px 15px;
}

.descripcion-container,
.posteos-container {
    width: 100%;
    max-width: 1280px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 100px 0;
    line-height: 1.5;
    font-size: 20px;
}

.descripcion-content p {
    width: 100%;
    margin-bottom: 25px;
}

@media screen and (min-width: 768px) {
    .descripcion-content p {
        width: 60%;
    }
}

.posteos-section {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 30px 15px;
}

.posteos {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    max-width: 1280px;
}

.numero {
    display: flex;
    justify-content: space-between;
    align-items: start;
    width: 60%;
    text-align: center;
    background-color: rgba(255, 223, 27, 0.3);
    border-radius: 20px;
    border: 1px solid #ffdf1b;
    margin-top: 50px;
    padding: 25px 0;
}

@media screen and (max-width: 768px) {
    .numero {
        flex-direction: column;
        width: 100%;
        padding: 25px;
    }
}

.count {
    font-size: 50px;
    font-weight: 700;
    color: #ffdf1b;
}

.item {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    gap: 15px;
    width: 33%;
    height: 200px;
    border-right: 1px solid white;
}

@media screen and (max-width: 768px) {
    .item {
        width: 100%;
        border-bottom: 1px solid white;
        margin: 25px 0;
        padding: 25px 0;
        border-right: none;
    }

    .item:last-child {
        border-bottom: none;
    }
}

.item:last-child {
    border-right: none;
}

.posteos iframe {
    height: 600px;
}

/* Footer Section */

.footer-container {
    background: rgba(73, 73, 73, 0.5);
}

.footer {
    margin: 0 auto;
    max-width: 1280px;
}

.desktop {
    display: none;
}

/* solo cuando no lleva scroll */
/* ////////////////////////////////////// */

@media screen and (min-width:1024px) {
    .carrusel-i{
        display: none;
    }
}

/* ////////////////////////////////////// */

@media screen and (min-width: 768px) {
    .mobile {
        display: none;
    }

    .desktop {
        display: inline;
    }
}
