body {
    background-image: url("../img/vela3-min.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    position: relative;
    color: #fff;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 0;
}

.product {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 120px auto 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.product .content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 40px;
}

.text {
    flex: 1;
    padding: 30px;
    text-shadow: -1px 1px 0 #000,
        1px 1px 0 #000,
        1px -1px 0 #000,
        -1px -1px 0 #000;
}

.text h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: #fff;
}

.text p {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.text h3 {
    font-size: 2.4rem;
    color: #c45a1d;
    margin-bottom: 30px;
    text-shadow: none;
}

.text .btncat {
    padding: 15px 40px;
    font-size: 1.3rem;
    background-color: #c45a1d;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.text .btncat:hover {
    background-color: #a94c18;
    transform: translateY(-2px);
}

.image {
    flex: 1;
    padding: 20px;
}

.image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .product {
        margin: 100px 20px 30px;
    }

    .product .content {
        flex-direction: column;
        padding: 20px;
    }

    .text {
        padding: 20px;
        text-align: center;
    }

    .text h1 {
        font-size: 2.2rem;
    }

    .text p {
        font-size: 1.1rem;
    }

    .text h3 {
        font-size: 2rem;
    }

    .image img {
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .text h1 {
        font-size: 1.8rem;
    }

    .text .btncat {
        width: 100%;
        padding: 12px;
    }
}