/* Reset e base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-pink: #e91e63;
    --secondary-pink: #f06292;
    --light-pink: #fce4ec;
    --dark-pink: #ad1457;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --gray: #9e9e9e;
    --dark-gray: #424242;
    --shadow: 0 4px 20px rgba(233, 30, 99, 0.15);
    --shadow-hover: 0 8px 30px rgba(233, 30, 99, 0.25);
    --border-radius: 20px;
    --font-primary: 'Poppins', sans-serif;
    --font-script: 'Dancing Script', cursive;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--dark-gray);
    background: linear-gradient(135deg, #fce4ec 0%, #f8bbd9 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999998;
}

.header .container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 20px;
}

.logo {
    font-family: var(--font-script);
    font-size: 2.5rem;
    color: var(--primary-pink);
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(233, 30, 99, 0.2);
}

.nav {
    position: relative;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 25px;
}

.nav-link:hover {
    color: var(--primary-pink);
    background: var(--light-pink);
    transform: translateY(-2px);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-pink);
    cursor: pointer;
}

/* Menu Categories */
.menu-categories {
    background: #fff5f8;
    padding: 30px 0;
}

.category-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
}

/* Estilos específicos para mobile - força aplicação */
@media screen and (max-width: 768px) {
    .menu-categories .category-buttons .cat-btn {
        background: #e91e63 !important;
        color: white !important;
        text-decoration: none !important;
        padding: 10px 16px !important;
        border-radius: 20px !important;
        font-family: 'Poppins', sans-serif !important;
        font-weight: 600 !important;
        font-size: 13px !important;
        box-shadow: 0 3px 8px rgba(233, 30, 99, 0.4) !important;
        border: none !important;
        outline: none !important;
        display: inline-block !important;
        text-align: center !important;
        -webkit-appearance: none !important;
        -moz-appearance: none !important;
        appearance: none !important;
        -webkit-tap-highlight-color: transparent !important;
    }
}

.cat-btn {
    background: #e91e63 !important;
    color: white !important;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none !important;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(233, 30, 99, 0.3);
    border: none;
    cursor: pointer;
    display: inline-block;
    text-align: center;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}

.cat-btn:hover {
    background: #c2185b !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(233, 30, 99, 0.4);
    text-decoration: none !important;
}

.cat-btn:active {
    background: #ad1457 !important;
    color: white !important;
    transform: translateY(0);
    box-shadow: 0 2px 5px rgba(233, 30, 99, 0.3);
    text-decoration: none !important;
}

.cat-btn:visited {
    color: white !important;
    text-decoration: none !important;
}

.cat-btn:link {
    color: white !important;
    text-decoration: none !important;
}

.cat-btn.active {
    background: #ad1457 !important;
    color: white !important;
    box-shadow: 0 6px 15px rgba(233, 30, 99, 0.5);
    text-decoration: none !important;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-pink), var(--secondary-pink));
    color: var(--white);
    text-align: center;
    padding: 150px 0 80px;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
}

.hero-title {
    font-family: var(--font-script);
    font-size: 4rem;
    margin-bottom: 1rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Menu Sections */
.menu-section {
    padding: 80px 0;
    position: relative;
}

.section-title {
    font-family: var(--font-script);
    font-size: 3rem;
    color: var(--primary-pink);
    text-align: center;
    margin-bottom: 3rem;
    text-shadow: 2px 2px 4px rgba(233, 30, 99, 0.2);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.menu-item {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.menu-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-pink), var(--secondary-pink));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.menu-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.menu-item:hover::before {
    transform: scaleX(1);
}

.item-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.item-description {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.item-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-pink);
    text-align: right;
}

/* Categorias especiais */
.category-special {
    background: linear-gradient(135deg, var(--light-pink), var(--white));
}

.category-special .section-title {
    color: var(--dark-pink);
}

/* Açaí section styling */
.acai-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.acai-size {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
}

.acai-size:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.acai-size h3 {
    color: var(--primary-pink);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.acai-price {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--light-pink);
}

.acai-ingredients {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--light-pink);
}

.acai-ingredients h4 {
    color: var(--dark-pink);
    margin-bottom: 0.5rem;
}

.ingredients-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.ingredient {
    background: var(--light-pink);
    color: var(--dark-pink);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Footer */
.footer {
    background: var(--dark-gray);
    color: var(--white);
    text-align: center;
    padding: 2rem 0;
    margin-top: 4rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header .container {
        justify-content: center;
    }

    .category-buttons {
        gap: 10px;
        padding: 0 15px;
    }

    .cat-btn {
        padding: 10px 16px !important;
        font-size: 13px !important;
        flex: 1;
        min-width: 120px;
        max-width: 180px;
        background: #e91e63 !important;
        color: white !important;
        text-decoration: none !important;
        border-radius: 20px !important;
        box-shadow: 0 3px 8px rgba(233, 30, 99, 0.4) !important;
    }

    .cat-btn:hover,
    .cat-btn:active,
    .cat-btn:visited,
    .cat-btn:link {
        background: #e91e63 !important;
        color: white !important;
        text-decoration: none !important;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, var(--primary-pink), var(--secondary-pink));
        flex-direction: column;
        gap: 0.5rem;
        justify-content: center;
        align-items: center;
        transform: translateX(100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;
        padding: 3rem 2rem;
        z-index: 99999;
        overflow-y: auto;
        height: 100vh;
        width: 100vw;
    }

    .nav-menu.active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
        z-index: 999999;
    }

    .nav-link {
        color: white;
        font-size: 1.4rem;
        font-weight: 500;
        padding: 1rem 2rem;
        border-radius: 15px;
        border: 2px solid transparent;
        margin: 0.8rem 0;
        width: 85%;
        max-width: 280px;
        text-align: center;
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(10px);
        transition: all 0.3s ease;
        text-transform: none;
        letter-spacing: 0.5px;
        font-family: var(--font-primary);
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
        text-decoration: none;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 50px;
        line-height: 1.2;
    }

    .nav-link:hover {
        background: rgba(255, 255, 255, 0.25);
        border-color: rgba(255, 255, 255, 0.8);
        transform: translateY(-3px) scale(1.02);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    }

    .nav-toggle {
        display: block;
        z-index: 9999999;
        background: none;
        border: none;
        font-size: 1.8rem;
        color: var(--primary-pink);
        cursor: pointer;
        padding: 0.5rem;
        border-radius: 10px;
        transition: all 0.3s ease;
        position: relative;
    }

    .nav-toggle:hover {
        background: rgba(233, 30, 99, 0.1);
        transform: scale(1.1);
    }

    .nav-toggle.active {
        color: white;
        background: rgba(255, 255, 255, 0.3);
        backdrop-filter: blur(10px);
        border: 2px solid rgba(255, 255, 255, 0.3);
    }

    .logo {
        font-size: 2rem;
        z-index: 999999;
        position: relative;
    }

    .hero {
        padding: 120px 0 60px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .menu-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .menu-item {
        padding: 1.5rem;
    }

    .item-name {
        font-size: 1.2rem;
    }

    .item-price {
        font-size: 1.3rem;
    }

    .acai-options {
        grid-template-columns: 1fr;
    }

    /* Ajustes específicos para seção de salgados */
    .tapioca-section {
        padding: 1.5rem;
    }

    .pricing-item {
        padding: 0.6rem 1rem;
    }

    .sabores-modal-btn {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }

    .modal-content {
        width: 95%;
        margin: 10% auto;
    }

    .modal-header {
        padding: 1rem 1.5rem;
    }

    .modal-header h3 {
        font-size: 1.5rem;
    }

    .modal-body {
        padding: 1.5rem;
    }

    .sabores-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 0.8rem;
    }

    .subcategory-divider {
        padding: 0.8rem 1.5rem;
        margin: 2rem 0 1.5rem;
    }

    .subcategory-divider h3 {
        font-size: 1.5rem;
    }

    /* Ajustes para tabela de açaí */
    .acai-size .acai-price {
        font-size: 0.9rem;
    }

    .ingredients-list {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .category-buttons {
        gap: 8px;
        padding: 0 10px;
    }

    .cat-btn {
        padding: 8px 12px !important;
        font-size: 12px !important;
        min-width: 100px;
        flex: 1;
        background: #e91e63 !important;
        color: white !important;
        text-decoration: none !important;
        border-radius: 18px !important;
        box-shadow: 0 2px 6px rgba(233, 30, 99, 0.4) !important;
    }

    .cat-btn:hover,
    .cat-btn:active,
    .cat-btn:visited,
    .cat-btn:link {
        background: #e91e63 !important;
        color: white !important;
        text-decoration: none !important;
    }

    .hero {
        padding: 100px 0 50px;
        margin-top: 70px;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .menu-section {
        padding: 50px 0;
    }

    .menu-item {
        padding: 1.2rem;
    }

    .logo {
        font-size: 1.8rem;
    }

    .header .container {
        padding: 0.8rem 15px;
    }

    .item-name {
        font-size: 1.1rem;
    }

    .item-description {
        font-size: 0.85rem;
    }

    .item-price {
        font-size: 1.2rem;
    }

    /* Menu mobile ainda menor */
    .nav-link {
        font-size: 1.2rem;
        padding: 0.8rem 1.5rem;
        margin: 0.5rem 0;
        width: 90%;
        max-width: 250px;
    }

    .nav-menu {
        padding: 2rem 1rem;
        gap: 0.3rem;
    }

    /* Ajustes para elementos específicos em mobile */
    .acai-size {
        padding: 1.2rem;
    }

    .acai-price {
        flex-direction: column;
        gap: 0.3rem;
        text-align: center;
        border-bottom: none;
        margin-bottom: 0.8rem;
        padding: 0.8rem;
        background: var(--light-pink);
        border-radius: 10px;
    }

    .acai-price .price-highlight {
        padding: 0.3rem 0.8rem;
        font-size: 1rem;
    }

    .ingredient {
        padding: 0.2rem 0.6rem;
        font-size: 0.75rem;
    }

    /* Seção de tapiocas salgadas mobile */
    #salgados .menu-grid > div:last-child > div > div:last-child > div {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }

    #salgados .menu-grid > div:last-child > div > div:last-child > div > div {
        font-size: 0.8rem;
        line-height: 1.4;
    }

    /* Melhor espaçamento para subtítulos */
    h3[style*="text-align: center"] {
        font-size: 1.3rem !important;
        margin: 2rem 0 1.5rem !important;
    }
}

/* Landscape mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        padding: 100px 0 40px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .menu-section {
        padding: 60px 0;
    }
}

/* Tablets */
@media (min-width: 769px) and (max-width: 1024px) {
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.8rem;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .section-title {
        font-size: 2.8rem;
    }
}

/* Large screens */
@media (min-width: 1200px) {
    .container {
        max-width: 1400px;
    }

    .menu-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .hero-title {
        font-size: 4.5rem;
    }

    .section-title {
        font-size: 3.5rem;
    }
}

/* Animações removidas para melhor performance */

/* Scroll suave */
html {
    scroll-behavior: smooth;
}

/* Estilos para destaque de preços */
.price-highlight {
    background: linear-gradient(135deg, var(--primary-pink), var(--secondary-pink));
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

/* Estilos para seção de tapiocas */
.tapioca-section {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    display: block;
}

.tapioca-pricing {
    margin-bottom: 0;
}

.tapioca-pricing h4 {
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.3rem;
}

.pricing-grid {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.pricing-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 1rem;
    background: var(--light-pink);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.pricing-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.2);
}

.sabor-count {
    font-weight: 500;
    color: var(--dark-gray);
}

.sabores-modal-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-pink), var(--secondary-pink));
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.sabores-modal-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.sabores-modal-btn i {
    font-size: 1.2rem;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 5000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: var(--white);
    margin: 5% auto;
    padding: 0;
    border-radius: var(--border-radius);
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow: hidden;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header {
    background: linear-gradient(135deg, var(--primary-pink), var(--secondary-pink));
    color: white;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    font-family: var(--font-script);
    font-size: 1.8rem;
}

.close {
    color: white;
    float: right;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: rgba(255, 255, 255, 0.7);
}

.modal-body {
    padding: 2rem;
    max-height: 60vh;
    overflow-y: auto;
}

.sabores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.sabor-card {
    background: var(--light-pink);
    padding: 1rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.sabor-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(233, 30, 99, 0.2);
    border-color: var(--primary-pink);
}

.sabor-card.special {
    background: linear-gradient(135deg, var(--primary-pink), var(--secondary-pink));
    color: white;
}

.sabor-name {
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.sabor-price {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-weight: 700;
    font-size: 0.9rem;
}

.complementos-modal {
    border-top: 2px solid var(--light-pink);
    padding-top: 1.5rem;
}

.complementos-modal h4 {
    color: var(--primary-pink);
    margin-bottom: 1rem;
    text-align: center;
    font-size: 1.2rem;
}

.complementos-list {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

    .complemento-tag {
        background: var(--light-pink);
        color: var(--dark-pink);
        padding: 0.5rem 1rem;
        border-radius: 20px;
        font-weight: 500;
        font-size: 0.9rem;
    }

    /* Menu fullscreen animations */
    .nav-menu::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="pattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23pattern)"/></svg>');
        opacity: 0.3;
        z-index: -1;
    }

    /* Garantir que o menu apareça por cima */
    body.menu-open .nav-menu {
        z-index: 999999 !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
    }

    body.menu-open .header {
        z-index: 999998;
    }

    /* Prevenir problemas de posicionamento */
    body.menu-open {
        position: fixed;
        width: 100%;
        top: 0;
        left: 0;
    }

    .nav-link {
        position: relative;
        overflow: hidden;
    }

    .nav-link::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
        transition: left 0.5s ease;
    }

    .nav-link:hover::before {
        left: 100%;
    }

    /* Animação staggered para os links do menu */
    .nav-menu.active .nav-link:nth-child(1) { animation: slideInRight 0.3s ease 0.1s both; }
    .nav-menu.active .nav-link:nth-child(2) { animation: slideInRight 0.3s ease 0.2s both; }
    .nav-menu.active .nav-link:nth-child(3) { animation: slideInRight 0.3s ease 0.3s both; }
    .nav-menu.active .nav-link:nth-child(4) { animation: slideInRight 0.3s ease 0.4s both; }
    .nav-menu.active .nav-link:nth-child(5) { animation: slideInRight 0.3s ease 0.5s both; }
    .nav-menu.active .nav-link:nth-child(6) { animation: slideInRight 0.3s ease 0.6s both; }
    .nav-menu.active .nav-link:nth-child(7) { animation: slideInRight 0.3s ease 0.7s both; }
    .nav-menu.active .nav-link:nth-child(8) { animation: slideInRight 0.3s ease 0.8s both; }
    .nav-menu.active .nav-link:nth-child(9) { animation: slideInRight 0.3s ease 0.9s both; }

    @keyframes slideInRight {
        from {
            opacity: 0;
            transform: translateX(50px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }/* Separadores de subcategorias */
.subcategory-divider {
    background: linear-gradient(135deg, var(--primary-pink), var(--secondary-pink));
    color: white;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-align: center;
    margin: 3rem 0 2rem;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.subcategory-divider::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.subcategory-divider h3 {
    margin: 0;
    font-family: var(--font-script);
    font-size: 1.8rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}