* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

/* ==================== CONTENEDOR PRINCIPAL ==================== */
.inicio {
    position: relative;
    width: 100%;
    min-height: 100vh;
}

.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #dda364;
    z-index: -1;
}

/* ==================== CONTENIDO PRINCIPAL ==================== */
.contenido-principal {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 40px;
    gap: 60px;
    min-height: calc(100vh - 120px);
}

/* ==================== CONTENEDOR INFORMACIÓN ==================== */
.contenedor-informacion {
    flex: 1;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contenedor-informacion h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 48px;
    color: #f6f6f6;
    line-height: 1.2;
}

.descripcion {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 20px;
    color: #000000;
    line-height: 1.5;
}

.button-acerca {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
    background-color: #fff8f2;
    border-radius: 4px;
    padding: 16px 32px;
    color: #8f6b51;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    text-decoration: none;
    width: fit-content;
    transition: all 0.3s;
}

.button-acerca:hover {
    background-color: #f5ead8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.arrow-icon-brown {
    width: 24px;
    height: 24px;
    transform: rotate(180deg) scaleY(-1);
    flex-shrink: 0;
}

/* ==================== PRODUCTO ==================== */
.producto {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 600px;
}

.producto-imagen {
    width: 100%;
    max-width: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.producto-imagen img {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
}

/* ==================== TABLETS (768px - 1023px) ==================== */
@media (max-width: 1023px) {

    .contenido-principal {
        flex-direction: column;
        padding: 40px 30px;
        gap: 50px;
    }

    .contenedor-informacion {
        max-width: 100%;
        text-align: center;
        align-items: center;
    }

    .contenedor-informacion h2 {
        font-size: 36px;
    }

    .descripcion {
        font-size: 18px;
        max-width: 500px;
    }

    .producto {
        max-width: 450px;
    }
}

/* ==================== MÓVILES (320px - 767px) ==================== */
@media (max-width: 767px) {

    /* Contenido principal móvil */
    .contenido-principal {
        flex-direction: column-reverse;
        padding: 30px 20px;
        gap: 40px;
        min-height: auto;
    }

    /* Información */
    .contenedor-informacion {
        text-align: center;
        align-items: center;
    }

    .contenedor-informacion h2 {
        font-size: 28px;
        line-height: 1.3;
    }

    .descripcion {
        font-size: 16px;
        max-width: 100%;
    }

    .button-acerca {
        width: 100%;
        padding: 14px 24px;
        font-size: 16px;
    }

    /* Producto */
    .producto {
        width: 100%;
        max-width: 350px;
    }

    .producto-imagen {
        max-width: 100%;
    }
}

/* ==================== MÓVILES PEQUEÑOS (320px - 480px) ==================== */
@media (max-width: 480px) {
    .contenedor-informacion h2 {
        font-size: 24px;
    }

    .descripcion {
        font-size: 15px;
    }

    .button-acerca {
        font-size: 15px;
        padding: 12px 20px;
    }

    .producto {
        max-width: 280px;
    }
}

/* ==================== ESCRITORIO GRANDE (1440px+) ==================== */
@media (min-width: 1440px) {
    .contenido-principal {
        max-width: 1400px;
        margin: 0 auto;
        padding: 80px 60px;
    }

    .contenedor-informacion h2 {
        font-size: 56px;
    }

    .descripcion {
        font-size: 22px;
    }

    .producto-imagen {
        max-width: 600px;
    }
}