body {
    background: linear-gradient(135deg, #0b0f1c 0%, #1a0f2a 100%);
    color: #e0e0ff;
    font-family: 'Share Tech Mono', monospace;
}

header {
    background: rgba(10, 20, 40, 0.7);
    backdrop-filter: blur(4px);
    border-bottom: 2px solid #00ffff;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
    padding: 2rem 1rem;
    margin-bottom: 2rem;
}

header h1 {
    font-weight: 700;
    background: linear-gradient(135deg, #ff66cc, #00ffff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
    letter-spacing: 2px;
}

header p {
    color: #bbbbff;
    font-size: 1.2rem;
    text-shadow: 0 0 3px #ff00cc;
}

/* ===== MEJORAS PARA SECCIÓN "SOBRE MÍ" (fusionado) ===== */
h2,
h3 {
    text-shadow: 0 0 3px rgba(255, 68, 204, 0.5);
}

h2 {
    font-size: 2rem;
    border-left: 6px solid #ff44aa;
    padding-left: 1rem;
    margin-bottom: 2rem;
    color: #ffccff;
}

h3 {
    font-size: 1.6rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    color: #bbbbff;
    border-bottom: 1px dashed #ff44aa;
    display: inline-block;
    padding-bottom: 0.3rem;
}

p {
    font-size: 1.05rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    color: #d0d0ff;
}

q {
    display: block;
    font-style: italic;
    font-size: 1.2rem;
    margin: 2rem 0;
    padding: 1rem 1.5rem;
    background: rgba(0, 255, 255, 0.1);
    border-left: 4px solid #00ffff;
    border-radius: 0 1rem 1rem 0;
    color: #ccffff;
    quotes: "«" "»" "“" "”";
}

q::before {
    content: "«";
    font-size: 1.8rem;
    color: #ff66cc;
    margin-right: 0.5rem;
    vertical-align: middle;
}

q::after {
    content: "»";
    font-size: 1.8rem;
    color: #ff66cc;
    margin-left: 0.5rem;
    vertical-align: middle;
}

/* Separación entre las dos secciones */
.container>div:first-child {
    margin-bottom: 3rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 68, 204, 0.3);
}

/* Ajuste para los títulos dentro de la sección de trabajos */
.container>div:last-child h2 {
    margin-top: 1rem;
}

/* ===== ESTILOS DE TARJETAS (cards) ===== */
.row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 2rem;
}

.card {
    background: rgba(20, 25, 45, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid #ff44cc;
    border-radius: 1.5rem;
    box-shadow: 0 0 20px rgba(255, 68, 204, 0.3);
    transition: all 0.3s ease;
    height: 100%;
}

.card:hover {
    transform: translateY(-8px);
    border-color: #00ffff;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
}

.card-title {
    color: #ff88dd;
    font-size: 1.8rem;
    font-weight: bold;
    text-shadow: 0 0 4px #ff00cc;
}

.card-text {
    color: #c0c0f0;
}

.card-link {
    color: #00ffff;
    text-decoration: none;
    font-weight: bold;
    border: 1px solid #00ffff;
    padding: 0.3rem 1rem;
    border-radius: 2rem;
    display: inline-block;
    transition: 0.2s;
}

.card-link:hover {
    background-color: #00ffff;
    color: #0b0f1c;
    box-shadow: 0 0 15px #00ffff;
    text-decoration: none;
}

/* ===== FOOTER ===== */
footer {
    margin-top: 3rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.5);
    border-top: 1px solid #ff44aa;
    text-align: center;
    color: #aa88ff;
    font-size: 0.9rem;
}

/* ===== EFECTO DE REJILLA CYBERPUNK ===== */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 0, 204, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
    z-index: -1;
}

.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);
}

.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;
}

.icon-accent {
    background: #EEF2FF;
    color: #4F46E5;
    padding: 8px 12px;
    border-radius: 12px;
}

.estilo-numeros-suerte {
    font-family: 'Inter', sans-serif;
    background-color: #F8FAFC;
    /* Gris muy limpio casi azulado */
    color: #0F172A;
}

/* ===== ESTILO SYNTHWAVE PARA ACORDEÓN ===== */
.accordion {
    --bs-accordion-border-color: #ff44cc;
    --bs-accordion-border-radius: 1rem;
    --bs-accordion-btn-bg: #0a0a1a;
    --bs-accordion-bg: #0a0a1a;
    --bs-accordion-active-bg: #1a1a3a;
    --bs-accordion-active-color: #00ffff;
    --bs-accordion-btn-focus-box-shadow: 0 0 0 0.25rem rgba(0, 255, 255, 0.3);
    --bs-accordion-btn-color: #00ffff;
    --bs-accordion-body-color: #e0e0ff;
}

.accordion-item {
    background-color: #0a0a1a;
    border: 1px solid #ff44cc;
    box-shadow: 0 0 12px rgba(255, 68, 204, 0.3);
    margin-bottom: 1rem;
}

.accordion-button {
    font-family: 'Share Tech Mono', monospace;
    font-weight: bold;
    text-transform: uppercase;
    background-color: #0a0a1a;
    color: #00ffff;
    letter-spacing: 1px;
}
.accordion-button:not(.collapsed) {
    background-color: #0f0f2a;
    color: #ff66cc;
    box-shadow: inset 0 -1px 0 #00ffff;
}

.accordion-button:focus {
    border-color: #ff66cc;
    box-shadow: 0 0 0 0.2rem rgba(255, 102, 204, 0.4);
}

.accordion-body {
    background-color: #050510;
    font-family: 'Share Tech Mono', monospace;
    border-top: 1px solid #00ffff;
}

.accordion-body a {
    color: #00ffff;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-block;
    margin: 0.25rem 0;
}

.accordion-body a:hover {
    color: #ff66cc;
    text-shadow: 0 0 5px #ff66cc;
    transform: translateX(5px);
}
.text-english {
    display: none;
}

body.lang-en .text-espanol {
    display: none;
}

body.lang-en .text-english {
    display: revert;
}