body {
    margin: 0;
    background: #000;
    font-family: Arial, Helvetica, sans-serif;
}

/* HEADER */
header {
    background: #f3f3f3;
    border: 2px solid #111;
    border-radius: 0 0 14px 14px;
    padding: 12px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header img {
    height: 36px;
}

nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 25px;
}

nav a {
    text-decoration: none;
    color: #111;
    font-family: "AntonSC", sans-serif;
    font-size: 18px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

nav a:hover {
    color: #ff7fd7;
}

.activo {
    color: #ff7fd7;
}

/* MAIN */
main {
    width: 100%;
}

/* HERO */
.hero {
    background: #f2f2f2;
    padding: 60px 8%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-imgs {
    display: flex;
    gap: 18px;
    align-items: center;
}

.columna {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.hero-img {
    object-fit: cover;
    border-radius: 18px;
    border: none;
    box-shadow: 0 12px 25px rgba(0,0,0,0.25);
}

.grande {
    width: 260px;
    height: 260px;
}

.chica {
    width: 170px;
    height: 150px;
}

h1 {
    font-size: 90px;
    line-height: 0.85;
    margin: 0;
    font-weight: 900;
    text-transform: uppercase;
}

.hero p {
    font-size: 15px;
    line-height: 1.5;
    max-width: 400px;
}

.boton-principal {
    display: inline-block;
    margin-top: 20px;
    background: #d9ff2f;
    color: #111;
    text-decoration: none;
    padding: 14px 22px;
    border-radius: 12px;
    font-weight: bold;
    text-transform: uppercase;
}

/* ESTRELLAS */
.estrella {
    position: absolute;
    width: 70px;
    z-index: 5;
}

.estrella1 {
    top: 70px;
    left: 340px;
}

.estrella2 {
    bottom: 60px;
    left: 480px;
    width: 55px;
}

/* FRANJA */
.franja {
    background: #d9ff2f;
    padding: 14px 8%;
    display: flex;
    justify-content: space-around;
    font-weight: bold;
    font-size: 14px;
}

/* NOSOTROS */
.equipo-section {
    background: #f3a3e7;
    padding: 60px 8%;
    text-align: center;
}

.equipo-section h2 {
    font-size: 38px;
    margin-top: 0;
    text-transform: uppercase;
}

.equipo {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 60px;
}

.card {
    background: white;
    width: 220px;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 12px 25px rgba(0,0,0,0.18);
}

.card-centro {
    transform: translateY(-40px);
}

.integrante {
    width: 130px;
    height: 130px;
    object-fit: cover;
    border-radius: 14px;
}

.card p {
    font-size: 13px;
}

.boton {
    display: inline-block;
    margin-top: 10px;
    background: #d9ff2f;
    color: #111;
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
}

/* FOOTER */
.footer-final {
    background: #000;
    color: white;
    padding: 70px 8%;
}

.footer-frase h2 {
    font-size: 72px;
    line-height: 1;
    text-transform: uppercase;
    margin: 0;
}

.rosa {
    color: #f3a3e7;
}

.linea {
    display: inline-block;
    width: 220px;
    height: 3px;
    background: white;
    margin-left: 20px;
    margin-bottom: 18px;
}

.footer-cards {
    display: flex;
    gap: 25px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.mini-card {
    background: white;
    color: #111;
    padding: 22px;
    border-radius: 18px;
    width: 280px;
}

.mini-card h3 {
    margin-top: 0;
    font-size: 14px;
}

.mini-card p {
    font-size: 13px;
    line-height: 1.5;
}

.footer-info {
    border-top: 1px solid rgba(255,255,255,0.3);
    margin-top: 60px;
    padding-top: 35px;
    display: flex;
    gap: 80px;
    flex-wrap: wrap;
}

.footer-info h4 {
    color: #f3a3e7;
    margin-bottom: 10px;
}

.footer-info p {
    font-size: 13px;
    line-height: 1.7;
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
    }
}