.background-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-image: url("../images/aeroporto.jpg");
    background-position: bottom center;
    background-size: cover;
    filter: blur(8px);
    z-index: -2;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: -1;
}

.content {
    position: relative;
    z-index: 1;
    max-width: 400px;
    margin: 100px auto;
    padding: 30px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.taxi-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 20px;
    border: 3px solid #007BFF;
}

h1 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #333;
}

p {
    font-size: 18px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 30px;
}

.whatsapp-btn,
.call-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    color: white;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin-bottom: 15px;
    cursor: pointer;
    width: 100%;
}

.whatsapp-btn {
    background-color: #25D366;
}

.whatsapp-btn i {
    margin-right: 10px;
    font-size: 20px;
}

.whatsapp-btn:hover {
    background-color: #1DA851;
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    color: white;
    text-decoration: none;
}

.whatsapp-btn:active {
    transform: scale(0.98);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}

.call-btn {
    background-color: #007BFF;
}

.call-btn i {
    margin-right: 10px;
    font-size: 20px;
}

.call-btn:hover {
    background-color: #0056b3;
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    color: white;
    text-decoration: none;
}

.call-btn:active {
    transform: scale(0.98);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}

.show-photos-btn {
    display: block;
    margin-top: 20px;
    font-size: 18px;
    color: brown;
    text-decoration: underline;
    cursor: pointer;
    transition: color 0.3s ease;
}

.show-photos-btn:hover {
    color: #8B4513;
}

.car-photos {
    display: none;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
    margin-top: 20px;
}

.car-photos img {
    width: calc(50% - 10px);
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .content {
        max-width: 90%;
        padding: 20px;
        margin: 50px auto;
    }

    .taxi-img {
        width: 100px;
        height: 100px;
    }

    h1 {
        font-size: 24px;
    }

    p {
        font-size: 16px;
    }

    .whatsapp-btn,
    .call-btn {
        font-size: 16px;
        padding: 10px;
    }

    .show-photos-btn {
        font-size: 16px;
    }

    .car-photos img {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .content {
        max-width: 100%;
        padding: 15px;
    }

    h1 {
        font-size: 20px;
    }

    p {
        font-size: 14px;
    }

    .whatsapp-btn,
    .call-btn {
        font-size: 14px;
        padding: 8px;
    }

    .show-photos-btn {
        font-size: 14px;
    }

    .car-photos img {
        width: 100%;
    }
}
