/* RESET */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Segoe UI',sans-serif;
}

/* BODY */

body{
    background:#fff5f8;
    color:#333;
}

/* HERO */

.hero{
    height:80vh;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    background:linear-gradient(
        rgba(255,105,180,.7),
        rgba(255,182,193,.7)
    );
    color:white;
}

.hero h2{
    font-size:50px;
    margin-bottom:15px;
}

.hero p{
    font-size:20px;
    margin-bottom:20px;
}

.hero button{
    background:#ff1493;
    color:white;
    border:none;
    padding:15px 30px;
    border-radius:30px;
    cursor:pointer;
    font-size:18px;
    transition:.3s;
}

.hero button:hover{
    background:#d60075;
}

/* SECCIONES */

section{
    padding:70px 10%;
}

section h2{
    text-align:center;
    margin-bottom:40px;
    color:#ff1493;
    font-size:35px;
}

/* MARCAS */

.brands{
    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
}

.brand-card{
    width:280px;
    background:white;
    padding:25px;
    border-radius:15px;
    text-align:center;
    box-shadow:0 4px 10px rgba(0,0,0,.1);
}

.brand-card h3{
    color:#ff1493;
    margin-bottom:10px;
}

/* CONTACTO */

form{
    max-width:600px;
    margin:auto;
}

form input,
form textarea{
    width:100%;
    padding:15px;
    margin-bottom:15px;
    border:1px solid #ddd;
    border-radius:10px;
}

form textarea{
    height:120px;
}

form button{
    width:100%;
    background:#ff1493;
    color:white;
    border:none;
    padding:15px;
    border-radius:10px;
    cursor:pointer;
    font-size:18px;
}

/* FOOTER */

footer{
    background:#ff1493;
    color:white;
    text-align:center;
    padding:20px;
}