/* ==========================================================================
   Beatclap Landing Page  -  style.css
   ========================================================================== */
/* =========================
   Viewport Fade-in
========================== */
.anim-fade {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.container{
  max-width: 1280px;
}
.anim-fade.in-view {
  opacity: 1;
  transform: translateY(0);
}
@font-face {
  font-family: 'Gotham Pro';
  src: url('../fonts/Gotham-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: 'Gotham Pro';
  src: url('../assets/fonts/GothamProNarrow-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
}
:root {
  --c-white: #fff;
  --c-black: #000;
  --c-dark: #050308;
  --c-violet-70: #a068fc;
  --c-violet-43: #5926b6;
  --c-violet-42: #5d2ca9;
  --c-violet-83: #e6a9fd;
  --c-grey-60: #999;
  --c-grey-13: #222;
  --c-navy: #001354;
  --c-cta-blue: #d2dcff;
  --c-card-border: #f1f1f1;
  --c-card-shadow: #eaeaea;
  --font-display: 'Gotham Pro';
  --font-body: 'Inter', sans-serif;
  --page-max: 1440px;
  --page-padding: 64px;
  --bg: #000000;
  --pill-bg: #1d1d1f;
  --pill-bg-hover: #29292b;
  --text: #f5f5f7;
  --text-dim: #a1a1a6;
  --accent: #f56300;
  --ease: cubic-bezier(0.28, 0.16, 0.22, 1);
  --dur: 0.55s;
  --fade: 0.6s var(--ease);
}
* {
  box-sizing: border-box
}
html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
}
#smooth-wrapper,
#smooth-content {
  overflow-x: clip;
}
#smooth-content {
  will-change: transform;
}
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--c-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden
}
body,
p,
a,
span,
li,
button,
input,
textarea {
  font-family: 'Inter', sans-serif;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Gotham Pro';
  font-weight: 900;
}
img {
  max-width: 100%;
  display: block
}
a {
  text-decoration: none;
  color: inherit
}
.bc-container {
  width: 100%;
  max-width: var(--page-max);
  margin-inline: auto;
  padding-inline: var(--page-padding)
}
.gradient-heading {
  background: linear-gradient(264.46deg, #FFFFFF 30.39%, #89CD96 66.89%, #3E98CF 101.51%);

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gradient-heading-2 {
  background: linear-gradient(92.14deg, #FFFFFF 11.47%, #E1A057 40.78%, #E15793 63.74%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
}
/* buttons */
.btn-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  border-radius: 42px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -.32px;
  line-height: 1;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .2s, opacity .2s;
  white-space: nowrap
}
.btn-pill:hover {
  transform: translateY(-2px)
}
.btn-pill--white {
  background: #fff;
  color: #000
}
.btn-pill--outline {
  background: transparent;
  color: #fff;
  border-color: #fff
}
.btn-pill--black {
  background: #000;
  color: #fff
}
.btn-pill--lg {
  height: 56px;
  padding-inline: 24px
}
/* shared headings */
.section-heading {
  font-family: 'Gotham Pro';
  font-weight: 900;
  font-size: 56px;
  line-height: 59.4px;
  letter-spacing: -1px;
  text-align: center;
  margin: 0
}
.section-sub {
  font-family: var(--font-body);
  font-size: 20px;
  line-height: 1.5;
  text-align: center;
  margin: 32px 0 0
}
/* Animation */
.fade-up-scale {
  opacity: 0;
}
/* ===== SITE HEADER ===== */
.site-header {
  position: relative;
  z-index: 100;
  overflow: hidden;
  background: #000;
}
/* ===== HERO NAV ===== */
.hero-nav {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 44px;
  gap: 24px;
}
.hero-nav__brand {
  flex: 0 0 auto;
}
.hero-nav__logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 24px;
  letter-spacing: -1px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-nav__logo img,
.custom-logo-link img {
  max-height: 40px;
  width: auto;
}
.hero-nav__menu--desktop {
  flex: 1 1 auto;
  display: flex;
  justify-content: right;
  min-width: 0;
}
.hero-nav__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.hero-nav__list a {
  font-family: 'Satoshi', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}
.hero-nav__list a:hover,
.hero-nav__list .current-menu-item > a,
.hero-nav__list .current_page_item > a {
  opacity: 0.75;
}
.hero-nav__end {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
}
.hero-nav__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.hero-nav__burger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}
.hero-nav__burger-lines,
.hero-nav__burger-lines::before,
.hero-nav__burger-lines::after {
  display: block;
  width: 18px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  position: relative;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.hero-nav__burger-lines::before,
.hero-nav__burger-lines::after {
  content: "";
  position: absolute;
  left: 0;
}
.hero-nav__burger-lines::before {
  top: -6px;
}
.hero-nav__burger-lines::after {
  top: 6px;
}
.hero-nav.is-open .hero-nav__burger-lines {
  background: transparent;
}
.hero-nav.is-open .hero-nav__burger-lines::before {
  top: 0;
  transform: rotate(45deg);
}
.hero-nav.is-open .hero-nav__burger-lines::after {
  top: 0;
  transform: rotate(-45deg);
}
.hero-nav__drawer {
  position: fixed;
  inset: 0;
  z-index: 200;
  width: 100%;
  max-width: 100vw;
  pointer-events: none;
  visibility: hidden;
  overflow: hidden;
}
.hero-nav__drawer:not(.is-open) .hero-nav__drawer-panel {
  visibility: hidden;
}
.hero-nav__drawer.is-open {
  pointer-events: auto;
  visibility: visible;
}
.hero-nav__drawer-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  transition: opacity 0.25s ease;
  cursor: pointer;
}
.hero-nav__drawer.is-open .hero-nav__drawer-backdrop {
  opacity: 1;
}
.hero-nav__drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(320px, 88vw);
  height: 100%;
  background: #111;
  padding: 24px 20px 32px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}
.hero-nav__drawer.is-open .hero-nav__drawer-panel {
  transform: translateX(0);
  visibility: visible;
}
.hero-nav__drawer-close {
  align-self: flex-end;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}
.hero-nav__drawer-menu .hero-nav__list {
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
.hero-nav__drawer-menu .hero-nav__list a {
  font-size: 18px;
}
.hero-nav__drawer-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 40px;
}
.hero-nav__drawer-actions .btn-pill {
  width: 100%;
  justify-content: center;
}
body.nav-open {
  overflow: hidden;
}
html.nav-open {
  overflow: hidden;
}
/* ===== FULL-BLEED IMAGE BANDS (Apple-style placeholders) ===== */
/* ===== TEXT BANNERS (image + copy) ===== */
/* ===== FOOTER ===== */


/* ===== FOOTER ===== */
.footer {
  background: #fff;
  color: #fff;
  padding: 80px 64px
}

.footer__grid {
  max-width: 1312px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 261px repeat(4, 1fr);
  gap: 26px
}

.footer__logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 28px;
  letter-spacing: -1px;
  max-width: 200px;
}

.footer__col h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 18px;
  margin: 0 0 16px
}

.footer__col h4,
.footer__col a,
.legal span,
.legal a {
  color: #000A07 !important;
}

.footer__col ul {
  list-style: none;
  margin: 0;
  padding: 0
}

.footer__col li {
  margin-bottom: 8px
}

.footer__col a {
  font-family: var(--font-body);
  font-size: 16px;
  color: rgba(255, 255, 255, .85)
}

.footer__col a:hover {
  color: #fff
}

.footer__credits {
  max-width: 1312px;
  margin: 40px auto 0;
  padding-top: 32px;
  border-top: 1px solid rgb(118 116 116 / 15%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  font-family: var(--font-body);
  font-size: 15px;
  color: rgba(255, 255, 255, .7)
}

.footer__credits .legal {
  display: flex;
  gap: 24px;
  flex-wrap: wrap
}

.footer__social {
  display: flex;
  gap: 12px
}

.footer__social a {
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px
}
.footer_menu{
  display: flex;
  gap:15px
}
/* ===== RESPONSIVE ===== */
@media (max-width:1023px) {
  .hero-copy *{
    color: #fff !important;
    padding: 0 20px;
  }
  .phone-mask,.sticky-wrap,.pro-video-section{
    height: auto;
  }
  .phone-mask{
    width: auto;
  }
  .pro-video-section{
    padding: 120px 0px;
  }
  .eyebrow {
    margin-bottom: 9px;
    font-size: 23px;
}
.hero-copy{
  margin-bottom: 30px;
}
}
@media (max-width:1200px) {
  :root {
    --page-padding: 40px
  }

  .hero-title {
    font-size: 88px;
    letter-spacing: -3px
  }

  .producto__features {
    grid-template-columns: repeat(2, 1fr);
    margin: 0;
    padding-bottom:70px;
  }

  .footer__grid {
    grid-template-columns:196px repeat(3, 1fr);
  }

  .footer__logo {
    grid-column: 1/-1;
    margin-bottom: 16px
  }

  .banner__row {
    padding-inline: 40px;
    gap: 40px
  }
  .artistas{
    padding-top:0;
  }
.producto{
  padding-top:50px;
}
.producto__mockup{
  margin: 70px 0;
}
.ios-features__head p{
      flex: 0 0 400px;
}
.banner__title,
.testimonials__title,
.videos__title,
.faq__title{
  font-size:45px;
}
.banner__text,
.section-sub{
  font-size:18px;
}
.banner__media img {
    width: 100%;
    object-fit: contain;
}
.banner{
  padding: 60px 0;
}
.cta{
  padding: 80px 10px;
}
.footer__credits .legal { 
  
    justify-content: center;
}
.footer__social { 
    justify-content: center;
    width: 100%;
}

.video-shell {
    width: 750px !important;
    height: 367px !important;
  }


}

@media (max-width:900px) {
  .hero {
    min-height: auto;
    padding-bottom: 60px
  }

  .hero-title {
    font-size: 56px;
    letter-spacing: -2px
  }

  .section-heading,
  .testimonials__title,
  .cta__title,
  .faq__title,
  .banner__title,
  .videos__title {
    font-size: 38px;
    line-height: 1.1;
    letter-spacing: -1px
  }

  .testimonials__title {
    font-size: 42px
  }

  .testimonials__grid {
    columns: 2
  }

  .banner__row,
  .banner__row.is-reverse {
    flex-direction: column;
    text-align: center
  }

  .banner__copy {
    max-width: 100%
  }

  .banner__text {
    margin-inline: auto
  }
}

@media (max-width:991px) {
  .hero-nav__menu--desktop {
    display: none;
  }

  .hero-nav--has-drawer .hero-nav__actions {
    display: none;
  }

  .hero-nav__burger {
    display: inline-flex;
  }
}

@media (max-width:767px) {
  .hero-nav {
    flex-wrap: nowrap;
    justify-content: space-between;
    padding: 16px 20px;
  }

  .hero-pillnav {
    flex-wrap: wrap;
    gap: 12px;
    border-radius: 28px
  }

  .hero-pillnav__row {
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center
  }

  .producto__features {
    grid-template-columns: 1fr
  }

  .testimonials__grid {
    columns: 1
  }

  .footer__grid {
    grid-template-columns:repeat(1, 1fr) !important;
  }

  .video-card {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .videos__track {
    padding-inline: 0;
  }
    .hero-pillnav{

        width:100%;

        max-width:100%;

        overflow-x:auto;

        overflow-y:hidden;

        justify-content:flex-start;

        scrollbar-width:none;

        -webkit-overflow-scrolling:touch;
    }

    .hero-pillnav::-webkit-scrollbar{
        display:none;
    }

    .hero-pillnav__row{

        flex-wrap:nowrap;

        width:max-content;
    }

    .hero-pillnav__link{

        flex-shrink:0;
    }
        .ios-features__head p {
        flex: unset;
    }
    .banner__copy{
      padding-inline: 0px;
    }
    
.video-shell {
  width: 380px !important;
  height: 163px !important;
}
  .screen video{
    border-radius: 37px;
  }
  .screen, .screen video {
    width: 93%;
  }
  /* .pro-video-section {
    height: 145vh;
  } */
  .closer-look{
    flex-direction: column;
    padding: 20px 0;
  }
  .accordion{
        display:flex;
        flex-direction:row;
        overflow:hidden;
        position:relative;
    }

    .acc-item{
        flex:0 0 100%;
        width:100%;
        display:none;
    }

    .acc-item.open{
        display:block;
    }
    .hero-pillnav__link {
      font-size: 14px;
      padding: 4px 15px;
      min-width: auto;
  }
  .banner__text, .section-sub {
    font-size: 15px;
}
  .banner__row {
      padding-inline: 20px;
  }
  .banner__media{
    flex: auto;
  }
  .footer ,.faq,.testimonials,.logos,.banner{
    padding: 60px 20px;
}
.footer__logo{
  margin-bottom: 0;
}
.footer__credits .legal {
  text-align: center;
}
.faq__title,.testimonials__title{
  margin-bottom: 30px;
}
.testimonials__title {
  font-size: 35px;
}
.artistas,.ios-features__head{
  padding-inline: 10px;
}
.video-section{
  padding-top: 40px;
}
.left-col{
  flex: auto;
}
.closer-look .nav{
  opacity: 1;
  visibility: visible;
}
.analisis_section{
  padding-top: 0;
}
.musica_section .banner__copy{
  padding-inline:20px;
}
.analisis_section .banner__row{
  padding: 0;
}
.monetizacion_section{
  padding-inline: 35px;
}
.banner__media {
  padding: 0;
}
.testimonial-card{
  padding: 25px;
}
.testimonial-card .quote {
  font-size: 17px;
}
section.banner.musica_section{
  padding-inline: 10px;
}
.custom-cursor{
  display: none !important;
}
}
@media (max-width:515px) {
  .hero-nav {
    justify-content: space-between;
  }
}
@media (max-width:480px) {
  :root {
    --page-padding: 20px
  }

  .hero-title {
    font-size: 40px;
    letter-spacing: -1px
  }

  .hero-lead {
    font-size: 17px
  }

  .footer__grid {
    grid-template-columns: 1fr
  }

  .footer__credits {
    flex-direction: column;
    align-items: flex-start
  }

}

/* Blog archive & single: assets/css/blog-archive.css y single-post.css */