/* =============================== */
/* 🎯 HEADER PRINCIPAL - COM FRUTAS */
/* =============================== */

.maca-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(30, 30, 30, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--roxo);
    z-index: 1000;
    transition: all 0.3s ease;
}

.maca-header.scrolled {
    background: rgba(20, 20, 20, 0.98);
    box-shadow: 0 4px 20px rgba(138, 43, 226, 0.15);
}

.banana-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

/* =============================== */
/* 🎯 LOGO/BRAND */
/* =============================== */

.uva-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.morango-logo {
    position: relative;
    width: 45px;
    height: 45px;
}

.laranja-foto {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--roxo);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.kiwi-glow {
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--roxo), #4a00e0);
    opacity: 0;
    animation: abacaxi-pulse 3s ease-in-out infinite;
    z-index: 1;
}

@keyframes abacaxi-pulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

.manga-nome {
    font-weight: 600;
    font-size: 1.25rem;
    background: linear-gradient(135deg, var(--roxo), #4a00e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* =============================== */
/* 🎯 NAVEGAÇÃO DESKTOP */
/* =============================== */

.melancia-nav {
    display: flex;
    gap: 8px;
    align-items: center;
}

.pessego-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    color: var(--texto);
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pessego-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--roxo), #4a00e0);
    transition: left 0.3s ease;
    z-index: -1;
}

.pessego-link:hover::before {
    left: 0;
}

.pessego-link:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(138, 43, 226, 0.3);
}

.caju-icone {
    font-size: 1.1rem;
    width: 16px;
    text-align: center;
}

.goiaba-texto {
    font-weight: 500;
    font-size: 0.9rem;
}

/* =============================== */
/* 🎯 NAVEGAÇÃO MOBILE */
/* =============================== */

.limao-mobile {
    display: none;
}

.maracuja-toggle {
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 4px;
    transition: transform 0.3s ease;
}

.cenoura-line {
    width: 25px;
    height: 2px;
    background: var(--texto);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.maracuja-toggle.active .cenoura-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
    background: var(--roxo);
}

.maracuja-toggle.active .cenoura-line:nth-child(2) {
    opacity: 0;
}

.maracuja-toggle.active .cenoura-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
    background: var(--roxo);
}

.acerola-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 300px;
    height: 100vh;
    background: rgba(30, 30, 30, 0.95);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-left: 1px solid var(--roxo);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1002;
    display: flex;
    flex-direction: column;
}

.acerola-menu.active {
    right: 0;
}

.jabuticaba-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--roxo);
}

.coco-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--texto);
}

.tomate-foto {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--roxo);
}

.ameixa-close {
    background: none;
    border: none;
    color: var(--texto);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 8px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.ameixa-close:hover {
    background: rgba(138, 43, 226, 0.1);
    color: var(--roxo);
}

.pitaya-links {
    display: flex;
    flex-direction: column;
    padding: 1rem 0;
}

.roma-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 1rem 1.5rem;
    color: var(--texto);
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.roma-link:hover {
    background: rgba(138, 43, 226, 0.1);
    border-left-color: var(--roxo);
    padding-left: 2rem;
}

.caju-icone {
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

.overlay-melao {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1001;
}

.overlay-melao.active {
    opacity: 1;
    visibility: visible;
}

/* =============================== */
/* 🎯 RESPONSIVIDADE */
/* =============================== */

@media (max-width: 768px) {
    .melancia-nav {
        display: none;
    }
    
    .limao-mobile {
        display: block;
    }
    
    .banana-wrapper {
        padding: 0 1rem;
    }
    
    .manga-nome {
        font-size: 1.1rem;
    }
    
    .morango-logo {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .banana-wrapper {
        height: 60px;
    }
    
    .manga-nome {
        font-size: 1rem;
    }
    
    .acerola-menu {
        width: 100%;
        max-width: none;
    }
}

/* =============================== */
/* 🎯 ANIMAÇÃO DE ENTRADA */
/* =============================== */

@keyframes entrada-melancia {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.maca-header {
    animation: entrada-melancia 0.5s ease-out;
}

/* =============================== */
/* 🎯 ESTADO ACTIVE DOS LINKS */
/* =============================== */

.pessego-link.active,
.roma-link.active {
    font-weight: 600;
}

.pessego-link.active::before {
    left: 0 !important;
}

.roma-link.active {
    border-left-color: var(--roxo) !important;
    background: rgba(138, 43, 226, 0.1);
}
* {
  -webkit-tap-highlight-color: transparent;
}
