:root {
    --primary-color: #00a8ff;
    --secondary-color: #192a56;
    --accent-color: #0097e6;
    --text-color: #ffffff;
    --background-color: #0c1633;
    --card-bg: rgba(12, 22, 51, 0.7);
    --highlight-color: #00ff88;
    /* Nuevo color para destacar */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Orbitron', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    overflow-x: hidden;
    opacity: 0;
    /* Inicia invisible para el fade-in */
    transition: opacity 0.5s ease-in-out;
}

body.fade-in {
    opacity: 1;
}

body.fade-out {
    opacity: 0;
}

.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

#bg-canvas {
    display: none;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    /* Above canvas, below content */
    opacity: 1;
    transition: opacity 0.1s ease-out;
}

#inicio {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.services-section {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 6rem 2rem;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.services-particles {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.services-container {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(12, 22, 51, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(0, 168, 255, 0.15);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37),
        inset 0 0 30px rgba(0, 168, 255, 0.05);
    color: var(--text-color);
    transition: all 0.3s ease;
}

.services-container:hover {
    border-color: rgba(0, 168, 255, 0.3);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37),
        inset 0 0 30px rgba(0, 168, 255, 0.1);
}

.menu-items a:hover {
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(0, 168, 255, 0.5);
}

.menu-items a:hover::after {
    width: 100%;
    box-shadow: 0 0 10px rgba(0, 168, 255, 0.5);
}

.services-container h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(0, 168, 255, 0.5);
}

.services-content {
    line-height: 1.8;
    font-size: 1.1rem;
    color: var(--text-color);
    text-align: justify;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.services-content p {
    margin-bottom: 1.5rem;
}

.menu {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    z-index: 1000;
    background: rgba(10, 20, 40, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 168, 255, 0.1);
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(0, 168, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
    /* Always visible */
}

.menu.visible {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

/* Removed .menu.hidden styles */

.menu-container {
    width: 100%;
    padding: 0.8rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* Sección IA */
.ia-section {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 6rem 2rem;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.ia-container {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(12, 22, 51, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(0, 168, 255, 0.15);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37),
        inset 0 0 30px rgba(0, 168, 255, 0.05);
    color: var(--text-color);
    transition: all 0.3s ease;
}

.ia-container:hover {
    border-color: rgba(0, 168, 255, 0.3);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37),
        inset 0 0 30px rgba(0, 168, 255, 0.1);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 8rem;
    align-items: center;
    max-width: 1800px;
    margin: 0 auto;
    padding: 4rem;
}

.menu-items {
    display: flex;
    flex-direction: row;
    align-items: center;
    list-style: none;
    gap: 3rem;
    margin: 0;
    padding: 0;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--text-color);
    cursor: pointer;
}

.menu-items li {
    display: inline-block;
    /* Ensure items don't stack */
}

.menu-items a {
    color: var(--text-color);
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    white-space: nowrap;
    /* Prevent text wrapping */
    display: inline-block;
}

.menu-items a:hover {
    color: #fff;
    background: rgba(0, 168, 255, 0.1);
    box-shadow: 0 0 15px rgba(0, 168, 255, 0.3);
    text-shadow: 0 0 10px rgba(0, 168, 255, 0.8);
}

.menu-items a::after {
    display: none;
}

/* Highlight Menu Item */
.menu-items a.highlight-menu {
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    color: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    box-shadow: 0 0 15px rgba(0, 168, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: pulse-highlight 2s infinite;
}

.menu-items a.highlight-menu:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 0 25px rgba(0, 168, 255, 0.6);
}

@keyframes pulse-highlight {
    0% {
        box-shadow: 0 0 15px rgba(0, 168, 255, 0.4);
    }

    50% {
        box-shadow: 0 0 25px rgba(0, 168, 255, 0.7);
    }

    100% {
        box-shadow: 0 0 15px rgba(0, 168, 255, 0.4);
    }
}

/* Scroll Indicator Styles */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    color: var(--primary-color);
    font-size: 2rem;
    animation: bounce 2s infinite;
    filter: drop-shadow(0 0 10px rgba(0, 168, 255, 0.5));
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Audio Control Styles */
.audio-control {
    position: absolute;
    bottom: 100px;
    right: 50px;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 10;
    cursor: pointer;
    transition: all 0.3s ease;
}

.audio-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(0, 168, 255, 0.3);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    animation: pulse-border 2s infinite;
}

.audio-text {
    color: white;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.8rem;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.8);
}

.audio-control:hover .audio-text {
    opacity: 1;
    transform: translateX(0);
}

.audio-control:hover .audio-icon {
    background: rgba(0, 168, 255, 0.2);
    box-shadow: 0 0 20px rgba(0, 168, 255, 0.4);
}

@keyframes pulse-border {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 168, 255, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(0, 168, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 168, 255, 0);
    }
}

.service-item {
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.service-item.left {
    align-items: flex-end;
}

.service-item.right {
    align-items: flex-start;
}

.service-icon {
    width: 150px;
    height: 150px;
    background: rgba(0, 168, 255, 0.1);
    border: 3px solid rgba(0, 168, 255, 0.3);
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-icon i {
    font-size: 4rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary-color), #00fff9, #ff00c1);
    border-radius: 30px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(0, 168, 255, 0.3);
}

.service-icon:hover::before {
    opacity: 1;
}

.service-icon:hover i {
    transform: scale(1.1);
}

.service-tooltip {
    position: absolute;
    top: 50%;
    transform: translateY(-50%) translateX(20px);
    background: rgba(12, 22, 51, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 168, 255, 0.3);
    padding: 1rem;
    border-radius: 15px;
    width: 320px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 100;
    box-shadow: 0 0 20px rgba(0, 168, 255, 0.2);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: left;
}

.service-tooltip h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin: 0 0 0.5rem 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    word-wrap: break-word;
}

.service-tooltip p {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

.service-gif {
    width: 100%;
    height: 150px;
    border-radius: 8px;
    display: block;
    object-fit: cover;
    margin-top: 0.5rem;
    border: 1px solid rgba(0, 168, 255, 0.1);
}

.service-icon:hover .service-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.service-item.left .service-tooltip {
    right: 120%;
    top: 50%;
    transform: translateY(-50%);
}

.service-item.right .service-tooltip {
    left: 120%;
    top: 50%;
    transform: translateY(-50%);
}



.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(0, 168, 255, 0.5);
    letter-spacing: 2px;
    font-family: 'Orbitron', sans-serif;
    line-height: 1;
    /* Ensure text doesn't have extra vertical space */
}

.logo span {
    display: block;
    /* Helps with vertical alignment in some browsers */
    padding-top: 4px;
    /* Fine-tuning for visual center relative to icon */
}

.logo-img {
    height: 45px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(0, 168, 255, 0.5));
    display: block;
}

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

.glitch-ia {
    font-size: 12rem;
    font-weight: bold;
    color: var(--text-color);
    text-shadow: 0 0 30px var(--primary-color);
    position: relative;
    animation: glow 2s ease-in-out infinite alternate;
}

.solutions-section {
    min-height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 2rem;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.solutions-particles {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.solutions-container {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(12, 22, 51, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 1rem 3rem;
    border: 1px solid rgba(0, 168, 255, 0.2);
    box-shadow: 0 0 30px rgba(0, 168, 255, 0.1);
}

.solutions-title {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(0, 168, 255, 0.5);
    position: relative;
    z-index: 3;
}

.solutions-description {
    text-align: center;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: var(--text-color);
    font-size: 1.1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Sección de Contacto */
.contact-section {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 6rem 2rem;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.contact-container {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(12, 22, 51, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(0, 168, 255, 0.15);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37),
        inset 0 0 30px rgba(0, 168, 255, 0.05);
    color: var(--text-color);
    transition: all 0.3s ease;
}

.contact-container:hover {
    border-color: rgba(0, 168, 255, 0.3);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37),
        inset 0 0 30px rgba(0, 168, 255, 0.1);
}

.contact-title {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(0, 168, 255, 0.5);
}

.contact-grid {
    display: flex;
    justify-content: center;
    width: 100%;
}

.contact-grid.centered .contact-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    width: 100%;
}

.contact-info {
    display: flex;
    gap: 2rem;
}

.contact-card {
    background: rgba(0, 168, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(0, 168, 255, 0.2);
    transition: all 0.3s ease;
    display: block;
    text-decoration: none;
    color: var(--text-color);
}

.contact-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.contact-form {
    display: grid;
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.glow-input input,
.glow-input textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(0, 168, 255, 0.1);
    border: 1px solid rgba(0, 168, 255, 0.2);
    border-radius: 10px;
    color: var(--text-color);
    font-family: 'Orbitron', sans-serif;
    transition: all 0.3s ease;
}

.glow-input input:focus,
.glow-input textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(0, 168, 255, 0.3);
}

.glow-input textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    position: relative;
    padding: 1rem 2rem;
    background: var(--primary-color);
    border: none;
    border-radius: 10px;
    color: var(--text-color);
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 168, 255, 0.4);
}

.btn-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: btn-shine 2s infinite;
}

/* Animaciones */
.floating {
    animation: floating 3s ease-in-out infinite;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

@keyframes floating {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

/* Loading Frame Effect */
.loading-frame {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    /* Marco más fino (20px/40px) y menos intenso */
    box-shadow: inset 0 0 20px rgba(0, 168, 255, 0.3), inset 0 0 40px rgba(0, 168, 255, 0.1);
    opacity: 1;
    transition: all 0.5s ease;
    border: 1px solid rgba(0, 168, 255, 0.1);
    animation: pulse-frame 8s infinite ease-in-out;
    /* 8 segundos */
}

/* Animación de carga completa (llenar pantalla y volver) */
.loading-frame.reveal-effect {
    animation: load-reveal 1.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes pulse-frame {
    0% {
        box-shadow: inset 0 0 20px rgba(0, 168, 255, 0.3), inset 0 0 40px rgba(0, 168, 255, 0.1);
    }

    50% {
        /* Mitad de intensidad que antes */
        box-shadow: inset 0 0 30px rgba(0, 168, 255, 0.5), inset 0 0 60px rgba(0, 168, 255, 0.2);
    }

    100% {
        box-shadow: inset 0 0 20px rgba(0, 168, 255, 0.3), inset 0 0 40px rgba(0, 168, 255, 0.1);
    }
}

@keyframes load-reveal {
    0% {
        box-shadow: inset 0 0 0 100vmax rgba(0, 168, 255, 1);
        /* Pantalla llena */
        background-color: rgba(0, 168, 255, 0.2);
    }

    40% {
        box-shadow: inset 0 0 0 100vmax rgba(0, 168, 255, 0.8);
    }

    100% {
        /* Volver al estado normal */
        box-shadow: inset 0 0 20px rgba(0, 168, 255, 0.3), inset 0 0 40px rgba(0, 168, 255, 0.1);
        background-color: transparent;
    }
}

@keyframes btn-shine {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

/* Efectos hover para las tarjetas de contacto */
.contact-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 20px rgba(0, 168, 255, 0.2);
    border-color: var(--primary-color);
}

.contact-card:hover i {
    animation: pulse 1s infinite;
}

/* Footer Styles */
footer {
    background: #050a14;
    padding: 2rem;
    text-align: center;
    border-top: 1px solid rgba(0, 168, 255, 0.1);
    position: relative;
    z-index: 10;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

/* --- ESTILOS CATÁLOGO --- */

.catalogo-main {
    padding-top: 100px;
    /* Espacio para el menú fijo */
    min-height: 100vh;
}

.catalogo-hero {
    text-align: center;
    padding: 4rem 2rem;
    position: relative;
    z-index: 2;
}

.catalogo-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 20px rgba(0, 168, 255, 0.6);
}

.text-highlight {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.text-highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 10px;
    background: rgba(0, 168, 255, 0.2);
    z-index: -1;
    transform: skewX(-20deg);
}

.catalogo-hero-content p {
    font-size: 1.2rem;
    color: #ccc;
    max-width: 800px;
    margin: 0 auto;
}

.catalogo-grid-section {
    padding: 2rem 2rem 6rem;
    position: relative;
    z-index: 2;
}

.catalogo-container {
    max-width: 1400px;
    margin: 0 auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.product-card {
    background: var(--card-bg);
    border: 1px solid rgba(0, 168, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 168, 255, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 168, 255, 0.2);
}

.product-card:hover::before {
    opacity: 1;
}

.product-icon {
    width: 70px;
    height: 70px;
    background: rgba(0, 168, 255, 0.1);
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    transition: all 0.4s ease;
}

.product-card:hover .product-icon {
    background: var(--primary-color);
    color: #fff;
    transform: rotateY(360deg);
}

.product-content h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 0.5rem;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
}

.product-content p {
    color: #aaa;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.product-features {
    list-style: none;
    margin-bottom: 2rem;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ddd;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.product-features li i {
    color: var(--highlight-color);
    font-size: 0.8rem;
}

.product-btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-align: center;
    margin-top: auto;
    /* Push to bottom */
}

.product-btn:hover {
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 0 15px rgba(0, 168, 255, 0.4);
}

@media (max-width: 768px) {
    .catalogo-hero-content h1 {
        font-size: 2.5rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }
}