body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

.hero {
  text-align: center;
  /* background-image: url("../img/image_bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center -140px;
  padding-top: 223px;*/
}

.hero h1 {
  position: relative;
  margin: 50px auto 50px auto;
}

/*.hero h1 span:first-child {
    font-size: 300px;
    font-family: 'Bitter';
    font-weight: bold;
    line-height: 25px;
    color: var(--primary);
}*/

/*.videoIntro{
  height: 383px;
  background-color: #000;
}*/

.mediakitTitle {
  color: var(--primary);
  text-align: center;
  font-family: Rubik;
  font-size: 63px;
  font-style: normal;
  font-weight: 900;
  line-height: 62px; /* 103.333% */
  letter-spacing: -1.2px;
 /* position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;*/
}

.hero p {
  margin: 0px auto 33px auto;
  text-align: center;
  font-family: Rubik;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: -0.56px;
  color: var(--primary);
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  padding: 32px 16px  0px 16px;
  max-width: 1100px;
  margin: 0 auto;
}

.statsCronista{
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

.statsCronista .pill{
  background-color: var(--primary);
}

.statsCronista .pill-data span{
  color: #fff;
}

.statsCronista h2{
  color: #38B3B3;
  font-family: Rubik;
  font-size: 28px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-right: 32px;
}

.stat::before{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  border-radius: 100%;
    background-color: var(--primary);
  width: 236px;
  height: 236px;
  transform: scale(0);
}

.stat:hover::before{
   animation: growCircle 0.8s cubic-bezier(.22,1,.36,1) forwards;
}

.stat-data, .legend{
  position: relative;
  z-index: 2;
}

.lideres{
  margin-bottom: 32px;
}

.stat {
  width: 236px;
  height: 236px;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.stat:hover .stat-data span, .stat:hover  .legend{
  color: #fff;
}

.stat-data span:first-child{
  color: var(--darkgreen);
  text-align: center;
  font-family: Rubik;
  font-size: 63px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
}

.stat-data span:nth-child(2){
  color: var(--darkgreen);
  font-family: Rubik;
  font-size: 63px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.legend{
  color:var(--darkgreen);
  text-align: center;
  font-family: Lato;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}


.stat strong {
  font-size: 28px;
  color: var(--primary);
}

.global {
  text-align: center;
  padding: 48px 16px;
}

.global h2{
  color:var(--primary);
  font-family: Rubik;
  font-size: 21px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 80px;
}

.global-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-items: center;
  gap: 12px;
  margin-top: 24px;
  margin-bottom: 40px;
}

.fuenteTopTres{
  color: #000;
text-align: center;
font-family: Lato;
font-size: 18px;
font-style: normal;
font-weight: 600;
line-height: normal;
margin-top: 30px;
}

.global .global-grid {
  max-width: 900px;
  margin: 0 auto;
}

.devices .global-grid {
  grid-template-columns: repeat(5, 1fr);
}

.pill {
  color:var(--text);
  border-radius: 999px;
  padding: 12px;
  font-weight: 600;
  width: 230px;
  height: 230px;
  line-height: 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  transition: all 0.3s;
}

.global .global-grid .pill h3{
  color: #fff;
}

.pill::before{
  content: "";
  position: absolute;
  left: -3px;
  right: 0;
  top: -1px;
  bottom: 0;
  border-radius: 100%;
  background-color: #DBF6F3;
  width: 236px;
  height: 236px;
  transform: scale(0);
}

@keyframes growCircle{
  from{
    transform: scale(0);
  }
  to{
    transform: scale(1);
  }
}

.pill:hover::before{
   animation: growCircle 0.8s cubic-bezier(.22,1,.36,1) forwards;
}

.pill-data{
  position: relative;
  z-index: 2;
}

.pill-data span{
  color: #000;
  font-family: Rubik;
  font-size: 63px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.global .pill {
  background-color: var(--primary);
}

.global .pill::before{
  display: none;
}

.global .pill:hover{
  background-color: var(--hover);
}

.global .pill span{
  color: #fff;
}

.devices .pill:last-child {
  background-color: var(--primary);
  transition: all 0.3s;
}

.devices .pill:last-child:hover {
  background-color: var(--hover);
}

.devices .pill:last-child::before{
  display: none;
}

.devices .pill:last-child span{
  color: #fff;
}

.pill-data span:first-child{
  text-align: center;
  font-family: Rubik;
  font-size: 63px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
}

.statsCronista .pill-data span{
  font-size: 48px;
}

.pill h3{
  color:var(--text);
  text-align: center;
  font-family: Lato;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
}

.devices {
  padding: 48px 16px;
  text-align: center;
}

.devices h2{
  color:var(--primary);
  text-align: center;
  font-family: Rubik;
  font-size: 28px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.devices h2 span, .global h2 span{
  color:var(--primary);
  font-family: Rubik;
  font-size: 28px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
}

.devices-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.device-stat {
  background: #f4f4f4;
  border-radius: 16px;
  padding: 20px;
}

.audience {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.audience-left {
  background: var(--secondary);
  padding: 85px 24px;
  border-radius: 0px 1000px 1000px 0px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  max-width: 1256px;
  margin-bottom: 100px;
  position: relative;
}

.audience-left h3{
  color: var(--text);
  font-family: Rubik;
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  max-width: 1256px;
  margin-bottom: 20px;
}

.audience-left h4{
  color: #575757;
  font-family: Rubik;
  font-size: 28px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.fuenteComscore{
  position: absolute;
  right: 40%;
  top: 90%;
  bottom: 20px;
  color: var(--text);
  font-family: Lato;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.content-right{
  display: flex;
}

.audience .content-right{
  align-items: center;
}

.cardBar{
  width: 50%;
}

.audience-right .fuenteComscore{
 right: initial;
  left: 50%;
  top: 90%;
  margin-left: 50px;
}

.audience-right {
  background: #73E0D2;
  padding: 85px 24px;
  border-radius:  1000px 0px 0px 1000px ;
  display: flex;
  align-items: center;
  width: 770px;
  align-self: end;
  justify-content: center;
  flex-direction: column;
  position: relative;
  margin-left: auto;
}

.audience-right h3{
  color: #000;
  font-family: Rubik;
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
}

.audience-right .titles h4{
  color: #575757;
  font-family: Rubik;
  font-size: 28px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin: 15px auto 40px auto;
}

.audience ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 46px;
}

.audience ul li{
  color:var(--text);
  text-align: center;
  font-family: Rubik;
  font-size: 48px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
}

.audience ul li{
  border-radius: 100%;
  width: 188px;
  height: 188px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.audience ul li:last-child{
  background-color: var(--primary-2);
}

.audience ul li h4{
  color: #303443;
  text-align: center;
  font-family: Lato;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
}

.audience .audience-right ul li span:nth-child(2){
   font-weight: 400;
}

.highlight {
  font-weight: 800;
}

.footer {
  text-align: center;
  padding: 24px;
  font-size: 14px;
  color: var(--muted);
}

.img-audiencia{
  width: 810px;
  height: auto;
}

.hombre .progessBar {
  background-color: rgba(0, 148, 144, 1);
}

.mujer .progessBar {
  background-color: rgba(199, 229, 205, 1);
}

.hombre,
.mujer {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Lato';
  font-size: 84px;
  font-weight: 700;
  line-height: 100.8px;
  padding: 100px 20px;
  position: relative;
  z-index: 1;
}

.dataChart {
  display: flex;
  position: relative;
  z-index: 1;
  font-size: 70px;
}

.progessBar {
  position: absolute;
  width: 0%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.progessBar-animation {
  transition: width 0.5s ease-in-out;
  -webkit-animation: progessBar-animation 0.6s ease-in-out both;
  animation: progessBar-animation 0.6s ease-in-out both;
}

.fifth img {
  margin-right: 30px;
}

.cardMetric {
  background-color: rgba(255, 255, 255, 0.2);
  padding: 26px 34px;
  border-radius: 8px;
  margin: 0 auto;
  max-width: 480px;
}

.bar {
  position: relative;
  display: flex;
  align-items: center;
  border-radius: 300px;
  background: #F9FD70;
  height: 68px;
  width: calc(100% - 10px);
  margin:auto 10px;
  padding: 4px 10px;
}

.charge {
  width: 50%;
  display: block;
  height: calc(100% + 8px);
 border-radius: 300px 0 0 300px;
  background: #73E0D2;
  margin-left: -10px;
  margin-right: 10px;
  text-align: center;
}

.age .grafico:nth-child(even) .charge {
  width: 75%;
}

.gender .grafico:nth-child(even) .percentNumber {
  width: 38%;
}

.gender .grafico:nth-child(even) .charge {
  width: 62%;
}

.age .grafico:nth-child(even) .percentNumber {
  width: 25%;
}

.grafico {
  display: flex;
  margin-bottom: 25px;
  align-items: center;
  flex: 1;
}

.grafico span {
  font-size: 21px;
  line-height: 25.1px;
  font-weight: 600;
}

.bar span {
  font-size: 21px;
  font-weight: 600;
  align-items: center;
  display: flex;
  justify-content: center;
}

.rankings{
  margin-bottom: 94px;
}

.rankings h2 {
  color: var(--primary);
  text-align: center;
  font-family: Rubik;
  font-size: 28px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-top: 100px;
  margin-bottom: 105px;
}

.rankings h2 span {
  color: var(--primary);
  font-family: Rubik;
  font-size: 28px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
}

.grafico .ageRange{
  color: #000;
  font-family: Rubik;
  font-size: 16px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
}

.cardMetric .titleFourth{
  text-align: center;
  margin-bottom: 30px;
  color: var(--text);
  font-family: Rubik;
  font-size: 28px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 16px;
}

.ranking-container {
    max-width: 900px;
    margin: auto;
  }

  .ranking-header {
    display: grid;
    grid-template-columns: 60px 2fr 1fr 1fr;
    font-size: 12px;
    text-transform: uppercase;
    color: #555;
    margin-bottom: 10px;
    padding: 0 20px;
  }

  .ranking-item {
    display: grid;
    grid-template-columns: 60px 2fr 1fr 1fr;
    align-items: center;
    padding: 3px 20px;
    margin-bottom: 10px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 500;
    transition: transform 0.2s ease;
  }

  .ranking-item:hover {
    transform: scale(1.01);
  }

  .ranking-item.teal {
    background: #73E0D2;
    color: #000;
    font-family: Lato;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
  }

  .ranking-item.light {
    background: #DCF7F4;
    color: #111;
  }

  .ranking-item.highlight {
    background: var(--hover);
    color: #FFF;
    font-family: Lato;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
  }

  .ranking-item .rank {
    font-weight: 700;
  }

  .ranking-item .visits {
    text-align: right;
    font-weight: 600;
  }

  .ranking-item .country {
    text-align: left;
  }

.fuente-data{
  position: relative;
  z-index: 2;
}

.statsCronista .imgCronista{
  margin-bottom: 20px;
}

.statsCronista .pill-data{
  margin-top: 30px;
}

.fuenteRankings{
  color: #000;
  font-family: Lato;
  font-size: 11px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
  margin: 0 auto;
  text-align: center;
}

.social-media{
  display: none;
}

.fuente{
  text-align: center;
  position: relative;
  top: -30px;
}

.fuente h3, .statsCronista h3{
  color: #000;
  font-family: Lato;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.statsCronista h3{
  text-align: center;
  margin: 14px auto;
}

@media (max-width: 768px) {
  .audience .content-right{
    flex-direction: column-reverse;
  }

  .cardBar {
    width: 100%;
  }
  .hero h1 {
    font-size: 42px;
  }

  .audience {
    grid-template-columns: 1fr;
  }

  .audience-right {
    border-radius: 172.5px 0 0 172.5px;
    display: flex;
    align-items: center;
    width: initial;
    align-self: end;
    justify-content: center;
    flex-direction: column;
    position: relative;
    margin-left: auto;
  }

  .audience .audience-left ul li:last-child, .audience .audience-left ul li:last-child h4{
    background-color: transparent;
    color: var(--primary);
  }
  section{
    padding: 0 11px;
  }

  section.audience, section.hero{
    padding: 0;
  }



  .stats{
    padding: 32px 16px;
    grid-template-columns: repeat(2, 1fr);
  }

/*.hero h1 span:first-child{
  color: #38B3B3;
  font-family: Bitter;
  font-size: 150px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -10.5px;
}*/

  .mediakitTitle{
    font-size: 42px;
  }

  .hero p{
    margin: 50px auto 33px auto;
    text-align: center;
    font-family: Rubik;
    font-size: 24px;
  }
  .stat-data span:first-child, .stat-data span:nth-child(2), .pill-data span:first-child, .pill-data span{
    font-size: 40px;
    line-height: 40px;
  }
  .stat {
    /* width: 236px;
    height: 180px; */
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
  }
  .stat, .stat::before, .global-grid .pill{
    width: 160px;
    height: 160px;
  }

  .statsCronista{
    display: block;
  }

  .statsCronista h2 {
    font-size: 21px;
    margin: 0 auto;
    text-align: center;
  }
  .pill, .pill::before{
    width: 208px;
    height: 208px;
  }
  .pill::before{
    left: 0;
    top: 0;
  }
  .statsCronista .pill-data span{
    font-size: 40px;
    line-height: 40px;
  }
  .statsCronista .imgCronista{
    width: 100%;
    margin-bottom: 10px;
  }
  
  .statsCronista .pill{
    margin: 32px auto;
  }
  .global{
    padding: 32px 16px;
  }
  .global h2{
    margin-bottom: 40px;
  }
  .global-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 32px;
  }

  .fuenteTopTres{
    color: #575757;
    text-align: center;
    font-family: Lato;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }

  .ranking-item .rank, .devices {
    display: none;
  }

  .ranking-header{
    grid-template-columns: repeat(3, 1fr);
  }

  .ranking-item{
    grid-template-columns: repeat(3, 1fr);
    column-gap: 10px;
    justify-content: center;
    align-items: center;
    font-size: 14px !important;
  }

  .ranking-header div:first-child{
    display: none;
  }

  .ranking-item .domain{
    width: 170px;
  }
  .ranking-header div:nth-child(2){
    width: 170px;
  }
  .rankings h2{
    color: var(--primary);
    text-align: center;
    font-family: Rubik;
    font-size: 21px;
    font-style: normal;
    line-height: normal;
    padding: 0 0 56px 0;
    margin: 0;
  }
  .audience-left{
    flex-direction: column;
    border-radius: 0 172.5px 172.5px 0;
    background: #F9FD70;
    max-width: 390px;
    width: 95%;
  }
  .audience ul li {
    width: initial;
    height: initial;
    margin-bottom: 44px;
  }
  .audience-right{
    color: #000;
    text-align: center;
    font-family: Rubik;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%; /* 32px */
  }

  .audience-right .titles h4{
    color: #FFF;
    font-family: Rubik;
    font-size: 21px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
  }

  .audience-left h3{
    font-size: 32px;
    text-align: center;
  }

  .audience-left h3 br{
    display: none;
  }

  .audience-left h4{
    color: #575757;
    font-family: Rubik;
    font-size: 21px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-align: center;
  }

  .audience-right h3{
    color: #000;
    text-align: center;
    font-family: Rubik;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%; /* 32px */
  }


  .social-media{
    display: block;
    text-align:center;
    padding:60px 20px;
  }

  .social-media h2{
    color: #494949;
    text-align: center;
    font-family: Rubik;
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }

  .social-media h2 span{
    color: var(--primary);
    font-family: Rubik;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
  }

  .phones{
    margin:40px 0 50px;
    display:flex;
    justify-content:center;
    gap:20px;
  }

  .phones img{
    width:180px;
    height:auto;
  }

  /* SOCIAL GRID */
  .social-grid{
    max-width:500px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:35px;
    justify-items:center;
  }

  .social{
    width:120px;
    height:120px;
    background:#2bb3ad;
    border-radius:50%;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    color:white;
  }

  .social img{
    width:30px;
    margin-bottom:8px;
  }

  .social p{
    margin:0;
    font-weight:bold;
    font-size:20px;
  }

  /* último centrado */
  .social.center{
    grid-column:1 / span 2;
  }

  .legend{
    font-size: 15px;
    white-space: nowrap;
  }

  .audience-right .fuenteComscore {
    right: 0%;
    left: 0;
    top: 86%;
    margin-left: 84px;
  }
  
}
