/* Puedes guardar esto en un archivo llamado styles.css o colocarlo dentro de la etiqueta <style> */
:root {
    /* Paleta de Innovaradenf extraída del logo */
    --primary-color: #009CA6; /* Cian/Teal brillante del logo */
    --primary-hover: #007A82;
    --secondary-color: #052C49; /* Azul oscuro corporativo de la tipografía */
    --text-main: #1f2937;
    --text-muted: #4b5563;
    --bg-light: #F2F8F9; /* Tono muy claro derivado del cian para fondos suaves */
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: var(--text-main);
    background-color: var(--bg-white);
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navbar */
header {
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    z-index: 100;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-size: 24px;
    font-weight: 800;
    color: var(--secondary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Simulación visual de la cruz del logo en texto, si no usas la imagen directamente en el navbar */
.logo span {
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--secondary-color);
    font-weight: 600;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.btn-nav {
    background-color: var(--primary-color);
    color: white !important;
    padding: 10px 20px;
    border-radius: 6px;
    transition: background-color 0.2s !important;
}

.btn-nav:hover {
    background-color: var(--primary-hover);
}

/* Hero Section */
.hero {
    padding: 100px 0 80px 0;
    text-align: center;
    background: linear-gradient(180deg, var(--bg-light) 0%, #ffffff 100%);
}

.hero h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--secondary-color);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero p {
    font-size: 20px;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 40px auto;
}

.cta-btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0, 156, 166, 0.2);
    transition: background-color 0.2s, transform 0.2s;
}

.cta-btn:hover {
    background-color: var(--primary-hover);
    transform: translateY(-1px);
}

/* Ecosistema / Features Section */
.features {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--secondary-color);
}

.section-title p {
    color: var(--text-muted);
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.feature-card {
    padding: 32px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    background-color: var(--bg-white);
    transition: box-shadow 0.3s, border-color 0.3s;
}

.feature-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background-color: var(--bg-light);
    color: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 28px;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 700;
    color: var(--secondary-color);
}

.feature-card p {
    color: var(--text-muted);
}

/* Process Section */
.process {
    padding: 100px 0;
    background-color: var(--secondary-color);
    color: white;
}

.process .section-title h2 {
    color: white;
}

.process .section-title p {
    color: #cbd5e1;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 48px;
    height: 48px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    margin: 0 auto 20px auto;
    font-size: 20px;
}

.process-step h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: white;
}

.process-step p {
    color: #cbd5e1;
    font-size: 15px;
}

/* Final CTA */
.final-cta {
    padding: 100px 0;
    background-color: var(--bg-light);
    text-align: center;
}

.final-cta h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--secondary-color);
}

.final-cta p {
    color: var(--text-muted);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 40px auto;
}

/* Footer */
footer {
    padding: 40px 0;
    border-top: 1px solid var(--border-color);
    background-color: var(--bg-white);
    color: var(--text-muted);
    font-size: 14px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links {
    display: flex;
    gap: 24px;
    list-style: none;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero h1 { font-size: 32px; }
    .hero p { font-size: 16px; }
    .section-title h2 { font-size: 28px; }
    .footer-container { flex-direction: column; text-align: center; }
}