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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #0b0b0b;
    color: #f5f5f5;
}


/* =========================
   NAVIGATION
========================= */

header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;

    background: rgba(11, 11, 11, 0.9);

    border-bottom: 1px solid #333;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 20px 6%;
}

.logo {
    color: red;
    text-decoration: none;

    font-weight: bold;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: #aaa;
    text-decoration: none;

    font-size: 14px;
    text-transform: uppercase;
}

.nav-links a:hover {
    color: #e10600;
}


/* =========================
   HERO
========================= */

.hero {
    min-height: 100vh;

    position: relative;
    overflow: hidden;

    display: flex;
    align-items: center;

    padding: 120px 8%;

    background:
        linear-gradient(
            120deg,
            #0b0b0b 60%,
            #151515
    );
}

.hero-content {
    max-width: 900px;
    position: relative;
    z-index: 1;
}

.eyebrow {
    color: #e10600;

    font-size: 14px;
    letter-spacing: 4px;
}

.hero h1 {
    font-size: clamp(60px, 10vw, 150px);
    line-height: 0.85;
    margin: 25px 0;
    letter-spacing: -5px;
}

.subtitle {
    color: #aaa;
    font-size: 20px;
    margin-bottom: 40px;
}


/* =========================
   BUTTON
========================= */

.start-button {
    display: inline-block;
    padding: 16px 25px;
    background: #e10600;
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.start-button:hover {
    background: white;
    color: #0b0b0b;
}


/* =========================
   SECTIONS
========================= */

.section {
    min-height: 80vh;
    padding: 120px 8%;
    border-top: 1px solid #292929;
}

.section-number {
    color: #e10600;
    font-size: 13px;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.section h2 {
    font-size: 60px;
    margin-bottom: 40px;
}

.text {
    max-width: 650px;
    color: #aaa;
    font-size: 20px;
    line-height: 1.7;
}


/* =========================
   PROJECTS
========================= */

.projects {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.project-card {
    min-height: 250px;
    padding: 30px;
    border: 1px solid #333;
    background: #111;
    transition: 0.3s;
}

.project-card:hover {
    transform: translateY(-8px);

    border-color: #e10600;
}

.project-card span {
    color: #e10600;
}

.project-card h3 {
    font-size: 30px;

    margin: 50px 0 15px;
}

.project-card p {
    color: #888;
}


/* =========================
   INTERESTS
========================= */

.interests {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.interest-item {
    position: relative;
}

.interest-item[open] {
    grid-column: 1 / -1;
}


/* CARD */

.interest-card{
    display: block;

    width: 100%;
    min-height: 220px;

    padding: 30px;
    background: #111;
    border: 1px solid #333;
    color: white;
    cursor: pointer;
    text-align: left;
    transition: 0.3s;
    list-style: none;
}

.interest-card::-webkit-details-marker {
    display: none;
}

.interest-card:hover {
    transform: translateY(-6px);

    border-color: #e10600;
}


/*NUMBER*/
.interest-card span {
    display: block;
    color: #e10600;
    font-size: 13px;
    margin-bottom: 35px;
}

/*TITLE*/
.interest-card h3 {
    font-size: 28px;
    margin: 10px 0;
}

/*DESCRIPTION*/
.interest-card p {
    color: #777;
    font-size: 14px;
}


/* =========================
   DISPLAYED INFORMATION
========================= */

.interest-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    
    background: #f2f2f2;
    color: #111;

    margin-top: 15px;
    overflow: hidden;
    animation: openInterest 0.3s ease;

}


.interest-info img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
    display: block;

}


.interest-info > div {
    padding: 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;

}


.interest-info h2 {
    font-size: 42px;
    margin: 10px 0 20px;

}


.interest-info p:last-child {
    color: #555;
    line-height: 1.7;

}


.modal-number {
    color: #e10600;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 3px;

}


@keyframes openInterest {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    
to {
    opacity: 1;
    transform: translateY(0);
}

}


/* =========================
   BLOG
========================= */

.blog-post {
    max-width: 700px;
    padding: 30px;
    border-left: 3px solid #e10600;
    background: #111;
}

.blog-post > p:first-child {
    color: #e10600;
    font-size: 13px;
    letter-spacing: 2px;
}

.blog-post h3 {
    font-size: 35px;
    margin: 20px 0;
}

.blog-post p {
    color: #999;
    line-height: 1.6;
}


/* =========================
   FOOTER
========================= */

footer {
    padding: 40px 8%;

    display: flex;
    justify-content: space-between;
    align-items: center;

    border-top: 1px solid #333;

    color: #666;

    font-size: 12px;
}

html { scroll-padding-top: 70px; }

.luces { display: block; 
    width: 300px; 
    margin-bottom: 30px;
}

.wheel {
    position: absolute;
    right: -8%;
    top: 50%;
    width: min(48vw, 560px);
    transform: translateY(-50%);
    opacity: 0.35;
}

.checkered {
    height: 32px;
    background: url(img/cuadros.png) repeat-x;
}

.bandera { height: 70px; }

@media (max-width: 800px) {
    .projects, .interests {
        grid-template-columns: 1fr;
    }

    .nav-links { gap: 14px; }
    .section h2 { font-size: 40px; }
    .wheel { width: 90vw; opacity: 0.15; }
    .interest-info { grid-template-columns: 1fr; }
}


/* =========================
   GARAGE RADIO
========================= */

.tracks {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.track {
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
}

.track img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 50%;
    flex-shrink: 0;
}

.track-song {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 20px;
    font-weight: bold;
    color: #f5f5f5;
}

.track-artist {
    font-family: Arial, Helvetica, sans-serif;
    color: #888;
    font-size: 14px;
    margin-top: 4px;
}