.hero-contact {
    height: 500px;
    background-image: url("");
    background-size: cover;
    background-position: center;
    align-items: center;
    position: relative;
    background-color: #292727;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
}

.hero-content h1 {
    text-align: center;
}

.contact-container {
    max-width: 1400px;
    margin: 40px auto;
    padding: 40px;
    display: flex;
    gap: 30px;
    min-height: 100vh;
    align-items: center;
}

.form-column {
    flex: 1;
    background: var(--light-bg);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.form-title {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-top: 0;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.form-title:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--secondary-color);
}

.form-description {
    color: #555;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

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

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-color);
}

.required:after {
    content: " *";
    color: var(--accent-color);
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.8);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus {
    border-color: var(--secondary-color);
    outline: none;
    background-color: white;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
}

.row {
    display: flex;
    gap: 20px;
}

.col {
    flex: 1;
}

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

.file-upload {
    margin-bottom: 20px;
}

.file-upload-label {
    display: inline-block;
    padding: 10px 15px;
    background: #328c40;
    color: white;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.file-upload-label:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.file-info {
    font-size: 0.9rem;
    color: #777;
    margin-top: 5px;
    font-style: italic;
}

.form-footer {
    position: sticky;
    bottom: 0;
    background: var(--light-bg);
    padding: 15px 0;
    margin-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.submit-btn {
    background: #328c40;
    color: white;
    border: none;
    padding: 12px 25px;
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;

}

.submit-btn:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 1024px) {
    .contact-container {
        flex-direction: column;
        padding: 20px;
    }

    .form-column {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .row {
        flex-direction: column;
        gap: 0;
    }

    .form-title {
        font-size: 1.5rem;
    }

    body {
        background-attachment: scroll;
    }
}

.contact-section {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    background-color: #f5f5f5;
    padding: 40px 80px;
}

.contact-information {
    background-color: #328c40;
    color: #fff;
    padding: 40px;
    width: 45%;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-information h2 {
    font-size: 28px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: bold;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.contact-item i {
    font-size: 24px;
    margin-right: 15px;
}

.contact-item h3 {
    font-size: 18px;
    margin: 0;
    font-weight: bold;
}

.contact-item p {
    margin: 5px 0 0;
    font-size: 16px;
}

.map-container {
    width: 50%;
    border-radius: 10px;
    overflow: hidden;
}

iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 10px;
}

/* Ajustes Responsivos */
@media (max-width: 768px) {
    .contact-section {
        flex-direction: column;
        padding: 20px;
    }

    .contact-information, .map-container {
        width: 100%;
        margin-bottom: 20px;
    }
}
