/* ========================================
   PINTEREST HOME - ESTILO FEMININO
   ======================================== */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Inter:wght@400;500;600&display=swap');

/* RESET & BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Paleta Pinterest Feminino */
    --bg-main: #FBF7F5;
    --bg-blush: #F3D9D6;
    --bg-nude: #E9D8C8;
    --text-primary: #2B2B2B;
    --text-muted: #6B6B6B;
    --accent-rose: #C97C7C;
    --accent-rose-hover: #B36868;
    --card-bg: #FFFFFF;
    --shadow-light: rgba(0, 0, 0, 0.06);
    --shadow-medium: rgba(0, 0, 0, 0.10);
    --shadow-hover: rgba(0, 0, 0, 0.15);
    
    /* Tipografia */
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
}

body {
    font-family: var(--font-sans);
    background: var(--bg-main);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ========================================
   TOP BAR PINTEREST
   ======================================== */
.pinterest-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 182, 193, 0.15);
    padding: 1.25rem 0;
    box-shadow: 0 2px 12px rgba(90, 74, 79, 0.04);
}

.pinterest-header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.pinterest-logo {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
    transition: transform 0.2s ease;
}

.pinterest-logo:hover {
    transform: translateY(-1px);
}

.logo-main {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    background: linear-gradient(135deg, #2b2b2b 0%, #5a4a4f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.logo-tagline {
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #ff6b9d;
    font-weight: 600;
}

.pinterest-search {
    flex: 1;
    max-width: 600px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.875rem;
    background: #fef5f8;
    border-radius: 30px;
    padding: 0.875rem 1.5rem;
    box-shadow: 0 2px 8px rgba(255, 107, 157, 0.08);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 182, 193, 0.15);
}

.pinterest-search:focus-within {
    box-shadow: 0 4px 16px rgba(255, 107, 157, 0.15);
    border-color: rgba(255, 107, 157, 0.3);
    background: white;
}

.pinterest-search svg {
    color: #ff6b9d;
    flex-shrink: 0;
}

.pinterest-search input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 0.9375rem;
    color: var(--text-primary);
    background: transparent;
    font-family: var(--font-sans);
    font-weight: 500;
}

.pinterest-search input::placeholder {
    color: var(--text-muted);
    font-weight: 400;
}

/* ========================================
   HERO INSPIRACIONAL (AJUSTADO PINTEREST)
   ======================================== */
.home-hero-pinterest {
    background: linear-gradient(135deg, #fef5f8 0%, #fff9fb 50%, var(--bg-main) 100%);
    padding: 2rem 1.5rem 1.5rem;
    border-bottom: 1px solid rgba(43, 43, 43, 0.06);
    position: relative;
    overflow: hidden;
}

.home-hero-pinterest::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(255, 182, 193, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(255, 192, 203, 0.06) 0%, transparent 40%);
    pointer-events: none;
}

.home-hero-container-pinterest {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.home-hero-content-pinterest {
    text-align: left;
}

.home-hero-content-pinterest h1 {
    font-family: var(--font-serif);
    font-size: clamp(1.875rem, 4vw, 2.5rem);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    letter-spacing: -0.5px;
    line-height: 1.2;
    background: linear-gradient(135deg, #2b2b2b 0%, #5a4a4f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.home-hero-content-pinterest p {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.25rem;
    font-weight: 400;
}

/* Chips de Categorias no Hero */
.hero-categories-chips {
    display: flex;
    gap: 0.625rem;
    flex-wrap: wrap;
    margin-top: 1.25rem;
}

.category-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: white;
    border-radius: 30px;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(90, 74, 79, 0.08), 
                0 2px 4px rgba(90, 74, 79, 0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 182, 193, 0.15);
    position: relative;
    overflow: hidden;
}

.category-chip::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 182, 193, 0.2), transparent);
    transition: left 0.5s ease;
}

.category-chip:hover::before {
    left: 100%;
}

.category-chip:hover {
    background: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 107, 157, 0.3), 
                0 3px 6px rgba(255, 107, 157, 0.2);
    border-color: transparent;
}
.home-hero-visual-pinterest {
    position: relative;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-pin-card {
    position: absolute;
    width: 170px;
    height: 220px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(90, 74, 79, 0.12), 
                0 4px 12px rgba(90, 74, 79, 0.08);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    color: inherit;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.hero-pin-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 16px 40px rgba(255, 107, 157, 0.2), 
                0 6px 16px rgba(90, 74, 79, 0.12);
    z-index: 10;
}

.hero-pin-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-pin-card:hover img {
    transform: scale(1.06);
}

.hero-pin-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
    padding: 1rem 0.875rem 0.875rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-pin-card:hover .hero-pin-overlay {
    opacity: 1;
}

.hero-pin-tag {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    padding: 0.375rem 0.875rem;
    border-radius: 12px;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--accent-rose);
    box-shadow: 0 2px 8px var(--shadow-light);
}

.hero-pin-title {
    font-family: var(--font-serif);
    font-size: 0.875rem;
    font-weight: 600;
    color: white;
    line-height: 1.3;
    margin-top: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Posicionamento dos cards (collage) */
.hero-pin-card[data-index="0"] {
    transform: rotate(-6deg) translateX(-80px) translateY(-10px);
    z-index: 1;
    width: 170px;
    height: 220px;
}

.hero-pin-card[data-index="1"] {
    transform: rotate(3deg) translateX(0) translateY(0);
    z-index: 3;
    width: 190px;
    height: 250px;
}

.hero-pin-card[data-index="2"] {
    transform: rotate(-4deg) translateX(80px) translateY(15px);
    z-index: 2;
    width: 175px;
    height: 230px;
}

.hero-pin-card:hover {
    transform: rotate(0deg) scale(1.05) !important;
    z-index: 10;
    box-shadow: 0 12px 32px var(--shadow-hover);
}

/* ========================================
   HERO MINIMALISTA (REMOVIDO - SUBSTITUÍDO)
   ======================================== */
/* Código anterior do .pinterest-hero removido */

/* Visual: Cards Sobrepostos (Collage Pins) */
.pinterest-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2.5rem 1.5rem 4rem;
}

.pinterest-feed-header p {
    font-size: 0.9375rem;
    color: var(--text-muted);
}

.pinterest-grid {
    column-count: 1;
    column-gap: 1.5rem;
}

@media (min-width: 768px) {
    .pinterest-grid {
        column-count: 2;
        column-gap: 1.5rem;
    }
}

@media (min-width: 992px) {
    .pinterest-grid {
        column-count: 3;
        column-gap: 1.5rem;
    }
}

@media (min-width: 1200px) {
    .pinterest-grid {
        column-count: 4;
        column-gap: 1.5rem;
    }
}

/* ========================================
   PIN CARD (CARD PINTEREST)
   ======================================== */
.pin-card {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    break-inside: avoid;
    box-shadow: 0 2px 12px var(--shadow-light);
    transition: all 0.3s ease;
    position: relative;
}

.pin-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px var(--shadow-hover);
}

.pin-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.pin-image-wrapper {
    position: relative;
    overflow: hidden;
    background: var(--bg-nude);
}

/* Variação de alturas para efeito Pinterest */
.pin-card:nth-child(3n+1) .pin-image {
    aspect-ratio: 3/4; /* Alto */
}

.pin-card:nth-child(3n+2) .pin-image {
    aspect-ratio: 4/5; /* Médio */
}

.pin-card:nth-child(3n+3) .pin-image {
    aspect-ratio: 1/1; /* Quadrado */
}

.pin-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.pin-card:hover .pin-image {
    transform: scale(1.03);
}

.pin-categories-tags {
    position: absolute;
    top: 0.875rem;
    left: 0.875rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    max-width: calc(100% - 1.75rem);
}

.pin-category-tag {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    padding: 0.375rem 0.875rem;
    border-radius: 12px;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--accent-rose);
    box-shadow: 0 2px 8px var(--shadow-light);
    white-space: nowrap;
}

.pin-category-more {
    background: rgba(201, 124, 124, 0.95);
    color: white;
    font-size: 0.625rem;
    padding: 0.375rem 0.625rem;
}

.pin-content {
    padding: 1.25rem 1.25rem 1rem;
}

.pin-title {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.35;
    color: var(--text-primary);
    margin-bottom: 0.625rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    letter-spacing: -0.2px;
}

.pin-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.pin-save-btn {
    position: absolute;
    top: 0.875rem;
    right: 0.875rem;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px var(--shadow-light);
    color: var(--text-primary);
}

.pin-card:hover .pin-save-btn {
    opacity: 1;
    transform: scale(1);
}

.pin-save-btn:hover {
    background: var(--accent-rose);
    color: white;
}

.pin-read-link {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 1.25rem 1.25rem;
    color: var(--accent-rose);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.2s ease;
    opacity: 0;
}

.pin-card:hover .pin-read-link {
    opacity: 1;
}

.pin-read-link:hover {
    color: var(--accent-rose-hover);
}

/* ========================================
   FOOTER MINIMALISTA
   ======================================== */
.pinterest-footer {
    background: linear-gradient(135deg, #fef5f8 0%, #fff9fb 100%);
    border-top: 2px solid rgba(255, 182, 193, 0.2);
    padding: 3rem 1.5rem 2.5rem;
    margin-top: 4rem;
    position: relative;
}

.pinterest-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ff6b9d, transparent);
    opacity: 0.5;
}

.pinterest-footer-content {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.footer-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 0.25rem;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff6b9d, #c44569);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: #ff6b9d;
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-copy {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 400;
    margin-top: 1rem;
}

/* ========================================
   EMPTY STATE
   ======================================== */
.pinterest-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 1.5rem;
    color: var(--text-muted);
}

/* ========================================
   RESPONSIVE MOBILE
   ======================================== */
@media (max-width: 991px) and (min-width: 768px) {
    /* Tablet */
    .home-hero-container-pinterest {
        gap: 2rem;
    }
    
    .home-hero-visual-pinterest {
        height: 280px;
    }
    
    .hero-pin-card[data-index="0"] {
        width: 150px;
        height: 200px;
    }
    
    .hero-pin-card[data-index="1"] {
        width: 170px;
        height: 220px;
    }
    
    .hero-pin-card[data-index="2"] {
        width: 155px;
        height: 205px;
    }
    
    .trending-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 767px) {
    .pinterest-header {
        position: relative;
    }
    
    .pinterest-header-container {
        flex-direction: column;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .pinterest-search {
        width: 100%;
        max-width: 100%;
    }
    
    /* Hero Mobile */
    .home-hero-pinterest {
        padding: 2rem 1rem 1.5rem;
    }
    
    .home-hero-container-pinterest {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .home-hero-content-pinterest {
        text-align: center;
    }
    
    .home-hero-content-pinterest h1 {
        font-size: 1.75rem;
    }
    
    .home-hero-content-pinterest p {
        font-size: 1rem;
    }
    
    .hero-categories-chips {
        justify-content: center;
        gap: 0.5rem;
        flex-wrap: wrap;
        padding: 0.5rem 0;
    }
    
    .category-chip {
        font-size: 0.8125rem;
        padding: 0.5rem 1rem;
        white-space: nowrap;
    }
    
    .category-chip .emoji {
        font-size: 0.875rem;
    }
    
    .home-hero-visual-pinterest {
        height: 220px;
    }
    
    .hero-pin-card[data-index="0"] {
        width: 130px;
        height: 170px;
        transform: rotate(-6deg) translateX(-60px) translateY(-5px);
    }
    
    .hero-pin-card[data-index="1"] {
        width: 145px;
        height: 190px;
        transform: rotate(3deg) translateX(0) translateY(0);
    }
    
    .hero-pin-card[data-index="2"] {
        width: 135px;
        height: 175px;
        transform: rotate(-4deg) translateX(60px) translateY(10px);
    }
    
    /* Tendências Mobile */
    .trending-section {
        padding: 2.5rem 1rem;
    }
    
    .trending-header {
        margin-bottom: 2rem;
    }
    
    .trending-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .trending-image-wrapper {
        height: 240px;
    }
    
    /* Feed Mobile */
    .pinterest-container {
        padding: 2rem 1rem 3rem;
    }
    
    .pinterest-grid {
        column-gap: 1rem;
    }
    
    .pin-card {
        margin-bottom: 1rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}

/* ========================================
   PERFORMANCE & ACESSIBILIDADE
   ======================================== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus visible para acessibilidade */
*:focus-visible {
    outline: 2px solid var(--accent-rose);
    outline-offset: 2px;
}


/* ========================================
   CATEGORY PAGE
   ======================================== */
.category-hero-pinterest {
    background: linear-gradient(135deg, var(--bg-blush) 0%, var(--bg-nude) 100%);
    padding: 3rem 1.5rem 2.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(43, 43, 43, 0.08);
}

.category-hero-container {
    max-width: 800px;
    margin: 0 auto;
}

.category-hero-pinterest h1 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    letter-spacing: -0.5px;
}

.category-hero-pinterest p {
    font-size: 1.125rem;
    color: var(--text-muted);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .category-hero-pinterest {
        padding: 2rem 1.5rem 1.5rem;
    }
    
    .category-hero-pinterest h1 {
        font-size: 1.875rem;
    }
    
    .category-hero-pinterest p {
        font-size: 1rem;
    }
}


/* ========================================
   EDITORIAL SECTIONS
   ======================================== */
.editorial-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.editorial-container-full {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header-editorial {
    text-align: center;
    margin-bottom: 2rem;
    padding-top: 0;
}

.section-header-editorial h2 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.section-header-editorial p {
    font-size: 1.125rem;
    color: var(--text-muted);
    font-weight: 300;
}

/* ========================================
   FEATURED EDITORIAL SECTION
   ======================================== */
.featured-editorial-section {
    background: var(--card-bg);
    padding-bottom: 6rem;
}

.featured-editorial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.featured-editorial-card {
    background: var(--bg-main);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(90, 74, 79, 0.08);
}

.featured-editorial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(90, 74, 79, 0.15);
}

.featured-editorial-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.featured-editorial-image {
    width: 100%;
    height: 320px;
    overflow: hidden;
    background: var(--bg-nude);
}

.featured-editorial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.featured-editorial-card:hover .featured-editorial-image img {
    transform: scale(1.05);
}

.featured-editorial-content {
    padding: 2rem;
}

.featured-editorial-category {
    display: inline-block;
    background: var(--soft-rose);
    color: var(--accent-rose);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.25rem;
}

.featured-editorial-title {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-primary);
    margin-bottom: 1rem;
    letter-spacing: -0.3px;
}

.featured-editorial-excerpt {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
}

.featured-editorial-meta {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* ========================================
   MASONRY GRID EDITORIAL
   ======================================== */
.editorial-masonry-container {
    background: var(--bg-main);
    padding: 1rem 0 4rem 0;
}

.editorial-layout-with-sidebar {
    display: grid;
    grid-template-columns: minmax(0, 900px) 320px;
    gap: 60px;
    align-items: start;
    max-width: 1400px;
    margin: 0 auto;
    justify-content: center;
}

.editorial-main-content {
    min-width: 0;
    width: 100%;
}

.masonry-grid-editorial {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.masonry-card-editorial {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(90, 74, 79, 0.08);
    width: 100%;
    border: 2px solid rgba(255, 182, 193, 0.1);
}

.masonry-card-editorial:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(255, 107, 157, 0.15), 
                0 4px 16px rgba(90, 74, 79, 0.1);
    border-color: rgba(255, 107, 157, 0.2);
}

.masonry-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.masonry-card-image {
    position: relative;
    width: 100%;
    height: 260px;
    overflow: hidden;
    background: linear-gradient(135deg, #fef5f8 0%, #fff9fb 100%);
}

.masonry-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.masonry-card-editorial:hover .masonry-card-image img {
    transform: scale(1.08);
}

.masonry-card-categories {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    max-width: calc(100% - 2rem);
}

.masonry-category-tag {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    padding: 0.5rem 1.125rem;
    border-radius: 50px;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #ff6b9d;
    box-shadow: 0 4px 12px rgba(255, 107, 157, 0.2);
    border: 1px solid rgba(255, 107, 157, 0.2);
}

.masonry-card-content {
    padding: 1.75rem;
}

.masonry-card-title {
    font-family: var(--font-serif);
    font-size: 1.375rem;
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-primary);
    margin-bottom: 0.875rem;
    letter-spacing: -0.5px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 3.5rem;
}

.masonry-card-excerpt {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--text-secondary);
    margin-bottom: 1.125rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.masonry-card-meta {
    font-size: 0.8125rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.editorial-empty {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-muted);
    font-size: 1.125rem;
}

/* ========================================
   SIDEBAR
   ======================================== */
.editorial-sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 320px;
}

.sidebar-card {
    background: white;
    border-radius: 24px;
    padding: 2.25rem;
    box-shadow: 0 4px 16px rgba(90, 74, 79, 0.08);
    border: 2px solid rgba(255, 182, 193, 0.1);
    transition: all 0.3s ease;
}

.sidebar-card:hover {
    box-shadow: 0 8px 24px rgba(255, 107, 157, 0.12);
    border-color: rgba(255, 107, 157, 0.2);
}

.sidebar-title {
    font-family: var(--font-serif);
    font-size: 1.625rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #2b2b2b 0%, #5a4a4f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sidebar-text {
    font-size: 0.9375rem;
    line-height: 1.75;
    color: var(--text-secondary);
    margin-bottom: 1.125rem;
}

.sidebar-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #ff6b9d;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

.sidebar-link:hover {
    color: #c44569;
    transform: translateX(4px);
}

/* Sobre Mim */
.sidebar-about-image {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.75rem;
    border: 4px solid #fef5f8;
    box-shadow: 0 8px 24px rgba(255, 107, 157, 0.15);
    transition: transform 0.3s ease;
}

.sidebar-about-image:hover {
    transform: scale(1.05);
}

.sidebar-about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Categorias */
.sidebar-categories-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.sidebar-category-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: var(--bg-main);
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.2s;
}

.sidebar-category-item:hover {
    background: var(--soft-rose);
    transform: translateX(4px);
}

.sidebar-category-emoji {
    font-size: 1.25rem;
}

.sidebar-category-name {
    font-size: 0.9375rem;
    font-weight: 500;
}

/* Newsletter */
.sidebar-newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.sidebar-newsletter-input {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(255, 182, 193, 0.2);
    border-radius: 16px;
    font-size: 0.9375rem;
    font-family: var(--font-sans);
    color: var(--text-primary);
    background: #fef5f8;
    transition: all 0.3s ease;
}

.sidebar-newsletter-input:focus {
    outline: none;
    border-color: #ff6b9d;
    background: white;
    box-shadow: 0 4px 12px rgba(255, 107, 157, 0.1);
}

.sidebar-newsletter-input::placeholder {
    color: var(--text-muted);
}

.sidebar-newsletter-button {
    width: 100%;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
    color: white;
    border: none;
    border-radius: 16px;
    font-size: 0.9375rem;
    font-weight: 700;
    font-family: var(--font-sans);
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 12px rgba(255, 107, 157, 0.3);
}

.sidebar-newsletter-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 157, 0.4);
}

/* ========================================
   RESPONSIVE EDITORIAL
   ======================================== */

/* ========================================
   ARTICLE PAGE STYLES
   ======================================== */
.article-hero {
    background: linear-gradient(135deg, #fef5f8 0%, #fff9fb 100%);
    padding: 3rem 0 2.5rem;
    text-align: center;
    border-bottom: 2px solid rgba(255, 182, 193, 0.15);
    position: relative;
}

.article-hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ff6b9d, transparent);
    opacity: 0.5;
}

.article-hero-category {
    display: inline-block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: white;
    background: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-weight: 700;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(255, 107, 157, 0.3);
}

.article-hero h1 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 3.25rem);
    line-height: 1.15;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.8px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.article-hero-summary {
    font-size: clamp(1.0625rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 750px;
    margin: 0 auto 1.75rem;
    font-weight: 400;
}

.article-hero-meta {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Article Content Improvements */
.article-content {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-primary);
}

.article-content h2 {
    font-family: var(--font-serif);
    font-size: 2.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 3rem 0 1.5rem;
    letter-spacing: -0.5px;
    position: relative;
    padding-bottom: 1rem;
}

.article-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #ff6b9d, #c44569);
    border-radius: 2px;
}

.article-content h3 {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 2.5rem 0 1.25rem;
    letter-spacing: -0.3px;
}

.article-content p {
    margin-bottom: 1.5rem;
}

.article-content strong {
    color: #ff6b9d;
    font-weight: 600;
}

.article-content ul,
.article-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.article-content li {
    margin-bottom: 0.875rem;
    line-height: 1.8;
}

.article-content blockquote {
    border-left: 4px solid #ff6b9d;
    padding-left: 1.75rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--text-secondary);
    background: #fef5f8;
    padding: 1.5rem 1.75rem;
    border-radius: 0 12px 12px 0;
}

/* Affiliate Disclaimer */
.affiliate-disclaimer {
    background: linear-gradient(135deg, #fff9fb 0%, #fef5f8 100%);
    border-left: 4px solid #ff6b9d;
    padding: 1.5rem 2rem;
    margin: 2.5rem auto;
    border-radius: 12px;
    font-size: 0.9375rem;
    color: var(--text-secondary);
    box-shadow: 0 4px 12px rgba(255, 107, 157, 0.08);
    max-width: 720px;
    text-align: center;
}

.affiliate-disclaimer strong {
    color: #ff6b9d;
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.0625rem;
}

/* Related Posts Section */
.related-posts-section {
    margin: 4rem 0 2rem;
    padding: 3rem 0 0;
    border-top: 2px solid rgba(255, 182, 193, 0.15);
    margin-left: 80px;
}

.related-posts-title {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.related-posts-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.0625rem;
    margin-bottom: 2.5rem;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.related-post-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(90, 74, 79, 0.08);
    border: 2px solid rgba(255, 182, 193, 0.1);
}

.related-post-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(255, 107, 157, 0.15);
    border-color: rgba(255, 107, 157, 0.2);
}

.related-post-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.related-post-image-wrapper {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #f5f5f5;
}

.related-post-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}

.related-post-card:hover .related-post-image {
    transform: scale(1.08);
}

.related-post-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
    color: white;
    padding: 0.5rem 1.125rem;
    border-radius: 50px;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    box-shadow: 0 4px 12px rgba(255, 107, 157, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.related-post-content {
    padding: 1.75rem;
    background: white;
}

.related-post-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--text-primary);
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 3.5rem;
}

.related-post-meta {
    font-size: 0.8125rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Author Box */
.author-box {
    background: linear-gradient(135deg, #fef5f8 0%, #fff9fb 100%);
    border-radius: 20px;
    padding: 2rem;
    margin: 3rem 0 2rem;
    border: 2px solid rgba(255, 182, 193, 0.15);
    margin-left: 80px;
}

.author-box h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.author-box p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.author-box strong {
    color: #ff6b9d;
    font-weight: 600;
}

/* ========================================
   RESPONSIVE EDITORIAL
   ======================================== */
@media (max-width: 1024px) {
    .editorial-layout-with-sidebar {
        grid-template-columns: 1fr;
        gap: 3rem;
        max-width: 720px;
    }
    
    .editorial-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
        width: 100%;
    }
    
    .featured-editorial-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .masonry-grid-editorial {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .section-header-editorial {
        padding-top: 4rem;
        margin-bottom: 3rem;
    }
}

@media (max-width: 768px) {
    .editorial-container {
        padding: 0 1.5rem;
    }
    
    .editorial-layout-with-sidebar {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 100%;
    }
    
    .editorial-sidebar {
        grid-template-columns: 1fr;
        width: 100%;
    }
    
    .featured-editorial-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .featured-editorial-image {
        height: 280px;
    }
    
    .featured-editorial-content {
        padding: 1.5rem;
    }
    
    .featured-editorial-title {
        font-size: 1.5rem;
    }
    
    .masonry-grid-editorial {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .masonry-card-image {
        height: 260px;
    }
    
    .masonry-card-content {
        padding: 1.5rem;
    }
    
    .masonry-card-title {
        font-size: 1.25rem;
    }
    
    .section-header-editorial {
        padding-top: 3rem;
        margin-bottom: 2rem;
    }
    
    .section-header-editorial h2 {
        font-size: 2rem;
    }
}


/* ========================================
   TRENDING PRODUCTS SECTION
   ======================================== */
.trending-products-section {
    background: var(--card-bg);
    padding: 5rem 0;
    margin: 3rem 0;
}

.trending-products-section .editorial-container {
    max-width: 1400px;
}

.trending-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.trending-product-card {
    background: var(--bg-main);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(90, 74, 79, 0.08);
    width: 100%;
}

.trending-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(90, 74, 79, 0.15);
}

.trending-product-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.trending-product-image-wrapper {
    position: relative;
    width: 100%;
    height: 320px;
    overflow: hidden;
    background: var(--bg-nude);
}

.trending-product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.trending-product-card:hover .trending-product-image {
    transform: scale(1.05);
}

.trending-badge-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
}

.trending-product-content {
    padding: 1.75rem;
}

.trending-product-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--text-primary);
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 3.5rem;
}

.trending-product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-rose);
    margin-bottom: 1rem;
}

.trending-product-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--accent-rose);
    color: white;
    border-radius: 24px;
    font-size: 0.9375rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.trending-product-card:hover .trending-product-cta {
    background: var(--accent-rose-hover);
    transform: translateX(4px);
}

/* Paginação */
.trending-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    margin-top: 3rem;
}

.pagination-btn {
    padding: 0.75rem 1.25rem;
    background: var(--bg-main);
    border: 1px solid rgba(43, 43, 43, 0.1);
    border-radius: 12px;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.pagination-btn:hover {
    background: var(--accent-rose);
    border-color: var(--accent-rose);
    color: white;
    transform: translateY(-2px);
}

.pagination-btn.active {
    background: var(--accent-rose);
    border-color: var(--accent-rose);
    color: white;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 1024px) {
    .trending-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .trending-products-section {
        padding: 3rem 0;
        margin: 2rem 0;
    }
    
    .trending-products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .trending-product-image-wrapper {
        height: 280px;
    }
    
    .trending-product-content {
        padding: 1.5rem;
    }
    
    .trending-product-title {
        font-size: 1.125rem;
    }
    
    .trending-product-price {
        font-size: 1.25rem;
    }
    
    .trending-pagination {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .pagination-btn {
        padding: 0.625rem 1rem;
        font-size: 0.875rem;
    }
}


/* ========================================
   TRENDING ARTICLES SECTION
   ======================================== */
.trending-articles-section {
    background: linear-gradient(135deg, #fef5f8 0%, #fff5f7 50%, #fef5f8 100%);
    padding: 2rem 0 1rem 0;
    margin: 0;
    position: relative;
    border-top: 3px solid transparent;
    border-image: linear-gradient(90deg, transparent, #ff6b9d, transparent) 1;
    border-bottom: 3px solid transparent;
    border-image-slice: 1;
}

.trending-articles-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 107, 157, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(196, 69, 105, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.trending-articles-section .section-header-editorial {
    position: relative;
    z-index: 1;
}

.trending-articles-section .section-header-editorial h2 {
    background: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(255, 107, 157, 0.2));
}

.trending-articles-section .section-header-editorial p {
    color: #c44569;
    font-weight: 500;
}

.trending-articles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.trending-article-card {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(90, 74, 79, 0.08);
    width: 100%;
    position: relative;
    border: 2px solid rgba(255, 107, 157, 0.1);
}

.trending-article-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, #ff6b9d, #c44569);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.trending-article-card:hover::before {
    opacity: 1;
}

.trending-article-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(255, 107, 157, 0.2), 
                0 4px 16px rgba(90, 74, 79, 0.12);
    border-color: rgba(255, 107, 157, 0.3);
}

.trending-article-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.trending-article-image-wrapper {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: var(--bg-nude);
}

.trending-article-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.trending-article-card:hover .trending-article-image {
    transform: scale(1.05);
}

.trending-article-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.4);
}

.trending-article-badge-special {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
    color: white;
    padding: 0.625rem 1.25rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 6px 20px rgba(255, 107, 157, 0.5), 
                0 0 0 2px rgba(255, 255, 255, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
    animation: trendingGlow 2s ease-in-out infinite;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

@keyframes trendingGlow {
    0%, 100% {
        box-shadow: 0 6px 20px rgba(255, 107, 157, 0.5), 
                    0 0 0 2px rgba(255, 255, 255, 0.3),
                    inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }
    50% {
        box-shadow: 0 8px 25px rgba(255, 107, 157, 0.7), 
                    0 0 0 3px rgba(255, 255, 255, 0.5),
                    inset 0 1px 0 rgba(255, 255, 255, 0.5),
                    0 0 20px rgba(255, 107, 157, 0.4);
    }
}

.trending-article-badge-vip {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 50%, #ffd700 100%);
    color: #1a1a1a;
    padding: 0.625rem 1.25rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5), 
                0 0 0 2px rgba(255, 255, 255, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    gap: 0.375rem;
    animation: vipPulse 2s ease-in-out infinite;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.trending-article-badge-vip .vip-icon {
    font-size: 1rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.trending-article-badge-vip .vip-text {
    font-weight: 800;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

@keyframes vipPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5), 
                    0 0 0 2px rgba(255, 255, 255, 0.3),
                    inset 0 1px 0 rgba(255, 255, 255, 0.6);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 25px rgba(255, 215, 0, 0.7), 
                    0 0 0 3px rgba(255, 255, 255, 0.5),
                    inset 0 1px 0 rgba(255, 255, 255, 0.8);
    }
}

.trending-article-categories {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    max-width: calc(100% - 2rem);
}

.trending-article-category-tag {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    padding: 0.375rem 0.875rem;
    border-radius: 12px;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--accent-rose);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.trending-article-content {
    padding: 1.25rem;
}

.trending-article-title {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 3rem;
}

.trending-article-excerpt {
    font-size: 0.875rem;
    line-height: 1.5;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.trending-article-meta {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Responsive */
@media (max-width: 1024px) {
    .trending-articles-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .trending-articles-section {
        padding: 3rem 0;
        margin: 2rem 0;
    }
    
    .trending-articles-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .trending-article-image-wrapper {
        height: 220px;
    }
    
    .trending-article-content {
        padding: 1.5rem;
    }
    
    .trending-article-title {
        font-size: 1.125rem;
    }
}


/* Author Info com Avatar */
.author-info {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    justify-content: center;
    margin-top: 0.5rem;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    font-weight: 700;
    font-family: var(--font-serif);
    box-shadow: 0 3px 10px rgba(255, 107, 157, 0.25);
    flex-shrink: 0;
}

.author-details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
}

.author-name {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.article-date {
    font-size: 0.8125rem;
    color: var(--text-muted);
    font-weight: 500;
}

@media (max-width: 768px) {
    .author-info {
        flex-direction: column;
        gap: 0.625rem;
    }
    
    .author-details {
        align-items: center;
        text-align: center;
    }
}


/* ========================================
   FAQ SECTION
   ======================================== */
.faq-section {
    margin: 3rem 0;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.faq-title {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    text-align: center;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    background: white;
    border: 2px solid rgba(255, 182, 193, 0.15);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255, 107, 157, 0.3);
    box-shadow: 0 4px 12px rgba(255, 107, 157, 0.08);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    transition: all 0.3s ease;
    font-family: var(--font-sans);
}

.faq-question:hover {
    color: #ff6b9d;
}

.faq-question.active {
    color: #ff6b9d;
    background: linear-gradient(135deg, #fef5f8 0%, #fff9fb 100%);
}

.faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: #ff6b9d;
}

.faq-question.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 1.5rem;
}

.faq-answer.open {
    max-height: 500px;
    padding: 0 1.5rem 1.25rem;
}

.faq-answer p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
}

@media (max-width: 768px) {
    .faq-question {
        padding: 1rem 1.25rem;
        font-size: 0.9375rem;
    }
    
    .faq-answer {
        padding: 0 1.25rem;
    }
    
    .faq-answer.open {
        padding: 0 1.25rem 1rem;
    }
}


/* Category Description */
.category-description {
    max-width: 700px;
    margin: 1.5rem auto 0;
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--text-secondary);
    text-align: center;
    padding: 0 1rem;
}

.category-description p {
    margin-bottom: 0.75rem;
}


/* ========================================
   PRODUCT PAGE
   ======================================== */
.product-page-hero {
    background: linear-gradient(135deg, #fef5f8 0%, #fff9fb 100%);
    padding: 2.5rem 0 2rem;
    border-bottom: 2px solid rgba(255, 182, 193, 0.15);
}

.product-page-breadcrumb {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.product-page-breadcrumb a {
    color: #ff6b9d;
    text-decoration: none;
}

.product-page-breadcrumb a:hover {
    text-decoration: underline;
}

.product-page-hero h1 {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.product-page-rating {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1rem;
}

.rating-stars-large {
    background: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.5rem;
    font-weight: 700;
}

.rating-count-large {
    color: var(--text-muted);
    font-size: 1rem;
}

.product-page-main-card {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 3rem;
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(90, 74, 79, 0.08);
    border: 2px solid rgba(255, 182, 193, 0.1);
    margin-bottom: 2.5rem;
}

.product-page-image {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    background: #f8fafc;
}

.product-page-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-page-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-page-price {
    margin-bottom: 2rem;
}

.price-label {
    display: block;
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.price-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.product-page-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1.25rem 2.5rem;
    background: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-size: 1.125rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 107, 157, 0.3);
}

.product-page-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 157, 0.4);
}

.product-page-disclaimer {
    margin-top: 1rem;
    padding: 0.75rem;
    background: #f8fafc;
    border-radius: 8px;
}

.product-page-disclaimer small {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.product-page-section {
    margin-bottom: 2.5rem;
}

.product-page-section h2 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
}

.product-page-section h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.product-page-section p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.product-page-list {
    list-style: none;
    padding: 0;
}

.product-page-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.product-page-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ff6b9d;
    font-weight: 700;
}

.product-page-pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.pros-column,
.cons-column {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 12px;
}

.pros-column {
    border-left: 4px solid #10b981;
}

.cons-column {
    border-left: 4px solid #f59e0b;
}

.pros-column h3 {
    color: #10b981;
}

.cons-column h3 {
    color: #f59e0b;
}

.pros-column ul,
.cons-column ul {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.pros-column li,
.cons-column li {
    padding: 0.5rem 0;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.product-page-related-posts {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.product-related-post-card {
    display: block;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 182, 193, 0.1);
}

.product-related-post-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(255, 107, 157, 0.15);
    border-color: rgba(255, 107, 157, 0.3);
}

.product-related-post-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.product-related-post-content {
    padding: 1.25rem;
}

.product-related-post-content h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.post-category {
    display: inline-block;
    font-size: 0.75rem;
    color: #ff6b9d;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (max-width: 768px) {
    .product-page-main-card {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1.5rem;
    }
    
    .product-page-image {
        height: 300px;
    }
    
    .product-page-pros-cons {
        grid-template-columns: 1fr;
    }
    
    .product-page-related-posts {
        grid-template-columns: 1fr;
    }
}


/* ========================================
   MOBILE EXTRA SMALL (< 480px)
   ======================================== */
@media (max-width: 480px) {
    .home-hero-pinterest {
        padding: 1.5rem 0.75rem 1.25rem;
    }
    
    .home-hero-content-pinterest h1 {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    .home-hero-content-pinterest p {
        font-size: 0.9375rem;
    }
    
    .hero-categories-chips {
        gap: 0.375rem;
        margin-top: 1rem;
    }
    
    .category-chip {
        font-size: 0.75rem;
        padding: 0.4rem 0.875rem;
    }
    
    .category-chip .emoji {
        font-size: 0.8125rem;
    }
    
    .home-hero-visual-pinterest {
        height: 180px;
    }
    
    .hero-pin-card[data-index="0"] {
        width: 110px;
        height: 145px;
        transform: rotate(-6deg) translateX(-50px) translateY(-5px);
    }
    
    .hero-pin-card[data-index="1"] {
        width: 125px;
        height: 165px;
        transform: rotate(3deg) translateX(0) translateY(0);
    }
    
    .hero-pin-card[data-index="2"] {
        width: 115px;
        height: 150px;
        transform: rotate(-4deg) translateX(50px) translateY(10px);
    }
    
    .trending-section {
        padding: 2rem 0.75rem;
    }
    
    .trending-header h2 {
        font-size: 1.5rem;
    }
    
    .pinterest-container {
        padding: 1.5rem 0.75rem 2.5rem;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
}

/* ========================================
   LANDSCAPE MOBILE
   ======================================== */
@media (max-width: 768px) and (orientation: landscape) {
    .home-hero-visual-pinterest {
        display: none;
    }
    
    .home-hero-container-pinterest {
        grid-template-columns: 1fr;
    }
}


/* ========================================
   BLOCO INSTITUCIONAL EDITORIAL
   ======================================== */
.editorial-intro {
    padding: 50px 20px 40px;
    text-align: center;
    background: transparent;
}

.editorial-intro-inner {
    max-width: 580px;
    margin: 0 auto; /* Centralizado */
    background: #FFFFFF;
    border-left: 4px solid #ff6b9d;
    border-radius: 16px;
    padding: 24px 32px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.editorial-icon {
    display: inline-block;
    font-size: 24px;
    margin-bottom: 10px;
    opacity: 0.9;
}

.editorial-intro h2 {
    font-family: var(--font-serif);
    font-size: 22px;
    color: #ff6b9d;
    margin-bottom: 12px;
    font-weight: 600;
    line-height: 1.3;
}

.editorial-intro p {
    font-family: var(--font-sans);
    font-size: 14px;
    line-height: 1.65;
    color: #6b6468;
    margin: 0;
    font-weight: 400;
}

@media (max-width: 768px) {
    .editorial-intro {
        padding: 40px 15px 30px;
    }
    
    .editorial-intro-inner {
        max-width: 100%;
        margin: 0 auto; /* Centralizado no mobile */
        padding: 20px 24px;
        border-left-width: 3px;
        border-radius: 12px;
    }
    
    .editorial-icon {
        font-size: 22px;
        margin-bottom: 8px;
    }
    
    .editorial-intro h2 {
        font-size: 19px;
        margin-bottom: 10px;
    }
    
    .editorial-intro p {
        font-size: 13px;
        line-height: 1.6;
    }
}

/* Paginação */
.pagination-wrapper {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 2rem 0 1rem;
    padding: 0;
}

.pagination-btn {
    padding: 0.75rem 1.5rem;
    background: var(--card-bg, #fff);
    border: 1px solid var(--border, #e5e7eb);
    border-radius: 8px;
    color: var(--text-primary, #1f2937);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9375rem;
    transition: all 0.2s;
}

.pagination-btn:hover {
    background: #ff6b9d;
    border-color: #ff6b9d;
    color: white;
    transform: translateY(-2px);
}

.pagination-numbers {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pagination-number {
    min-width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--card-bg, #fff);
    border: 1px solid var(--border, #e5e7eb);
    border-radius: 8px;
    color: var(--text-primary, #1f2937);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9375rem;
    transition: all 0.2s;
}

.pagination-number:hover {
    background: #ffe5f0;
    border-color: #ff6b9d;
    color: #ff6b9d;
}

.pagination-number.active {
    background: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
    border-color: transparent;
    color: white;
    cursor: default;
}

.pagination-dots {
    color: var(--text-muted, #9ca3af);
    padding: 0 0.25rem;
}

@media (max-width: 768px) {
    .pagination {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .pagination-btn {
        padding: 0.625rem 1rem;
        font-size: 0.875rem;
    }
    
    .pagination-number {
        min-width: 36px;
        height: 36px;
        font-size: 0.875rem;
    }
}
