@font-face {
  font-family: "Aileron";
  src: url("assets/fonts/Aileron-Thin.woff2") format("woff2");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Aileron";
  src: url("assets/fonts/Aileron-UltraLight.woff2") format("woff2");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Aileron";
  src: url("assets/fonts/Aileron-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Aileron";
  src: url("assets/fonts/Aileron-LightItalic.woff2") format("woff2");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Aileron";
  src: url("assets/fonts/Aileron-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Aileron";
  src: url("assets/fonts/Aileron-Italic.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Aileron";
  src: url("assets/fonts/Aileron-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Aileron";
  src: url("assets/fonts/Aileron-SemiBoldItalic.woff2") format("woff2");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Aileron";
  src: url("assets/fonts/Aileron-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Aileron";
  src: url("assets/fonts/Aileron-BoldItalic.woff2") format("woff2");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

p {
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Aileron", sans-serif;
  background: #FFFFFF;
  margin: 0px;
  max-width: 100vw;
  overflow-x: hidden;
}

.container {
  width: 100%;
  padding-left: 6rem;
  padding-right: 6rem;
}

@media (max-width: 1640px) {
  .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.hero {
  width: 100%;
  background-color: #FFFFFF;
  padding-top: 2rem;
  padding-bottom: 2rem;
  height: 100dvh;
}
.hero .hero-container {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
.hero .hero-line {
  width: 100%;
  display: flex;
}
.hero .hero-text {
  font-size: 9.45vw;
  font-weight: 700;
  color: #000000;
  letter-spacing: -0.78vw;
  line-height: 0.8;
}
.hero .hero-text span {
  display: block;
}
.hero .hero-text .indent {
  padding-left: 2.7vw;
  padding-bottom: 2.5vw;
}
.hero .hero-logo {
  justify-content: flex-end;
}
.hero .hero-logo img {
  height: 80px;
  width: auto;
}
@media (max-width: 768px) {
  .hero .hero-text {
    font-size: 13vw;
    line-height: 1.2;
  }
  .hero .hero-logo img {
    height: 90px;
  }
}
.hero .hero-nav {
  display: flex;
  justify-content: space-evenly;
  gap: 1rem;
  margin-top: 1rem;
  font-weight: 400;
  position: relative;
  z-index: 5;
  font-weight: 900;
  font-size: 3.3vw;
  letter-spacing: -0.22vw;
}
.hero .hero-nav span {
  cursor: pointer;
  position: relative;
}
.hero .hero-nav span:hover {
  text-decoration: underline;
}
.hero .hero-nav.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0.5rem 0;
  box-shadow: 0 2px 6px rgba(255, 255, 255, 0.1);
  margin-top: 0rem;
  background: black;
  color: white;
}

.section-title {
  color: black;
  font-size: 120px;
  letter-spacing: -8px;
  padding-left: 0.5rem;
  margin: 0;
}

.section-subtitle {
  font-size: 80px;
  font-weight: 900;
  padding-left: 2rem;
  margin: 0;
  letter-spacing: -6px;
  line-height: 0.8;
}

.prensa {
  width: 100%;
  background-color: #FFFFFF;
  position: relative;
}
.prensa .container {
  position: relative;
}
.prensa .prensa-grid {
  display: grid;
  gap: 0px;
  overflow: hidden;
}
.prensa .prensa-item {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  transition: opacity 0.6s ease;
  backface-visibility: hidden;
  background: black;
}
.prensa .prensa-item img.fade-out {
  opacity: 0;
  transition: opacity 0.3s ease;
}
.prensa .prensa-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
  cursor: pointer;
}
.prensa .prensa-item img:hover {
  transition-delay: 0s !important;
  transform: scale(1.15);
}
@media (min-width: 1700px) {
  .prensa .prensa-grid {
    grid-template-columns: repeat(7, 1fr);
  }
  .prensa .prensa-grid .prensa-item:nth-child(n+22) {
    display: none;
  }
}
@media (min-width: 1500px) and (max-width: 1699px) {
  .prensa .prensa-grid {
    grid-template-columns: repeat(6, 1fr);
  }
  .prensa .prensa-grid .prensa-item:nth-child(n+19) {
    display: none;
  }
}
@media (min-width: 1000px) and (max-width: 1499px) {
  .prensa .prensa-grid {
    grid-template-columns: repeat(5, 1fr);
  }
  .prensa .prensa-grid .prensa-item:nth-child(n+16) {
    display: none;
  }
}
@media (max-width: 576px) {
  .prensa .prensa-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .prensa .prensa-grid .prensa-item:nth-child(n+9) {
    display: none;
  }
}

.bloque-flex {
  position: relative;
  background-color: #FFFFFF;
}
.bloque-flex .bloque-contenido {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
}
.bloque-flex .bloque-contenido .col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.bloque-flex .bloque-contenido .texto h2.bloque-titulo {
  font-size: 90px;
  font-weight: 900;
  margin-bottom: 2rem;
  margin-top: 2rem;
  letter-spacing: -7px;
  line-height: 0.8;
}
.bloque-flex .bloque-contenido .texto .bloque-detalle {
  margin-bottom: 1rem;
}
.bloque-flex .bloque-contenido .texto .bloque-detalle h3 {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -2px;
  margin-bottom: 0;
}
.bloque-flex .bloque-contenido .texto .bloque-detalle span {
  display: block;
  font-size: 17px;
  line-height: 1.2;
}
.bloque-flex .bloque-contenido .imagenes .imagenes-trio {
  display: flex;
  justify-content: center;
  gap: 1rem;
}
.bloque-flex .bloque-contenido .imagenes .imagenes-trio img {
  width: 150px;
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
}
.bloque-flex.bloque-60-40 {
  margin-top: 3rem;
  margin-bottom: 3rem;
}
.bloque-flex.bloque-60-40 .texto {
  flex: 0 0 60%;
}
.bloque-flex.bloque-60-40 .imagenes {
  flex: 0 0 40%;
  padding-top: 3rem;
}
.bloque-flex.bloque-70-30 {
  margin-top: 3rem;
  margin-bottom: 3rem;
}
.bloque-flex.bloque-70-30 .texto {
  flex: 0 0 70%;
}
.bloque-flex.bloque-70-30 .imagenes {
  flex: 0 0 30%;
}
.bloque-flex.bloque-70-30 .imagenes img {
  width: 87%;
  height: auto;
}
.bloque-flex .bloque-logo {
  position: absolute;
  bottom: -30px;
  left: calc(50% - 54px);
  height: 40px;
  z-index: 1;
  pointer-events: none;
}
@media (max-width: 768px) {
  .bloque-flex .bloque-contenido {
    flex-direction: column;
  }
  .bloque-flex .bloque-contenido .texto, .bloque-flex .bloque-contenido .imagenes {
    flex: 100%;
  }
  .bloque-flex .bloque-contenido .imagenes .imagenes-trio {
    justify-content: center;
  }
  .bloque-flex .bloque-contenido .imagenes .imagenes-trio img {
    width: 80px;
    height: 80px;
  }
  .bloque-flex .bloque-logo {
    position: static;
    transform: none;
    margin: 2rem auto 0;
  }
}

.prensa-section .bloque-contenido .imagenes {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding-right: 30px;
  row-gap: 20px;
}
.prensa-section .bloque-contenido .imagenes a {
  width: 100%;
}
.prensa-section .bloque-contenido .imagenes a img {
  display: block;
  width: 100%;
  height: auto;
}

.mkt-subsection {
  display: flex;
  justify-content: space-between;
}
.mkt-subsection .texto {
  width: 50%;
}
.mkt-subsection .texto .bloque-detalle {
  margin-bottom: 1rem;
}
.mkt-subsection .texto .bloque-detalle h3 {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -2px;
  margin-bottom: 0;
}
.mkt-subsection .texto .bloque-detalle span {
  display: block;
  font-size: 17px;
  line-height: 1.2;
}
.mkt-subsection .imagenes {
  width: 50%;
  padding: 2rem;
}
.mkt-subsection .imagenes-trio {
  display: flex;
  justify-content: space-between;
}
.mkt-subsection .imagenes-trio a {
  display: contents;
  text-decoration: none;
  color: inherit;
}
.mkt-subsection .imagenes-trio img {
  width: 30%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.mkt-subsection .imagen {
  width: 40%;
  height: auto;
}
.mkt-subsection .imagen img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.phones-subsection {
  display: flex;
}
.phones-subsection .section-subtitle {
  margin-top: 2rem;
}
.phones-subsection .texto {
  width: 35%;
}
.phones-subsection .texto .bloque-detalle {
  margin-bottom: 1rem;
}
.phones-subsection .texto .bloque-detalle h3 {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -2px;
  margin-bottom: 0;
}
.phones-subsection .texto .bloque-detalle span {
  display: block;
  font-size: 17px;
  line-height: 1.2;
}
.phones-subsection .images-mix {
  width: 65%;
  position: relative;
  max-width: 100%;
  overflow: visible;
}
.phones-subsection .images-mix a {
  position: absolute;
  display: block;
}
.phones-subsection .images-mix a img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
.phones-subsection .images-mix a:nth-child(1) {
  width: 13%;
  top: -30%;
  right: 7%;
}
.phones-subsection .images-mix a:nth-child(2) {
  width: 13%;
  bottom: -3%;
  right: 7%;
}
.phones-subsection .images-mix a:nth-child(3) {
  width: 22%;
  bottom: 20%;
  left: 7%;
}
.phones-subsection .images-mix a:nth-child(4) {
  width: 14%;
  bottom: 10%;
  left: 59%;
}
.phones-subsection .images-mix a:nth-child(5) {
  width: 14%;
  top: -53%;
  left: 59%;
}
.phones-subsection .images-mix a:nth-child(6) {
  width: 16%;
  bottom: 0%;
  left: 35%;
}
.phones-subsection .images-mix a:nth-child(7) {
  width: 16%;
  top: -62%;
  left: 35%;
}
@media (max-width: 768px) {
  .phones-subsection .images-mix {
    height: auto;
    padding-top: 2rem;
  }
  .phones-subsection .images-mix a {
    position: static;
    display: inline-block;
    margin: 1rem;
  }
  .phones-subsection .images-mix img {
    max-width: 120px;
  }
}
@media (max-width: 768px) {
  .phones-subsection {
    gap: 1.5rem;
  }
  .phones-subsection a img {
    max-width: 120px;
    max-height: none;
    margin-top: 0;
  }
}

.logos-slider {
  padding: 4rem 0;
  background-color: #FFFFFF;
  overflow: hidden;
}
.logos-slider .logos-titulo {
  font-size: 70px;
  font-weight: 900;
  margin-bottom: 2rem;
  margin-top: 2rem;
  letter-spacing: -4px;
  text-align: start;
}
.logos-slider .slider-wrapper {
  width: 100%;
  height: 140px;
  padding-top: 20px;
  position: relative;
  overflow: hidden;
}
.logos-slider .slider-track {
  display: flex;
  gap: 2rem;
  height: 100%;
  width: -moz-max-content;
  width: max-content;
  animation: scroll-logos 60s linear infinite;
  align-items: center;
}
.logos-slider .slider-item {
  flex-shrink: 0;
  height: 100%;
}
.logos-slider .slider-item img {
  height: 100%;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
@keyframes scroll-logos {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}
@media (max-width: 576px) {
  .logos-slider .slider-wrapper {
    height: 60px;
  }
  .logos-slider .logos-titulo {
    font-size: 2rem;
    letter-spacing: -1px;
  }
}

.influencers-slider {
  background-color: #FFFFFF;
  padding: 2rem 0rem;
  overflow: hidden;
}
.influencers-slider .slider-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding-bottom: 2rem;
}
.influencers-slider .slider-track {
  display: flex;
  gap: 0;
  align-items: flex-end;
  height: 100%;
  width: -moz-max-content;
  width: max-content;
  animation: scroll-influencers 90s linear infinite;
}
.influencers-slider .influencer-item {
  width: 200px;
  flex-shrink: 0;
  text-align: center;
  position: relative;
}
.influencers-slider .influencer-item img {
  width: 100%;
  aspect-ratio: 9/16;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.influencers-slider .influencer-item .etiqueta {
  display: inline-block;
  background-color: #5f5e5c;
  color: #fff;
  min-width: 150px;
  text-align: center;
  padding: 0.3rem 0.8rem;
  border-radius: 5px;
  font-size: 0.85rem;
  margin-top: 20px;
  position: relative;
}
.influencers-slider .influencer-item .etiqueta::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #5f5e5c;
}
@keyframes scroll-influencers {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}
@media (max-width: 576px) {
  .influencers-slider .slider-wrapper {
    height: 200px;
  }
  .influencers-slider .influencer-item {
    width: 140px;
  }
  .influencers-slider .influencer-item .etiqueta {
    font-size: 0.7rem;
  }
}

.equipo {
  padding-bottom: 4rem;
}
.equipo .equipo-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}
.equipo .equipo-card {
  position: relative;
  width: calc(25% - 1.5rem);
  aspect-ratio: 1/1;
  overflow: hidden;
}
.equipo .equipo-card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.equipo .equipo-card .overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 1rem;
  transition: opacity 0.3s ease;
}
.equipo .equipo-card .overlay h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
}
.equipo .equipo-card .overlay p {
  margin: 0.5rem 0 0;
  font-size: 16px;
}
.equipo .equipo-card:hover .overlay {
  opacity: 1;
}
@media (max-width: 768px) {
  .equipo .equipo-card {
    width: calc(50% - 1rem);
  }
  .equipo .equipo-card .overlay {
    opacity: 1;
  }
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  height: 330px;
  padding-bottom: 2rem;
}
.footer .bloque-izquierda {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  flex: 1;
  font-size: 70px;
  font-weight: 900;
  letter-spacing: -5px;
  line-height: 0.7;
}
.footer .bloque-derecha {
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
  height: 100%;
}
.footer .bloque-derecha .texto-derecha {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  text-align: right;
  justify-content: flex-end;
  height: 100%;
}
.footer .bloque-derecha .texto-derecha .first {
  font-size: 40px;
  font-weight: 900;
}
.footer .bloque-derecha .texto-derecha .second {
  font-size: 30px;
}
.footer .bloque-derecha .link-imagen img {
  max-height: 100%;
  width: auto;
  display: block;
}
.footer .bloque-derecha a {
  height: 100%;
  color: #000000;
  text-decoration: none;
}
@media (max-width: 768px) {
  .footer {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer .bloque-derecha {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer .bloque-derecha .texto-derecha {
    text-align: left;
  }
}

@media (max-width: 1520px) {
  .phones-subsection .texto .bloque-detalle h3 {
    font-size: 2.5vw;
  }
}
@media (max-width: 1220px) {
  .section-title {
    font-size: 105px;
  }
  .bloque-flex .bloque-contenido .texto h2.bloque-titulo {
    font-size: 75px;
  }
  .section-subtitle {
    font-size: 65px;
  }
  .phones-subsection .images-mix a:nth-child(1) {
    top: -20%;
  }
  .phones-subsection .images-mix a:nth-child(2) {
    bottom: -3%;
  }
  .phones-subsection .images-mix a:nth-child(3) {
    bottom: 20%;
  }
  .phones-subsection .images-mix a:nth-child(4) {
    bottom: 10%;
  }
  .phones-subsection .images-mix a:nth-child(5) {
    top: -43%;
  }
  .phones-subsection .images-mix a:nth-child(7) {
    top: -52%;
  }
}
@media (max-width: 1050px) {
  .section-title {
    font-size: 90px;
  }
  .bloque-flex .bloque-contenido .texto h2.bloque-titulo {
    font-size: 65px;
  }
  .section-subtitle {
    font-size: 52px;
  }
  .phones-subsection .images-mix a:nth-child(1) {
    top: -10%;
  }
  .phones-subsection .images-mix a:nth-child(2) {
    bottom: 5%;
  }
  .phones-subsection .images-mix a:nth-child(3) {
    bottom: 20%;
  }
  .phones-subsection .images-mix a:nth-child(4) {
    bottom: 10%;
  }
  .phones-subsection .images-mix a:nth-child(5) {
    top: -23%;
  }
  .phones-subsection .images-mix a:nth-child(7) {
    top: -32%;
  }
}
@media (max-width: 768px) {
  .hero {
    padding-top: 1rem;
    padding-bottom: 1rem;
    height: auto;
  }
  .hero .hero-nav {
    display: flex;
    justify-content: space-evenly;
    gap: 1rem;
    margin-top: 0;
    font-weight: 900;
    font-size: 9vw;
    flex-direction: column;
    align-items: center;
    border-top: solid 3px black;
    border-bottom: solid 3px black;
    padding-top: 2rem;
    padding-bottom: 2rem;
    text-decoration: underline;
  }
  .hero .hero-nav .point {
    display: none;
  }
  .section-title {
    font-size: 55px;
    letter-spacing: -2px;
    padding-left: 1rem;
  }
  .section-subtitle {
    font-size: 30px;
    padding-left: 1rem;
    letter-spacing: -1px;
  }
  .logos-slider {
    padding: 0;
    padding-bottom: 2rem;
  }
  .logos-slider .slider-wrapper {
    height: 150px;
  }
  .hero .hero-nav.fixed {
    display: flex;
    position: relative;
    justify-content: space-evenly;
    gap: 1rem;
    margin-top: 0;
    font-weight: 900;
    font-size: 9vw;
    flex-direction: column;
    align-items: center;
    border-top: solid 3px black;
    border-bottom: solid 3px black;
    padding-top: 2rem;
    padding-bottom: 2rem;
    background-color: white;
    color: black;
  }
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .bloque-flex .bloque-contenido .texto h2.bloque-titulo {
    font-size: 12vw;
    letter-spacing: -2px;
  }
  .bloque-flex .bloque-contenido .texto .bloque-detalle h3 {
    font-size: 30px;
    letter-spacing: -2px;
    margin-top: 0;
  }
  .mkt-subsection {
    flex-direction: column;
  }
  .mkt-subsection .texto {
    width: 100%;
  }
  .mkt-subsection .imagenes {
    width: 100%;
    padding: 0;
  }
  .mkt-subsection .texto .bloque-detalle h3 {
    font-size: 30px;
    letter-spacing: -2px;
    margin-top: 1rem;
  }
  .influencers-slider .slider-wrapper {
    height: 50vh;
  }
  .influencers-slider .influencer-item {
    width: 23vh;
  }
  .phones-subsection {
    flex-direction: column;
  }
  .phones-subsection .texto {
    width: 100%;
  }
  .phones-subsection .texto .bloque-detalle h3 {
    font-size: 30px;
    letter-spacing: -2px;
    margin-top: 1rem;
  }
  .phones-subsection .images-mix {
    display: none;
  }
  .mkt-subsection .imagen {
    width: 100%;
    height: auto;
  }
  .equipo .equipo-card .overlay h3 {
    font-size: 16px;
  }
  .equipo .equipo-card .overlay p {
    font-size: 12px;
  }
  .equipo .equipo-card .overlay {
    justify-content: flex-end;
  }
  .footer {
    height: auto;
  }
  .footer .bloque-izquierda {
    font-size: 50px;
    letter-spacing: -3px;
  }
  .footer .bloque-derecha .texto-derecha .second {
    font-size: 20px;
  }
  .footer .bloque-derecha .link-imagen img {
    max-height: 100vh;
    width: 80%;
    margin: auto;
    display: block;
  }
}
@media (min-width: 1620px) {
  .phones-subsection .texto .bloque-detalle span {
    font-size: 19px;
    line-height: 1.3;
  }
  .mkt-subsection .texto .bloque-detalle span {
    font-size: 19px;
    line-height: 1.3;
  }
  .bloque-flex .bloque-contenido .texto .bloque-detalle span {
    font-size: 19px;
    line-height: 1.3;
  }
}
@media (min-width: 1900px) {
  .phones-subsection .texto .bloque-detalle span {
    font-size: 21px;
  }
  .mkt-subsection .texto .bloque-detalle span {
    font-size: 21px;
  }
  .bloque-flex .bloque-contenido .texto .bloque-detalle span {
    font-size: 21px;
  }
}
@media (min-width: 2020px) {
  .phones-subsection .texto .bloque-detalle span {
    font-size: 1.1vw;
  }
  .mkt-subsection .texto .bloque-detalle span {
    font-size: 1.1vw;
  }
  .bloque-flex .bloque-contenido .texto .bloque-detalle span {
    font-size: 1.1vw;
  }
}
@media (min-width: 2160px) {
  .phones-subsection .images-mix a {
    transform: scale(0.8);
  }
}
@media (min-width: 2600px) {
  .phones-subsection .images-mix a {
    transform: scale(0.7);
  }
  .phones-subsection .texto .bloque-detalle span {
    font-size: 1.2vw;
  }
  #social {
    padding-top: 2rem;
  }
}/*# sourceMappingURL=style.css.map */