* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #f0f4f8;
    color: #1f2937;
    line-height: 1.6;
}

header {
    background-color: #ffffff;
    padding: 1rem 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 999;
    animation: fadeIn 0.8s ease-out;
}

.menu ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.menu a {
    text-decoration: none;
    color: #2d89ef;
    font-weight: 600;
    font-size: 1.05rem;
    position: relative;
    transition: color 0.3s;
    padding: 0.5rem 0;
}

    .menu a.active {
        color: #1b6cd7;
    }

        .menu a.active::after {
            width: 100%;
        }

    .menu a::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -4px;
        width: 0%;
        height: 2px;
        background-color: #2d89ef;
        transition: width 0.3s ease;
    }

    .menu a:hover {
        color: #1b6cd7;
    }

        .menu a:hover::after {
            width: 100%;
        }

/* Hero Section */
.contact-hero {
    /*background: linear-gradient(135deg, #6e8efb, #a777e3);*/
    background: 
        url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><circle cx='30' cy='30' r='5' fill='rgba(255,255,255,0.1)'/><circle cx='80' cy='70' r='8' fill='rgba(255,255,255,0.1)'/><circle cx='150' cy='30' r='10' fill='rgba(255,255,255,0.1)'/><circle cx='30' cy='120' r='7' fill='rgba(255,255,255,0.1)'/><circle cx='170' cy='150' r='5' fill='rgba(255,255,255,0.1)'/><circle cx='100' cy='180' r='8' fill='rgba(255,255,255,0.1)'/></svg>"),
        linear-gradient(135deg, #6e8efb, #a777e3);
    text-align: center;
    padding: 5rem 2rem;
    color: white;
}

    .contact-hero h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        animation: slideIn 0.8s ease-out 0.2s both;
    }

    .contact-hero p {
        font-size: 1.2rem;
        max-width: 800px;
        margin: 0 auto;
        animation: slideIn 0.8s ease-out 0.4s both;
    }

/* Contact Content */
.contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem;
    gap: 3rem;
}

.contact-info {
    flex: 1;
    min-width: 300px;
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.contact-form {
    flex: 1;
    min-width: 300px;
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

    .contact-info h2,
    .contact-form h2 {
        color: #1f2937;
        margin-bottom: 1.5rem;
        font-size: 1.8rem;
    }

.contact-method {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-icon {
    font-size: 1.5rem;
    color: #2d89ef;
    margin-right: 1rem;
    min-width: 30px;
}

.contact-details h3 {
    color: #1f2937;
    margin-bottom: 0.3rem;
}

.contact-details p,
.contact-details a {
    color: #4b5563;
    text-decoration: none;
    transition: color 0.3s;
}

    .contact-details a:hover {
        color: #2d89ef;
    }

.form-group {
    margin-bottom: 1.5rem;
}

    .form-group label {
        display: block;
        margin-bottom: 0.5rem;
        color: #1f2937;
        font-weight: 500;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        width: 100%;
        padding: 0.8rem;
        border: 1px solid #e2e8f0;
        border-radius: 8px;
        font-family: 'Inter', sans-serif;
        transition: all 0.3s;
    }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: #2d89ef;
            outline: none;
            box-shadow: 0 0 0 3px rgba(45, 137, 239, 0.2);
        }

    .form-group textarea {
        min-height: 150px;
        resize: vertical;
    }

.submit-btn {
    background: linear-gradient(45deg, #2d89ef, #3a9bff);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    box-shadow: 0 4px 12px rgba(45, 137, 239, 0.3);
}

    .submit-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(45, 137, 239, 0.4);
    }

/* Map Section */
.map-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 3rem;
    padding: 0 2rem;
}

    .map-container iframe {
        width: 100%;
        height: 400px;
        border: none;
        border-radius: 16px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    }

/* Footer */
footer {
    text-align: center;
    padding: 3rem 1rem;
    font-size: 0.9rem;
    color: #64748b;
    background-color: #f1f5f9;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .contact-hero h1 {
        font-size: 2rem;
    }

    .contact-hero p {
        font-size: 1rem;
    }

    .menu ul {
        gap: 1rem;
    }
}

/* Estilo do ícone USER */
.user-icon-container {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}


.user-icon {
    cursor: pointer;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #e0f2fe;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.user-icon:hover {
    background-color: #2d89ef;
    color: white;
}

.user-container {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}
