:root {
    --neon-color: #0ff;
    --bg-color: #0a192f;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --neon-glow: 0 0 10px var(--neon-color);
    --text-glow: 0 0 8px rgba(0, 255, 255, 0.4);
    --neon-blue: #0ff;
            --neon-pink: #f0f;
            --neon-green: #0f0;
            --bg-dark: #0a192f;
            --glass-effect: rgba(255, 255, 255, 0.05);
            --glow-blue: 0 0 10px var(--neon-blue);
            --glow-pink: 0 0 10px var(--neon-pink);
            --glow-green: 0 0 10px var(--neon-green);
}

@font-face {
    font-family: "myFont";
    src: url("../fonts/Nasalization\ Rg.otf");
  }

body {
    background: var(--bg-color);
    margin: 0;
    font-family: 'Orbitron', sans-serif; 
    color: white;
    overflow-x: hidden;
}

p {
    font-family: "myFont";
    font-weight: 100;
  }
.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 20px;
}

/* Estilos del menú futurista */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background: rgba(10, 25, 47, 0.8);
    border-bottom: 1px solid rgba(0, 255, 255, 0.1);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: transparent;
    background: linear-gradient(45deg, var(--neon-color), #fff);
    -webkit-background-clip: text;
    background-clip: text;
    text-shadow: var(--text-glow);
    text-decoration: none;
}

.logo-icon {
    font-size: 1.8rem;
    filter: drop-shadow(0 0 3px var(--neon-color));
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    position: relative;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.nav-links a:hover {
    color: var(--neon-color);
    text-shadow: var(--text-glow);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--neon-color);
    box-shadow: var(--neon-glow);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: white;
    transition: all 0.3s ease;
}

.menu-toggle:hover {
    color: var(--neon-color);
    text-shadow: var(--text-glow);
}

/* Estilos para el contenido principal */
.main-content {
    margin-top: 80px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-section {
    text-align: center;
    padding: 3rem 0;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: transparent;
    background: linear-gradient(45deg, var(--neon-color), #fff);
    -webkit-background-clip: text;
    background-clip: text;
    text-shadow: var(--text-glow);
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 2rem;
}


/* Responsive Design */
@media (max-width: 992px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(10, 25, 47, 0.95);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 3rem;
        transition: left 0.5s ease;
        backdrop-filter: blur(15px);
    }

    .nav-links.active {
        left: 0;
    }

    .menu-toggle {
        display: block;
    }

    .hero-title {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .navbar {
        padding: 1rem;
    }

    .logo {
        font-size: 1.2rem;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .phone-svg {
        width: 80px;
        height: 80px;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
}


/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.3);
    padding: 3rem 2rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(0, 255, 255, 0.1);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.footer-column h3 {
    color: var(--neon-color);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--neon-color);
    text-shadow: var(--text-glow);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--neon-color);
    transform: translateY(-3px);
    text-shadow: var(--text-glow);
}

.copyright {
    text-align: center;
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.product-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 255, 255, 0.2);
}

.product-logo {
    width: 70px!important;
    height: 70px!important;
    object-fit: contain;
    margin-right: 20px;
    filter: drop-shadow(var(--glow-blue));
}

.product-title {
    font-size: 2rem;
    margin: 0;
    background: linear-gradient(45deg, var(--neon-blue), #fff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: var(--glow-blue);
}

.product-subtitle {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 5px;
    font-size: 1rem;
}

/* Botón de compra */
.buy-button {
    display: inline-block;
    background: linear-gradient(45deg, #ff9900, #ff6600);
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 15px;
    box-shadow: 0 0 15px rgba(255, 153, 0, 0.5);
    transition: all 0.3s ease;
}

.buy-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(255, 153, 0, 0.8);
}

.espacio {
    padding-top:5rem;
}
.espacio2{
    margin-bottom: 3rem;
    width: 100%;
    overflow: hidden;
}

/* Grid de características */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.feature-card {
    background: var(--glass-effect);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 15px;
    padding: 20px;
    backdrop-filter: blur(5px);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
    border-color: var(--neon-blue);
}

.feature-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
    border: 1px solid rgba(0, 255, 255, 0.3);
}

.feature-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--neon-blue);
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-title i {
    text-shadow: var(--glow-blue);
}

.feature-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

/* Especificaciones técnicas */
.specs-container {
    background: var(--glass-effect);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 40px;
    backdrop-filter: blur(5px);
}

.specs-title {
    font-size: 1.5rem;
    margin-top: 0;
    margin-bottom: 20px;
    color: var(--neon-blue);
    text-shadow: var(--glow-blue);
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 0.9rem;
    align-items: center;
}

.spec-name {
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 8px;
}

.spec-name i {
    color: var(--neon-blue);
    text-shadow: var(--glow-blue);
    font-size: 1rem;
}

.spec-value {
    font-weight: bold;
    color: var(--neon-blue);
    text-shadow: var(--glow-blue);
}

/* Novedades destacadas */
.highlights-container {
    margin-bottom: 40px;
}

.highlight-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.highlight-card {
    background: var(--glass-effect);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 15px;
    padding: 25px;
    backdrop-filter: blur(5px);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
}

.highlight-title {
    font-size: 1.3rem;
    margin-top: 0;
    margin-bottom: 15px;
    color: var(--neon-blue);
    display: flex;
    align-items: center;
    gap: 10px;
}

.highlight-title i {
    text-shadow: var(--glow-blue);
}

.highlight-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Enlaces de compra */
.amazon-link {
    color: #ff9900;
    text-decoration: none;
    font-weight: bold;
    border-bottom: 1px dashed #ff9900;
    transition: all 0.2s ease;
}

.amazon-link:hover {
    color: #ff6600;
    border-bottom-color: #ff6600;
}

/* Responsive */
@media (max-width: 1100px) {
    .features-grid, .highlight-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .product-header {
        flex-direction: column;
        text-align: center;
    }
    
    .product-logo {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .features-grid, .highlight-cards {
        grid-template-columns: 1fr;
    }
}

/* Línea de espaciado */
.amazon-hr {
    height: 2px;
    border: none;
    background: linear-gradient(90deg, 
              rgba(255,153,0,0.1), 
              #FF9900 20%, 
              #FF6600 80%, 
              rgba(255,102,0,0.1));
    box-shadow: 0 0 10px rgba(255, 153, 0, 0.5);
    margin: 25px 0;
    position: relative;
    overflow: visible;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1300px;
    margin: 0 auto;
    align-items: stretch;
    justify-content: space-around;
}

/* Reemplazar con este nuevo media query mejorado */
@media (max-width: 1000px) {
    .grid-container {
        grid-template-columns: 1fr;
        padding: 0 15px; /* Espaciado uniforme */
        box-sizing: border-box; /* Asegura que el padding no afecte el ancho total */
    }
    
    .tile {
        width: 100%;
        max-width: 500px;
        margin: 0 auto 20px; /* Espaciado uniforme */
        padding: 15px; /* Padding uniforme */
        box-sizing: border-box; /* Asegura que el padding no afecte el ancho total */
    }
    
    .radar-tile .radar-container {
        max-width: 350px;
    }
    
    .image-tile img {
        max-height: 400px;
    }
}

@media (max-width: 600px) {
    .tile {
        padding: 15px;
        margin: 0 auto 15px; /* Espaciado uniforme */
    }
    
    .product-header {
        flex-direction: column;
        text-align: center;
    }
    
    .product-logo {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .spec-item {
        font-size: 0.8rem;
    }
    
    .spec-name i {
        font-size: 0.9rem;
    }
    
    .radar-tile .radar-container {
        max-width: 300px;
    }
    
    .labels {
        font-size: clamp(6px, 1.5vw, 10px);
    }
    
    .image-tile img {
        max-height: 350px;
    }
}

@media (max-width: 300px) {
    .tile {
        padding: 10px;
        margin: 0 auto 10px; /* Espaciado uniforme */
    }
    
    .radar-tile .radar-container {
        max-width: 200px;
    }
    
    .product-name {
        font-size: 1.2rem;
    }
    
    .spec-item {
        font-size: 0.7rem;
    }
    
    .spec-name i {
        font-size: 0.8rem;
    }
    
    .image-tile img {
        max-height: 250px;
    }
}

.tile {
    background: var(--glass-effect);
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 15px;
    padding: 20px;
    backdrop-filter: blur(5px);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.2);
    overflow: hidden;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
}



/* Left Tile - Image */
.image-tile {
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-tile img {
    width: 100%;
    height: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 10px;
    filter: drop-shadow(0 0 10px var(--neon-blue));
}

/* Center Tile - Radar */
.radar-tile {
    display: flex;
    align-items: center;
    justify-content: center;
}

.radar-tile .radar-container {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1 / 1; /* Ensures square aspect ratio */
    position: relative;
    background: radial-gradient(circle at center, rgba(20, 40, 60, 0.9) 0%, rgba(5, 5, 20, 1) 70%);
    border-radius: 50%;
    box-shadow: 0 0 40px rgba(0, 255, 255, 0.6), inset 0 0 25px rgba(0, 255, 255, 0.4);
    border: 3px solid var(--neon-blue);
    animation: borderGlow 4s infinite alternate;
}

.radar-container::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.15) 0%, transparent 60%);
    opacity: 0.4;
    animation: particlePulse 5s infinite ease-in-out;
}

.radar-grid, .radar-data {
    width: 100%;
    height: 100%;
    position: absolute;
}

.radar-grid { opacity: 0.6; }
.grid-circle {
    fill: none;
    stroke: var(--neon-blue);
    stroke-width: 1.5;
    transform-origin: center;
    animation: pulse 3s infinite, rotate 80s linear infinite;
}

.radial-line {
    stroke: var(--neon-blue);
    stroke-width: 2.5;
    opacity: 0.3;
    filter: drop-shadow(0 0 3px var(--neon-blue));
}

.data-polygon {
    fill-opacity: 0.5;
    stroke-width: 2.5;
    filter: drop-shadow(0 0 8px currentColor);
    transition: all 0.3s ease;
}

.product1 { stroke: #00ffcc; fill: url(#grad1); animation: glow1 2s infinite alternate; }
.product2 { stroke: var(--neon-pink); fill: url(#grad2); animation: glow2 2s infinite alternate; }

.labels {
    position: absolute;
    width: 100%;
    height: 100%;
    color: var(--neon-blue);
    font-size: clamp(8px, 2vw, 12px);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: bold;
    text-shadow: var(--glow-blue);
}

.labels span {
    position: absolute;
    transform: translate(-50%, -50%);
    animation: textFlicker 3s infinite;
}

/* Right Tile - Specs */
.specs-tile .product-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 255, 255, 0.2);
}

.product-logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
    margin-right: 15px;
    filter: drop-shadow(0 0 5px var(--neon-blue));
}

.product-name {
    font-size: 1.5rem;
    margin: 0;
    background: linear-gradient(45deg, var(--neon-blue), #fff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: var(--glow-blue);
}

.product-specs {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 0.9rem;
    align-items: center;
}

.spec-name {
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
}

.spec-name i {
    margin-right: 8px;
    color: var(--neon-blue);
    text-shadow: var(--glow-blue);
    font-size: 1rem;
}

.spec-value {
    font-weight: bold;
    color: var(--neon-blue);
    text-shadow: var(--glow-blue);
}

/* Animations */
@keyframes pulse {
    0% { stroke-opacity: 0.6; transform: scale(1); }
    50% { stroke-opacity: 0.9; transform: scale(1.03); }
    100% { stroke-opacity: 0.6; transform: scale(1); }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes glow1 {
    from { stroke-width: 2.5; filter: drop-shadow(0 0 8px #00ffcc); }
    to { stroke-width: 3; filter: drop-shadow(0 0 20px #00ffcc); }
}

@keyframes glow2 {
    from { stroke-width: 2.5; filter: drop-shadow(0 0 8px var(--neon-pink)); }
    to { stroke-width: 3; filter: drop-shadow(0 0 20px var(--neon-pink)); }
}

@keyframes borderGlow {
    from { border-color: var(--neon-blue); box-shadow: 0 0 20px rgba(0, 255, 255, 0.6); }
    to { border-color: #00ccff; box-shadow: 0 0 50px rgba(0, 255, 255, 0.8); }
}

@keyframes particlePulse {
    0% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.1); }
    100% { opacity: 0.4; transform: scale(1); }
}

@keyframes textFlicker {
    0%, 100% { opacity: 1; text-shadow: var(--glow-blue); }
    50% { opacity: 0.8; text-shadow: 0 0 15px rgba(0, 255, 255, 0.7); }
}

/* Responsive Design */
@media (max-width: 1000px) {
    .grid-container {
        grid-template-columns: 1fr;
    }
    .tile {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
    .radar-tile .radar-container {
        max-width: 350px;
    }
    .image-tile img {
        max-height: 400px;
    }
}

@media (max-width: 600px) {
    .tile {
        padding: 15px;
    }
    .product-header {
        flex-direction: column;
        text-align: center;
    }
    .product-logo {
        margin-right: 0;
        margin-bottom: 10px;
    }
    .spec-item {
        font-size: 0.8rem;
    }
    .spec-name i {
        font-size: 0.9rem;
    }
    .radar-tile .radar-container {
        max-width: 300px;
    }
    .labels {
        font-size: clamp(6px, 1.5vw, 10px);
    }
    .image-tile img {
        max-height: 350px;
    }
}

@media (max-width: 300px) {
    .tile {
        padding: 10px;
    }
    .radar-tile .radar-container {
        max-width: 200px;
    }
    .product-name {
        font-size: 1.2rem;
    }
    .spec-item {
        font-size: 0.7rem;
    }
    .spec-name i {
        font-size: 0.8rem;
    }
    .image-tile img {
        max-height: 250px;
    }
}

@media (max-width: 600px){
    .labels span {
        font-size:.59rem;
    }
    span.spec-name{
        font-size: .9rem;
    }
    .part{
        font-size:.7rem;
    }
}
