.caja-mascara{
  width: 100vw; /* Ocupa todo el ancho de la pantalla */
  height: CALC( 500vh - 2px ); /* Ocupa todo el alto de la pantalla */
  overflow: hidden; /* Oculta contenido fuera del área */
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  position: relative;
  
  --ini: 160;
  --fin: 220;
}

.caja-mascara .shadowbox {
    position: absolute;
    left: 0;
    top: 0vh;
    width: 100%;
    height: 100vh;
    z-index: 2;
    background: rgb(26, 26, 26);
    background: linear-gradient(180deg, rgba(26, 26, 26, 0) 70%, rgba(26, 26, 26, 1) 90%);
    pointer-events: none;
}
.shadowClose{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 30vh;
    z-index: 5;
    background: linear-gradient(180deg, rgba(26, 26, 26, 0) 0%, rgba(26, 26, 26, 1) 70%);
}

.caja-mascara .title{
    font-size: 64px;
    transition: all 0.5s ease-out allow-discrete;
    position: absolute;
    top: 33vh;
    max-width: 1600px;
    margin: auto 8.3vw 0;
    z-index: 4;
}

.caja-mascara .circles {
    margin: 0;
    box-sizing: border-box;
    position: relative;
    width: 100vw;
    height: 100vh;
    top:0;
    left: 0;
   
}
.deploycircle{
    opacity: 1 !important;
    transition: all 0.5s ease;
}
.etiquetas{
    position: absolute;
    top: 50vh;
    left: 20%;
    overflow: hidden;
    width: 650px;
    height: 350px;
    z-index: 3;
}

 .circle-container {
    right: 30vh;
    top: 10vh;
    transform: translate(110%, 60%);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    border: 2px solid #fff;
    position: absolute;
    
}

 .text-orbit {
    position: absolute;
    width: 240px;
    height: 240px;
    text-align: center;
    line-height: auto;
    border-radius: 50%;
    border: 3px solid #fff;
    color: white;
    font-weight: bold;
    top: 50%;
    left: 50%;
    transform-origin: 0 0;
    transform: rotate(calc(72deg* var(--i))) translate(300px) ;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    font-weight: 600;
    line-height: 26px;
    padding: 10px;
    word-break: break-word;
     opacity:0;
    transition: opacity 0.5s ease;

}

/* Esta clase adicional se usa para neutralizar la rotación de cada texto */
 .caja-mascara .text-orbit span {
    display: block;
    transform: rotate(calc(-72deg * var(--i)));
    width: 120px;
    word-break: break-word;    
}
.showcircle{
     opacity: 1 !Important;
    transition: opacity 0.5s ease;
}
.activa {
     border: 3px solid #F62C84 ;
}

 .caja-mascara .text-orbit .pointer{
    position: fixed;
    left: 145px;
    opacity: 0;
    transition: all 0.5s ease-out allow-discrete;
    transform: rotate(175deg) !important;
}
.caja-mascara .activa .pointer{
    opacity: 1;
    transition: all 0.5s ease-out allow-discrete;
}
.caja-mascara .circle-container span {
    width: 200px;
}
.caja-mascara .off{
    opacity: 0;
}
.caja-mascara .frase{
    font-style: italic;
    font-size: 28px;
    font-weight: 600;
    line-height: 30px;
    display: inline-block;
    margin-bottom: 15px;
    width: 650px;
}
.caja-mascara .frase p{
    display: contents;
}
.caja-mascara .frase span{
    color: #F62C84;
    margin-right: 5px;
}
.caja-mascara .autor {
    text-align: left;
    display: flex;

}
.caja-mascara .autor{
    margin: 10px 0 0 0;
}
.detalle-autor{
    display: block;
}
.detalle-autor .nombre{
    font-weight: 700;
    font-size: 24px;
    line-height: 30px;
    text-align: left;
}
.detalle-autor .rank{
    font-weight: 400;
    font-size: 18px;
    line-height: 18px;
    text-align: right;
}

.caja-mascara .img-autor{
    margin-left: 10px;
}
.caja-mascara .img-autor img{
    width: 60px;
    height: 60px;
    border-radius: 60px;
}
.caja-mascara .detalle{
    
    opacity: 0;
    transition: all 0.2s ease-out allow-discrete;
}
.caja-mascara .caja-frase{
    max-height: 0;
}
.caja-mascara .showtab{
    
    opacity: 1;
    transition: all 0.2s ease-out allow-discrete;
}
.caja-mascara .showtab .caja-frase{
    max-height: 100vh;
}

/***
 * 
 * VIDEO 
 * 
 * **/
.video-container {
    width: 7vw;
    height: 7vw;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    margin-top: 24px;
    /* Inicialmente sin animación */
    animation: none;
}

.video-container.animate {
    animation: expandShape 0.5s forwards;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Animación para convertir el círculo en un ovoide */
@keyframes expandShape {
    0% {
        width: 7vw;
        height: 7vw;
        border-radius: 50px;
    }
    100% {
        width: 16vw;
        height: 7vw;
        border-radius: 70px;
    }
}

/*** BRAND ***/
.brandbox{
  width: 100vw; /* Ocupa todo el ancho de la pantalla */
  height: 398vh; /* Ocupa todo el alto de la pantalla */
  overflow: hidden; /* Oculta contenido fuera del área */
  clip-path: polygon(0 0, 100% 0, 100% 99%, 0 100%);
  position: relative;
  background: rgb(26,26,26);
  --safe:800;
}
.shadowbrand {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    background: linear-gradient(180deg, rgba(26, 26, 26, 1) 3%, rgba(26, 26, 26, 0) 10%, rgba(26, 26, 26, 0) 83%, rgba(26, 26, 26, 1) 97%);
}
.brandbox h1{
    font-weight: 600;
}
/* Estilo inicial para la sección del título */
.title-section {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* Centramos horizontal y verticalmente */
  z-index: 1;
  text-align: center;
  padding: 50px 0;
  transition: opacity 1s ease-in-out;
  width: 100%; /* Ocupa el 100% del ancho */
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.2s ease;
  
}

.title-section h2 {
    font-weight: 400;
    font-size: 64px;

}

/* Añadimos el fade-out para la sección del título */
.title-section.fade-out {
  opacity: 0;
}


/* Grilla inicial */
.brand-grid {
    display: grid;
    grid-auto-flow: dense;
    grid-template-columns: repeat(auto-fit, minmax(150px, auto));
    gap: 10px;
    padding: 50px;
    position: fixed;
    width: 60%;
    margin: 0 auto;
    transition: none;
    top: 30%;
    left: 20%;
    right: 20%;
}
/* Grilla cuando está fija y centrada */
.brand-grid.fixed {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 20px;
  z-index: 10;
  width: auto;
}

/* Grilla liberada */
.brand-grid.released {
  position: relative;
  top: auto;
  left: auto;
  transform: none;
}


/* Ocultar las marcas por defecto */
.brand {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.4s ease, transform 0.2s ease;
  font-size: 100%;
  color: white;
  text-align: center; /* Alineamos el texto al centro */
}

/* Marcas cuando se revelan */
.visible {
  opacity: 1;
  transform: scale(1);
}

/* Nuevo estado para el fade-out */
.brand-grid.fade-out {
  opacity: 0;
  transition: opacity 2s ease-out; /* Agregamos un fade-out suave */
}

.brand {
  justify-content: center;
  align-items: center;
  display: flex;
  font-size: 26px;
}

.brand img {
  width: 60%;
  height: auto;
}
.nube{
    position: relative;
    max-width: 900px;
}
.nube .item{
    display: block;
    color:#000 ;
    font-size: 2rem;
    line-height: 2.2rem;
    font-weight: 700;
    padding: 0 0 0 0px
    margin:0 10px 10px 0;
    transition: 0.2s ease-out;
}
.nube .item:hover{
    color: #F62C84;
    padding: 0 0 0 10px;
    transition: 0.2s cubic-bezier(0.22,0.61,0.36,1);
}
.ver_mas{
    position: absolute;
    left: 0;
    bottom: -80px;
    background-color: #F62C84;
    border-radius: 50px;
    padding: 10px 40px;
    color: #fff;
    z-index: 1;
    transition: opacity 0.5s ease-out; /* Agregamos un fade-out suave */
    opacity: 0;
    pointer-events: none;
}
/* Ocultar el elemento en la vista pública */
.info {
    display: none; /* Oculta el elemento en la vista pública */
}
.showbtn{
    pointer-events: all;

    opacity: 1;
   transition: opacity 0.5s ease-out; /* Agregamos un fade-out suave */
}
.lock{
    color:#F62C84 !important;
}
/* Mostrar el elemento con borde punteado en el editor de Elementor */
.elementor-editor-active .info {
    display: block !important; /* Asegura que sea visible en el editor */
    border: 2px dashed red; /* Añade un borde punteado para indicar su invisibilidad */
    background-color: rgba(255, 0, 0, 0.1); /* Opción: color de fondo traslúcido para mayor claridad */
    pointer-events: none; /* Evita que sea interactivo */
}

/*** SHORCODE POST
 */

.shortcode-post{
    display: flex;
    justify-content: center;
    align-items: flex-start;
}
.shortcode-imagen img{
    object-fit: cover;
    aspect-ratio: 1.4 / 1;
    max-width: 150px !important;
    margin-right: 30px;
}
.shortcode-ver-mas{
    padding: 5px 0 0 0;
}
.shortcode-post p{
    margin-bottom: 5px;
}
.shortcode-post h3{
    font-weight: 800 !important;
    line-height: 28px;
    margin: 0;
    padding: 0;

}
.flecha svg{
      min-height: 40px;
    margin-left: 22px;
    margin-top: 35px;
}

/*** HEADER **/
.header-incrementa{
    display: block;
    width: 100vw;   
    min-height: 100px;  
    text-align: center;
    transition: opacity 0.5s ease-out; 
    background-color: #1A1A1A;
}
.header-incrementa .elementos{
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;    
    max-width: 1600px;
    height: 100px;
    border-bottom: 1px solid #fff;
    padding: 0 5px;
}
.header-incrementa img{
    min-width: 200px;
}
#logo1 {
  display: block;
}

#logo2 {
  display: none;
}
.header-white{
    background-color: #fff;
    transition: opacity 0.5s ease-out; 
}

.links{
    display: flex;
}
.links .rrss_icon{
    width: 25px;
}
.links .rrss_icon img{
    height:16px;
    width: 16px;
    min-width: auto;
    margin: 16px 0 0 0;
}

.contacto-header {
    color: #fff;
    display: flex;
    border-radius: 20px;
    padding: 8px 0 8px 0px;
    overflow: hidden;
    max-height: 60px;
}
.contacto-white dotlottie-player, .contacto-black dotlottie-player{
    
    position: relative;
    top: -21px;
    

}
.header-white .header-incrementa{
    background-color: #fff !important;
}
.header-white .contacto-header{
   /* border: 1px solid #000 !important;*/
    color: #000 !important;
}
.contacto-header span{
    line-height: 18px;
    max-width: 0vw;
    overflow: hidden;
    /*animation: expand-contract 6s infinite;*/
}
.black{
    display: none;
}
.header-white #logo2 {
  display: block;
}
.header-white .black{
    display: block !important;
}
.header-white .white{
    display: none;
}
@keyframes expand-contract {
  0%, 50% { max-width: 80px;  margin: 0 30px ;} /* Expandido */
  50.1%, 100% { max-width: 0;  margin: 0;} /* Contraído */
}

@keyframes fade-in-out {
  0%, 50% { opacity: 0;max-width: 0; } /* Oculto */
  50.1%, 100% { opacity: 1; max-width: 50px;} /* Visible */
}
.contacto-black{
   display: none;
}
.header-white .contacto-black{
   display: flex;
}
.header-white .contacto-white{
    display: none;
}

.header-white .elementos{
    border-bottom: 1px solid #000
}
.header-white #logo1 {
  display: none;
}

.mail-mobile{
    display: none;
}
@media (min-width: 1430px) {

}
@media only screen and (max-width: 1600px) and (min-width: 1441px) {
    .header-incrementa .elementos {
        max-width: 1440px;
        padding: 0;
    }
    .limite-ancho{
        padding: 0 5vw !important;
    }
    .limite-caja .e-con-inner{
        max-width: 1440px !Important;
        margin: auto;
    }
    .caja-mascara .title {
        margin: auto 8.3vw 0;
    }
}
@media only screen and (max-width: 1440px) and (min-width: 1367px) {
    .header-incrementa .elementos {
        max-width: 1280px;
        padding: 0;
    }
    .limite-caja .e-con-inner{
        max-width: 1280px !Important;
        margin: auto;
    }
    .limite-ancho{
        padding: 0 5vw !important;
    }
    .caja-mascara .title {
        margin: auto 5vw 0;
    }
}
@media only screen and (max-width: 1366px) and (min-width: 1281px) {
    .header-incrementa .elementos{
        max-width: 1280px;
        padding: 0;
    }
    .limite-caja .e-con-inner{
        max-width: 1280px !Important;
        margin: auto;
    }
    .limite-ancho{
        padding: 0 3vw !important;
    }
    .caja-mascara .title {
        margin: auto 3vw 0;
    }
}
@media only screen and (max-width: 1280px) and (min-width: 711px) {
    .header-incrementa .elementos {
        max-width: 1210px;
        padding: 0;
    
    }
    .limite-ancho{
        padding: 0 3vw !important;
    }
    .caja-mascara .title {
        margin: auto 3vw 0;
    }

}


/** MOBILE **/

@media only screen and (max-width: 710px) and (min-width: 320px) {
    
    .header-incrementa .elementos {
        padding: 0 33px;
        height: 100px;
    }
    .header-incrementa .links{
        padding: 8px 0 0 0;
    }
    .circle-container {
    
        transform: translate(110%, 80%);
        width: 500px;
        height: 500px;
    
    }
    .header-incrementa img {
        max-width: 110px !important;
        min-width: 110px;
    }
    .caja-mascara{
        height: CALC( 560vh - 2px ); /* Ocupa todo el alto de la pantalla */
        --ini: 195;
        --fin: 230;
    }
        
    .caja-mascara .circles {
        height: 90vh;
        overflow: hidden;
    }
    .etiquetas {
        width: CALC(100vw - 66px);
        height: 100vw;
        left: 33px;
        top: 33vh;
    }
    .caja-mascara .title{
        font-size: 30px;
        top: 25vh;
    }
    .caja-mascara .frase {
        font-size: 18px;
        line-height: 20px;
        width: auto;
    }
    .circle-container {
        right: 150px;
        top:100;
    }
    .detalle-autor .nombre {
        font-size: 20px;
        line-height: 27px;
    }
    .detalle-autor .rank {
        font-size: 16px;
        line-height: 16px;
    }
    .text-orbit {
        width: 120px;
        height: 120px;
        font-size: 14px;
        line-height: 14px;
        top: 55%;
        left: 55%;
    }

    .caja-mascara .shadowbox {
        top: 80vh;
        height: 50vh;
        background: rgb(26, 26, 26);
        background: linear-gradient(180deg, rgba(26, 26, 26, 0) 0%, rgba(26, 26, 26, 1) 20%);
        pointer-events: none;
    }
    .nube .item {
        display: block;
        font-size: 20px;
        line-height: 30px;
    
    }
    .nube {
        padding: 0 15px;
    }
    .brand-grid{
        gap: 10px;
        position: fixed;
        max-width: 100vw;
        margin: 0 auto;
        top: 15%;
        left: 0;
        width: 100%;
        padding: 0;
    }
    .video-container {
        width: 14vw;
        height: 14vw;
    }
    @keyframes expandShape {
        0% {
            width: 14vw;
            height: 14vw;
            border-radius: 50%;
        }

        100% {
            width: 25vw;
            height: 12vw;
            border-radius: 20% / 50%;
        }
    }
    .showbtn {
        margin: 0 0 0 15px;
    }
    .shortcode-imagen img {
        max-width: 125px !important;
        margin-right: 10px;
        aspect-ratio: 1 / 1;
        object-fit: cover;
    }
    .shortcode-ver-mas{
        padding: 0;
    }
    .shortcode-post p {
        margin-bottom: 0;
    }
    .flecha svg {
        min-height: 33px;
        margin-left: 10px;
        margin-top: 20px;
    }
    .shortcode-post {
        justify-content: center;
        align-items: center;
    }

    .shortcode-post h3 {
        line-height: 22px;
        font-size: 22px;
    }
    .no-responsive{
        overflow-x: scroll !important;
    }
    .no-responsive .e-con-inner:frist-child:not(.info){
        display: block;
    }
    .no-responsive .e-con-inner .elementor-element:not(.info) {
        width: 900px;
        overflow: scroll;
        display: flex;
        padding: 0 20px 0 0;
    }
    .brandbox{
        --safe=400;
    }
    .brand {
        margin: 20px 0;
        height: 40px;
    }
    .title-section h2 {
        font-size: 30px;
    }
    .mail-mobile{
        display: block;
        border: 1px solid #fff;
        padding: 4px 7px;
        border-radius: 25px;
        position: relative;
    }
    .mail-mobile svg{
        fill:#fff;
        position: relative;
        top:2px;
    }
    .contacto-white, .contacto-black{
        display: none !important;
    }
    .header-white .mail-mobile{
         border: 1px solid #000;
    }
    .header-white .mail-mobile svg{
        fill:#000 !important;
    }
    .links .rrss_icon img {
        margin: 18px 0 0 0;
    }
    .shadowClose{

        background: linear-gradient(180deg, rgba(26, 26, 26, 0) 0%, rgba(26, 26, 26, 1) 90%);
    }
    
}
