:root {
    --primary-orange: #FF4500; /* Naranja vibrante del zorro */
    --primary-dark: #111111;
    --gray-light: #F4F6F8;
    --text-main: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --blue-ai: #00BFFF; /* Del logo AI */
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--white);
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
.navbar {
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo img {
    height: 40px; /* Ajuste para el logo horizontal */
}
.btn-primary-outline {
    text-decoration: none;
    color: var(--primary-dark);
    border: 2px solid var(--primary-dark);
    padding: 8px 20px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}
.btn-primary-outline:hover {
    background: var(--primary-dark);
    color: var(--white);
}

/* Hero */
.hero {
    padding: 80px 0 60px;
    text-align: center;
}
.badge {
    background-color: rgba(255, 69, 0, 0.1);
    color: var(--primary-orange);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
}
.hero h1 {
    font-size: 3rem;
    margin: 20px 0;
    color: var(--primary-dark);
}
.hero p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Brand Assets Grid */
.assets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}
.asset-card {
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.2s;
}
.asset-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}
.asset-preview {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.light-bg { background-color: var(--gray-light); }
.dark-bg { background-color: var(--primary-dark); }
.split-bg { 
    background: linear-gradient(90deg, var(--gray-light) 50%, var(--primary-dark) 50%); 
}

.asset-preview img {
    max-width: 100%;
    max-height: 100px;
    object-fit: contain;
}
.mini-icon {
    max-height: 60px !important;
    margin: 0 10px;
}

.asset-info {
    padding: 20px;
    text-align: center;
}
.asset-info h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}
.asset-info p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 15px;
}
.download-link {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}
.links-row {
    display: flex;
    justify-content: center;
    gap: 15px;
}

/* CTA Section */
.cta-section {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 60px 0;
    border-radius: 20px;
    margin-bottom: 80px;
}
.cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.cta-content {
    flex: 1;
    padding-right: 20px;
    min-width: 300px;
}
.cta-content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}
.cta-content p {
    margin-bottom: 25px;
    opacity: 0.9;
}
.btn-primary {
    background-color: var(--primary-orange);
    color: var(--white);
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 700;
    display: inline-block;
}
.btn-primary:hover {
    background-color: #ff5e1f;
}
.cta-image img {
    height: 100px;
    opacity: 0.8;
}

/* News Section */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}
.news-col h3 {
    border-bottom: 2px solid var(--primary-orange);
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-size: 1.2rem;
}
.news-list {
    list-style: none;
}
.news-list li {
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}
.news-list .date {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 5px;
}
.news-list a {
    text-decoration: none;
    color: var(--primary-dark);
    font-weight: 600;
    transition: color 0.2s;
}
.news-list a:hover {
    color: var(--primary-orange);
}

/* Footer */
.footer {
    background-color: var(--gray-light);
    padding: 40px 0;
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
}
.footer a {
    color: var(--primary-dark);
    font-weight: 600;
}

@media (max-width: 768px) {
    .cta-box {
        text-align: center;
        justify-content: center;
    }
    .cta-content {
        padding-right: 0;
        margin-bottom: 30px;
    }
}