* {
    box-sizing: border-box;
}

:root {
    --blanco-fondo: #dde8f4;
    --azul-oscuro: #2f4860;
    --azul-gris: #83a0b5;
    --teal: #52aeb2;
    --naranja-acento: #ea7048;
    --blanco-puro: #ffffff;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    margin: 0;
    background-color: var(--blanco-fondo);
    color: var(--azul-oscuro);
    overflow-x: hidden;
}

/* Header styles removed as element was removed */

nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--blanco-puro);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 0 5%;
    height: 70px;
    /* Fixed height for consistency */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-logo {
    height: 50px;
    /* Adjust as needed */
    width: auto;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--azul-oscuro);
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    align-items: center;
}

nav a {
    margin: 0 15px;
    text-decoration: none;
    color: var(--azul-oscuro);
    font-weight: bold;
    transition: color 0.3s;
    display: inline-block;
}

nav a:hover,
nav a.active {
    color: var(--naranja-acento);
}

.container {
    max-width: 1100px;
    margin: 2rem auto;
    padding: 0 20px;
}

.section-title {
    border-left: 5px solid var(--naranja-acento);
    padding-left: 15px;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

/* Base Components recovered/added for Homepage */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--naranja-acento);
    color: var(--blanco-puro);
}

.btn-primary:hover {
    background-color: #d15d36;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--azul-oscuro);
    color: var(--azul-oscuro);
}

.btn-secondary:hover {
    background-color: var(--azul-oscuro);
    color: var(--blanco-puro);
}

/* Hero Section */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 60px 0;
    margin-bottom: 60px;
}

.hero-text {
    flex: 1;
}

.hero-text h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--azul-oscuro);
}

.hero-text p {
    font-size: 1.2rem;
    color: #4a6fa5;
    /* A slightly softer blue/gray for subtitle */
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-visual {
    flex: 1;
    height: 300px;
    background: radial-gradient(circle at center, var(--blanco-puro) 0%, #eef6fc 100%);
    border: 2px dashed var(--azul-gris);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Abstract Visuals */
.blueprint-line {
    position: absolute;
    background: var(--teal);
    opacity: 0.2;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 80px;
}

.feature-card {
    background: var(--blanco-puro);
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s;
    border-top: 4px solid transparent;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-top-color: var(--teal);
}

.feature-icon {
    font-size: 2rem;
    color: var(--azul-gris);
    margin-bottom: 15px;
    display: block;
}

.feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0;
    color: var(--azul-oscuro);
}

/* Start Here Paths */
.paths-section {
    margin-bottom: 80px;
}

.paths-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.path-card {
    background: linear-gradient(135deg, var(--blanco-puro) 0%, #f8fbfe 100%);
    border: 1px solid #e1eaf4;
    border-radius: 12px;
    padding: 30px;
    position: relative;
}

.path-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--teal);
    font-weight: bold;
    margin-bottom: 10px;
    display: block;
}

.path-card h3 {
    font-size: 1.5rem;
    margin-top: 0;
    margin-bottom: 15px;
}

/* Latest Content */
.latest-section {
    margin-bottom: 30px;
    /* Reduced from 80px */
}

/* Footer CTA */
.pre-footer-cta {
    text-align: center;
    padding: 60px;
    background: var(--blanco-puro);
    border-radius: 12px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.pre-footer-cta h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.pre-footer-cta .btn-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

/* Utilities */
.btn-group {
    display: flex;
    gap: 15px;
}

/* Existing styles below */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.card {
    background: var(--blanco-puro);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
    height: 100%;
    /* Ensure full height for alignment */
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-5px);
}

.card-content {
    padding: 1.5rem;
    flex: 1;
    /* Pushes footer (if any) or expands */
}

.tag {
    background: var(--teal);
    color: white;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 10px;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    background: #000;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.prompt-box {
    background: #f0f4f8;
    border: 1px dashed var(--azul-gris);
    padding: 1rem;
    font-family: monospace;
    font-size: 0.9rem;
    margin-top: 10px;
    color: #444;
    word-break: break-all;
}

footer {
    text-align: center;
    padding: 3rem;
    background: var(--azul-oscuro);
    color: var(--blanco-puro);
    margin-top: 4rem;
}

@media (max-width: 768px) {
    nav {
        flex-direction: column;
        padding: 1rem;
    }

    .nav-brand {
        margin-bottom: 1rem;
    }

    .nav-links {
        flex-direction: column;
        gap: 10px;
    }

    nav a {
        margin: 5px 0;
        display: block;
    }

    .hero-section {
        flex-direction: column;
        text-align: center;
    }

    .hero-text p {
        margin-left: auto;
        margin-right: auto;
    }

    .btn-group {
        justify-content: center;
    }
}

/* =========================================
   NEWS SECTION STYLES
   ========================================= */

.news-hero {
    text-align: center;
    margin-bottom: 40px;
    padding: 40px 0;
    border-bottom: 1px solid #dae6f0;
}

.news-hero h1 {
    font-size: 2.5rem;
    color: var(--azul-oscuro);
    margin-bottom: 10px;
}

.news-intro {
    font-size: 1.2rem;
    color: #4a6fa5;
    max-width: 600px;
    margin: 0 auto;
}

/* Filter Bar */
.filter-bar {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.filter-btn {
    border: 1px solid var(--azul-gris);
    background: transparent;
    color: var(--azul-oscuro);
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--azul-oscuro);
    color: var(--blanco-puro);
    border-color: var(--azul-oscuro);
}

/* News Cards */
.news-img-container {
    height: 180px;
    overflow: hidden;
    position: relative;
    background-color: #f0f4f8;
}

.placeholder-img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--azul-oscuro);
}

.read-more {
    color: var(--naranja-acento);
    font-weight: bold;
    text-decoration: none;
    margin-top: auto;
    /* Pushes to bottom if flex column */
    display: inline-block;
    padding-top: 10px;
}

/* Category Colors */
.tag-bim {
    background-color: #3b82f6;
}

/* Blue */
.tag-software {
    background-color: #10b981;
}

/* Emerald */
.tag-ia {
    background-color: #8b5cf6;
}

/* Violet */
.tag-tramites {
    background-color: #f59e0b;
}

/* Amber */
.tag-mercado {
    background-color: #64748b;
}

/* Slate */
.tag-tendencias {
    background-color: #ec4899;
}

/* Pink */

/* =========================================
   ARTICLE DETAIL STYLES
   ========================================= */

.article-container {
    max-width: 800px;
    /* Reading width */
    background-color: var(--blanco-puro);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    margin: 40px auto;
}

.article-header {
    margin-bottom: 30px;
    text-align: center;
}

.article-meta {
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: var(--azul-gris);
}

.publish-date {
    margin-left: 10px;
}

.article-subtitle {
    font-size: 1.3rem;
    color: #4a6fa5;
    margin-top: 10px;
}

.article-hero-img {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 40px;
}

.article-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}

.article-content h2 {
    color: var(--azul-oscuro);
    margin-top: 2rem;
    font-size: 1.8rem;
}

.article-content ul {
    margin-bottom: 1.5rem;
}

.article-content blockquote {
    border-left: 4px solid var(--naranja-acento);
    margin: 2rem 0;
    padding-left: 20px;
    font-style: italic;
    color: var(--azul-oscuro);
    background: #fff0eb;
    padding: 20px;
    border-radius: 0 8px 8px 0;
}

.cta-box {
    background: #eef6fc;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    margin-top: 40px;
}

/* =========================================
   NEW NEWS LAYOUT (Featured + List)
   ========================================= */

.news-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Featured Article (Left Column) */
.featured-news {
    background: var(--blanco-puro);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
    height: 100%;
}

.featured-news:hover {
    transform: translateY(-5px);
}

.featured-img-container {
    height: 300px;
    background-color: #e0e7ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    position: relative;
    overflow: hidden;
}

.featured-content {
    padding: 2rem;
}

.featured-content h3 {
    font-size: 1.8rem;
    margin-top: 10px;
    margin-bottom: 15px;
    line-height: 1.3;
}

.featured-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 20px;
}

/* News List (Right Column) */
.news-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    background: var(--blanco-puro);
    border-radius: 12px;
    padding: 20px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.news-list-header {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--naranja-acento);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f4f8;
}

.news-list-item {
    padding: 20px 0;
    border-bottom: 1px solid #eee;
    transition: background-color 0.2s;
    display: block;
    text-decoration: none;
}

.news-list-item:last-child {
    border-bottom: none;
}

.news-list-item:hover h4 {
    color: var(--naranja-acento);
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 8px;
}

.news-date {
    font-size: 0.85rem;
    color: #888;
    font-weight: 500;
}

.news-list-item h4 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--azul-oscuro);
    line-height: 1.4;
    transition: color 0.2s;
}

/* Mobile Responsive */
@media (max-width: 900px) {
    .news-layout {
        grid-template-columns: 1fr;
    }

    .featured-img-container {
        height: 200px;
    }
}

/* =========================================
   MEGA MENU NAVIGATION
   ========================================= */

/* Main Nav Container - Ensure relative positioning for dropdowns if needed, 
   though usually we want full width mega menus */
/* Nav merged at the top */

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* Logo */
.nav-brand a {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Desktop Menu (Hidden on Mobile) */
.nav-menu {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
    height: 100%;
    align-items: center;
}

.nav-item {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--azul-oscuro);
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s;
    padding: 0 5px;
    cursor: pointer;
}

.nav-link:hover,
.nav-link.active {
    color: var(--naranja-acento);
}

.nav-arrow {
    font-size: 0.7rem;
    margin-left: 5px;
    transition: transform 0.3s;
}

.nav-item:hover .nav-arrow {
    transform: rotate(180deg);
}

/* Dropdown / Mega Menu */
.dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--blanco-puro);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    padding: 20px;
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border-top: 3px solid var(--naranja-acento);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Mega Menu modifiers for wider menus if needed */
.dropdown.mega {
    width: 600px;
    /* Wider for 2 columns */
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Dropdown Items */
.dropdown-group h4 {
    color: var(--naranja-acento);
    font-size: 0.85rem;
    text-transform: uppercase;
    margin-bottom: 10px;
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
}

.dropdown-link {
    display: block;
    text-decoration: none;
    color: var(--azul-oscuro);
    padding: 8px 0;
    font-size: 0.9rem;
    transition: padding-left 0.2s, color 0.2s;
}

.dropdown-link:hover {
    color: var(--teal);
    padding-left: 5px;
    background-color: #f8fbfe;
    /* Subtle hover bg */
    border-radius: 4px;
}

/* Mobile Toggle (Hamburger) */
.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--azul-oscuro);
}

/* Mobile Menu Styles */
@media (max-width: 900px) {
    .mobile-toggle {
        display: block;
        font-size: 1.8rem;
        color: var(--azul-oscuro);
        cursor: pointer;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 350px;
        height: 100vh;
        background: #1a1a1a;
        /* JW style dark background */
        flex-direction: column;
        align-items: stretch;
        padding: 0;
        transition: none !important;
        gap: 0;
        overflow-y: auto;
        overflow-x: hidden;
        scrollbar-gutter: stable;
        z-index: 2000;
        visibility: visible;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    }

    .nav-menu.active {
        right: 0;
    }

    .menu-header {
        display: flex;
        justify-content: flex-end;
        padding: 20px;
        border-bottom: 1px solid #333;
        background: #111;
    }

    .close-menu {
        font-size: 2rem;
        color: #fff;
        cursor: pointer;
        line-height: 1;
    }

    .nav-item {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        height: auto;
        border-bottom: 1px solid #333;
    }

    .nav-link {
        width: 100%;
        padding: 18px 25px;
        justify-content: flex-start;
        display: flex;
        align-items: center;
        color: #fff !important;
        font-size: 1rem;
        background: transparent;
        box-sizing: border-box;
        transition: none !important;
        gap: 15px;
    }

    .nav-link:hover {
        background: #333;
        padding: 18px 25px !important;
    }

    .nav-link:active {
        background: #333;
    }

    .menu-icon {
        width: 20px;
        text-align: center;
        color: var(--naranja-acento);
        font-size: 1.1rem;
    }

    .nav-arrow {
        margin-left: auto;
        /* Push arrow to the far right */
        font-size: 0.8rem;
        transition: none !important;
        color: #888;
    }

    .dropdown,
    .dropdown.mega {
        position: static;
        width: 100% !important;
        min-width: auto !important;
        box-shadow: none;
        border: none;
        padding: 0;
        transform: none;
        opacity: 1;
        visibility: visible;
        display: none;
        background: #2a2a2a;
        /* Slightly lighter for sub-items */
        grid-template-columns: 1fr;
        box-sizing: border-box;
    }

    .dropdown-link {
        padding: 15px 25px 15px 60px;
        /* Indent more to clear icons */
        color: #bbb !important;
        border-bottom: 1px solid #383838;
        font-size: 0.95rem;
        transition: none !important;
    }

    .dropdown-link:hover {
        padding-left: 60px !important;
        background: #333;
        color: #fff !important;
    }

    .dropdown-link:last-child {
        border-bottom: none;
    }

    .nav-item.open .dropdown {
        display: flex !important;
        flex-direction: column !important;
        height: auto !important;
    }

    .nav-item.open .nav-arrow {
        transform: rotate(180deg);
        color: var(--naranja-acento);
    }
}


/* =========================================
   SOFTWARE CAROUSEL STYLES
   ========================================= */

.software-carousel {
    padding: 10px 0 20px 0;
    /* Reduced top padding further */
    text-align: center;
    background: transparent;
    /* Seamless integration */
    border-bottom: 1px solid #dae6f0;
    /* Subtle separator matching other hr */
    overflow: hidden;
}

.software-carousel h2 {
    font-size: 1.5rem;
    /* Slightly smaller title */
    color: var(--azul-oscuro);
    margin-bottom: 5px;
}

.carousel-subtitle {
    font-size: 1rem;
    color: var(--azul-gris);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

/* Track Container with Gradient Masks */
.carousel-track-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    padding: 20px 0;
}

.carousel-track {
    display: flex;
    width: max-content;
    gap: 60px;
    animation: scroll 40s linear infinite;
}

.carousel-track:hover {
    animation-play-state: paused;
}

/* Items */
/* Items */
.carousel-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 120px;
    /* Reduced width */
    height: 80px;
    /* Reduced height */
    transition: all 0.3s ease;
}

.carousel-item img {
    max-width: 85px;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Hover Effects */
.carousel-item:hover {
    transform: scale(1.15);
}

.carousel-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Animation */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 30px));
        /* Move half width minus half gap */
    }
}


/* Article Hero Image Styles */
.article-hero-img {
    width: 100%;
    height: 400px;
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .article-hero-img {
        height: 250px;
    }
}

/* =========================================
   CONTENT HUB STYLES (Videos + Nav)
   ========================================= */

.content-hub-section {
    max-width: 1200px;
    margin: 0 auto 15px;
    padding: 5px 0 20px;
    /* Further reduced top padding */
    background-color: var(--blanco-puro);
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.hub-header {
    text-align: center;
    margin-bottom: 20px;
}

.hub-header h2 {
    margin: 0;
}

.hub-container {
    padding: 0 20px;
}

/* Grid Layout */
.hub-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    /* Videos take more space */
    gap: 30px;
    align-items: start;
}

@media (max-width: 900px) {
    .hub-grid {
        grid-template-columns: 1fr;
        /* Stack on smaller screens */
    }
}

/* Video Column Styles */
.video-column {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.video-card {
    background: var(--blanco-puro);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.video-card:hover {
    transform: translateY(-5px);
}

.video-embed {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    background: #000;
}

.video-embed iframe,
.video-embed>div {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-info {
    padding: 20px;
}

.video-info h3 {
    margin: 10px 0 5px;
    font-size: 1.2rem;
    color: var(--azul-oscuro);
}

.video-info p {
    font-size: 0.95rem;
    color: var(--azul-gris);
    line-height: 1.5;
}

/* Navigation Column Styles */
.nav-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.nav-card {
    background: var(--blanco-puro);
    padding: 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: var(--azul-oscuro);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.nav-card:hover {
    transform: translateX(5px);
    border-color: var(--naranja-acento);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.nav-card .feature-icon {
    font-size: 2rem;
    margin-bottom: 0;
    /* Override previous style */
}

.nav-card h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}