body {
    font-family: Arial, sans-serif;
    background-color: #111;
    color: white;
    margin: 0;
}

/* NAV */
nav {
    background-color: #000;
    padding: 15px;
    text-align: center;
}

nav a {
    color: #f1c40f;
    margin: 15px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

nav a:hover {
    color: white;
}

/* HERO */
.hero {
    height: 90vh;
    background: url("../img/taller.jpg") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-text {
    background-color: rgba(0,0,0,0.6);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
}

.hero h1 {
    font-size: 50px;
    color: #f1c40f;
}

section {
    padding: 40px;
    text-align: center;
}

h2 {
    color: #f1c40f;
}

/* CARDS */
.contenedor-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.card {
    background-color: #1c1c1c;
    width: 260px;
    border-radius: 15px;
    overflow: hidden;
    transition: 0.3s;
}

.card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.card:hover {
    transform: scale(1.05);
}

/* ANIMACION SCROLL */
.animar {
    opacity: 0;
    transform: translateY(40px);
    transition: 0.6s ease;
}

.animar.visible {
    opacity: 1;
    transform: translateY(0);
}