/* Importar fuentes de Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Crimson+Text:wght@400;600&display=swap');

/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: #000000;
    min-height: 100vh;
    transition: background-color 0.3s ease, color 0.3s ease;
}

header {
    background: #000000;
    color: white;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid #333;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo h1 {
    font-family: 'Crimson Text', serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

nav ul li {
    margin: 0 1.5rem;
}

nav ul li a {
    color: white;
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

nav ul li a:hover {
    color: white;
    font-weight: bold;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

.nav-right {
    display: flex;
    align-items: center;
}

#theme-toggle {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 0.5rem;
    transition: all 0.3s;
}

#theme-toggle:hover {
    color: white;
    font-weight: bold;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

#hamburger {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 0.5rem;
    margin-left: 1rem;
    display: none;
    transition: all 0.3s;
}

#hamburger:hover {
    color: white;
    font-weight: bold;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

/* Sidebar */
#sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 999;
    display: none;
}

#sidebar {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100%;
    background: #000000;
    color: white;
    padding: 2rem;
    transition: left 0.3s ease;
    z-index: 1000;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.5);
}

#sidebar.active {
    left: 0;
}

#close-sidebar {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

#sidebar ul {
    list-style: none;
    padding: 0;
}

#sidebar ul li {
    margin: 1rem 0;
}

#sidebar ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s;
}

#sidebar ul li a:hover {
    color: white;
    font-weight: bold;
}

/* Responsive */
@media (max-width: 1224px) {
    nav ul {
        display: none;
    }
    #hamburger {
        display: block;
    }
    .nav-right {
        flex-direction: row-reverse;
    }
}

/* Light mode */
body.light {
    background: #ffffff;
    color: #000000;
}

body.light header {
    background: #ffffff;
    color: #000000;
    border-bottom: 1px solid #ddd;
}

body.light nav ul li a {
    color: #000000;
}

body.light nav ul li a:hover {
    color: #000000;
    font-weight: bold;
}

body.light #theme-toggle {
    color: #000000;
}

body.light #hamburger {
    color: #000000;
}

body.light #hamburger:hover {
    color: white;
    font-weight: bold;
}

body.light .hero {
    background: linear-gradient(45deg, #a8edea, #fff8fa, #d1d1d1, #fef9d7);
    background-size: 400% 400%;
    animation: gradientShift 10s ease infinite;
    filter: blur(0.5px);
    transition: background 1.6s ease, filter 1.6s ease;
}

body.light .hero-content {
    color: #000000;
}

body.light .hero-content h2 {
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.5);
    transition: text-shadow 0.3s ease;
}

body.light .hero-content p {
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
    transition: text-shadow 0.3s ease;
    padding-left:20px;
    padding-right:20px;
}

body.light .main-section {
    background: #ffffff;
    color: #000000;
}

body.light .main-section h2 {
    color: #000000;
}

body.light .subsection p {
    color: #666666;
}

body.light .placeholder-box {
    background: #f0f0f0;
    border-color: #ccc;
    color: #666;
}

body.light footer {
    background: #ffffff;
    color: #000000;
    border-top: 1px solid #ddd;
}

body.light footer ul li a {
    color: #000000;
}

body.light #sidebar {
    background: #ffffff;
    color: #000000;
}

body.light #sidebar ul li a {
    color: #000000;
}

body.light #sidebar ul li a:hover {
    color: white;
    font-weight: bold;
}

body.light #close-sidebar {
    color: #000000;
}

.hero {
    width: 100%;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(45deg, #111, #000, #333, #555);
    background-size: 400% 400%;
    animation: gradientShift 10s ease infinite;
    filter: blur(0.5px);
    margin-top: 72px;
    transition: background 1.6s ease, filter 1.6s ease;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    filter: blur(10px);
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    padding: 2rem;
    z-index: 1;
    color: white;
    transition: color 0.3s ease;
}

.hero-content h2 {
    font-family: 'Crimson Text', serif;
    font-weight: 600;
    font-size: 5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 1.2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    padding-left:20px;
    padding-right:20px;
}

.main-section {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
    background: #000000;
    color: #ffffff;
    padding: 2rem;
    transition: background 0.3s ease, color 0.3s ease;
}

.main-section h2 {
    font-family: 'Crimson Text', serif;
    font-weight: 600;
    text-align: center;
    margin-bottom: 4rem;
    color: #ffffff;
    font-size: 2.5rem;
    transition: color 0.3s ease;
}

.subsection {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    gap: 2rem;
}

.subsection.left {
    flex-direction: row;
}

.subsection.right {
    flex-direction: row-reverse;
}

.text-content {
    flex: 1;
}

.text-content h3 {
    font-family: 'Crimson Text', serif;
    font-weight: bold;
    margin-bottom: 1rem;
    color: white;
    font-size: 1.8rem;
    transition: color 0.3s ease;
}

.text-content p {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: #cccccc;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.image-placeholder {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.placeholder-box {
    width: 300px;
    height: 200px;
    background: #333;
    border: 2px dashed #666;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ccc;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
}

footer {
    background: #000000;
    color: white;
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid #333;
    transition: background 0.3s ease, color 0.3s ease, border-top 0.3s ease;
}

footer ul {
    list-style: none;
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

footer ul li {
    margin: 0 1rem;
}

footer ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

footer ul li a:hover {
    color: white;
    font-weight: bold;
}

/* ===== MAIN SECTION – NUEVO LAYOUT ===== */

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 0rem;
}

.value-item h4 {
    font-family: 'Crimson Text', serif;
    font-size: 1.6rem;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.value-item p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    transition: color 0.3s ease;
}

/* Bloque central */
/* Banda central a ancho completo */
.main-intro-band {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 0px solid rgba(255, 255, 255, 0.08);
    padding: 6rem 2rem;
    margin-bottom: 0rem;
    transition: background 0.3s ease, border-top 0.3s ease, border-bottom 0.3s ease;
}

/* Contenido centrado */
.main-intro {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

/* Tipografía */
.main-intro h2 {
    font-family: 'Crimson Text', serif;
    font-size: 4rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    transition: color 0.3s ease;
}

.main-intro p {
    max-width: 720px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: #cccccc;
    transition: color 0.3s ease;
}

body.light .main-intro-band {
    background: #f6f6f6;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

body.light .main-intro p {
    color: #555;
}



/* Problema / Solución */
.problem-solution {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6rem;
    margin-top: 6rem;
    text-align: left;
}

.ps-block h3 {
    font-family: 'Crimson Text', serif;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: bolder;
}

.ps-block p {
    font-size: 1.1rem;
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

/* Responsive */
@media (max-width: 900px) {
    .values-grid {
        grid-template-columns: 1fr;
    }

    .problem-solution {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .main-intro h2 {
        font-size: 2.3rem;
    }
}

/* Estilos para el logo SVG */
.logo-svg {
    height: auto;
    display: block;
    transition: color 0.3s ease;
}

.hero-content .logo-svg {
    width: auto;
    margin: 0 auto;
    margin-bottom: 1rem;
}

.logo a {
    color: inherit;
    text-decoration: none;
}


.kanban-banner {
    width: 100%;
    max-height: 100px;
    overflow: hidden;
    position: relative;
}

.kanban-image {
    width: 100%;
    height: auto;
    max-height: 100px;
    object-fit: cover;
    transition: filter 0.3s ease;
}

.kanban-image:hover {
    filter: blur(5px);
}

/* Estilos para la página de Filosofía */
.filosofia-intro {
    width: 100%;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(45deg, #111, #000, #333, #555);
    background-size: 400% 400%;
    animation: gradientShift 10s ease infinite;
    filter: blur(0.5px);
    margin-top: 72px;
    transition: background 0.3s ease, filter 0.3s ease;
}

body.light .filosofia-intro {
    background: linear-gradient(45deg, #f0f0f0, #ffffff, #e0e0e0, #cccccc);
}

.filosofia-main {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
    color: #ffffff;
    transition: color 0.3s ease;
}

body.light .filosofia-main {
    color: #000000;
}

.filosofia-header h1 {
    font-family: 'Crimson Text', serif;
    font-weight: 600;
    font-size: 5rem;
    margin-bottom: 1rem;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

body.light .filosofia-header h1 {
    color: #000000;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.5);
}

/* Animación inicial para h1 en filosofía */
.filosofia-header h1 {
    opacity: 0;
    transform: translateY(30px);
}

body.light .filosofia-header h1 {
    color: #000000;
}

.filosofia-header p {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    color: #cccccc;
    transition: color 0.3s ease;
}

body.light .filosofia-header p {
    color: #666666;
}

.speech-bubble {
    flex: 1;
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 2rem;
    max-width: 400px;
    font-style: italic;
    transition: background 0.3s ease;
}

.speech-bubble::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid rgba(255, 255, 255, 0.1);
    transition: border-top-color 0.3s ease;
}

.value-block:nth-child(even) .speech-bubble::before {
    left: auto;
    right: 20px;
    transform: none;
}

body.light .speech-bubble {
    background: rgba(0, 0, 0, 0.1);
}

body.light .speech-bubble::before {
    border-top-color: rgba(0, 0, 0, 0.1);
}

.filosofia-quote {
    text-align: center;
    margin-top: 4rem;
}

.filosofia-quote blockquote {
    font-family: 'Crimson Text', serif;
    font-size: 1.5rem;
    font-style: italic;
    color: #ffffff;
    border-left: 5px solid rgba(255, 255, 255, 0.3);
    padding-left: 2rem;
    transition: color 0.3s ease, border-left-color 0.3s ease;
}

body.light .filosofia-quote blockquote {
    color: #000000;
    border-left-color: rgba(0, 0, 0, 0.3);
}

.filosofia-values {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-bottom: 4rem;
}

.value-block {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-direction: row;
}

.value-block:nth-child(even) {
    flex-direction: row-reverse;
}

.value-content {
    flex: 1;
}

.value-content h2 {
    font-family: 'Crimson Text', serif;
    font-weight: 600;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
    transition: color 0.3s ease;
}

body.light .value-content h2 {
    color: #000000;
}

.value-content p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #cccccc;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

body.light .value-content p {
    color: #666666;
}

/* Responsive para Filosofía */
@media (max-width: 768px) {
    .filosofia-intro {
        min-height: 50vh;
        margin-top: 60px;
    }

    .filosofia-header h1 {
        font-size: 3rem;
    }

    .filosofia-header p {
        font-size: 1rem;
    }

    .filosofia-main {
        padding: 0 1rem;
    }

    .filosofia-values {
        gap: 2rem;
    }

    .value-block {
        flex-direction: column;
        gap: 1rem;
    }

    .value-block:nth-child(even) {
        flex-direction: column;
    }

    .speech-bubble {
        max-width: 100%;
        padding: 1.5rem;
    }

    .speech-bubble::before {
        display: none; /* Ocultar la flecha en móviles */
    }

    .value-content h2 {
        font-size: 2rem;
    }

    .value-content p {
        font-size: 0.9rem;
    }

    .filosofia-quote blockquote {
        font-size: 1.2rem;
        padding-left: 1rem;
    }
}

@media (max-width: 480px) {
    .filosofia-header h1 {
        font-size: 2.5rem;
    }

    .filosofia-header p {
        font-size: 0.9rem;
    }

    .value-content h2 {
        font-size: 1.8rem;
    }

    .speech-bubble {
        padding: 1rem;
    }
}

/* ===== Supply Schedule Section ===== */
.supply-schedule-section {
    width: 100%;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 4rem 2rem;
    margin: 4rem 0;
    transition: background 0.3s ease, border-color 0.3s ease;
}

body.light .supply-schedule-section {
    background: #fafafa;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.supply-schedule-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.supply-schedule-section h2 {
    font-family: 'Crimson Text', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
    transition: color 0.3s ease;
}

body.light .supply-schedule-section h2 {
    color: #000000;
}

.supply-intro {
    font-size: 1.1rem;
    color: #cccccc;
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.6;
    transition: color 0.3s ease;
}

body.light .supply-intro {
    color: #666666;
}

.schedule-chart {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 2rem 1rem;
    margin-top: 2rem;
    overflow: auto;
    transition: background 0.3s ease, border-color 0.3s ease;
}

body.light .schedule-chart {
    background: #ffffff;
    border-color: #e0e0e0;
}

.chart-svg {
    width: 100%;
    height: auto;
    min-height: 400px;
}

.chart-label {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    fill: #888888;
    transition: fill 0.3s ease;
}

body.light .chart-label {
    fill: #777777;
}

.chart-legend {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    fill: #aaaaaa;
    transition: fill 0.3s ease;
}

body.light .chart-legend {
    fill: #666666;
}

.chart-line {
    stroke-linecap: round;
    stroke-linejoin: round;
    animation: drawChart 10s ease forwards;
    stroke-dasharray: 9999;
    stroke-dashoffset: 9999;
}

.chart-line-1 {
    animation-delay: 0s;
}

.chart-line-2 {
    animation-delay: 0.3s;
}

@keyframes drawChart {
    to {
        stroke-dashoffset: 0;
    }
}

/* ===== What Section (5 column grid) ===== */
.what-section {
    width: 100%;
    padding: 4rem 2rem;
    background: #000000;
    color: #ffffff;
    transition: background 0.3s ease, color 0.3s ease;
}

body.light .what-section {
    background: #ffffff;
    color: #000000;
}

.what-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.what-section h2 {
    font-family: 'Crimson Text', serif;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #ffffff;
    transition: color 0.3s ease;
}

body.light .what-section h2 {
    color: #000000;
}

.what-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

.what-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.what-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

body.light .what-card {
    background: #f5f5f5;
    border-color: #e0e0e0;
}

body.light .what-card:hover {
    background: #eaeaea;
    border-color: #ccc;
}

.what-card h3 {
    font-family: 'Crimson Text', serif;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #ffffff;
    transition: color 0.3s ease;
}

body.light .what-card h3 {
    color: #000000;
}

.what-card p {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #cccccc;
    transition: color 0.3s ease;
}

body.light .what-card p {
    color: #555555;
}

/* Responsive para Supply & What sections */
@media (max-width: 1024px) {
    .what-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .supply-schedule-section h2,
    .what-section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .what-grid {
        grid-template-columns: 1fr;
    }
    
    .supply-schedule-section {
        padding: 2rem 1rem;
        margin: 2rem 0;
    }
    
    .what-section {
        padding: 2rem 1rem;
    }
    
    .schedule-chart {
        padding: 1rem;
    }
    
    .chart-svg {
        min-height: 300px;
    }
}

/* ===== Growth Section (tarjetas de crecimiento) ===== */
.growth-section {
    max-width: 1200px;
    margin: 2rem auto 4rem;
    padding: 0 2rem;
    color: #ffffff;
}
.growth-header {
    text-align: center;
    margin-bottom: 1.75rem;
}
.growth-header h2 {
    font-family: 'Crimson Text', serif;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}
.growth-sub {
    color: #cccccc;
    max-width: 720px;
    margin: 0 auto;
}
.growth-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-bottom: 1.75rem;
}
.growth-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 1.25rem;
    min-height: 110px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.growth-percent {
    font-family: 'Crimson Text', serif;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #ffffff;
}
.growth-label {
    color: #bbbbbb;
    font-size: 0.95rem;
    margin-top: 0.5rem;
}
.growth-small { display:block; color:#9a9a9a; font-size:0.85rem; margin-top:0.25rem; }
.growth-line { width: 90px; height: 28px; position: absolute; right: 1rem; top: 1rem; overflow: visible; }
.growth-line path { stroke-linecap: round; stroke-dasharray: 200; stroke-dashoffset: 200; animation: draw 1s ease forwards; }
.growth-card:nth-child(1) .growth-line path { animation-delay: 0.2s; }
.growth-card:nth-child(2) .growth-line path { animation-delay: 0.4s; }
.growth-card:nth-child(3) .growth-line path { animation-delay: 0.6s; }
.growth-card:nth-child(4) .growth-line path { animation-delay: 0.8s; }

@keyframes draw { to { stroke-dashoffset: 0; } }

.growth-features { display: grid; grid-template-columns: 1fr 2fr; gap: 2rem; align-items: start; margin-top: 1rem; }
.feature-titles h3 { font-family: 'Crimson Text', serif; font-size: 1.25rem; margin-bottom: 1.5rem; color: #ffffff; }
.feature-descs p { color: #cccccc; line-height: 1.7; margin-bottom: 1.25rem; }

@media (max-width: 900px) {
    .growth-cards { grid-template-columns: 1fr 1fr; }
    .growth-features { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .growth-cards { grid-template-columns: 1fr; }
    .growth-line { display: none; }
    .growth-header h2 { font-size: 1.6rem; }
}

/* Light mode adjustments */
body.light .growth-section { color: #000; }
body.light .growth-card { background: #ffffff; border-color: #eee; }
body.light .growth-percent { color: #000; }
body.light .growth-label, body.light .growth-small { color: #555; }
body.light .feature-titles h3 { color: #000; }
body.light .feature-descs p { color: #333; }
body.light .growth-sub { color: #333; }


.feature-card {
    display: block!important;
    width: 100%;
}

:root{
    --muted: #9b9b9b;
}

.suite-section{
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto 6rem;
}

.suite-intro h2{
    font-family: 'Crimson Text', serif;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.suite-intro .lead{
    color: var(--muted);
    margin-bottom: 2.5rem;
    max-width: 720px;
}

.suite-group h4{
    color: var(--muted);
    margin-bottom: 1rem;
    font-weight: 600;
}

.suite-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    align-items: start;
}

.suite-card{
    display: flex;
    flex-direction: column;
    text-decoration: none;
    padding: 1.6rem;
    border-radius: 6px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.03);
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
    position: relative;
    color: inherit;
    min-height: 120px;
}

.suite-card .card-content h3{
    font-family: 'Crimson Text', serif;
    font-size: 1.5rem;
    margin-bottom: 0.45rem;
}

.suite-card .card-content p{
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
}

.card-arrow{
    position: absolute;
    right: 1rem;
    top: 1rem;
    width: 22px;
    height: 22px;
    opacity: 0.6;
    display: inline-block;
}

.suite-card:hover,
.suite-card:focus{
    transform: translateY(-6px);
    box-shadow: 0 14px 30px rgba(0,0,0,0.45);
    background: rgba(255,255,255,0.02);
    border-color: rgba(255,255,255,0.08);
    outline: none;
}

.suite-card:focus{
    box-shadow: 0 0 0 4px rgba(100,150,255,0.12);
}

@media (max-width: 900px){
    .suite-grid{ grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 600px){
    .suite-grid{ grid-template-columns: 1fr; }
    .card-arrow{ right: 0.8rem; top: 0.8rem; }
}

/* Light mode adjustments (la web usa la clase body.light) */
body.light .suite-card{
    border-color: rgba(0,0,0,0.06);
    background: rgba(0,0,0,0.01);
}

body.light .suite-card:hover{
    background: rgba(0,0,0,0.03);
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

body.light .suite-intro .lead{ color: #555; }
body.light .card-arrow{ opacity: 0.5; }

/* Support prefer-color-scheme as fallback */
@media (prefers-color-scheme: light){
    :root{ --muted: #666666; }
}
@media (prefers-color-scheme: dark){
    :root{ --muted: #b5b5b5; }
}
