*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Segoe UI', sans-serif;
}

body{
    background:linear-gradient(135deg,#667eea,#764ba2);
    min-height:100vh;
    padding:40px 20px;
}

.container{
    max-width:950px;
    background:white;
    margin:auto;
    padding:40px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,0.15);
}

h1{
    text-align:center;
    margin-bottom:35px;
    color:#333;
    font-size:34px;
}

.form-group{
    margin-bottom:22px;
}

label{
    display:block;
    margin-bottom:8px;
    color:#444;
    font-weight:600;
}

input,
textarea,
select{
    width:100%;
    padding:14px;
    border:1px solid #ddd;
    border-radius:12px;
    outline:none;
    transition:0.3s;
    background:#fafafa;
}

input:focus,
textarea:focus,
select:focus{
    border-color:#667eea;
    background:white;
    box-shadow:0 0 0 4px rgba(102,126,234,0.15);
}

textarea{
    resize:vertical;
    min-height:110px;
}

button{
    width:100%;
    padding:16px;
    border:none;
    border-radius:14px;
    background:linear-gradient(135deg,#667eea,#764ba2);
    color:white;
    font-size:18px;
    font-weight:bold;
    cursor:pointer;
    transition:0.3s;
}

button:hover{
    transform:translateY(-2px);
    box-shadow:0 8px 20px rgba(0,0,0,0.2);
}

.card{
    background:white;
    padding:25px;
    border-radius:20px;
    margin-bottom:20px;
    box-shadow:0 5px 15px rgba(0,0,0,0.08);
}

img{
    width:180px;
    height:180px;
    object-fit:cover;
    border-radius:15px;
    margin-top:15px;
}

.btn-excluir{
    display:inline-block;
    margin-top:15px;
    background:#ff4d4d;
    color:white;
    padding:12px 18px;
    border-radius:10px;
    text-decoration:none;
}

.btn-excluir:hover{
    background:#cc0000;
}

@media(max-width:768px){

    .container{
        padding:25px;
    }

    h1{
        font-size:26px;
    }

}