body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #212121;
    color: #ffffff;
}

.container {
    display: flex;
    min-height: 100vh;
    padding: 60px;
    max-width: 1200px;
    margin: 0 auto;

    
    background:
        linear-gradient(to left, #181818 60%, rgba(234, 244, 248, 0) 100%),
        url("../img/avion.png") no-repeat right center;
    background-size: 50% auto;
    background-repeat: no-repeat;
    background-position: right center;
    filter: none;
    position: relative;
}

.container::before {
    content: "";
    position: absolute;
    top: 0; bottom: 0; right: 0;
    width: 50%;
    backdrop-filter: blur(6px);
    pointer-events: none;
}

.contenido {
    flex: 1;
    padding: 60px;
    max-width: 700px;
    margin: auto;
    background: linear-gradient(to right, #181818 70%, transparent);
    z-index: 1;
}

.contenido h1 {
    color: #4682b4;
    margin-bottom: 20px;
}

.contenido p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.contenido .contacto {
    font-weight: bold;
    color: #005baa;
}

.imagen-avion {
    flex: 1;
    background-image: url("../img/avion.png");
    background-repeat: no-repeat;
    background-size: auto;
    background-position: right center;
    min-height: 100vh;
    filter: brightness(0.95);
    filter: blur(1px) brightness(0.8);
    position: relative;
}
