/* General */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #333;
    background: url('fondo-contacto.jpg') no-repeat center center fixed;
    background-size: cover;
}

.top-bar {
    background-color: #333;
    color: white;
    font-size: 14px;
    text-align: center;
    padding: 0.1px 0;
    line-height: 0.3;
}

header {
    background: linear-gradient(rgba(51, 51, 51, 0.8), rgba(51, 51, 51, 0));
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container img {
    height: 50px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

nav ul li a {
    color: white;
    text-decoration: none;
}

nav ul li a.active {
    color: #ffcc80;
}

nav ul li a:hover {
    color: #ffcc80;
}

/* Sección de Contacto */
#contacto {
    padding: 40px 20px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    max-width: 800px;
    margin: 50px auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

#contacto h1 {
    color: #f57c00;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

#contacto p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #555;
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

form label {
    text-align: left;
    font-size: 1rem;
    color: #333;
}

form input,
form textarea {
    width: 100%;
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
}

form button {
    padding: 10px 20px;
    background-color: #f57c00;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

form button:hover {
    background-color: #e65100;
}

.address {
    margin-top: 20px;
    font-size: 1rem;
    color: #555;
    font-weight: bold;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 15px 0;
}
