body {
            margin: 0;
            font-family: Arial, Helvetica, sans-serif;
            background-color: #111;
            color: white;
        }

        /* NAVBAR */
        nav {
            background-color: #000;
            padding: 15px 50px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        nav h1 {
            margin: 0;
            color: white;
        }

        nav ul {
            list-style: none;
            display: flex;
            gap: 25px;
            margin: 0;
        }

        nav ul li {
            cursor: pointer;
        }

        nav ul li:hover {
            color: blue;
        }

        /* HERO */
        .hero {
            height: 300px;
            background: url("https://i.pinimg.com/1200x/96/ab/7a/96ab7ab40470c4c5ae78255b3bd83fd5.jpg") center/cover no-repeat;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
        }

        .hero h2 {
            font-size: 40px;
            margin-bottom: 20px;
        }

        .hero button {
            padding: 12px 25px;
            background-color: red;
            border: none;
            color: white;
            cursor: pointer;
            font-weight: bold;
        }

        .hero button:hover {
            background-color: darkred;
        }

        /* SECCIONES */
        section {
            padding: 60px 50px;
            text-align: center;
        }

        /* CARDS CAPITANES */
        .cards {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
            margin-top: 40px;
        }

        .card {
            background-color: #1c1c1c;
            padding: 20px;
            width: 220px;
            border-radius: 10px;
            transition: 0.3s;
            perspective: 1000px;
        }

        .card:hover {
            transform: scale(1.05);
        }

        .card img {
            width: 100%;
            border-radius: 5px;
        }

        .card button {
            margin-top: 10px;
            padding: 8px 15px;
            background-color: #0066ff;
            border: none;
            color: white;
            cursor: pointer;
        }

        .card button:hover {
            background-color: #0044aa;
        }

        /* ARCOS */
        .arcos ul {
            list-style: none;
            padding: 0;
            margin-top: 20px;
        }

        .arcos li {
            margin: 15px 0;
            font-size: 18px;
        }

        /* PODERES */
        .poderes {
            display: flex;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
        }

        .poder-box {
            background-color: #1c1c1c;
            padding: 20px;
            width: 250px;
            border-radius: 10px;
        }
        