*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background-color: #f4f7f6; 
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

nav{
    background-color: #2c3e50; 
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    display: flex;
    position: relative; 
    min-height: 70px;
}

.a1 {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%); 
    display: flex; 
    align-items: center;
}

.logo {
    max-width: 50px;
    height: auto; 
}

.buscar{
    padding: 20px;
    display: flex;
    font-size: 10px;
    gap: 50px;
    justify-content: center;
    align-items: center;
}

a:hover{
    color: #e67e22;
    text-decoration: none;
}

a{
    text-decoration: none;
    color: #ecf0f1; 
}

main {
    max-width: 1800px;
    margin: 40px auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 20px 20px 30px  20px;
}

.contacto {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contacto h1 {
    font-size: 24px;
    color: #2c3e50;
}

.contacto input, .contacto textarea {
    height: 50px;
    padding: 12px;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
}

.contacto textarea {
    height: 300px;
    resize: none;
}

.enviar {
    background-color: #e67e22;
    color: white;
    cursor: pointer;
    font-weight: bold;
    border: none;
    transition: background 0.3s;
}

.enviar:hover {
    background-color: #d35400;
}

.mapa h1{
    padding-bottom:10px ;
    font-size: 24px;
    color: #2c3e50;
}

.mapa iframe {
    width: 100%;
    height: 500px;
    border-radius: 8px;
    border: 2px solid #2c3e50;
}

main h2 {
    grid-column: span 2;
    margin-top: 20px;
}

.iconos-container {
    display: flex;
    flex-direction: column; 
    gap: 15px;
    margin-top: 15px;
}

.iconos-container h1{
    font-size: 24px;
    color: #2c3e50;
}

.detalle-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #34495e;
}

.detalle-item i {
    width: 20px; 
    text-align: center;
    color: #e67e22; 
}

footer {
    display: flex;
    background-color: #2c3e50; 
    color: white;
    padding: 10px;
    position: fixed;
    bottom: 0;
    width: 100%;
    text-align: center;
    gap: 10px;
}

footer a{
    text-decoration: none;
    color: #ecf0f1;
}

@media (max-width: 768px) {
    nav {
        flex-direction: column;
        height: auto;
        padding: 15px;
    }
    .a1 {
        position: static; 
        transform: none;
        margin-bottom: 10px;
    }
    .buscar { 
        flex-direction: column; 
        gap: 10px;
        font-size: 16px;
    }
    main {
        grid-template-columns: 1fr;
        margin: 20px auto;
        padding: 10px;
    }
    main h2 {
        grid-column: span 1;
    }
    footer {
        position: static; 
        flex-direction: column; 
        padding: 20px;
    }

    .contacto textarea {
        height: 200px;
    }
}