/* ========================================
   GRAVATAÍ TRENDS - ATUALIZAÇÕES MANOELA
   Phase 3: Logo refinement and editions
   ======================================== */

/* ===================================
   HEADER LOGO - GT Abbreviated
   =================================== */

.logo-gt {
    height: 50px;
    width: auto;
    display: block;
}

.logo-text {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--text-primary);
    letter-spacing: 0.1em;
    margin: 0;
}

/* ===================================
   HERO LOGO BANNER - Official Logo
   =================================== */

.hero-logo-banner {
    width: 100%;
    background-color: #FFFFFF;
    padding: var(--spacing-lg) 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid #E5E5E5;
}

.hero-logo-image {
    max-width: 250px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.hero-logo-giant {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    color: #000000;
    text-align: center;
    letter-spacing: 0.1em;
    margin: 0;
    padding: var(--spacing-md) var(--spacing-lg);
    line-height: 1.1;
}

/* ===================================
   HERO ADJUSTMENTS
   =================================== */

.hero {
    padding-top: 0 !important;
}

.hero .hero-content {
    padding-top: var(--spacing-xl);
}

.hero-title-small {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
    line-height: 1.3;
}

.hero-subtitle {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-sm);
}

/* ===================================
   EDITIONS SECTION - Centralized
   =================================== */

.editions {
    padding: var(--spacing-section) 0;
    background-color: var(--bg-secondary);
}

.editions-grid {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
    margin-top: var(--spacing-xl);
}

.edition-card {
    flex: 0 0 auto;
    width: 280px;
    background: var(--bg-primary);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}

.edition-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.edition-cover {
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
}

.edition-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;      /* não corta */
    object-position: center;  /* centraliza */
    transition: transform 0.3s ease;
}

.edition-card:hover .edition-cover img {
    transform: scale(1.05);
}

.edition-info {
    padding: var(--spacing-md);
    text-align: center;
}

.edition-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 var(--spacing-xs) 0;
}

.edition-date {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0;
}

/* ===================================
   RESPONSIVE ADJUSTMENTS
   =================================== */

@media (max-width: 768px) {
    .hero-logo-image {
        max-width: 200px;
    }
    
    .logo-gt {
        height: 40px;
    }
    
    .editions-grid {
        gap: var(--spacing-md);
    }
    
    .edition-card {
        width: 240px;
    }
}

@media (max-width: 480px) {
    .hero-logo-image {
        max-width: 160px;
    }
    
    .logo-gt {
        height: 35px;
    }
    
    .hero-logo-banner {
        padding: var(--spacing-md) 0;
    }
    
    .edition-card {
        width: 100%;
        max-width: 280px;
    }
}
/* ===================================
   MENU HAMBÚRGUER - Mobile
   =================================== */

.menu-toggle span {
    background-color: white !important;
}

@media (max-width: 768px) {
    .menu-toggle span {
        background-color: white !important;
    }
}