/* Variables globales */
:root {
    --primary-color: #FBA1BB;
    --text-color: #81813E;
    --background-color: #f1f1f1;
    --font-primary: 'Cabin', sans-serif;
}

/* Reset y estilos base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    position: relative;
    height: 100%;
}

body {
    font-family: 'Cabin', sans-serif;
    background-color: #f1f1f1;
    color: #555;
    line-height: 1.6;
    height: 400vh;
    overflow-x: hidden;
}

#bod {
    background-image: url(../assets/background-1600-1998-pg-peel.jpg);
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: 0 var(--scroll-position);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: none;
    z-index: 1;
}

#michelle {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#followMe {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
}

#copyWide {
    position: fixed;
    bottom: 20px;
    left: 20px;
    color: white;
    z-index: 100;
}

#copyWide a {
    color: white;
    text-decoration: none;
}

/* Logo y Navegación */
.redLogo {
    position: absolute;
    top: 20px;
    left: 20px;
    transform: none;
    z-index: 1000;
    width: 200px;
}

/* Nuevo estilo para menú desktop */
.main-navigation {
    position: relative;
    top: 0;
    right: 0;
    width: 36%;
    background: linear-gradient(to left, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0));
    z-index: 1000;
    border-bottom: none;
    margin-left: auto;
}

.main-navigation ul {
    display: flex;
    justify-content: center;
    padding: 0;
    margin: 0;
    list-style: none;
    border-bottom: 1px solid rgb(202, 202, 202);
    
}

.main-navigation li {
    text-align: center;
    border-right: 1px solid rgb(202, 202, 202);
    flex: 1;
    max-width: 200px;
}

.main-navigation a {
    display: block;
    padding: 20px 0;
    color: #555;
    text-decoration: none;
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 600;
    transition: all 0.3s ease;
    border-right: 1px solid rgba(224, 224, 224, 0.3);
}

.main-navigation li:first-child a {
    border-left: 1px solid rgba(224, 224, 224, 0.3);
}

.main-navigation a.current, 
.main-navigation a:hover {
    color: var(--primary-color);
}

#navDot{
    position: absolute;
    top: 54px;
    left: -3px;
    width: auto;
}	

/* Estilos originales del menú, ahora solo para móvil */
.redNav {
    position: absolute;
    top: 40px;
    right: 20px;
    left: auto;
    width: auto;
    z-index: 999;
    text-align: right;
    display: none; /* Ocultar por defecto en desktop */
}

.nav-links {
    display: inline-block;
}

.horizontal {
    list-style: none;
    display: flex;
    justify-content: flex-end;
    gap: 30px;
}

.horizontal li a {
    color: #555;
    text-decoration: none;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: bold;
    transition: color 0.3s ease;
}

.horizontal li a:hover {
    color: #ff69b4;
}

/* Estilos para el botón hamburguesa - oculto en desktop */
.hamburger-btn {
    display: none;
}

.menu-overlay {
    display: none;
}

/* Eventos - Esferas */
.sphereWrap {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 30px;
    z-index: 100;
}

.sphereFl {
    width: 130px;
    height: 130px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: transform 0.3s ease;
}

.sphereFl:hover {
    transform: scale(1.05);
}

.sphereFl a {
    text-decoration: none;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sphereTextWrap {
    padding: 10px;
}

.sphereTextWrap p {
    margin: 3px 0;
    color: #333;
    font-size: 13px;
    line-height: 1.3;
}

.sphereTextWrap p:first-child {
    margin-bottom: 8px;
}

.sphereTextWrap span {
    color: #ff69b4;
    font-weight: bold;
    font-size: 15px;
    text-transform: uppercase;
}

/* Redes Sociales Fijas */
#socialFixWrap {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 998;
}

#socialFixWrap a {
    display: block;
    margin: 10px 0;
}

#socialFixWrap img {
    width: 40px;
    height: auto;
    transition: transform 0.3s ease;
}

#socialFixWrap .news {
    position: fixed;
    top: -200px;
    left: -40px;
    z-index: 100;
}

#socialFixWrap .news  img {
    width: 100px;
    height: auto;
    transition: transform 0.3s ease;
}

#socialFixWrap img:hover {
    transform: scale(1.1);
}

/* Footer */
.footerDeviceWrap {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px;
    text-align: center;
    z-index: 997;
}

#mobFootOmega {
    display: none;
}

/* Utilidades */
.clearfix::after {
    content: "";
    clear: both;
    display: table;
}

.unstyled {
    list-style: none;
}


@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.redLogo, .nav-links, .sphereWrap {
    animation: fadeIn 1s ease-out;
}

/* Ajustamos el contenedor principal */
#homeWrap {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 400vh;
}

/* Primera Sección */
.section-1 {
    position: absolute;
    top: 100vh;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #fff;
    z-index: 2;
    overflow: hidden;
}

.section-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.text-overlay {
    position: absolute;
    z-index: 3;
    text-align: center;
    width: 100%;
    padding: 0 20px;
    top: 20%;
}

.pink-title {
    text-align: center;
}

.pink-title img {
    height: auto;
    width: 80%;
}

.section-image {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.section-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
}

.social-icons {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-icons img {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.social-icons a:hover img {
    transform: scale(1.2);
}

/* Texto principal superpuesto */
.main-overlay {
    position: absolute;
    top: 21%;
    left: 51%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 999;
    width: 80%;
    padding: 0 20px;
    pointer-events: none;
}

/* Sección de información */
.info-section {
    position: absolute;
    top: 120vh;
    left: 0;
    width: 100%;

    background: rgba(255, 255, 255, 0.8);
    z-index: 2;
    display: flex;
    justify-content: space-between;
    overflow: hidden;
}

.info-section-2 {
    top: 330vh;
    min-height: 500px;
    justify-content: center;
    text-align: center;
}

.info-section-2 .info-image {
    position: relative;
    left: 0;
    top: 50%;
}

.info-section-2 .info-content  {
    width: 80%;
    margin: 0;
}

.info-section-2 .info-content .info-images {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    
}

.info-section-2 .info-content .info-images .container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}
.info-section-2 .info-content .info-images img {
    width: 300px;
    height: auto;
}

.info-section-2 .info-content .info-images .image-weight {
    width: 800px;
    height: auto;
}

.info-content {
    max-width: 60%;
    margin-left: 10%;
    padding-right: 20px;
    padding: 60px 0;
}

.info-image {
    position: relative;
    margin: 0 20px 0 160px;
    width: 40%;
    transform: none;
    top: 0;
}


.info-image img {
    height: 100%;
    
    object-fit: contain;
}

.info-title {
    color: #FBA1BB;
    font-size: 2.5rem;

    margin-bottom: 40px;
    font-weight: bold;
}

.info-text p {
    color: #555;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 20px;
}


/* Media queries */


/* Sección de características */
.features-section {
    position: absolute;
    top: 200vh;
    left: 0;
    width: 100%;

    z-index: 2;
    display: flex;
    align-items: center;
}

.features-container {
    width: 100%;
    position: relative;
    height: 600px;
}

.feature-item {
    position: absolute;
    width: 20%;
    aspect-ratio: 1/1;
    text-align: center;
}

.feature-description {
    display: none;
    margin-top: 15px;
    color: #555;
    font-size: 1rem;
    text-align: center;
}

.feature-circle {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: white;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-circle:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.feature-circle::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.24);
    z-index: 1;
    border-radius: 50%;
}
.feature-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--text-color);
    z-index: 3; 
    font-size: 1.8rem;
    width: 90%;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.692);
    padding: 10px;
}

.feature-item.top-right .feature-title ,
.top-center .feature-title {
    width: 100%;
}

.feature-item p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.4;
    padding: 0 20px;
}

/* Posicionamiento específico de cada círculo */
.feature-item.top-left {
    left: 5%;
    top: 0;
    overflow: visible;
}

.feature-item.top-left .feature-circle {
    overflow: visible;
}

.feature-item.top-left img {
    position: absolute;
    top: 200px;
    left: -100px;
    z-index: 2;
}

.feature-item.top-center {
    left: 28%;
    top: -50px;
}

.feature-item.top-right {
    right: 28%;
    top: -50px;
}

.feature-item.top-far-right {
    right: 5%;
    top: 0;
    
}

.feature-item.top-far-right img {
    position: absolute;
    top: 200px;
    left: 30px;
    z-index: 2;
}

.feature-item.top-far-right .feature-circle {
    overflow: visible;
}



/* Overlay y modal para mostrar información de características */
.feature-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.feature-modal {
    background-color: white;
    border-radius: 15px;
    padding: 40px;
    width: 80%;
    max-width: 650px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    transform: scale(0.8);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.18, 1.25, 0.6, 1), opacity 0.5s ease;
}

.feature-modal.active {
    transform: scale(1);
    opacity: 1;
}

.feature-modal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, #FBA1BB, #ffaa85);
}

.feature-modal-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    z-index: -1;
    background-size: cover;
    background-position: center;
    transform: scale(1.1);
    transition: transform 0.5s ease;
}

.feature-modal.active .feature-modal-background {
    transform: scale(1);
}

/* Efecto de partículas al hacer clic */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1001;
}

.particle {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #FBA1BB;
    opacity: 0.8;
    pointer-events: none;
}

/* Animación de texto en el modal */
#feature-modal-title {
    transform: translateY(-20px);
    opacity: 0;
    transition: transform 0.6s ease, opacity 0.6s ease;
}

#feature-modal-description {
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.6s ease 0.2s, opacity 0.6s ease 0.2s;
}

.feature-modal.active #feature-modal-title,
.feature-modal.active #feature-modal-description {
    transform: translateY(0);
    opacity: 1;
}

/* Animación de botón de cierre */
.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    color: #FBA1BB;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-btn:hover {
    color: white;
    background-color: #FBA1BB;
    transform: rotate(90deg);
}

/* Estilo para círculo activo más impactante */
.feature-active {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(251, 161, 187, 0.6);
}

.feature-active::before {
    opacity: 1;
    animation: gradientBorder 2s ease infinite;
}

/* Visualización de característica al pasar el mouse */
.feature-preview {
    position: absolute;
    padding: 10px 15px;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    width: 200px;
    color: #555;
    font-size: 1.2rem;
    bottom: 120%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 5;
    text-align: center;
}

.feature-preview::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid rgba(255, 255, 255, 0.95);
}

.feature-circle:hover + .feature-preview {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(251, 161, 187, 0.4);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(251, 161, 187, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(251, 161, 187, 0);
    }
}

.pulse-animation {
    animation: pulse 1.5s infinite;
}

/* Efectos adicionales para los círculos de características */
.feature-circle::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 50%;
    background-size: 400% 400%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.6s ease;
    animation: gradientBorder 3s ease infinite;
}

.feature-circle:hover::before {
    opacity: 1;
}

@keyframes gradientBorder {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}


/* Estilos para la nueva sección de círculos */
.circles-section {
    position: absolute;
    top: 260vh;
    left: 0;
    width: 100%;
    z-index: 2;
    padding: 40px 0;
}

.circles-container {
    display: flex;
    justify-content: end;
    align-items: center;
    width: 100%;
    margin: 0 auto;
    margin-right: 10%;
}

.circle-item:nth-child(2){
    margin-right: 59px;
}

.circle-item {
    width: 25%;
    height: auto;

    border-radius: 50%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}


.circle-item:nth-child(1){
    width: 32%;
    position: relative;
    top: -70px;
    }

.circle-item:hover {
filter: opacity(0.8);
}

.view-all{
    position: absolute;
    bottom: 0px;
    right: 10%;
    width: 300px;
}

.circle-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}



/* ====== Media Queries ====== */
@media screen and (max-width: 1440px) {
    /* Ajustes de secciones principales */
    .circles-section {
        top: 260vh;
    }
    .info-section {
        top: 110vh;
    }

    .info-section-2 {
        top: 330vh;
    }

    .features-section {
        top: 210vh;
    }
    .feature-title{
        font-size: 1.5rem;
    }
    /* Ajustes de contenido */
    .info-content {
        max-width: 55%;
    }

    .info-section-2 .info-content .info-images .image-weight {
        width: 700px;
    }

    .info-section-2 .info-content .info-images img {
        width: 250px;
    }

    /* Ajustes de características */
    .features-container {
        height: 500px;
    }

    .feature-circle {
        width: 250px;
        height: 250px;
    }

    .feature-item {
        width: 22%;
    }
    .feature-item.top-left img {
        top: 150px;
    }
    .feature-item.top-far-right img {
        top: 150px;
        left: 80px;
    }
    /* Ajustes de navegación */
    .redLogo {
        width: 180px;
    }

    .horizontal {
        gap: 25px;
    }

    .horizontal li a {
        font-size: 15px;
    }

    /* Ajustes de esferas */
    .sphereWrap {
        bottom: 100px;
    }

    .sphereFl {
        width: 120px;
        height: 120px;
    }

    /* Ajustes de overlay */
    .main-overlay {
        top: 23%;
        width: 75%;
    }
}

@media screen and (max-width: 1366px) {
    /* Ajustes de secciones principales */

    body{
        height: 550vh;
    }
    #homeWrap{
        height: 550vh;
    }
    #bod{
        height: 550vh;
    }
    .redLogo{
        width: 300px;
    }
    .redLogo img{
        width: 100%;
    }   
     .circles-section {
        top: 334vh;
    }
 

 
    .info-section {
        top: 145vh;
    }

    .info-section-2 {
        top: 430vh;
    }

    .features-section {
        top: 280vh;
    }

    /* Ajustes de contenido */
    .info-content {
        max-width: 50%;
        padding: 40px 0;
    }

    .info-section-2 .info-content .info-images .image-weight {
        width: 600px;
    }

    .info-section-2 .info-content .info-images img {
        width: 220px;
    }

    .info-title {
        font-size: 2rem;
    }

    .info-text p {
        font-size: 1.1rem;
    }

    /* Ajustes de características */
    .features-container {
        height: 450px;
    }

    .feature-circle {
        width: 220px;
        height: 220px;
    }

    .feature-item {
        width: 25%;
    }

    .feature-item.top-left {
        left: 2%;
    }

    .feature-item.top-center {
        left: 25%;
    }

    .feature-item.top-right {
        right: 25%;
    }

    .feature-item.top-far-right {
        right: 2%;
    }

    .feature-item.top-left img {
        top: 130px;
        left: -50px;
    }

    .feature-item.top-far-right img {
        top: 130px;
        left: 50px;
    }

    .feature-title {
        font-size: 1.3rem;
    }

    .horizontal {
        gap: 20px;
    }

    .horizontal li a {
        font-size: 14px;
    }

    /* Ajustes de overlay */
    .main-overlay {
        top:18%;
        width: 70%;
    }

    /* Ajustes de redes sociales */
    #socialFixWrap {
        right: 15px;
    }

    #socialFixWrap img {
        width: 35px;
    }

    #socialFixWrap .news{
        top: -150px;
    }
    #socialFixWrap .news img {
        width: 90px;
    }

    /* Ajustes de esferas */
    .sphereWrap {
        bottom: 90px;
        gap: 25px;
    }

    .sphereFl {
        width: 110px;
        height: 110px;
    }

    .sphereTextWrap p {
        font-size: 12px;
    }

  
}

@media screen and (max-width: 1200px) {
        body{
    height: 400vh;
}

#homeWrap{
    height: 400vh;
}

#bod{
    height: 400vh;
    background-size: 110% auto;
    background-position: -px var(--scroll-position);
}

.redLogo{
    width: 150px;
}

.main-overlay{
    top:10%;
    left: 52%;
}
.info-section{	
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
    top: 50vh;
    text-align: center;
}
.info-image{
    width: 100%;
    margin: 0;
}   

.info-section .info-content{
    width: 100%;
    margin: 0;
}

.info-section-2{
    top: 200vh;
}

.info-section-2 .info-images{
    flex-direction: column;
}

.features-section{
    top: 200vh;

} 

.feature-item{
    width: 20%;
    height: auto;
}

.feature-circle{
    width: 100%;
    height: 100%;
}

.feature-title{
    font-size: .8rem;
}


.feature-item.top-left img {
    top: 100px;
    left: -20px;
}

.feature-item.top-far-right img {
    top: 100px;
    left: 20px;
}   

.info-section-2{
    top: 250vh;
}


}

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

}

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

}

@media screen and (max-width: 768px) {
    /* Ocultar menú desktop y mostrar menú móvil */
    .main-navigation {
        display: none;
    }
    #bod{
        background-position: 50% var(--scroll-position);
        background-attachment: fixed!important;
    }

    .redNav {
        display: block;
        position: fixed;
        top: 0;
        right: 0;
        z-index: 1000;
    }

    /* Resto de estilos para menú móvil */

    
    /* Estilos para menú hamburguesa */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 250px;
        height: 100vh;
        background-color: rgba(255, 255, 255, 0.95);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.4s ease;
        z-index: 999;
        padding-top: 70px;
    }

    .nav-links.active {
        right: 0;
    }

    #navDot {
        display: none;
    }

    .horizontal {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
    }

    .horizontal li {
        margin: 15px 0;
        width: 100%;
    }

    .horizontal li a {
        font-size: 18px;
        display: block;
        padding: 10px 0;
        border-bottom: 1px solid rgba(129, 129, 62, 0.2);
    }

    /* Botón hamburguesa */
    .hamburger-btn {
        display: block;
        position: fixed;
        top: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        background-color: var(--primary-color);
        border-radius: 5px;
        cursor: pointer;
        z-index: 1001;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .hamburger-line {
        width: 25px;
        height: 3px;
        background-color: white;
        margin: 3px 0;
        border-radius: 2px;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .hamburger-btn.active .hamburger-line:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .hamburger-btn.active .hamburger-line:nth-child(2) {
        opacity: 0;
    }

    .hamburger-btn.active .hamburger-line:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    /* Overlay para el fondo cuando el menú está abierto */
    .menu-overlay {
        position: fixed;
        top: 13%;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 998;
        display: none;
        opacity: 0;
        transition: opacity 0.3s ease;

    }

    .features-section {
        top: 180vh;
    }

    .menu-overlay.active {
        display: block;
        opacity: 1;
    }

    /* Ajustes adicionales para móvil */
    .redLogo {
        width: 130px;
        top: 15px;
        left: 15px;
    }

    .features-container {
        height: 400px;
    }

    .feature-item {
        width: 22%;
    }

    .feature-title {
        font-size: 0.9rem;
    }

    .circles-section {
        top: 227vh;
    }

    .info-section-2{
        top: 280vh;
    }

    .info-section-2 .info-content .info-images {
        flex-direction: column;
    }

    .info-section-2 .info-content .info-images img {
        width: 200px;
    }

    .info-section-2 .info-content .info-images .image-weight {
        width: 90%;
    }

    .sphereWrap {
        bottom: 70px;
        gap: 15px;
    }

    .sphereFl {
        width: 90px;
        height: 90px;
    }

    .sphereTextWrap p {
        font-size: 10px;
    }

    #socialFixWrap img {
        width: 30px;
    }
}

@media screen and (max-width: 576px) {
    html{
        overflow-x: hidden;
    }
    body{
        overflow-x: hidden;
    }
    #bod{
        background-size: 154% auto;
        background-position: 53% var(--scroll-position);
        background-attachment: fixed!important;
    background-position: 53% 0px;
    position: absorelute;
    }

   .info-section-2{
    top: 310vh;
   }
     .circles-section{
        top: 250vh;
     }
.view-all{
    width: 200px;
}
.info-image img{
    width: 90%;
}
.info-content{
    max-width: 80%;
}

.info-title{
    font-size: 1.2rem;
}

.info-text p{
    font-size: 1rem;
}
.circle-item:nth-child(1) {
    width: 50%;
}
.circle-item:nth-child(2) {
    width: 40%;
}

#navDot{
    display: none;
}
.feature-title{
    font-size: .5rem;
}
.feature-preview{
    font-size: .5rem;
    max-width: 100%;
}

.feature-item.top-left img{
    top:52px;
    left: -7px;
}

.feature-item.top-far-right img{
    top: 52px;
    left: 7x;
}

.features-section{
    top: 214vh;
}


.info-section-2 .info-content .info-images .image-weight{
    width: 100%;
}


}

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

}
