/*
Theme Name: AfiliadoTheme
Theme URI: 
Author: Antigravity Assistant
Author URI: 
Description: Um tema focado em conversão de links de afiliado com visual de e-commerce moderno.
Version: 1.1.5
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.0
Text Domain: afiliadotheme
*/

/* ==========================================================================
   CSS Variables
   ========================================================================== */
:root {
	--color-primary: #2D6CDF;
	--color-light: #6FA3FF;
	--color-dark: #1E4FA8;
	--color-soft: #F4F7FB; /* Cor de fundo da home */
	--color-bg: #FFFFFF;
	--color-text: #555555; /* Texto mais suave para subcategorias */
	--color-title: #111111;
	
	--color-buy-button: #318a47; /* Verde do botão (baseado no layout) */
	--color-buy-button-hover: #267138;
}

/* ==========================================================================
   Base Reset
   ========================================================================== */
*, *::before, *::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	background-color: var(--color-soft); /* Fundo geral claro */
	color: var(--color-text);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
	color: var(--color-title);
	font-weight: 700;
	line-height: 1.3;
}

a {
	color: var(--color-primary);
	text-decoration: none;
	transition: color 0.2s ease;
}

a:hover {
	color: var(--color-dark);
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

.container {
	max-width: 1140px;
	margin: 0 auto;
	padding: 0 20px;
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
	background-color: var(--color-bg);
	padding: 20px 0;
	position: sticky;
	top: 0;
	z-index: 100;
    /* Remover borda pra ficar limpo e botar sombra bem suave */
	box-shadow: 0 4px 20px rgba(0,0,0,0.02);
}

.header-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--color-title);
}
.logo-link:hover { color: var(--color-title); }

.site-bag-icon {
    stroke: var(--color-title);
}

.site-influencer-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--aft-pink);
    flex-shrink: 0;
}

.site-title-text {
	font-size: 1.6rem;
	font-weight: 800;
	margin: 0;
    letter-spacing: -0.5px;
}

.custom-logo-wrapper img, .custom-logo {
    max-height: 40px;
    width: auto;
    display: block;
}

.main-navigation ul, .main-navigation div > ul {
	list-style: none;
	display: flex;
	gap: 25px;
    margin: 0;
    padding: 0;
}

.main-navigation a {
	color: var(--color-text);
	font-weight: 500;
    font-size: 1rem;
}

.main-navigation a:hover {
	color: var(--color-title);
}

/* ==========================================================================
   PERFIL DA INFLUENCER
   ========================================================================== */
.influencer-profile {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 50px 0 40px;
}

.influencer-photo-wrap {
    flex-shrink: 0;
}

.influencer-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--color-primary);
    box-shadow: 0 0 0 6px rgba(45, 108, 223, 0.1);
}

.influencer-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.influencer-name {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-title);
    margin: 0;
    line-height: 1.1;
}

.influencer-niche {
    display: inline-block;
    background: var(--color-soft);
    color: var(--color-primary);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid rgba(45,108,223,0.2);
    width: fit-content;
}

.influencer-bio {
    color: var(--color-text);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    max-width: 520px;
}

.influencer-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 6px;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff !important;
    background-color: var(--social-color, #333);
    transition: filter 0.2s ease, transform 0.1s ease;
}
.social-btn:hover {
    filter: brightness(0.88);
    transform: translateY(-2px);
}

@media (max-width: 600px) {
    .influencer-profile {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 40px 0 30px;
    }
    .influencer-niche,
    .influencer-socials {
        justify-content: center;
    }
    .influencer-bio {
        text-align: center;
    }
}

/* ==========================================================================
   FRONT PAGE - HERO & CATEGORIAS (4 COLUNAS)
   ========================================================================== */
.home-hero {
    text-align: center;
    padding: 60px 0 40px;
}

.hero-title {
    font-size: 2.5rem;
    color: var(--color-title);
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

/* 4 columns grid for Home Categories */
.categories-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: 24px;
    margin-bottom: 50px;
}

@media (min-width: 992px) {
	.categories-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

.category-card {
	background-color: var(--color-bg);
	border-radius: 12px;
	overflow: hidden;
    position: relative;
    border: 1px solid rgba(0,0,0,0.04);
}

/* Remove hover scale to match cleaner look */
.category-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}

.category-thumbnail {
	background-color: #ffffff;
    height: 180px; 
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.category-thumbnail img {
    max-height: 100%;
    object-fit: contain;
}

.category-info {
	padding: 20px;
}

.category-title {
	font-size: 1.25rem;
	margin-bottom: 5px;
    color: var(--color-title);
}

.category-desc {
    font-size: 0.9rem;
    color: var(--color-text);
    margin: 0;
}

/* ==========================================================================
   OFERTA POPULAR BANNER (HOME)
   ========================================================================== */
.oferta-popular {
    margin-bottom: 20px;
}

.oferta-inner {
    background-color: var(--color-bg);
    border-radius: 12px;
    padding: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    border: 1px solid rgba(0,0,0,0.04);
}

.oferta-badge {
    font-size: 0.85rem;
    font-weight: 700;
    color: #4a5568;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block;
}

.oferta-title {
    font-size: 1.5rem;
    color: var(--color-title);
    margin: 0;
    max-width: 400px;
}

.oferta-action {
    display: flex;
    align-items: center;
    gap: 20px;
}

.oferta-img {
    max-height: 80px;
    border-radius: 6px;
}
.oferta-img-placeholder {
    font-size: 2.5rem;
    opacity: 0.5;
}

/* Green Button */
.green-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--color-buy-button);
    color: #ffffff !important;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    transition: background-color 0.2s ease;
}
.green-btn:hover { background-color: var(--color-buy-button-hover); }

.site-disclaimer {
    text-align: center;
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 60px;
}

/* ==========================================================================
   ARCHIVE / REGULAR POSTS GRID (3 COLUNAS)
   ========================================================================== */
.site-main:not(.home) { padding: 40px 0; }
.page-header { margin-bottom: 30px; }

.products-grid {
	display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
@media (min-width: 640px) {
    .products-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}
@media (min-width: 1024px) {
    .products-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; }
}

.products-empty {
    color: #adb5bd;
    text-align: center;
    padding: 32px;
    font-size: 0.9rem;
}

.home-products-section {
    padding: 32px 0 40px;
}

/* ── Product card — estilo wepink ─────────────────────────────────────── */

.product-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    transition: transform 0.2s, box-shadow 0.2s;
}
.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.13);
}

/* Thumb wrap com position relative para o badge */
.product-thumb-wrap {
    position: relative;
    overflow: hidden;
}
.product-thumbnail {
    display: block;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #f8f8f8;
}
.product-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.product-card:hover .product-thumbnail img {
    transform: scale(1.04);
}

/* Badge de plataforma na foto (canto superior direito) */
.product-platform-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 9px;
    border-radius: 20px;
    color: #fff;
    background: var(--color-primary);
    pointer-events: none;
    box-shadow: 0 0 0 2px #fff, 0 2px 8px rgba(0,0,0,.3);
}
.platform-badge--mercadolivre { background: #FFE600; color: #333; }
.platform-badge--shopee        { background: #EE4D2D; }
.platform-badge--tiktok        { background: #010101; }
.platform-badge--amazon        { background: #FF9900; color: #111; }

/* Conteúdo do card */
.product-info {
    padding: 14px 16px 16px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    gap: 12px;
}
.product-title {
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.product-title a { color: #1a1a1a; }
.product-title a:hover { color: var(--color-primary); }

/* Botão único "Ver Oferta" */
.btn-ver-oferta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    padding: 12px;
    background: var(--color-buy-button);
    color: #fff !important;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 8px;
    text-align: center;
    transition: background 0.2s, transform 0.1s;
    cursor: pointer;
}
.btn-ver-oferta:hover {
    background: var(--color-buy-button-hover);
    transform: scale(1.02);
}
.btn-ver-oferta span { font-size: 1rem; }

/* Mantém compatibilidade com btn-buy-small existente */
.btn-buy-small {
    background-color: var(--color-buy-button);
    color: #ffffff !important;
    border: 1px solid var(--color-buy-button);
}
.btn-buy-small:hover {
    background-color: var(--color-buy-button-hover);
    border-color: var(--color-buy-button-hover);
}

.btn-details {
    background-color: #ffffff;
    color: var(--color-text);
    border: 1px solid #d1d9e6;
}
.btn-details:hover {
    background-color: #f1f5f9;
    color: var(--color-title);
    border-color: #cbd5e1;
}

.btn-buy {
	display: inline-block; background-color: var(--color-buy-button); color: #ffffff !important;
	padding: 12px 20px; border-radius: 6px; text-align: center; font-weight: 600; text-transform: uppercase; font-size: 0.95rem;
}

/* ==========================================================================
   SINGLE PRODUCT PAGE (E-COMMERCE STYLE)
   ========================================================================== */
.single-product-page {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
    margin-bottom: 40px;
}

.product-top-row {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 50px;
}

@media (min-width: 768px) {
    .product-top-row {
        flex-direction: row;
    }
    .product-gallery-col {
        flex: 1;
        max-width: 50%;
    }
    .product-info-col {
        flex: 1;
    }
}

.product-main-image {
    background: #f8fafc;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    border: 1px solid #e2e8f0;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-main-image img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: opacity 0.3s;
}

.product-gallery-thumbs {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    overflow-x: auto;
    padding-bottom: 5px;
}

.gallery-thumb {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0.7;
    transition: all 0.2s;
}

.gallery-thumb:hover {
    opacity: 1;
}

.gallery-thumb.active {
    border-color: var(--color-primary);
    opacity: 1;
}

.product-info-col .entry-title {
    font-size: 2rem;
    margin-top: 0;
    margin-bottom: 15px;
    line-height: 1.2;
}

.product-short-desc {
    color: #475569;
    font-size: 1.05rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.product-buy-action {
    background: #f8fafc;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.onde-comprar-label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #94a3b8;
    margin: 0 0 12px;
}

/* Botões de plataforma (single.php) */
.platform-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-platform {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 20px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    text-align: center;
    transition: filter 0.2s ease, transform 0.1s ease;
    color: #ffffff !important;
}
.btn-platform:hover {
    filter: brightness(0.9);
    transform: translateY(-1px);
}
.btn-platform:active {
    transform: translateY(0);
}

.btn-ml      { background-color: #FFE600; color: #333333 !important; }
.btn-shopee  { background-color: #EE4D2D; }
.btn-tiktok  { background-color: #010101; }
.btn-generic { background-color: var(--color-primary); }

/* Badges de plataforma (archive.php) */
.product-platform-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 10px;
}

.platform-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 20px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.platform-badge--ml      { background-color: #cc9800; color: #fff; }
.platform-badge--shopee  { background-color: #EE4D2D; }
.platform-badge--tiktok  { background-color: #010101; }
.platform-badge--generic { background-color: var(--color-primary); }

.section-title {
    font-size: 1.5rem;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

/* FAQ Accordion */
.faq-accordion {
    border: 1px solid #e2e8f0;
    border-radius: 8px;
}

.faq-item {
    border-bottom: 1px solid #e2e8f0;
}
.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    padding: 15px 20px;
    font-weight: 600;
    cursor: pointer;
    font-size: 1.05rem;
    color: var(--color-title);
    list-style: none; /* Hide default triangle in clear browsers */
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--color-primary);
}
.faq-item[open] .faq-question::after {
    content: '-';
}

.faq-answer {
    padding: 0 20px 20px;
    color: var(--color-text);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
	background-color: var(--color-dark);
	color: #ffffff;
	padding: 60px 0 20px;
}
.site-footer a { color: var(--color-light); }
.site-footer a:hover { color: #ffffff; }
.site-footer h4.widget-title { color: #ffffff; font-size: 1.2rem; margin-bottom: 20px; }
.footer-widgets {
	display: grid; grid-template-columns: 1fr; gap: 30px; margin-bottom: 40px;
}
@media (min-width: 576px) { .footer-widgets { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px) { .footer-widgets { grid-template-columns: repeat(4, 1fr); } }
.widget ul { list-style: none; }
.widget ul li { margin-bottom: 10px; }
.site-info { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; text-align: center; font-size: 0.9rem; color: var(--color-soft); }

/* ==========================================================================
   Carousel Widget Styles
   ========================================================================== */
.aft-carousel-wrapper {
    position: relative;
    max-width: 100%;
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.aft-carousel-slides {
    position: relative;
    width: 100%;
    background: var(--color-soft);
}

.aft-carousel-slide {
    display: none;
    width: 100%;
}

.aft-carousel-slide.active {
    display: block;
    animation: afiFadeIn 0.5s ease-out forwards;
}

.aft-carousel-slide img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

@keyframes afiFadeIn {
    from { opacity: 0; transform: scale(0.99); }
    to { opacity: 1; transform: scale(1); }
}

.aft-carousel-prev,
.aft-carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.3);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
    z-index: 2;
}

.aft-carousel-prev:hover,
.aft-carousel-next:hover {
    background: rgba(0,0,0,0.8);
}

.aft-carousel-prev { left: 10px; }
.aft-carousel-next { right: 10px; }

.aft-carousel-dots {
    position: absolute;
    bottom: 15px;
    width: 100%;
    text-align: center;
    z-index: 2;
}

.aft-dot {
    cursor: pointer;
    height: 10px;
    width: 10px;
    margin: 0 5px;
    background-color: rgba(255,255,255,0.5);
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.aft-dot.active, .aft-dot:hover {
    background-color: var(--color-primary);
}

.aft-carousel-caption {
    position: absolute;
    bottom: 40px;
    left: 40px;
    background: rgba(255, 255, 255, 0.95);
    padding: 20px 30px;
    border-radius: 8px;
    max-width: 400px;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.5s ease 0.3s;
}

.aft-carousel-slide.active .aft-carousel-caption {
    transform: translateY(0);
    opacity: 1;
}

.aft-carousel-caption h3 {
    margin: 0 0 15px 0;
    font-size: 1.5rem;
    color: var(--color-title);
    line-height: 1.3;
}

.aft-carousel-btn {
    display: inline-block;
    background: var(--color-primary);
    color: #fff;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

.aft-carousel-slide a:hover .aft-carousel-btn {
    background: var(--color-dark);
}

@media (max-width: 768px) {
    .aft-carousel-caption {
        bottom: 30px; 
        left: 15px; 
        right: 15px; 
        max-width: auto; 
        padding: 15px; 
        text-align: center;
    }
    .aft-carousel-caption h3 { font-size: 1.2rem; }
}

/* ==========================================================================
   COLEÇÕES — HOME GRID
   ========================================================================== */
.home-colecoes {
    margin-bottom: 50px;
}

/* Título de seção — estilo wepink (grande, colorido, centralizado) */
.section-heading-wepink {
    font-size: 2rem;
    font-weight: 800;
    font-style: italic;
    color: var(--color-primary);
    text-align: center;
    margin: 0 0 28px;
    letter-spacing: -0.5px;
}
@media (max-width: 600px) {
    .section-heading-wepink { font-size: 1.5rem; }
}

/* Manter heading antigo para seções internas */
.section-heading {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-title);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.section-heading::after {
    content: '';
    flex: 1;
    height: 2px;
    background: linear-gradient(to right, var(--color-primary), transparent);
    border-radius: 2px;
}

.colecoes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}
@media (min-width: 992px) {
    .colecoes-grid { grid-template-columns: repeat(3, 1fr); }
}

.colecao-card {
    display: block;
    border-radius: 12px;
    overflow: hidden;
    background: var(--color-bg);
    border: 1px solid #e1e8f0;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.colecao-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.colecao-thumb {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--color-soft);
    display: flex;
    align-items: center;
    justify-content: center;
}
.colecao-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.colecao-card:hover .colecao-thumb img {
    transform: scale(1.05);
}
.colecao-thumb-placeholder {
    font-size: 3rem;
    opacity: 0.4;
}

.colecao-info {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.colecao-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-title);
    margin: 0;
}
.colecao-count {
    font-size: 0.8rem;
    color: var(--color-text);
}

/* ==========================================================================
   COLEÇÕES — PÁGINA DE ARQUIVO (taxonomy-colecao.php)
   ========================================================================== */
.colecao-header {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
    padding: 30px;
    background: var(--color-bg);
    border-radius: 12px;
    border: 1px solid #e1e8f0;
}
.colecao-header-img {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    border-radius: 10px;
    overflow: hidden;
}
.colecao-header-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.colecao-header-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-primary);
}
.colecao-header-title {
    font-size: 2rem;
    margin: 6px 0;
    color: var(--color-title);
}
.colecao-header-desc {
    color: var(--color-text);
    margin: 0 0 8px;
}
.colecao-header-count {
    font-size: 0.85rem;
    color: #888;
}
@media (max-width: 600px) {
    .colecao-header { flex-direction: column; align-items: flex-start; }
}

/* ==========================================================================
   LINK NA BIO — PAGE TEMPLATE
   ========================================================================== */
.biolinks-page {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    padding: 40px 16px 60px;
    box-sizing: border-box;
}

.biolinks-card {
    width: 100%;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.biolinks-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    text-align: center;
}

.biolinks-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255,255,255,0.3);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.biolinks-name {
    font-size: 1.4rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
}

.biolinks-niche {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    margin: 0;
}

.biolinks-social-icons {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
}

.biolinks-social-icon {
    color: rgba(255,255,255,0.7);
    transition: color 0.2s ease, transform 0.2s ease;
}
.biolinks-social-icon:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

.biolinks-nav {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.biolink-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 20px;
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    box-sizing: border-box;
}
.biolink-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}
.biolink-btn:active {
    transform: translateY(0);
}

.biolink-emoji {
    font-size: 1.2rem;
    line-height: 1;
}

.biolink-platform-icon {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.biolink-title {
    flex: 1;
}

.biolinks-footer {
    margin-top: 40px;
    font-size: 0.75rem;
}
.biolinks-footer a {
    color: rgba(255,255,255,0.3);
    transition: color 0.2s;
}
.biolinks-footer a:hover {
    color: rgba(255,255,255,0.6);
}

/* ==========================================================================
   SINGLE PRODUCT PAGE — wepink-style (sp2-*)
   ========================================================================== */

.sp2-main { background: #fff; padding-bottom: 80px; }

/* Breadcrumb */
.sp2-breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    color: #999;
    padding: 20px 0 28px;
    flex-wrap: wrap;
}
.sp2-breadcrumb a { color: var(--aft-pink, #E91E8C); }
.sp2-breadcrumb a:hover { text-decoration: underline; }
.sp2-bc-current { color: #444; }

/* Product area: 2-col grid */
.sp2-product-area {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
}

/* ── Gallery ── */
.sp2-gallery {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 14px;
    position: sticky;
    top: 80px;
}
.sp2-thumbstrip {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.sp2-thumb {
    width: 68px;
    height: 68px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: border-color 0.18s;
}
.sp2-thumb.active,
.sp2-thumb:hover { border-color: var(--aft-pink, #E91E8C); }

.sp2-main-img-wrap {
    border-radius: 14px;
    overflow: hidden;
    background: #f8f2f6;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sp2-main-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ── Info column ── */
.sp2-info { padding-top: 8px; }

.sp2-breadcrumb-info {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.sp2-breadcrumb-info a { color: var(--aft-pink, #E91E8C); }
.sp2-breadcrumb-info a:hover { text-decoration: underline; }

.sp2-title {
    font-size: 2rem;
    font-weight: 900;
    line-height: 1.2;
    color: #1a1a2e;
    margin: 0 0 12px;
}

.sp2-subtitle {
    font-size: 0.97rem;
    color: #666;
    font-style: italic;
    margin: 0 0 24px;
    line-height: 1.5;
}

/* Platform buttons */
.sp2-plat-wrap { margin: 0 0 24px; }
.sp2-where-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #aaa;
    font-weight: 700;
    margin: 0 0 10px;
}
.sp2-plat-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 17px 22px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
    letter-spacing: 0.01em;
    transition: filter 0.18s, transform 0.12s;
}
.sp2-plat-btn:hover { filter: brightness(0.9); transform: translateY(-1px); color: #fff; }
.sp2-plat-btn--ml     { background: #FFE600; color: #222; }
.sp2-plat-btn--ml:hover { color: #222; }
.sp2-plat-btn--shopee  { background: #EE4D2D; }
.sp2-plat-btn--tiktok  { background: #010101; }
.sp2-plat-btn--amazon  { background: #FF9900; color: #111; }
.sp2-plat-btn--amazon:hover { color: #111; }
.sp2-plat-btn--generic { background: var(--aft-pink, #E91E8C); }
.sp2-plat-btn svg { flex-shrink: 0; opacity: 0.7; }

.sp2-safe {
    font-size: 0.75rem;
    color: #999;
    margin: 4px 0 0;
}

/* Características box */
.sp2-features {
    background: var(--aft-pink-soft, #FDE8F4);
    border-radius: 14px;
    padding: 20px 22px;
    margin-top: 8px;
}
.sp2-features-title {
    font-size: 1rem;
    font-weight: 800;
    color: var(--aft-pink, #E91E8C);
    margin: 0 0 12px;
    letter-spacing: 0.02em;
}
.sp2-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.sp2-features-list li {
    font-size: 0.88rem;
    color: #8B1A5A;
    font-weight: 600;
    padding-left: 14px;
    position: relative;
    line-height: 1.4;
}
.sp2-features-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--aft-pink, #E91E8C);
}

/* ── Tabs ── */
.sp2-tabs { margin-top: 56px; border-top: 2px solid #f0f0f0; }
.sp2-tab-nav {
    display: flex;
    gap: 0;
    border-bottom: 2px solid #f0f0f0;
}
.sp2-tab-btn {
    padding: 16px 28px;
    font-size: 0.9rem;
    font-weight: 700;
    background: none;
    border: none;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    color: #888;
    transition: color 0.18s, border-color 0.18s;
    letter-spacing: 0.01em;
}
.sp2-tab-btn.active {
    color: var(--aft-pink, #E91E8C);
    border-bottom-color: var(--aft-pink, #E91E8C);
}
.sp2-tab-btn:hover { color: var(--aft-pink, #E91E8C); }
.sp2-tab-pane { display: none; padding: 36px 0; }
.sp2-tab-pane.active { display: block; }
.sp2-tab-pane .entry-content {
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
    max-width: 780px;
}

/* Responsive */
@media (max-width: 900px) {
    .sp2-product-area { grid-template-columns: 1fr; gap: 32px; }
    .sp2-gallery { position: static; }
    .sp2-title { font-size: 1.5rem; }
}
@media (max-width: 600px) {
    .sp2-gallery { grid-template-columns: 56px 1fr; gap: 10px; }
    .sp2-thumb { width: 52px; height: 52px; }
    .sp2-plat-btn { padding: 15px 18px; font-size: 0.92rem; }
    .sp2-tab-btn { padding: 12px 16px; font-size: 0.82rem; }
}

/* ==========================================================================
   HOME WEPINK — v1.0.36
   ========================================================================== */

:root {
    --aft-pink:      #E91E8C;
    --aft-pink-dark: #C2185B;
    --aft-pink-soft: #FDE8F4;
}

/* Announcement bar ─────────────────────────────────────────────────────── */
.aft-announce {
    background: var(--aft-pink);
    color: #fff;
    font-size: 0.83rem;
    font-weight: 600;
    padding: 9px 20px;
    text-align: center;
    letter-spacing: 0.02em;
}
.aft-announce a { color: #fff; text-decoration: underline; opacity: 0.9; }
.aft-announce a:hover { opacity: 1; }

/* Hero ─────────────────────────────────────────────────────────────────── */
.aft-hero {
    background: linear-gradient(140deg, #fff5fb 0%, #ffffff 65%);
    padding: 70px 0 60px;
    overflow: hidden;
}
.aft-hero--bg {
    background: none;
    position: relative;
}
.aft-hero--bg::before {
    content: '';
    position: absolute; inset: 0;
    background: rgba(0,0,0,0.38);
}
.aft-hero--bg .aft-hero-inner { position: relative; }
.aft-hero--bg .aft-hero-title,
.aft-hero--bg .aft-hero-sub   { color: #fff; }
.aft-hero--bg .aft-hero-tag   { background: rgba(255,255,255,0.2); color: #fff; }
.aft-hero-inner {
    display: flex;
    align-items: center;
    gap: 64px;
}
.aft-hero-text { flex: 1; min-width: 0; }

.aft-hero-tag {
    display: inline-block;
    background: var(--aft-pink-soft);
    color: var(--aft-pink);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 5px 14px;
    border-radius: 30px;
    margin-bottom: 18px;
}
.aft-hero-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--color-title);
    line-height: 1.15;
    margin-bottom: 18px;
    letter-spacing: -1px;
}
.aft-hero-title em { font-style: italic; color: var(--aft-pink); }

.aft-hero-sub {
    font-size: 1.05rem;
    color: var(--color-text);
    max-width: 420px;
    line-height: 1.7;
    margin-bottom: 32px;
}
.aft-btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--aft-pink);
    color: #fff !important;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 4px 20px rgba(233,30,140,0.28);
}
.aft-btn-hero:hover {
    background: var(--aft-pink-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(233,30,140,0.38);
}

/* Hero visual — collage 2×2 */
.aft-hero-visual {
    flex-shrink: 0;
    width: 320px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    transform: rotate(3deg);
}
.aft-hero-card {
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 1;
    box-shadow: 0 8px 30px rgba(0,0,0,0.10);
    background: #f0f0f0;
}
.aft-hero-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
.aft-hero-card:nth-child(1) { transform: translateY(-12px); }
.aft-hero-card:nth-child(2) { transform: translateY(12px); }
.aft-hero-card:nth-child(3) { transform: translateY(-6px); }
.aft-hero-card:nth-child(4) { transform: translateY(6px); }

@media (max-width: 900px) {
    .aft-hero-visual { display: none; }
    .aft-hero { padding: 50px 0 40px; }
}
@media (max-width: 600px) {
    .aft-hero { padding: 36px 0 28px; text-align: center; }
    .aft-hero-sub { max-width: 100%; }
}

/* Category strip ───────────────────────────────────────────────────────── */
.aft-cat-strip {
    background: #fff;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
    padding: 12px 0;
    overflow-x: auto;
    scrollbar-width: none;
}
.aft-cat-strip::-webkit-scrollbar { display: none; }
.aft-cat-inner {
    display: flex;
    gap: 8px;
    white-space: nowrap;
}
.aft-cat-pill {
    display: inline-flex;
    align-items: center;
    padding: 7px 18px;
    border-radius: 30px;
    background: var(--color-soft);
    color: var(--color-text);
    font-size: 0.86rem;
    font-weight: 600;
    transition: background 0.18s, color 0.18s;
    white-space: nowrap;
    border: 1.5px solid transparent;
}
.aft-cat-pill:hover { background: var(--aft-pink-soft); color: var(--aft-pink); border-color: var(--aft-pink-soft); }
.aft-cat-pill--all  { background: var(--aft-pink); color: #fff !important; }
.aft-cat-pill--all:hover { background: var(--aft-pink-dark); }

/* Category grid section ─────────────────────────────────────────────────── */
.aft-cat-section { padding: 40px 0; }
.aft-cat-grid {
    display: grid;
    gap: 16px;
}
.aft-cat-grid--cols-2 { grid-template-columns: repeat(2, 1fr); }
.aft-cat-grid--cols-3 { grid-template-columns: repeat(3, 1fr); }
.aft-cat-grid--cols-4 { grid-template-columns: repeat(4, 1fr); }

.aft-cat-grid--scroll {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    gap: 12px;
}
.aft-cat-grid--scroll::-webkit-scrollbar { display: none; }
.aft-cat-grid--scroll .aft-cat-card {
    flex: 0 0 calc(100% / 3 - 8px);
    scroll-snap-align: start;
    min-width: 160px;
}

/* Scroll carousel wrapper + buttons */
.aft-cat-scroll-wrap {
    position: relative;
    padding: 0 44px;
}
.aft-cat-scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.18);
    color: #1a1a2e;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .15s, color .15s, transform .15s;
    flex-shrink: 0;
}
.aft-cat-scroll-btn:hover {
    background: var(--aft-pink, #E91E8C);
    color: #fff;
    transform: translateY(-50%) scale(1.08);
}
.aft-cat-scroll-prev { left: 0; }
.aft-cat-scroll-next { right: 0; }

.aft-cat-card {
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: transform 0.2s, box-shadow 0.2s;
}
.aft-cat-card:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,0.13); }
.aft-cat-card-img {
    aspect-ratio: 4/3;
    background-size: cover;
    background-position: center;
}
.aft-cat-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
    padding: 10px 12px;
    background: #fff;
    color: #1a1a1a;
}
.aft-cat-card-name {
    font-size: 0.88rem;
    font-weight: 700;
    flex: 1;
}
.aft-cat-card-btn {
    font-size: 0.78rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0.75;
    flex-shrink: 0;
}

@media (max-width: 640px) {
    .aft-cat-grid--cols-3,
    .aft-cat-grid--cols-4 { grid-template-columns: repeat(2, 1fr); }
}

/* Collections ──────────────────────────────────────────────────────────── */
.aft-collections-wrap { padding: 56px 0 48px; }

/* Grid base */
.aft-col-grid { display: grid; gap: 20px; }
.aft-col-grid--cols-2 { grid-template-columns: repeat(2, 1fr); }
.aft-col-grid--cols-3 { grid-template-columns: repeat(3, 1fr); }
.aft-col-grid--cols-4 { grid-template-columns: repeat(4, 1fr); }
.aft-col-grid--scroll {
    display: flex; overflow-x: auto; scroll-snap-type: x mandatory;
    scrollbar-width: none; gap: 16px;
}
.aft-col-grid--scroll::-webkit-scrollbar { display: none; }
.aft-col-grid--scroll .aft-col-card {
    flex: 0 0 calc(100% / 3 - 12px); scroll-snap-align: start; min-width: 220px;
}
@media (max-width: 640px) {
    .aft-col-grid--cols-3, .aft-col-grid--cols-4 { grid-template-columns: repeat(2, 1fr); }
}

/* Card base */
.aft-col-card {
    display: flex; flex-direction: column;
    border-radius: 12px; overflow: hidden;
    text-decoration: none;
    box-shadow: 0 2px 16px rgba(0,0,0,0.09);
    transition: transform .2s, box-shadow .2s;
}
.aft-col-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(0,0,0,0.15); }

/* Estilo 1 — Overlay */
.aft-col-card--overlay {
    position: relative;
    aspect-ratio: 3/4;
}
.aft-col-card--overlay .aft-col-card-img {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
}
.aft-col-card--overlay .aft-col-card-overlay {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,.65));
    padding: 48px 20px 24px;
    display: flex; flex-direction: column; align-items: center; gap: 12px;
    text-align: center;
}
.aft-col-card--overlay .aft-col-card-name {
    font-size: 1.05rem; font-weight: 800;
    letter-spacing: .04em; text-transform: uppercase;
    text-shadow: 0 1px 4px rgba(0,0,0,.4);
}
.aft-col-card--overlay .aft-col-card-btn {
    padding: 8px 22px; border-radius: 999px;
    font-size: 0.8rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
}

/* Estilo 2 — Card com texto */
.aft-col-card--card { background: #fff; }
.aft-col-card--card .aft-col-card-img {
    aspect-ratio: 4/3;
    background-size: cover; background-position: center;
}
.aft-col-card--card .aft-col-card-info {
    padding: 18px 20px 22px; display: flex; flex-direction: column; gap: 8px;
}
.aft-col-card--card .aft-col-card-name { font-size: 1.05rem; font-weight: 800; }
.aft-col-card--card .aft-col-card-desc { font-size: 0.85rem; line-height: 1.55; opacity: .75; }
.aft-col-card--card .aft-col-card-btn {
    align-self: flex-start; margin-top: 6px;
    padding: 9px 22px; border-radius: 6px;
    font-size: 0.82rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
}

/* Estilo 3 — Banner dividido */
.aft-col-banners { display: flex; flex-direction: column; gap: 0; }
.aft-col-card--banner {
    flex-direction: row; border-radius: 0; box-shadow: none;
    min-height: 380px;
}
.aft-col-card--banner:nth-child(even) { flex-direction: row-reverse; }
.aft-col-card--banner .aft-col-card-img {
    flex: 1; min-height: 300px;
    background-size: cover; background-position: center;
}
.aft-col-card--banner .aft-col-card-info {
    flex: 1; padding: 48px 56px;
    display: flex; flex-direction: column; justify-content: center; gap: 14px;
}
.aft-col-card--banner .aft-col-card-name {
    font-size: clamp(1.3rem, 2.5vw, 1.9rem); font-weight: 900; line-height: 1.2;
}
.aft-col-card--banner .aft-col-card-desc { font-size: 0.92rem; line-height: 1.65; opacity: .8; }
.aft-col-card--banner .aft-col-card-btn {
    align-self: flex-start; margin-top: 8px;
    padding: 11px 28px; border: 2px solid; border-radius: 4px;
    font-size: 0.82rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
    background: transparent !important;
    transition: background .15s, color .15s;
}
.aft-col-card--banner .aft-col-card-btn:hover {
    background: currentColor !important; filter: invert(1);
}
@media (max-width: 768px) {
    .aft-col-card--banner, .aft-col-card--banner:nth-child(even) { flex-direction: column; }
    .aft-col-card--banner .aft-col-card-info { padding: 28px 24px; }
}

/* Product sections ─────────────────────────────────────────────────────── */
.aft-products-wrap       { padding: 56px 0 48px; background: #fff; }
.aft-products-wrap--alt  { background: var(--color-soft); }

.aft-sec-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 900;
    text-align: center;
    color: var(--color-title);
    margin-bottom: 36px;
    letter-spacing: -0.5px;
}
.aft-sec-title em { font-style: italic; color: var(--aft-pink); }

/* Split banner ─────────────────────────────────────────────────────────── */
.aft-split-banner {
    display: flex;
    min-height: 380px;
    background: var(--aft-pink-soft);
}
.aft-split-img {
    flex: 1;
    overflow: hidden;
    max-width: 55%;
}
.aft-split-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.aft-split-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 50px 60px;
    gap: 16px;
}
.aft-split-tag {
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--aft-pink);
}
.aft-split-text h2 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--color-title);
    line-height: 1.2;
    margin: 0;
}
.aft-split-text p {
    color: var(--color-text);
    font-size: 1rem;
    line-height: 1.7;
    max-width: 360px;
    margin: 0;
}
.aft-btn-split {
    display: inline-flex;
    align-self: flex-start;
    align-items: center;
    gap: 8px;
    background: var(--color-title);
    color: #fff !important;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: background 0.2s, transform 0.15s;
    margin-top: 8px;
}
.aft-btn-split:hover { background: #333; transform: translateY(-2px); }

@media (max-width: 768px) {
    .aft-split-banner { flex-direction: column; min-height: auto; }
    .aft-split-img { max-width: 100%; height: 220px; }
    .aft-split-text { padding: 32px 24px; }
    .aft-split-text h2 { font-size: 1.6rem; }
}

/* Social CTA ───────────────────────────────────────────────────────────── */
/* ── Home v2: Hero Banner ─────────────────────────────────────────────────── */
.aft-hero-banner {
    position: relative;
    min-height: 520px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}
.aft-hero-banner__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
}
.aft-hero-banner__inner {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 80px 20px;
}
.aft-hero-banner__title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #fff;
    margin: 0 0 16px;
    line-height: 1.15;
}
.aft-hero-banner__sub {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.88);
    margin: 0 auto 32px;
    max-width: 560px;
    line-height: 1.6;
}
.aft-hero-banner__btn {
    display: inline-block;
    background: var(--color-primary);
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    transition: background .2s;
}
.aft-hero-banner__btn:hover { background: var(--color-dark); color: #fff; }

/* ── Home v2: Hero Influencer ────────────────────────────────────────────── */
.aft-hero-inf {
    padding: 72px 0 56px;
}
.aft-hero-inf__inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 56px;
    align-items: center;
}
.aft-hero-inf__name {
    font-size: clamp(3rem, 9vw, 8rem);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 0.9;
    letter-spacing: -0.03em;
    margin: 0 0 20px;
}
.aft-hero-inf__divider {
    width: 56px;
    height: 4px;
    border-radius: 2px;
    margin: 0 0 20px;
}
.aft-hero-inf__roles {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}
.aft-hero-inf__role {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .1em;
    padding: 5px 14px;
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 100px;
    color: rgba(255,255,255,.75);
}
.aft-hero-inf__tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(255,255,255,.65);
    padding: 4px 0;
    margin-bottom: 12px;
}
.aft-hero-inf__headline {
    font-size: 1.125rem;
    color: inherit;
    opacity: .75;
    margin: 0 0 14px;
}
.aft-hero-inf__bio {
    font-size: .9625rem;
    color: inherit;
    opacity: .65;
    line-height: 1.75;
    max-width: 480px;
    margin: 0 0 28px;
}
.aft-hero-inf__socials {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
}
.aft-hero-inf__social-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,.8);
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.2);
    padding: 7px 14px;
    border-radius: 100px;
    text-decoration: none;
    transition: border-color .2s, color .2s, background .2s;
}
.aft-hero-inf__social-btn:hover { border-color: rgba(255,255,255,.6); color: #fff; background: rgba(255,255,255,.15); }
.aft-hero-inf__photo-wrap {
    width: 340px;
    flex-shrink: 0;
    align-self: flex-end;
}
.aft-hero-inf__photo {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    object-position: top;
    border-radius: 20px 20px 0 0;
    display: block;
}

/* ── Home v2: botões genéricos ───────────────────────────────────────────── */
.aft-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .9375rem;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    transition: background .2s, border-color .2s, color .2s, opacity .2s;
    cursor: pointer;
}
.aft-btn--primary { background: var(--color-primary); color: #fff; }
.aft-btn--primary:hover { background: var(--color-dark); color: #fff; }
.aft-btn--outline { background: transparent; color: var(--color-primary); border: 2px solid var(--color-primary); }
.aft-btn--outline:hover { background: var(--color-primary); color: #fff; }
.aft-btn--accent { font-weight: 700; }
.aft-btn--accent:hover { opacity: .85; transform: translateY(-2px); }
.aft-btn--dark { background: #111; color: #fff; }
.aft-btn--dark:hover { background: #222; color: #fff; }

/* ── Home v2: Seção de Produtos ──────────────────────────────────────────── */
.aft-products-section {
    padding: 64px 0;
    background: var(--color-soft);
}
.aft-products-section--featured {
    background: var(--color-bg);
    border-top: 1px solid #e8edf5;
}
.aft-products-section[data-dark="1"] .aft-cat-filter__btn {
    background: rgba(255,255,255,.1);
    border-color: rgba(255,255,255,.2);
    color: rgba(255,255,255,.8);
}
.aft-products-section[data-dark="1"] .aft-cat-filter__btn:hover,
.aft-products-section[data-dark="1"] .aft-cat-filter__btn.active {
    background: rgba(255,255,255,.9);
    color: #111;
    border-color: transparent;
}
.aft-products-section__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 32px;
}
.aft-cat-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.aft-cat-filter__btn {
    font-size: 13px;
    font-weight: 500;
    color: var(--color-text);
    background: var(--color-bg);
    border: 1px solid #dce4f0;
    padding: 6px 14px;
    border-radius: 100px;
    cursor: pointer;
    transition: background .15s, color .15s, border-color .15s;
}
.aft-cat-filter__btn:hover,
.aft-cat-filter__btn.active {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}
.aft-products-filterable {
    transition: min-height .2s;
}
.aft-product-wrap { display: contents; }
.aft-product-wrap[style*="display: none"] { display: none !important; }

/* ── Home v2: Categorias ─────────────────────────────────────────────────── */
.aft-home-cats {
    padding: 64px 0;
    background: var(--color-bg);
    border-top: 1px solid #e8edf5;
}
.aft-home-cats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 28px;
}
.aft-home-cat-card {
    display: block;
    text-decoration: none;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #e8edf5;
    transition: box-shadow .2s, transform .2s;
    background: var(--color-soft);
}
.aft-home-cat-card:hover { box-shadow: 0 6px 24px rgba(45,108,223,.1); transform: translateY(-2px); }
.aft-home-cat-card__img {
    aspect-ratio: 1;
    background-size: cover;
    background-position: center;
}
.aft-home-cat-card__name {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-title);
    padding: 10px 12px;
    text-align: center;
}

/* ── Home v2: Sobre mim ──────────────────────────────────────────────────── */
.aft-about {
    padding: 72px 0;
}
.aft-about__inner {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 64px;
    align-items: center;
}
.aft-about__photo-wrap { flex-shrink: 0; }
.aft-about__photo {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    object-position: top;
    border-radius: 16px;
    display: block;
}
.aft-about__eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: inherit;
    opacity: .55;
    display: block;
    margin-bottom: 10px;
}
.aft-about__name {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 900;
    color: inherit;
    margin: 0 0 6px;
    line-height: 1.1;
}
.aft-about__niche {
    font-size: .9rem;
    font-weight: 600;
    color: inherit;
    opacity: .7;
    margin: 0 0 16px;
    text-transform: uppercase;
    letter-spacing: .05em;
}
.aft-about__bio {
    font-size: 1rem;
    color: inherit;
    line-height: 1.8;
    margin: 0 0 24px;
}
.aft-about__stats {
    display: flex;
    gap: 32px;
    margin: 0 0 28px;
    flex-wrap: wrap;
}
.aft-about__stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.aft-about__stat-val {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 900;
    line-height: 1;
    color: inherit;
}
.aft-about__stat-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: inherit;
    opacity: .6;
}

/* ── Responsivo home v2 ──────────────────────────────────────────────────── */
@media (max-width: 900px) {
    .aft-hero-inf__inner { grid-template-columns: 1fr; }
    .aft-hero-inf__photo-wrap { width: 100%; max-width: 300px; margin: 32px auto 0; order: -1; }
    .aft-hero-inf__photo { border-radius: 16px; aspect-ratio: 1; }
    .aft-about__inner { grid-template-columns: 1fr; }
    .aft-about__photo-wrap { max-width: 260px; margin: 0 auto; }
    .aft-home-cats__grid { grid-template-columns: repeat(2, 1fr); }
    .aft-products-section__head { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 600px) {
    .aft-hero-inf { padding: 40px 0 32px; }
    .aft-hero-banner { min-height: 380px; }
    .aft-home-cats__grid { grid-template-columns: repeat(2, 1fr); }
    .aft-about__stats { gap: 20px; }
}

/* ── Home v2: Social CTA ─────────────────────────────────────────────────── */
.aft-social-cta {
    background: linear-gradient(135deg, var(--aft-pink) 0%, var(--aft-pink-dark) 100%);
    color: #fff;
    text-align: center;
    padding: 64px 20px;
}
.aft-social-cta h2 {
    font-size: clamp(1.5rem, 3vw, 1.9rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 8px;
}
.aft-social-cta p { color: rgba(255,255,255,0.82); font-size: 1rem; margin-bottom: 32px; }

.aft-social-row {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}
.aft-s-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: transform 0.15s, box-shadow 0.15s;
    box-shadow: 0 4px 20px rgba(0,0,0,0.20);
}
.aft-s-btn:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(0,0,0,0.30); }
.aft-s-ig { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: #fff !important; }
.aft-s-tt { background: #010101; color: #fff !important; }

/* Home wrapper ─────────────────────────────────────────────────────────── */
.aft-home { background: var(--color-soft); }

/* Multi-platform badge */
.platform-badge--multi { background: var(--color-primary); }

/* Card platform buttons row ────────────────────────────────────────────── */
.card-plat-row {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}
.card-plat-btn {
    flex: 1;
    min-width: 0;
    padding: 9px 8px;
    border-radius: 7px;
    font-size: 0.72rem;
    font-weight: 700;
    text-align: center;
    color: #fff !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: filter 0.18s, transform 0.12s;
    line-height: 1.2;
}
.card-plat-btn:hover {
    filter: brightness(0.88);
    transform: translateY(-1px);
    color: #fff !important;
}
.card-plat-btn--ml      { background: #FFE600; color: #222 !important; }
.card-plat-btn--ml:hover { color: #222 !important; }
.card-plat-btn--shopee  { background: #EE4D2D; }
.card-plat-btn--tiktok  { background: #010101; }
.card-plat-btn--amazon  { background: #FF9900; color: #111 !important; }
.card-plat-btn--amazon:hover { color: #111 !important; }
.card-plat-btn--generic { background: var(--color-primary); }

/* ── Estrelas de avaliação ───────────────────────────────────────────── */

.aft-review-stars {
    color: #f5a623;
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 4px;
}
.aft-rating-summary {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 12px 0 20px;
}
.aft-rating-avg {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}
.aft-rating-meta {
    font-size: 0.82rem;
    color: #888;
}
.aft-rating-stars-lg {
    color: #f5a623;
    font-size: 1.3rem;
}

/* ── Seções da home (editor visual) ──────────────────────────────────── */

.home-image-banner {
    position: relative;
    width: 100%;
    overflow: hidden;
}
.home-image-banner img {
    width: 100%;
    display: block;
    object-fit: cover;
}
.banner-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px;
    text-align: center;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.55) 100%);
}
.banner-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.banner-subtitle {
    font-size: 1rem;
    color: rgba(255,255,255,0.88);
    margin: 0;
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

.home-text-block {
    padding: 32px 20px;
    text-align: center;
}
.home-text-block h2 {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 0 12px;
}
.home-text-block p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
    opacity: 0.85;
}

.home-products-section {
    padding: 24px 16px;
}
.home-products-section .section-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 16px;
}
.home-products-section .products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.home-spacer {
    display: block;
}

/* ==========================================================================
   SINGLE PRODUCT PAGE — wepink style (v1.0.36)
   ========================================================================== */

.sp-main { padding: 0 0 60px; }

/* Breadcrumb */
.sp-breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    color: #999;
    padding: 18px 0;
    flex-wrap: wrap;
}
.sp-breadcrumb a { color: #777; }
.sp-breadcrumb a:hover { color: var(--aft-pink); }
.sp-bc-sep { color: #ccc; }
.sp-bc-current {
    color: var(--color-title);
    font-weight: 600;
    max-width: 300px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Product layout — 2 columns */
.sp-product-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 60px;
}
@media (max-width: 900px) {
    .sp-product-wrap { grid-template-columns: 1fr; gap: 32px; }
}

/* ── Gallery ─────────────────────────────────────────────────────────────── */
.sp-gallery { position: sticky; top: 90px; }

.sp-main-img-wrap {
    background: #f8f8f8;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #f0f0f0;
}
.sp-main-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.sp-main-img-wrap:hover img { transform: scale(1.04); }

.sp-thumbstrip {
    display: flex;
    gap: 10px;
    margin-top: 14px;
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: 4px;
}
.sp-thumbstrip::-webkit-scrollbar { display: none; }
.sp-thumb {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0.65;
    flex-shrink: 0;
    transition: opacity 0.2s, border-color 0.2s;
}
.sp-thumb:hover { opacity: 0.9; }
.sp-thumb.active { border-color: var(--aft-pink); opacity: 1; }

/* ── Info panel ──────────────────────────────────────────────────────────── */
.sp-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sp-cat-pill {
    display: inline-flex;
    align-self: flex-start;
    background: var(--aft-pink-soft);
    color: var(--aft-pink);
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 4px 14px;
    border-radius: 30px;
}
.sp-cat-pill:hover { background: var(--aft-pink); color: #fff; }

.sp-title {
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 900;
    color: var(--color-title);
    line-height: 1.2;
    margin: 0;
    letter-spacing: -0.5px;
}

/* Star rating */
.sp-rating-row {
    display: flex;
    align-items: center;
    gap: 10px;
}
.sp-stars {
    color: #F5A623;
    font-size: 1.1rem;
    letter-spacing: 2px;
}
.sp-rating-link {
    font-size: 0.85rem;
    color: #888;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.sp-rating-link:hover { color: var(--aft-pink); }

.sp-excerpt {
    color: #555;
    font-size: 0.98rem;
    line-height: 1.7;
    margin: 0;
}

/* Buy box */
.sp-buy-box {
    background: #fff;
    border: 1.5px solid #f0f0f0;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.sp-buy-box--empty { background: var(--color-soft); }
.sp-where-label {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #aaa;
    margin: 0;
}

.sp-platform-btns {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sp-plat-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: filter 0.2s, transform 0.15s;
    color: #fff !important;
    text-decoration: none;
}
.sp-plat-btn:hover {
    filter: brightness(0.92);
    transform: translateY(-2px);
}
.sp-plat-icon { flex-shrink: 0; display: flex; align-items: center; }
.sp-plat-label { flex: 1; }
.sp-plat-arrow { flex-shrink: 0; opacity: 0.7; }

.sp-plat-btn--ml      { background: #FFE600; color: #222 !important; }
.sp-plat-btn--shopee  { background: #EE4D2D; }
.sp-plat-btn--tiktok  { background: #010101; }
.sp-plat-btn--generic { background: var(--color-primary); }

/* Trust badges */
.sp-trust {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 16px 0 0;
}
.sp-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: #666;
}
.sp-trust-item svg { color: var(--aft-pink); flex-shrink: 0; }

.sp-disclosure {
    font-size: 0.78rem;
    color: #aaa;
    line-height: 1.5;
    margin: 0;
    border-top: 1px solid #f0f0f0;
    padding-top: 14px;
}

/* ── Bottom sections ─────────────────────────────────────────────────────── */
.sp-bottom {
    display: flex;
    flex-direction: column;
    gap: 48px;
}
.sp-section {
    background: #fff;
    border-radius: 16px;
    padding: 36px 40px;
    border: 1px solid #f0f0f0;
}
@media (max-width: 600px) {
    .sp-section { padding: 24px 20px; }
}

.sp-section-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--color-title);
    margin: 0 0 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid #f5f5f5;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.sp-rating-badge {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text);
    display: flex;
    align-items: center;
    gap: 6px;
}
.sp-stars-sm { color: #F5A623; letter-spacing: 2px; }

.sp-description-body {
    color: #555;
    font-size: 1rem;
    line-height: 1.8;
}
.sp-description-body p { margin-bottom: 1em; }

/* Reviews grid */
.sp-reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
@media (max-width: 640px) {
    .sp-reviews-grid { grid-template-columns: 1fr; }
}

.sp-review-card {
    background: var(--color-soft);
    border-radius: 12px;
    padding: 18px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border: 1px solid #ececec;
}
.sp-review-top {
    display: flex;
    align-items: center;
    gap: 10px;
}
.sp-review-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--aft-pink);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.sp-review-meta {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
}
.sp-review-author {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--color-title);
}
.sp-review-date {
    font-size: 0.75rem;
    color: #aaa;
}
.sp-review-stars {
    color: #F5A623;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    flex-shrink: 0;
}
.sp-review-text {
    font-size: 0.88rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.sp-load-more {
    background: none;
    border: 2px solid var(--aft-pink);
    color: var(--aft-pink);
    padding: 11px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
.sp-load-more:hover { background: var(--aft-pink); color: #fff; }

/* Related products section */
.sp-related {
    background: var(--color-soft);
    padding: 56px 0;
    margin-top: 0;
}

/* ── CLS fix: banner de cookies fixo na viewport ────────────────────────── */
.cookieadmin_law_container {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 99999 !important;
    width: 100% !important;
}

/* ══════════════════════════════════════════════════════════════════════════
   Jully Bonfim — Home Page
   ══════════════════════════════════════════════════════════════════════════ */

.aft-jully-page { margin: 0; padding: 0; background: #fdf4e7; }
.aft-jully-page #page { display: contents; }

.aft-jh-wrap {
    font-family: 'Poppins', 'Inter', sans-serif;
    background: #fdf4e7;
    max-width: 960px;
    margin: 0 auto;
    overflow: hidden;
}

/* ── Hero ──────────────────────────────────────────────────────────────── */
.aft-jh-hero {
    position: relative;
    background: #1a1a1a;
    height: 520px;
    overflow: hidden;
}
.aft-jh-hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: grayscale(1) contrast(1.05);
    display: block;
}
.aft-jh-hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.35);
}
.aft-jh-hero__text {
    position: absolute;
    left: 40px;
    bottom: 70px;
}
.aft-jh-hero__name {
    font-family: 'Archivo Black', 'Inter', sans-serif;
    font-size: clamp(36px, 6vw, 56px);
    color: #ffc93c;
    line-height: 1;
    text-shadow: 0 2px 10px rgba(0,0,0,.4);
}
.aft-jh-hero__divider {
    border: none;
    border-top: 3px solid #ffc93c;
    width: 340px;
    max-width: 70vw;
    margin: 14px 0;
}
.aft-jh-hero__roles {
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
    line-height: 1.9;
}
.aft-jh-hero__badge {
    position: absolute;
    right: 40px;
    bottom: 70px;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
}

/* ── Nav ───────────────────────────────────────────────────────────────── */
.aft-jh-nav {
    position: sticky;
    top: 0;
    z-index: 20;
    background: #fdf4e7;
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    padding: 16px 20px;
    border-bottom: 2px solid #f0dcc0;
}
.aft-jh-nav a {
    background: #ffc93c;
    padding: 10px 18px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 12.5px;
    color: #1a1a1a;
    text-decoration: none;
    transition: opacity .15s;
    white-space: nowrap;
}
.aft-jh-nav a:hover { opacity: .8; }

/* ── Sobre ─────────────────────────────────────────────────────────────── */
.aft-jh-sobre {
    position: relative;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 0;
    padding: 0 0 0 48px;
    background: linear-gradient(100deg, #ffb35c, #e85d2b 65%);
    overflow: hidden;
    height: 440px;
}
.aft-jh-sobre__list > * { margin: 0; }
.aft-jh-sobre__bg-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    font-family: 'Archivo Black', 'Inter', sans-serif;
    font-size: clamp(40px, 7vw, 64px);
    line-height: .9;
    color: transparent;
    -webkit-text-stroke: 2px #ffc93c;
    letter-spacing: 1px;
    z-index: 1;
    padding: 0 32px 10px;
    white-space: nowrap;
    user-select: none;
}
.aft-jh-sobre__photo-wrap {
    flex-shrink: 0;
    width: 440px;
    align-self: stretch;
    overflow: hidden;
    z-index: 2;
}
.aft-jh-sobre__photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}
.aft-jh-sobre__text {
    position: relative;
    z-index: 3;
    max-width: 320px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 0;
    overflow: hidden;
    min-height: 0;
}
.aft-jh-sobre__heading {
    font-family: 'Archivo Black', 'Inter', sans-serif;
    font-size: 32px;
    color: #1a1a1a;
    margin-bottom: 16px;
}
.aft-jh-sobre__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    line-height: 1.6;
}
.aft-jh-sobre__list p {
    margin: 0 0 6px;
    font-size: 13px;
    line-height: 1.6;
}
.aft-jh-sobre__list p:last-child { margin-bottom: 0; }
/* impede que o script de emoji do WP amplie ícones no contexto da seção */
.aft-jh-sobre img.emoji {
    height: 1em !important;
    width:  1em !important;
    max-height: 1em !important;
    max-width:  1em !important;
    vertical-align: middle !important;
}

/* ── Social / Métricas ─────────────────────────────────────────────────── */
.aft-jh-social {
    position: relative;
    height: 480px;
    background: #1a1a1a;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 56px 24px 0;
    gap: 0;
}
.aft-jh-social__watermark {
    position: absolute;
    top: 14px;
    left: 0;
    right: 0;
    text-align: center;
    font-family: 'Archivo Black', 'Inter', sans-serif;
    font-size: clamp(48px, 9vw, 80px);
    color: rgba(255,255,255,.07);
    letter-spacing: 4px;
    white-space: nowrap;
    pointer-events: none;
}
.aft-jh-social__col { width: 260px; flex-shrink: 0; }
.aft-jh-social__platform {
    font-family: 'Archivo Black', 'Inter', sans-serif;
    font-size: 22px;
    color: #ff9a3d;
    letter-spacing: 1px;
    margin-bottom: 12px;
}
.aft-jh-social__col--right .aft-jh-social__platform { text-align: right; }
.aft-jh-social__card {
    background: #fdf4e7;
    border-radius: 14px;
    padding: 18px;
    box-shadow: 0 16px 30px rgba(0,0,0,.4);
}
.aft-jh-social__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e0cbb5;
    margin-bottom: 10px;
    overflow: hidden;
    flex-shrink: 0;
}
.aft-jh-social__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.aft-jh-social__handle {
    font-weight: 700;
    font-size: 13px;
    color: #2a1f18;
}
.aft-jh-social__stats {
    display: flex;
    gap: 12px;
    margin-top: 10px;
    font-size: 11px;
    color: #5a4a3a;
}
.aft-jh-social__stats b {
    display: block;
    font-size: 12px;
    color: #2a1f18;
}
.aft-jh-social__actions {
    margin-top: 12px;
    display: flex;
    gap: 8px;
}
.aft-jh-social__follow {
    background: #e85d2b;
    color: #fff;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 11.5px;
    font-weight: 700;
    text-decoration: none;
}
.aft-jh-social__msg {
    background: #eee0cd;
    color: #2a1f18;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 11.5px;
    font-weight: 700;
}
.aft-jh-social__bio {
    margin-top: 10px;
    font-size: 11px;
    color: #5a4a3a;
    line-height: 1.5;
}
/* ── Clip 9:16 estilo TikTok (centro da seção social) ─────────────────── */
.aft-jh-social__clip {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    transform: translateX(-50%);
    z-index: 4;
    /* largura calculada para 9:16 dentro da altura fixa de 480px */
    width: 270px;
    overflow: hidden;
    border-radius: 16px;
}
.aft-jh-social__clip-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}
/* gradiente escuro na parte inferior para legibilidade */
.aft-jh-social__clip-grad {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 65%;
    background: linear-gradient(to top, rgba(0,0,0,.85) 0%, rgba(0,0,0,.0) 100%);
    z-index: 2;
}
/* métricas lado direito */
.aft-jh-social__clip-side {
    position: absolute;
    right: 10px;
    bottom: 90px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: center;
}
.aft-jh-social__clip-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    color: #fff;
    filter: drop-shadow(0 1px 3px rgba(0,0,0,.6));
}
.aft-jh-social__clip-ico {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.aft-jh-social__clip-ico svg { width: 100%; height: 100%; }
.aft-jh-social__clip-num {
    font-size: 11px;
    font-weight: 700;
    text-align: center;
    line-height: 1;
}
/* rodapé do clip — perfil */
.aft-jh-social__clip-foot {
    position: absolute;
    bottom: 14px;
    left: 10px;
    right: 50px;
    z-index: 3;
    display: flex;
    align-items: flex-end;
    gap: 8px;
    color: #fff;
}
.aft-jh-social__clip-av {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    overflow: hidden;
    background: #666;
    border: 2px solid #fff;
    flex-shrink: 0;
}
.aft-jh-social__clip-av img { width: 100%; height: 100%; object-fit: cover; display: block; }
.aft-jh-social__clip-info { flex: 1; min-width: 0; }
.aft-jh-social__clip-hdl {
    font-size: 12px;
    font-weight: 700;
    line-height: 1.3;
    text-shadow: 0 1px 4px rgba(0,0,0,.7);
}
.aft-jh-social__clip-bio {
    font-size: 10px;
    line-height: 1.35;
    opacity: .9;
    margin-top: 2px;
    text-shadow: 0 1px 3px rgba(0,0,0,.6);
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.aft-jh-social__clip-follow {
    position: absolute;
    bottom: 14px;
    right: 10px;
    z-index: 3;
    font-size: 10px;
    font-weight: 700;
    color: #fff;
    border: 1.5px solid #fff;
    border-radius: 4px;
    padding: 4px 8px;
    text-decoration: none;
    white-space: nowrap;
    text-shadow: none;
    background: rgba(0,0,0,.2);
}

/* ── Conteúdos ─────────────────────────────────────────────────────────── */
.aft-jh-conteudos {
    padding: 64px 48px;
    background: linear-gradient(120deg, #ffe396, #ffc0cb 60%, #ffd6e8);
    text-align: center;
}
.aft-jh-conteudos__title {
    font-family: 'Caveat', cursive;
    font-weight: 700;
    font-size: clamp(32px, 5vw, 46px);
    color: #1a1a1a;
    margin-bottom: 8px;
}
.aft-jh-conteudos__sub {
    font-family: 'Archivo Black', 'Inter', sans-serif;
    font-size: 13px;
    color: #e85d2b;
    letter-spacing: 1px;
    margin-bottom: 30px;
}
.aft-jh-conteudos__grid {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}
.aft-jh-cont-item { text-align: center; }
.aft-jh-cont-item__img {
    width: 140px;
    height: 248px;
    object-fit: cover;
    object-position: top;
    border-radius: 22px;
    border: 5px solid #1a1a1a;
    display: block;
}
.aft-jh-cont-item span {
    display: block;
    margin-top: 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #1a1a1a;
}

/* ── Projetos ──────────────────────────────────────────────────────────── */
.aft-jh-projetos {
    padding: 64px 48px;
    background: #fdf4e7;
}
.aft-jh-projetos__title {
    font-family: 'Archivo Black', 'Inter', sans-serif;
    font-size: clamp(24px, 4vw, 34px);
    color: #1a1a1a;
    margin: 0 0 4px;
}
.aft-jh-projetos__sub {
    font-size: 12px;
    color: #9a8578;
    letter-spacing: .5px;
    margin-bottom: 30px;
    text-transform: uppercase;
}
/* carrossel */
.aft-jh-projetos__carousel-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}
.aft-jh-proj-btn {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px solid #1a1a1a;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    padding: 0;
    transition: background .15s, color .15s;
}
.aft-jh-proj-btn:hover { background: currentColor; }
.aft-jh-proj-btn:hover svg { stroke: #fff; }
.aft-jh-proj-btn svg { width: 16px; height: 16px; display: block; }
.aft-jh-projetos__carousel {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    flex: 1;
    padding-bottom: 4px;
}
.aft-jh-projetos__carousel::-webkit-scrollbar { display: none; }
.aft-jh-proj-item {
    flex-shrink: 0;
    scroll-snap-align: start;
    width: calc((100% - 2 * 18px) / 3);
    min-width: 140px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.aft-jh-proj-item__link {
    display: block;
    text-decoration: none;
    color: inherit;
}
.aft-jh-proj-item__img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    object-position: top;
    border-radius: 12px;
    display: block;
    transition: transform .2s;
}
.aft-jh-proj-item__link:hover .aft-jh-proj-item__img { transform: scale(1.02); }
.aft-jh-proj-item__label {
    display: block;
    margin-top: 10px;
    font-family: 'Caveat', cursive;
    font-size: 20px;
    font-weight: 700;
}

/* ── Processo Criativo ─────────────────────────────────────────────────── */
.aft-jh-processo {
    padding: 64px 48px;
    background: #1a1a1a;
    color: #fff;
}
.aft-jh-processo__title {
    text-align: center;
    font-family: 'Caveat', cursive;
    font-weight: 700;
    font-size: clamp(32px, 5vw, 44px);
    color: #ffc93c;
    margin-bottom: 36px;
}
.aft-jh-processo__steps {
    display: flex;
    gap: 24px;
}
.aft-jh-step {
    flex: 1;
    position: relative;
    padding-top: 20px;
}
.aft-jh-step__num {
    font-family: 'Archivo Black', 'Inter', sans-serif;
    font-size: 70px;
    color: rgba(255,255,255,.08);
    position: absolute;
    top: -10px;
    left: 0;
    line-height: 1;
    user-select: none;
}
.aft-jh-step__heading {
    position: relative;
    font-family: 'Archivo Black', 'Inter', sans-serif;
    font-size: 13px;
    color: #ffc93c;
    margin-bottom: 12px;
    letter-spacing: .5px;
}
.aft-jh-step p {
    position: relative;
    font-size: 13px;
    color: #e5d8c8;
    line-height: 1.7;
    margin: 0;
}

/* ── Produtos ──────────────────────────────────────────────────────────── */
.aft-jh-produtos {
    padding: 64px 0;
    background: #fdf4e7;
}
.aft-jh-produtos__title {
    text-align: center;
    font-family: 'Archivo Black', 'Inter', sans-serif;
    font-size: clamp(22px, 4vw, 32px);
    color: #1a1a1a;
    margin-bottom: 6px;
    padding: 0 48px;
}
.aft-jh-produtos__sub {
    text-align: center;
    font-size: 13px;
    color: #9a8578;
    margin-bottom: 28px;
}
.aft-jh-produtos__scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 0 48px 20px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #e0cbb5 transparent;
}
.aft-jh-prod-item {
    flex: none;
    scroll-snap-align: start;
    text-align: center;
    text-decoration: none;
    color: inherit;
}
.aft-jh-prod-item__img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 14px;
    display: block;
}
.aft-jh-prod-item span {
    display: block;
    margin-top: 8px;
    font-weight: 700;
    font-size: 13px;
    color: #1a1a1a;
    max-width: 180px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ── Contato ───────────────────────────────────────────────────────────── */
.aft-jh-contato {
    position: relative;
    overflow: hidden;
}
.aft-jh-contato__bg {
    width: 100%;
    height: 440px;
    object-fit: cover;
    object-position: center top;
    display: block;
    filter: brightness(.45);
}
.aft-jh-contato__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.15);
}
.aft-jh-contato__content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 0 40px;
}
.aft-jh-contato__title {
    font-family: 'Caveat', cursive;
    font-weight: 700;
    font-size: clamp(32px, 6vw, 56px);
    margin-bottom: 4px;
}
.aft-jh-contato__links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 24px;
}
.aft-jh-contato__links a {
    background: #ffc93c;
    color: #1a1a1a;
    padding: 12px 24px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: opacity .15s;
}
.aft-jh-contato__links a:hover { opacity: .85; }

/* ── Responsivo Jully Home ─────────────────────────────────────────────── */
@media (max-width: 700px) {
    .aft-jh-hero { height: 400px; }
    .aft-jh-hero__text { left: 24px; bottom: 40px; }
    .aft-jh-hero__badge { display: none; }
    .aft-jh-sobre { flex-direction: column; padding: 32px 0 0; height: auto; min-height: auto; gap: 0; }
    .aft-jh-sobre__bg-text { display: none; }
    .aft-jh-sobre__text { padding: 0 20px 24px; }
    .aft-jh-sobre__photo-wrap { width: 100%; height: auto; aspect-ratio: 1/1; align-self: auto; }
    .aft-jh-sobre__photo { width: 100%; height: 100%; }
    .aft-jh-sobre__bg-text { font-size: 36px; }
    .aft-jh-social { height: auto; flex-direction: column; align-items: center; padding: 40px 24px; gap: 24px; }
    .aft-jh-social__col { width: 100%; max-width: 300px; }
    .aft-jh-social__photo { display: none; }
    .aft-jh-social__clip  { display: none; }
    .aft-jh-social__watermark { font-size: 40px; }
    .aft-jh-processo__steps { flex-direction: column; }
    .aft-jh-projetos { padding: 48px 24px; }
    .aft-jh-projetos__carousel { gap: 12px; }
    .aft-jh-proj-item { width: calc((100% - 12px) / 2); min-width: 120px; }
    .aft-jh-proj-btn { width: 32px; height: 32px; }
    .aft-jh-conteudos { padding: 48px 24px; }
    .aft-jh-processo { padding: 48px 24px; }
}
