/* Reset de base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
}

.container {
    text-align: center;
    max-width: 600px;
    width: 90%;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    animation: fadeIn 2s ease-in-out;
}

p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    animation: fadeIn 3s ease-in-out;
}

.contact-info {
    margin-bottom: 30px;
}

.contact-info p {
    font-size: 1rem;
    margin: 10px 0;
}

.contact-info a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #00ffcc;
}

.info-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.info-form h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.info-form input, .info-form textarea {
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.8);
    color: #333;
}

.info-form textarea {
    resize: vertical;
    min-height: 100px;
}

.info-form button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background: #00ffcc;
    color: #1e3c72;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.info-form button:hover {
    background: #00e6b8;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 600px) {
    h1 {
        font-size: 2rem;
    }

    p {
        font-size: 1rem;
    }

    .contact-info p {
        font-size: 0.9rem;
    }

    .info-form h2 {
        font-size: 1.2rem;
    }

    .info-form input, .info-form textarea {
        font-size: 0.9rem;
    }
}