/* Reset de base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Hero */
.hero-contact {
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.hero-contact .hero-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: brightness(50%);
}

.hero-contact .hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
}

.hero-contact .hero-content p {
    font-size: 1.2rem;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

/* Contact Section */
.contact {
    padding: 4rem 2rem;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #d32f2f;
    margin-bottom: 3rem;
}

.contact-content {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* Contact Info */
.contact-info {
    flex: 1;
    min-width: 250px;
    max-width: 400px;
}

.info-item {
    margin-bottom: 1.5rem;
}

.info-item h3 {
    font-size: 1.2rem;
    color: #b71c1c;
    margin-bottom: 0.5rem;
}

/* Contact Form */
.contact-form {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

.contact-form form {
    display: flex;
    flex-direction: column;
}

.contact-form label {
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-form input,
.contact-form textarea {
    margin-bottom: 1rem;
    padding: 0.8rem;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 1rem;
    resize: none;
}

.contact-form button {
    padding: 1rem;
    background-color: #d32f2f;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form button:hover {
    background-color: #b71c1c;
    transform: translateY(-3px);
}

/* Map */
.map {
    margin-top: 3rem;
    border-radius: 12px;
    overflow: hidden;
}

/* Responsive */
@media(max-width: 1024px) {
    .hero-contact .hero-content h1 { font-size: 2.5rem; }
    .hero-contact .hero-content p { font-size: 1.1rem; }
}

@media(max-width: 768px) {
    .contact-content {
        flex-direction: column;
        align-items: center;
    }
    .hero-contact { height: 50vh; }
    .hero-contact .hero-content h1 { font-size: 2rem; }
    .hero-contact .hero-content p { font-size: 1rem; }
}

