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

body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-height: 100vh;
    background: #000;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
    width: 100%;
    height: 261px;
}

.header-left-container {
    display: flex;
    width: 50%;
    height: 100%;
    padding-left: 168px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.header-text-1 {
    color: #C49C48;
    font-family: 'Orbitron', sans-serif;
    font-size: 30px;
    font-weight: 400;
    line-height: normal;
}

.header-text-2 {
    color: #FFF;
    font-family: 'Orbitron', sans-serif;
    font-size: 53px;
    font-weight: 600;
    line-height: 54px;
}

.header-right-container {
    display: flex;
    width: 50%;
    height: 100%;
    padding-right: 168px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
}

.header-right-text-1 {
    width: auto;
    height: auto;
    color: #FFF;
    font-family: 'Orbitron', sans-serif;
    font-size: 22px;
    font-weight: 400;
    line-height: 42px;
    text-align: right;
}

.header-right-text-2 {
    width: auto;
    height: 42px;
    color: #a68512;
    font-family: 'Orbitron', sans-serif;
    font-size: 28px;
    font-weight: 500;
    line-height: 42px;
    text-align: right;
}

.social-links-container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 16px;
}

.social-links-container svg {
    width: 28px;
    height: 28px;
}

.content {
    display: flex;
    width: 100%;
    height: 578px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    background: url('../img/background.jpg') lightgray 50% / cover no-repeat;
}

.content-main {
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: flex-start;
    background: rgba(0, 0, 0, 0.75);
}

.content-left-container {
    display: flex;
    width: 50%;
    height: 100%;
    padding: 10px 0 10px 168px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
}

.content-text-1 {
    color: #C49C48;
    font-family: 'Poppins', sans-serif;
    font-size: 58px;
    font-weight: 500;
    line-height: normal;
}

.content-text-2 {
    color: #FFF;
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: normal;
}

.content-text-3 {
    color: #FFF;
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 200;
    line-height: normal;
}

.content-left-container ul {
    color: #FFF;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    list-style-position: inside;
}

.content-right-container {
    display: flex;
    width: 50%;
    height: 100%;
    padding-right: 168px;
    justify-content: flex-end;
    align-items: center;
    gap: 30px;
}

.image-1, .image-2, .image-3 {
    width: 226px;
    height: 302px;
    flex-shrink: 0;
    aspect-ratio: 113/151;
}

.image-1 {
    background: url('../img/model1.jpg') lightgray 50% / cover no-repeat;
}

.image-2 {
    background: url('../img/model2.jpg') lightgray 50% / cover no-repeat;
}

.image-3 {
    background: url('../img/model3.jpg') lightgray 50% / cover no-repeat;
}

footer {
    display: flex;
    width: 100%;
    height: 78px;
    padding-left: 168px;
    align-items: center;
    flex-shrink: 0;
    background: #000;
}

footer p {
    color: #FFF;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: normal;
}

footer a {
    color: #a68512;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: normal;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Estilos responsivos */
@media (max-width: 1200px) {
    .header-left-container, .header-right-container {
        padding-left: 50px;
        padding-right: 50px;
    }

    .content-left-container {
        padding-left: 50px;
    }

    .content-right-container {
        padding-right: 50px;
        gap: 20px;
    }

    .image-1, .image-2, .image-3 {
        width: 180px;
        height: 240px;
    }

    footer {
        padding-left: 50px;
    }
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        height: auto;
        padding: 20px;
    }

    .header-left-container, .header-right-container {
        width: 100%;
        padding: 0;
        align-items: center;
        text-align: center;
    }

    .header-right-text-1, .header-right-text-2 {
        width: auto;
        text-align: center;
    }

    .content {
        height: auto;
        min-height: 500px;
    }

    .content-main {
        flex-direction: column;
        align-items: center;
    }

    .content-left-container, .content-right-container {
        width: 100%;
        padding: 20px;
        align-items: center;
        text-align: center;
    }

    .content-right-container {
        justify-content: center;
        gap: 15px;
    }

    .image-1, .image-2, .image-3 {
        width: 150px;
        height: 200px;
    }

    .content-text-1 {
        font-size: 40px;
    }

    .content-text-2 {
        font-size: 18px;
    }

    .content-text-3 {
        font-size: 20px;
    }

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

@media (max-width: 480px) {
    .header-text-1 {
        font-size: 24px;
    }

    .header-text-2 {
        font-size: 36px;
        line-height: 40px;
    }

    .header-right-text-1 {
        font-size: 18px;
    }

    .header-right-text-2 {
        font-size: 24px;
    }

    .content-text-1 {
        font-size: 30px;
    }

    .content-text-2 {
        font-size: 16px;
    }

    .content-text-3 {
        font-size: 18px;
    }

    .content-left-container ul {
        font-size: 14px;
    }

    .image-1, .image-2, .image-3 {
        width: 120px;
        height: 160px;
    }

    .social-links-container svg {
        width: 24px;
        height: 24px;
    }
}