
/* ==================== HEADER ==================== */
.header {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content:space-between;
    padding: 20px;
    z-index: 100;
}

/* Logo móvil (oculto en desktop) */
.logo-mobile {
    display: none;
}

.logo-mobile h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 32px;
    color: white;
}

/* Menú hamburguesa (oculto en desktop) */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 101;
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    background-color: white;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ==================== NAVEGACIÓN ==================== */
.navegacion-contenedor {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 20px;
    color: #fef5f5;
    text-decoration: none;
    white-space: nowrap;
    transition: opacity 0.3s;
}

.nav-link.activo {
    font-weight: 700;
}

.nav-link:hover {
    opacity: 0.8;
}

/* ==================== TÍTULO ==================== */
.titulo-producto {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.titulo-producto h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 48px;
    color: white;
    letter-spacing: 2px;
}

/* ==================== OPCIONES INTERACTIVAS ==================== */
.opciones-interactivas {
    display: flex;
    gap: 60px;
    align-items: center;
}

.button-imc {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
    min-width: 200px;
    height: 60px;
    background-color: #955f39;
    border-radius: 4px;
    border: none;
    color: white;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    text-decoration: none;
    padding: 12px 24px;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.button-imc:hover {
    background-color: #7d4e2f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.arrow-icon {
    width: 17px;
    height: 17px;
    transform: rotate(180deg) scaleY(-1);
    flex-shrink: 0;
}

.contactanos-link {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 20px;
    color: #fff6f6;
    text-decoration: none;
    white-space: nowrap;
    transition: opacity 0.3s;
}

.contactanos-link:hover {
    opacity: 0.8;
}

/* ==================== TABLETS (768px - 1023px) ==================== */
@media (max-width: 1023px) {
    .header {
        flex-wrap: wrap;
        padding: 15px 20px;
    }

    .titulo-producto h1 {
        font-size: 36px;
    }

    .navegacion-contenedor {
        gap: 20px;
    }

    .nav-link {
        font-size: 18px;
    }

    .opciones-interactivas {
        gap: 30px;
    }

    .button-imc {
        min-width: 180px;
        font-size: 13px;
    }

    .contactanos-link {
        font-size: 18px;
    }
}

/* ==================== MÓVILES (320px - 767px) ==================== */
@media (max-width: 767px) {
    /* Header móvil */
    .header {
        padding: 15px;
        position: sticky;
        top: 0;
        background-color: rgba(221, 163, 100, 0.95);
        backdrop-filter: blur(10px);
    }

    /* Mostrar logo y menú hamburguesa */
    .logo-mobile {
        display: block;
    }

    .menu-toggle {
        display: flex;
    }

    /* Ocultar título desktop */
    .titulo-producto {
        display: none;
    }

    /* Navegación móvil */
    .navegacion-contenedor {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background-color: #955f39;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 80px 30px 30px;
        transition: right 0.3s ease;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
    }

    .navegacion-contenedor.active {
        right: 0;
    }

    .nav-link {
        width: 100%;
        padding: 15px 0;
        font-size: 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    /* Opciones interactivas móvil */
    .opciones-interactivas {
        width: 100%;
        flex-direction: column;
        gap: 15px;
        margin-top: 30px;
        padding-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }

    .button-imc {
        width: 100%;
        min-width: auto;
        font-size: 14px;
        height: 50px;
    }

    .contactanos-link {
        font-size: 18px;
        padding: 10px 0;
    }
}

/* ==================== MÓVILES PEQUEÑOS (320px - 480px) ==================== */
@media (max-width: 480px) {

}

/* ==================== ESCRITORIO GRANDE (1440px+) ==================== */
@media (min-width: 1440px) {

}