* {
    margin: 0px;
    font-family: Arial, Helvetica, sans-serif;
}
html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}
body {
    background-color: #000;
}

/* --- ANIMACIONES DE REVELACIÓN (SCROLL) --- */
.reveal {
    position: relative;
    transform: translateY(50px);
    opacity: 0;
    transition: all 1s ease;
}

.reveal.active {
    transform: translateY(0);
    opacity: 1;
}

/* CABECERA */
.cabecera {
    width: 100%;
    height: 100px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    position: fixed;
    background: linear-gradient(to bottom, rgb(36, 13, 14), rgb(67, 25, 25), rgb(36, 13, 14));
    border-bottom: 1px solid goldenrod;
    z-index: 100;
}

.nav-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img:hover {
    background-image: url(../imagen/VenetMark-logo-radiance.webp);
}

.menu-desktop a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    transition: 0.3s;
    font-weight: 500;
}

.menu-desktop a:hover { color: goldenrod; text-shadow: 0 0 20px yellow;}

.btn-reseller {
    background: goldenrod;
    color: black;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}

.menu-toggle {
    display: none;
}

.menu-toggle a {
    color: goldenrod;
    font-size: 20px;
    line-height: 80px;
    cursor: pointer;
}

/* BOTÓN POPUP*/
.overlay { 
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    transition: opacity 1s;
    visibility: hidden;
    opacity: 0;
    z-index: -100;
}
.overlay:target{
    visibility: visible;
    opacity: 1;
    z-index: 200;
}
#popupBody{
    width: 80%;
    padding: 2%;
    border-radius: 15px;
    box-shadow: 0 0 20px yellow;
    background: linear-gradient(to bottom, rgb(36, 13, 14), rgb(67, 25, 25), rgb(36, 13, 14));
    position: relative;
    margin: 10% auto;
    transition: all 5s ease-in-out;
}
.text-nav2 a {
    display: block;
    margin: 30px 0px 10px 0px;
    padding: 15px;
    font-size: 20px;
    text-align: center;
    color: goldenrod;
    text-decoration: none;
}
.text-nav2 a:hover {
    background-color: goldenrod;
    color: #5e2129;
}
#cerrar{
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 30px;
    font-weight: bold;
    text-decoration: none;
    color: goldenrod;
    transition: .3s ease all;
}
#cerrar:hover{
    color:rgb(255, 255, 0);
}

/* --- HERO SECTION --- */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.video-fondo {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    z-index: -1;
}

.hero-content h1 {
    color: #fff;
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.hero-content p {
    color: #fff;
    font-size: 1.5rem;
}

.gold-text { color: goldenrod; }

.hero-btns a {
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    margin: 10px;
    display: inline-block;
    transition: 0.3s;
}

.btn-principal, .btn-secundario { background: goldenrod; color: #000; font-weight: bold; }

/* --- GRILLA DE PRECIOS --- */
.seccion-precios {
    padding: 100px 5%;
    background: linear-gradient(to bottom, #000, #380d0d);
}

.seccion-precios h2 { text-align: center; margin-bottom: 50px; font-size: 2.5rem; color: goldenrod; }

.grid-precios {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}

.card-precio {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(5px);
    transition: 0.4s;
}

.card-precio h3 {
    color: #fff;
    font-size: 1.5rem;
}

.card-precio p {
    color: #fff;
    font-size: 1.2rem;
}
.card-precio ul {
    margin: 10px 0px 20px 0px;
    text-align: left;
    color: gold;
    font-size: 1rem;
}

.card-precio:hover {
    transform: translateY(-10px);
    border-color: goldenrod;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.card-precio.destacado {
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid goldenrod;
    position: relative;
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: goldenrod;
    color: #000;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.monto { font-size: 3rem; font-weight: bold; margin: 20px 0; color: gold; }
.monto span { font-size: 1rem; }

.btn-comprar {
    text-decoration: none;
    margin-top: 25px;
    font-size: 2rem;
    padding: 2px 15px 2px 15px;
    background-color: goldenrod;
    color: #000;
    border-radius: 5px;
}
.btn-comprar:hover {
    background-color: #fff;
}
.diferencia {
    background: rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(5px);
    transition: 0.4s;
}
.diferencia h3 {
    color: #fff;
    font-size: 1.7rem;
}
.diferencia p {
    color: gold;
    font-size: 1.2rem;
    text-align: center;
    margin-top: 10px;
    padding: 15px 0px 15px 0px;
}
.diferencia ul {
    margin: 10px 0px 20px 0px;
    text-align: left;
    color: #fff;
    font-size: 1rem;
}
.diferencia li {
    padding: 10px 0px 10px 0px;
}
.diferencia span {
    color: gold;
}

/* --- SERVICIOS --- */
.servicios-modernos {
    padding: 100px 5%;
    background: linear-gradient(to bottom, #000, #380d0d);
}

.servicios-modernos h2 { text-align: center; margin-bottom: 50px; font-size: 2.5rem; color: goldenrod; }

.servicio-fila {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

.servicio-fila.reverse { flex-direction: row-reverse; }

.ser-video video {
    width: 400px;
    border-radius: 20px;
    border: 2px solid goldenrod;
    box-shadow: 0 0 20px #5e2129;
}

.ser-texto {
    flex: 1;
    height: 400px;
    text-align: center;
    align-content: center;
    border-radius: 20px;
    border: 2px solid white;
}

.ser-texto h3 { font-size: 3rem; color: goldenrod; margin-bottom: 20px; }
.ser-texto p { font-size: 1.5rem; padding: 30px; color: #fff;}

/* --- SECCIÓN WORKSPACE --- */
.seccion-workspace {
    padding: 100px 5%;
    background: linear-gradient(to bottom, #380d0d, #000);
    display: flex;
    justify-content: center;
}

.workspace-container {
    max-width: 1100px;
    display: flex;
    align-items: center;
    gap: 60px;
    background: rgba(255, 255, 255, 0.03);
    padding: 50px;
    border-radius: 30px;
    border: 2px solid goldenrod;
}

.workspace-texto {
    flex: 1;
}

.badge-new {
    background: goldenrod;
    color: #000;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
}

.workspace-texto h2 {
    color: white;
    font-size: 2.8rem;
    margin: 20px 0;
    line-height: 1.1;
}

.google-colors {
    background: linear-gradient(to right, #4285F4, #EA4335, #FBBC05, #34A853);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.workspace-texto p {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 30px;
}

.workspace-features {
    list-style: none;
    margin-bottom: 40px;
}

.workspace-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    font-size: 1rem;
    color: #fff;
}

.mini-icon {
    width: 20px;
    margin-right: 15px;
    filter: sepia(1) saturate(5) hue-rotate(10deg);
}

.btn-workspace {
    background: goldenrod;
    color: #000;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s;
    display: inline-block;
}

.btn-workspace:hover {
    background: white;
    transform: translateY(-3px);
}

.cta-nota {
    display: block;
    font-size: 0.90rem;
    color: #999;
    margin-top: 15px;
}

.workspace-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.workspace-visual p {
    font-size: 1.5rem;
    color: #fff;
    text-align: center;
}

.workspace-icon-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
}

.w-icon-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.w-logo-img {
    width: 60px;
    height: auto;
    object-fit: contain;
}
.w-icon-box span {
    font-size: 0.85rem;
    color: #fff;
    font-weight: 500;
}

.w-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    font-size: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: goldenrod;
}

/* --- SECCIÓN NOSOTROS ---*/
.nosotros-moderno {
    padding: 100px 5%;
    background: linear-gradient(to bottom, #000, #380d0d);
}

.nosotros-moderno h2 { text-align: center; margin-bottom: 50px; font-size: 2.5rem; color: goldenrod; }
.nosotros-moderno p { text-align: center; margin-bottom: 50px; color: white; }

.nosotros-box {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: center;
    text-align: center;
}
.nosotros-box div {
    width: 300px;
    height: 380px;
    padding: 0px 15px 0px 15px;
    margin: 0px 15px 0px 15px;
    background-color: rgba(0,0,0,0.5);
    border-radius: 50px;
    border: 2px solid goldenrod;
}
.nosotros-box h3 {
    font-size: 28px;
    padding-top: 20px;
    color: goldenrod;
}
.nosotros-box p {
    line-height: 25px;
    color: #fff;
}

.nosotros-box span {
    color: goldenrod;
    font-weight: bold;
}

/* --- SECCIÓN CONTACTO ---*/
.contacto-moderno {
    padding: 100px 5%;
    background: linear-gradient(to bottom, #380d0d, goldenrod, #380d0d);
}

.contacto-moderno h2 { text-align: center; margin-bottom: 50px; font-size: 2.5rem; color: #fff; }
.contacto-moderno p { text-align: center; margin-bottom: 50px; color: #000; font-size: 20px; -webkit-text-stroke: 0.2px #000; }
.contacto-moderno div { text-align: center; }

/* --- PIE DE PAGINA --- */
.pie-moderno {
    padding-top: 20px;
    background: #000;
}
.pie-moderno div { display: flex; justify-content: center;}
.pie-moderno p { text-align: center; margin-right: 50px; margin-bottom: 15px; color: #fff; font-size: 20px; }
.pie-moderno a { text-decoration: none; margin-right: 15px; text-align: center; margin-bottom: 15px; color: #fff; font-size: 20px; }

/*RESPONSIVE MOBILE*/
@media screen and (min-width: 360px) and (max-width: 480px) {
    .menu-desktop, .btn-reseller {
        display: none;
    }
    .menu-toggle {
        display: block;
    }
    .hero-content h1 { font-size: 1.5rem; margin: 0px 5px 0px 5px; padding: 5px; }
    .hero-content p { font-size: 1.2rem; margin: 0px 5px 0px 5px; padding: 5px; }
    .monto { font-size: 2rem; }

    .logo img {
        width: 70%;
        height: auto;
    }
    .logo img:hover { display: none;}
    
    /*MODIFICACIONES*/
    .menu-toggle a {
        text-decoration: none;
        font-size: 25px;
    }

    /* --- HERO SECTION --- */
    .hero {
        height: 100vh;
    }

    /* --- SERVICIOS, PRECIOS, NOSOTROS --- */
    .servicios-modernos, .seccion-precios, .nosotros-moderno {
        padding: 50px 5%;
    }

    .servicios-modernos h2, .seccion-precios h2, .nosotros-moderno h2 { text-align: center; margin-bottom: 50px; font-size: 2.5rem; }

    .servicio-fila {
        gap: 25px;
        margin-bottom: 40px;
    }

    .ser-video video {
        width: 300px;
    }

    .ser-texto {
        height: 300px;
    }

    .ser-texto h3 { font-size: 2rem; margin-bottom: 10px; }
    .ser-texto p { font-size: 1rem; padding: 15px;}

    /* --- GRILLA DE PRECIOS --- */
    .grid-precios {
        max-width: 80vh;
        margin: auto;
    }

    /* --- SECCIÓN WORKSPACE --- */
    .workspace-container {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }
    .workspace-features li {
        justify-content: center;
    }

    /* --- NUEVA SECCIÓN NOSOTROS ---*/
    .nosotros-box {
        display: flex;
        flex-wrap: wrap;
        align-items: baseline;
        justify-content: center;
        text-align: center;
    }
    .nosotros-box div {
        margin: 15px 15px 15px 15px;
    }

    /* --- NUEVA SECCIÓN CONTACTO ---*/
    .contacto-moderno {
        padding: 50px 5%;
    }

    /* --- PIE DE PAGINA --- */
    .pie-moderno p { margin-right: 0px; font-size: 18px; }
    .pie-moderno a { margin-right: 0px; font-size: 18px; }
}

@media (max-width: 768px) {
    .menu-toggle a {
        text-decoration: none;
        font-size: 25px;
    }

    .menu-desktop, .btn-reseller {
        display: none;
    }
    .menu-toggle {
        display: block;
    }
    .hero-content h1 { font-size: 2.2rem; }
    
    .workspace-container {
        padding: 20px;
        text-align: center;
    }
    
    .workspace-features li {
        text-align: left;
    }

    .ser-texto {
        padding: 20px;
    }

    .nosotros-box div {
        min-height: auto;
        padding: 40px 20px;
    }

    .pie-moderno div {
        flex-direction: column;
        text-align: center;
    }
    /* --- PIE DE PAGINA --- */
    .pie-moderno p { margin-right: 0px; font-size: 18px; }
    .pie-moderno a { margin-right: 0px; font-size: 18px; }
}

@media (max-width: 1024px) {
    .menu-toggle a {
        text-decoration: none;
        font-size: 30px;
    }

    .menu-desktop, .btn-reseller {
        display: none;
    }
    .menu-toggle {
        display: block;
    }
    .nav-container {
        width: 90%;
    }
    .servicio-fila {
        flex-direction: column;
    }
    .servicio-fila.reverse {
        flex-direction: column;
    }
}