/* Importación de la fuente Inter para el look Startup */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700;800&display=swap');

/* Estilos base del documento */
body {
    font-family: 'Inter', sans-serif;
    background-color: #F8FAFC;
    color: #0F172A;
}

/* Componentes principales */
.startup-header {
    background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
    border-bottom: 1px solid #E2E8F0;
}

.startup-card {
    background: #ffffff;
    border: 1px solid #F1F5F9;
    border-radius: 20px;
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.startup-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.08);
}

/* Botones */
.btn-startup {
    background: #0F172A;
    color: white;
    border: none;
    padding: 12px 28px;
    font-weight: 500;
    border-radius: 50px;
    transition: all 0.2s ease;
}

.btn-startup:hover {
    background: #1E293B;
    transform: scale(1.02);
    color: white;
}

.btn-outline-startup {
    background: transparent;
    color: #0F172A;
    border: 2px solid #E2E8F0;
    padding: 10px 26px;
    font-weight: 500;
    border-radius: 50px;
    transition: all 0.2s ease;
}

.btn-outline-startup:hover {
    border-color: #0F172A;
    background: #F8FAFC;
}

/* Clases de utilidad para reemplazar estilos en línea */
.max-w-600 {
    max-width: 600px;
}

.max-w-700 {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.bg-startup-light {
    background-color: #F8FAFC;
}

.border-startup {
    border-color: #E2E8F0 !important;
}