@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700;900&family=Roboto:wght@300;400;500;700&display=swap');

.vuh-hero {
    min-height: 80vh;
    position: relative;
    display: flex;
    align-items: center;
    background: #F2F2F2;
    overflow: hidden;
    font-family: 'Roboto', sans-serif;
}

/* Partículas de fondo */
.vuh-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    opacity: 0.7;
    z-index: 1;
    pointer-events: none; /* Importante para que no interfiera con clicks */
}

.vuh-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    opacity: 0;
    animation: vuh-float linear infinite;
    bottom: -10px; /* Empiezan desde abajo */
}

@keyframes vuh-float {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
        bottom: -10px;
    }
    10% {
        opacity: 0.4;
    }
    90% {
        opacity: 0.4;
    }
    100% {
        transform: translateY(calc(-100vh - 20px)) translateX(30px);
        opacity: 0;
        bottom: -10px;
    }
}

.vuh-hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    width: 100%;
    z-index: 2;
    position: relative;
}

/* TEXTO PRINCIPAL */
.vuh-hero-text {
    color: #54595F;
}

.vuh-hero-badge {
    display: inline-flex;
    align-items: center;
    background: transparent;
    border: 1px solid #00BD8A;
    padding: 6px 18px;
    border-radius: 2px;
    font-size: 0.75rem !important;
    font-weight: 600;
    margin-bottom: 30px;
    color: #00BD8A;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Roboto', sans-serif;
}

.vuh-hero-title {
    font-size: clamp(2.5rem, 7vw, 4.5rem) !important;
    font-weight: 900;
    line-height: 0.95;
    margin-bottom: 30px;
    color: #54595F;
    text-transform: uppercase;
    letter-spacing: -1px;
    font-family: 'Inter', sans-serif;
}

.vuh-hero-title span {
    color: #00BD8A;
}

.vuh-hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem) !important;
    line-height: 1.6;
    color: #7A7A7A;
    margin-bottom: 40px;
    font-weight: 300;
    font-family: 'Roboto', sans-serif;
}

.vuh-hero-cta {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.vuh-btn-primary {
    background: linear-gradient(45deg, #00BD8A, #5F48CB);
    color: #fff;
    padding: 16px 36px;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-block;
    font-family: 'Roboto', sans-serif;
}

.vuh-btn-primary:hover {
    transform: translateY(-3px);
    color: white;
    box-shadow: 0 10px 30px rgba(0, 189, 138, 0.4);
}

.vuh-btn-secondary {
    background: transparent;
    color: #54595F;
    padding: 16px 36px;
    border: 2px solid #7A7A7A;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-family: 'Roboto', sans-serif;
}

.vuh-btn-secondary:hover {
    border-color: #00BD8A;
    color: #00BD8A;
    transform: translateY(-3px);
}

/* SISTEMA DE CÍRCULOS */
.vuh-circles-arena {
    position: relative;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Anillos orbitales */
.vuh-orbit-ring {
    position: absolute;
    border: 1px solid rgba(0, 189, 138, 0.1);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.vuh-orbit-ring-1 {
    width: 250px;
    height: 250px;
    animation: vuh-rotate 50s linear infinite;
}

.vuh-orbit-ring-2 {
    width: 350px;
    height: 350px;
    animation: vuh-rotate 70s linear infinite reverse;
}

.vuh-orbit-ring-3 {
    width: 450px;
    height: 450px;
    animation: vuh-rotate 90s linear infinite;
}

@keyframes vuh-rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Sistema orbital */
.vuh-orbit-system {
    position: absolute;
    width: 500px;
    height: 500px;
    animation: vuh-slowRotate 180s linear infinite;
}

@keyframes vuh-slowRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Contenedor de círculos */
.vuh-circle-container {
    position: absolute;
    width: 240px;
    height: 240px;
    display: flex;
    justify-content: center;
    align-items: center;
    isolation: isolate;
    border-radius: 50%;
    overflow: visible;
}

/* Posiciones */
.vuh-circle-container.vuh-pos-top {
    top: -120px;
    left: 50%;
    margin-left: -120px;
}

.vuh-circle-container.vuh-pos-right {
    top: 50%;
    right: -120px;
    margin-top: -120px;
}

.vuh-circle-container.vuh-pos-bottom {
    bottom: -120px;
    left: 50%;
    margin-left: -120px;
}

.vuh-circle-container.vuh-pos-left {
    top: 50%;
    left: -120px;
    margin-top: -120px;
}

/* Wrapper interno */
.vuh-circle-inner {
    width: 100%;
    height: 100%;
    animation: vuh-counterRotate 180s linear infinite;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    border-radius: 50%;
}

@keyframes vuh-counterRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(-360deg); }
}

/* Texto curvo */
.vuh-circle-text {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    transition: transform 0.3s ease-out;
}

.vuh-circle-text svg {
    width: 100%;
    height: 100%;
}

.vuh-circle-text text {
    fill: #54595F;
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease-out;
}

/* Elemento círculo */
.vuh-circle-element {
    width: 160px;
    height: 160px;
    border-radius: 50% !important;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease-out;
    z-index: 1;
    border: 4px solid;
}

/* Imagen de fondo */
.vuh-circle-bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease-out;
    border-radius: 50% !important;
    overflow: hidden;
}

/* Overlay */
.vuh-circle-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    transition: background 0.3s ease-out;
    z-index: 2;
    border-radius: 50% !important;
}

/* Contenido */
.vuh-circle-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 15px;
    opacity: 0;
    transition: opacity 0.3s ease-out;
    z-index: 3;
    border-radius: 50% !important;
}

.vuh-circle-content h4 {
    color: white;
    font-size: 0.7rem;
    margin-bottom: 8px;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    line-height: 1.2;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
}

.vuh-circle-btn {
    padding: 5px 14px;
    border: none;
    border-radius: 20px;
    color: white;
    font-size: 0.55rem;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Roboto', sans-serif;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
}

.vuh-circle-btn:hover {
    transform: translateY(-1px);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.35);
}

/* Estados hover */
.vuh-circle-container:hover {
    z-index: 100;
}

.vuh-circle-container:hover .vuh-circle-element {
    transform: scale(1.25);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.vuh-circle-container:hover .vuh-circle-text {
    transform: scale(1.15);
}

.vuh-circle-container:hover .vuh-circle-text text {
    fill: #0097E0;
    font-size: 20px;
}

.vuh-circle-container:hover .vuh-circle-bg {
    transform: scale(1.05);
}

.vuh-circle-container:hover .vuh-circle-overlay {
    background: rgba(0, 0, 0, 0.8);
}

.vuh-circle-container:hover .vuh-circle-content {
    opacity: 1;
}

/* Sin pausa - la animación continúa siempre */

/* Centro - Hub */
.vuh-center-hub {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 15; /* Increased z-index */
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Logo sin fondo */
.vuh-center-logo {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.2));
    display: block; /* Ensure it's visible */
}

.vuh-center-hub:hover .vuh-center-logo {
    transform: scale(1.1);
    filter: drop-shadow(0 6px 15px rgba(0, 0, 0, 0.3));
}

/* Texto alternativo cuando no hay logo */
.vuh-center-hub-text {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #00BD8A, #5F48CB);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    border: 3px solid rgba(255, 255, 255, 0.3);
    font-size: 1.2rem;
    color: white;
    font-weight: 900;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.vuh-center-hub:hover .vuh-center-hub-text {
    transform: scale(1.15);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .vuh-hero-container {
        gap: 50px;
        padding: 0 30px;
    }

    .vuh-hero-title {
        font-size: clamp(2.5rem, 7vw, 4.5rem) !important;
    }

    .vuh-circles-arena {
        height: 500px;
    }

    .vuh-orbit-system {
        width: 420px;
        height: 420px;
    }
}

@media (max-width: 1024px) {
    .vuh-hero-container {
        gap: 40px;
        padding: 0 25px;
    }

    .vuh-circles-arena {
        height: 480px;
    }

    .vuh-orbit-system {
        width: 400px;
        height: 400px;
    }

    .vuh-circle-container {
        width: 220px;
        height: 220px;
    }

    .vuh-circle-container.vuh-pos-top {
        top: -110px;
        margin-left: -110px;
    }

    .vuh-circle-container.vuh-pos-right {
        right: -110px;
        margin-top: -110px;
    }

    .vuh-circle-container.vuh-pos-bottom {
        bottom: -110px;
        margin-left: -110px;
    }

    .vuh-circle-container.vuh-pos-left {
        left: -110px;
        margin-top: -110px;
    }

    .vuh-circle-element {
        width: 140px;
        height: 140px;
    }
}

@media (max-width: 900px) {
    .vuh-hero {
        min-height: auto;
        padding: 80px 0;
    }

    .vuh-hero-container {
        grid-template-columns: 1fr;
        gap: 80px;
        text-align: center;
        padding: 0 20px;
    }

    .vuh-hero-title {
        font-size: clamp(2.2rem, 9vw, 3.5rem) !important;
        margin-bottom: 25px;
    }

    .vuh-hero-subtitle {
        font-size: clamp(1rem, 3vw, 1.1rem) !important;
        margin-bottom: 35px;
    }

    .vuh-hero-cta {
        justify-content: center;
        margin-bottom: 20px;
    }

    .vuh-circles-arena {
        height: 450px;
        margin: 0 auto;
        max-width: 450px;
    }
}

@media (max-width: 768px) {
    .vuh-hero {
        padding: 60px 0;
    }

    .vuh-hero-container {
        gap: 70px;
    }

    .vuh-hero-title {
        font-size: clamp(2rem, 10vw, 3rem) !important;
        line-height: 1;
    }

    .vuh-hero-subtitle {
        font-size: 1rem !important;
        padding: 0 10px;
    }

    .vuh-hero-cta {
        flex-wrap: wrap;
        margin-bottom: 30px;
    }

    .vuh-btn-primary, .vuh-btn-secondary {
        width: 100%;
        max-width: 280px;
    }

    .vuh-circles-arena {
        height: 400px;
        max-width: 400px;
    }

    .vuh-orbit-system {
        width: 350px;
        height: 350px;
    }

    .vuh-circle-container {
        width: 180px;
        height: 180px;
    }

    .vuh-circle-container.vuh-pos-top {
        top: -90px;
        margin-left: -90px;
    }

    .vuh-circle-container.vuh-pos-right {
        right: -90px;
        margin-top: -90px;
    }

    .vuh-circle-container.vuh-pos-bottom {
        bottom: -90px;
        margin-left: -90px;
    }

    .vuh-circle-container.vuh-pos-left {
        left: -90px;
        margin-top: -90px;
    }

    .vuh-circle-element {
        width: 120px;
        height: 120px;
    }
    
    /* Centro hub ajustado para móvil */
    .vuh-center-hub {
        transform: translate(-50%, -50%);
    }
    
    .vuh-center-logo {
        max-width: 100px !important;
        width: auto !important;
        height: auto !important;
    }
    
    .vuh-center-hub-text {
        width: 80px;
        height: 80px;
        font-size: 1rem;
    }
    
    /* Contenido de círculos más pequeño en móvil */
    .vuh-circle-content h4 {
        font-size: 0.55rem !important;
        line-height: 1.1;
        margin-bottom: 5px;
    }
    
    .vuh-circle-btn {
        font-size: 0.45rem !important;
        padding: 3px 10px !important;
    }

    .vuh-circle-container:hover .vuh-circle-element {
        transform: scale(1.2);
    }

    .vuh-circle-container:hover .vuh-circle-text {
        transform: scale(1.1);
    }
}

@media (max-width: 580px) {
    .vuh-hero {
        padding: 50px 0;
    }

    .vuh-hero-container {
        gap: 60px;
        padding: 0 15px;
    }

    .vuh-hero-badge {
        font-size: 0.7rem !important;
        padding: 5px 15px;
        margin-bottom: 20px;
    }

    .vuh-hero-title {
        font-size: clamp(1.8rem, 11vw, 2.5rem) !important;
        margin-bottom: 20px;
    }

    .vuh-hero-subtitle {
        font-size: 0.95rem !important;
        margin-bottom: 30px;
    }

    .vuh-hero-cta {
        margin-bottom: 20px;
    }

    .vuh-circles-arena {
        height: 350px;
        max-width: 350px;
        margin-top: 10px;
    }

    .vuh-orbit-system {
        width: 320px;
        height: 320px;
    }

    .vuh-circle-container {
        width: 160px;
        height: 160px;
    }

    .vuh-circle-container.vuh-pos-top {
        top: -80px;
        margin-left: -80px;
    }

    .vuh-circle-container.vuh-pos-right {
        right: -80px;
        margin-top: -80px;
    }

    .vuh-circle-container.vuh-pos-bottom {
        bottom: -80px;
        margin-left: -80px;
    }

    .vuh-circle-container.vuh-pos-left {
        left: -80px;
        margin-top: -80px;
    }

    .vuh-circle-element {
        width: 110px;
        height: 110px;
    }
    
    /* Centro hub más pequeño */
    .vuh-center-logo {
        max-width: 100px !important;
        width: auto !important;
        height: auto !important;
    }
    
    .vuh-center-hub-text {
        width: 70px;
        height: 70px;
        font-size: 0.9rem;
    }
    
    /* Contenido aún más pequeño */
    .vuh-circle-content h4 {
        font-size: 0.5rem !important;
        margin-bottom: 4px;
    }
    
    .vuh-circle-btn {
        font-size: 0.4rem !important;
        padding: 2px 8px !important;
        border-radius: 15px !important;
    }

    .vuh-circle-container:hover .vuh-circle-element {
        transform: scale(1.15);
    }
}

@media (max-width: 480px) {
    .vuh-hero-container {
        padding: 0 15px;
        gap: 50px;
    }

    .vuh-btn-primary, .vuh-btn-secondary {
        padding: 14px 28px;
        font-size: 0.85rem;
    }

    .vuh-circles-arena {
        height: 320px;
        max-width: 320px;
        margin-top: 15px;
    }

    .vuh-orbit-system {
        width: 300px;
        height: 300px;
    }

    .vuh-circle-container {
        width: 150px;
        height: 150px;
    }

    .vuh-circle-container.vuh-pos-top {
        top: -75px;
        margin-left: -75px;
    }

    .vuh-circle-container.vuh-pos-right {
        right: -75px;
        margin-top: -75px;
    }

    .vuh-circle-container.vuh-pos-bottom {
        bottom: -75px;
        margin-left: -75px;
    }

    .vuh-circle-container.vuh-pos-left {
        left: -75px;
        margin-top: -75px;
    }

    .vuh-circle-element {
        width: 100px;
        height: 100px;
    }

    /* Centro hub pequeño pero visible */
    .vuh-center-hub {
        transform: translate(-50%, -50%);
        z-index: 15;
    }
    
    .vuh-center-logo {
        max-width: 100px !important;
        width: auto !important;
        height: auto !important;
    }
    
    .vuh-center-hub-text {
        width: 60px;
        height: 60px;
        font-size: 0.8rem;
    }
    
    /* Contenido muy pequeño para móviles pequeños */
    .vuh-circle-content h4 {
        font-size: 0.45rem !important;
        margin-bottom: 3px;
        padding: 0 5px;
    }
    
    .vuh-circle-btn {
        font-size: 0.35rem !important;
        padding: 2px 6px !important;
        border-radius: 12px !important;
        letter-spacing: 0.3px !important;
    }
}

@media (max-width: 360px) {
    .vuh-circles-arena {
        height: 300px;
        max-width: 300px;
    }

    .vuh-orbit-system {
        width: 280px;
        height: 280px;
    }

    .vuh-circle-container {
        width: 140px;
        height: 140px;
    }

    .vuh-circle-element {
        width: 90px;
        height: 90px;
    }

    .vuh-hero-title {
        font-size: 1.5rem !important;
    }
    
    /* Centro hub mínimo pero siempre visible */
    .vuh-center-logo {
        max-width: 80px !important;
        width: auto !important;
        height: auto !important;
    }
    
    .vuh-center-hub-text {
        width: 50px;
        height: 50px;
        font-size: 0.7rem;
    }
    
    /* Contenido extremadamente pequeño */
    .vuh-circle-content h4 {
        font-size: 0.4rem !important;
        margin-bottom: 2px;
    }
    
    .vuh-circle-btn {
        font-size: 0.3rem !important;
        padding: 1px 5px !important;
        border-radius: 10px !important;
    }
}

/* Desktop (por defecto) */
.vuh-hero {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
}

/* Tablet grande */
@media (max-width: 1200px) {
    .vuh-hero {
        padding-top: 50px !important;
        padding-bottom: 50px !important;
    }
}

/* Tablet */
@media (max-width: 768px) {
    .vuh-hero {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }
}

/* Móvil grande */
@media (max-width: 580px) {
    .vuh-hero {
        padding-top: 35px !important;
        padding-bottom: 35px !important;
    }
}

/* Móvil */
@media (max-width: 480px) {
    .vuh-hero {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }
}

/* Móvil pequeño */
@media (max-width: 360px) {
    .vuh-hero {
        padding-top: 25px !important;
        padding-bottom: 25px !important;
    }
}

/* Cursor personalizado - Solo punto con efecto negativo 
body {
    cursor: none !important;
}

body * {
    cursor: none !important;
}

.vuh-custom-cursor-dot {
    width: 24px;
    height: 24px;
    background: white;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 999999;
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease;
    mix-blend-mode: exclusion;
}

.vuh-custom-cursor-dot.clicking {
    transform: translate(-50%, -50%) scale(0.6);
}

.vuh-custom-cursor-dot.hover {
    transform: translate(-50%, -50%) scale(1.8);
}

.vuh-custom-cursor {
    display: none !important;
}*/
