 body {
            font-family: 'Segoe UI', sans-serif;
            background: linear-gradient(135deg, #fce4ec, #e3f2fd);
            margin: 0;
            padding: 0;
        }

        .formulario {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            background: #ffffffcc;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
            width: 350px;
            margin: 50px auto;
        }

        #meuFormulario {
            display: flex;
            flex-direction: column;
            width: 100%;
        }

        .formulario h3 {
            font-size: 24px;
            color: #5c6bc0;
            margin: 0 0 5px 0;
            text-shadow: 1px 1px 2px #f8bbd0;
            text-align: center;
        }

        .formulario p {
            color: #6d4c41;
            margin: 0 0 20px 0;
            text-align: center;
            font-size: 14px;
        }

        label {
            font-weight: bold;
            color: #ad1457;
            margin-top: 15px;
        }

        input, textarea {
            box-sizing: border-box;
            width: 100%;
            padding: 10px;
            margin-top: 5px;
            border: 2px solid #bbdefb;
            border-radius: 10px;
            outline: none;
            transition: 0.3s;
            background: #fff;
            font-family: inherit;
        }

        input:focus, textarea:focus {
            border-color: #64b5f6;
            box-shadow: 0 0 8px #90caf9;
        }

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

        button {
            margin-top: 20px;
            padding: 12px 20px;
            background: #f48fb1;
            color: white;
            border: none;
            border-radius: 20px;
            cursor: pointer;
            font-size: 16px;
            transition: 0.3s;
            width: 100%;
        }

        button:hover {
            background: #ec407a;
            transform: scale(1.02);
        }

        /* Galeria */
        #colecao {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            margin: 20px;
        }

        .card {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: space-between;
            border: 2px solid #bbdefb;
            border-radius: 15px;
            padding: 20px;
            margin: 15px;
            background: #ffffff;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            width: 250px;
        }

        .card h3 {
            color: #5c6bc0;
            margin: 0 0 10px 0;
            text-align: center;
        }

        .card p {
            color: #6d4c41;
            text-align: center;
            margin: 0 0 10px 0;
        }

        .card .img {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            margin-top: 10px;
            width: 100%;
        }

        .card img {
            max-width: 100%;
            border-radius: 12px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.15);
            margin-bottom: 8px;
        }

        .card .descricao {
            font-size: 14px;
            color: #ad1457;
            text-align: center;
            margin: 0;
        }
