* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    overflow-x: hidden;
}

html {
    background-color: #1b1a1a;
    scroll-behavior: smooth;
}

li {
    font-size: 28px;
    display: flex;
    color: white;
    font-family: "Graduate", serif;
}

a {
    text-decoration: none;
    margin-left: 3.3%;
    margin-right: 3%;
    margin-top: 1%;
    margin-bottom: 3%;
    color: white;
}

a:hover {
    color: #d61515b6;
}


nav {
    display: flex;
    align-items: center;
    justify-content: center;

}

h1 {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: white;
    font-family: "Graduate", serif;
    font-size: 48px;
}

nav {
    border-top: 1px solid white;

}

.headerImage {
    width: 100vw;
    max-height: 58vh;
    filter: grayscale(20%);
}

h2 {
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: "Graduate", serif;
    font-size: 42px;
}

.containerHead {
    padding: 3%;

}

.containerTop {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1%;
    margin-bottom: 1%;
}

.logo {
    width: 5%;
    margin-right: 3%;
}

main {
    background-color: #00000083;
}

.containerServices {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3%;
}

aside {
    background-color: #0000007e;

}

footer {
    background-color: #0000007e;
}

.container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px 20px;
    gap: 40px;
    flex-wrap: wrap;
}

.info {
    flex: 1;
    min-width: 300px;
}

.info h3 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: bold;
}

h3 {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: white;
    font-family: "Graduate", serif;
    font-size: 48px;
}

.info p {
    font-size: 18px;
    line-height: 1.6;
    color: #ccc;
}

.map {
    flex: 1;
    min-width: 300px;
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.map:hover {
    transform: scale(1.03);
}

.footer {
    text-align: center;
    padding: 40px 20px;
    background-color: #0a0a0a;
    font-size: 21px;
    color: #888;
}

@media (max-width: 1024px) {
    .containerProducts {
        max-width: 90%;
        padding: 15px;
    }

    .logo {
        width: 10%;
    }

    h1,
    h2,
    h3 {
        font-size: 32px;
        text-align: center;
    }

    .about-content {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    nav {
        flex-direction: row;
        gap: 10px;
        font-size: 10px;
    }

    a {
        margin: 0;
        padding: 10px 0;
    }

    .containerProducts {
        max-width: 95%;
        padding: 10px;
    }

    .container {
        flex-direction: column;
        gap: 20px;
    }

    .logo {
        width: 20%;
        margin: 0 auto;
    }

    .containerTop {
        flex-direction: column;
        text-align: center;
    }

    .headerImage {
        max-height: 30vh;
    }

    .info h3 {
        font-size: 24px;
    }

    .about-content h2 {
        font-size: 28px;
    }

    .about-content p {
        font-size: 18px;
    }

    .service-item {
        font-size: 1rem;
        padding: 10px 15px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .info p,
    .footer p {
        font-size: 14px;
    }

    h2 {
        font-size: 24px;
    }

    nav {
        display: none;
    }

    .about-content h2 {
        font-size: 24px;
    }

    .about-content p {
        font-size: 16px;
    }

    .service-item {
        font-size: 0.9rem;
        padding: 8px 10px;
    }

    .about-us {
        padding: 30px 10px;
    }

    .about-content {
        padding: 15px;
    }
}

.about-us {
    background-color: #1b1a1a;
    padding: 20px;
    text-align: center;
}

.about-content {
    max-width: 1100px;
    margin: 0 auto;
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.about-content h2 {
    font-family: 'Graduate', serif;
    color: #292828;
    font-size: 36px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.separator {
    margin: 20px 0;
}

.separator img {
    width: 80px;
    height: auto;
}

.about-content p {
    font-family: Arial, sans-serif;
    color: #555;
    font-size: 23px;
    line-height: 1.6;
    margin-bottom: 15px;
    text-align: justify;
}

@media (max-width: 768px) {
    .about-content h2 {
        font-size: 28px;
    }

    .about-content p {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .about-content h2 {
        font-size: 24px;
    }

    .about-content p {
        font-size: 16px;
    }
}

.containerProducts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #111;
    padding: 20px 25px;
    border: 2px solid #FFD700;
    border-radius: 10px;
    font-family: "Graduate", serif;
    font-size: 1.2rem;
    color: white;
    box-shadow: 0 0 8px #00000060;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    border-color: #ffcc00;
}

.service-name {
    flex-grow: 1;
    text-align: left;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-price {
    text-align: right;
    font-weight: bold;
    color: #FFD700;
    margin-left: 15px;
}

@media (max-width: 768px) {
    .service-item {
        font-size: 1rem;
        padding: 10px 15px;
    }
}

@media (max-width: 480px) {
    .service-item {
        font-size: 0.9rem;
        padding: 8px 10px;
    }
}