@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,600;0,700;0,900;1,300;1,400;1,600;1,700;1,900&display=swap');

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

body {
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
}

.container {
    width: 100vw;
    height: 100vh;
    background-image: url('Banner stand Expoamazónica Empaquetado-01 1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 130px;
    background-image: url('Rectangle 2.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding-left: 50px;
    z-index: 10;
}

.logo {
    height: 80px;
    width: auto;
}

.main-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100vh;
    padding: 0 80px;
}

.left-section {
    flex: 1;
    max-width: 600px;
    z-index: 5;
    margin-top: -50px;
    text-align: center;
}

.title {
    font-size: 64px;
    font-weight: 300;
    font-style: italic;
    color: white;
    line-height: 1.1;
    margin-bottom: 10px;
    text-align: center;
}

.title-white {
    color: white;
}

.title-amazon {
    font-size: 64px;
    font-weight: 700;
    font-style: italic;
    color: #1a1a1a;
    background-color: #FFD700;
    padding: 5px 30px;
    display: inline-block;
    border-radius: 50px;
    margin-bottom: 40px;
    white-space: nowrap;
}

.features {
    margin: 40px 0;
    text-align: left;
    padding-left: 20px;
}

.feature-item {
    font-size: 32px;
    font-weight: 300;
    font-style: italic;
    color: white;
    margin: 15px 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    text-align: left;
}

.cta-button {
    background-color: #FFD700;
    color: #1a1a1a;
    border: none;
    padding: 15px 50px;
    font-size: 20px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    display: inline-block;
    margin-left: 20px;
}

.cta-button:hover {
    background-color: #FFC700;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}


/* Responsive Design */
@media (max-width: 1024px) {
    .main-content {
        flex-direction: column;
        padding: 120px 40px 40px;
    }

    .left-section {
        max-width: 100%;
        margin-bottom: 40px;
    }

    .title,
    .title-amazon {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .container {
        background-image: none;
        background-color: #22865E;
    }

    .header {
        padding-left: 20px;
        height: 80px;
    }

    .logo {
        height: 50px;
    }

    .left-section {
        margin-top: 20px;
    }

    .title,
    .title-amazon {
        font-size: 36px;
    }

    .feature-item {
        font-size: 24px;
    }
}
.contact-button { background-color: #FFD700; color: #1a1a1a; text-decoration: none; padding: 12px 30px; font-size: 18px; font-weight: 600; border-radius: 8px; transition: all 0.3s ease; box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); position: absolute; right: 50px; } .contact-button:hover { background-color: #FFC700; transform: translateY(-2px); box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3); }
