/* ===== ANIMATIONS ===== */

/* ===== HERO SECTION ===== */
.ghdrol-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 120px 40px 80px;
}

.ghdrol-hero__bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(255, 165, 0, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 100%, rgba(255, 215, 0, 0.03) 0%, transparent 50%);
}

.ghdrol-hero__grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 215, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 215, 0, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}

.ghdrol-hero__content {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.ghdrol-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    color: var(--ghdrol-gold);
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(30px);
}

.ghdrol-hero__badge-dot {
    width: 6px;
    height: 6px;
    background: var(--ghdrol-gold);
    border-radius: 50%;
    animation: blink 2s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.ghdrol-hero__title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(48px, 6vw, 80px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(50px);
}

.ghdrol-gradient-text {
    background: var(--ghdrol-gold-gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ghdrol-hero__subtitle {
    font-size: 20px;
    color: var(--ghdrol-gray);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 500px;
    font-weight: 400;
    opacity: 0;
    transform: translateY(30px);
}

.ghdrol-hero__buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(30px);
}

/* ===== BUTTONS ===== */
.ghdrol-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 36px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.ghdrol-btn--primary {
    background: var(--ghdrol-gold-gradient);
    color: #000000 !important;
}

.ghdrol-btn--primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.ghdrol-btn--primary:hover::before {
    transform: translateX(100%);
}

.ghdrol-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.3);
}

.ghdrol-btn--secondary {
    background: transparent;
    color: var(--ghdrol-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.ghdrol-btn--secondary:hover {
    border-color: var(--ghdrol-gold);
    color: var(--ghdrol-gold);
    background: rgba(255, 215, 0, 0.05);
}

.ghdrol-btn--large {
    font-size: 18px;
    padding: 20px 48px;
}

/* ===== PRODUCT SHOWCASE ===== */
.ghdrol-hero__visual {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
}

.ghdrol-product-showcase {
    position: relative;
    width: 540px;
    height: 540px;
}

.ghdrol-product-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.3) 0%, transparent 70%);
    filter: blur(60px);
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.9; }
}

.ghdrol-product-bottle {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Estilos comuns a todos os potes */
.ghdrol-bottle-svg {
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.8));
    flex-shrink: 0;
}

/* Pote central — maior, na frente */
.ghdrol-bottle-svg--center {
    width: 270px;
    height: 405px;
    position: relative;
    z-index: 3;
    filter: drop-shadow(0 40px 80px rgba(0,0,0,0.9));
    animation: float 6s ease-in-out infinite;
    margin: 0 -36px;
}

/* Potes laterais — menores, atrás */
.ghdrol-bottle-svg--side {
    width: 175px;
    height: 263px;
    position: relative;
    z-index: 2;
    opacity: 0.85;
}

/* Lateral esquerdo */
.ghdrol-bottle-svg--side:not(.ghdrol-bottle-svg--right) {
    animation: floatSideLeft 6s ease-in-out 1s infinite;
}

/* Lateral direito */
.ghdrol-bottle-svg--right {
    animation: floatSideRight 6s ease-in-out 2s infinite;
}

.ghdrol-product-img {
    max-width: 200px;
    height: auto;
    filter: drop-shadow(0 30px 60px rgba(0,0,0,0.8));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

@keyframes floatSideLeft {
    0%, 100% { transform: rotate(-7deg) translateY(0); }
    50% { transform: rotate(-7deg) translateY(-14px); }
}

@keyframes floatSideRight {
    0%, 100% { transform: rotate(7deg) translateY(0); }
    50% { transform: rotate(7deg) translateY(-14px); }
}

/* ===== STATS ===== */
.ghdrol-hero__stats {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
    z-index: 2;
}

.ghdrol-stat-item {
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
}

.ghdrol-stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 36px;
    font-weight: 700;
    background: var(--ghdrol-gold-gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ghdrol-stat-label {
    font-size: 13px;
    color: var(--ghdrol-gray);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== NAVBAR ===== */
.ghdrol-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 40px;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(0px);
}

.ghdrol-navbar.scrolled {
    background: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    padding: 15px 40px;
}

.ghdrol-navbar__container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ===== LOGO ===== */
.ghdrol-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.ghdrol-logo__icon {
    width: 42px;
    height: 42px;
    background: var(--ghdrol-gold-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 20px;
    color: var(--ghdrol-black);
    letter-spacing: -1px;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
    animation: logoPulse 3s ease-in-out infinite;
}

@keyframes logoPulse {
    0%, 100% { box-shadow: 0 0 30px rgba(255, 215, 0, 0.3); }
    50% { box-shadow: 0 0 50px rgba(255, 215, 0, 0.6); }
}

.ghdrol-logo__text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 700;
    background: var(--ghdrol-gold-gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.ghdrol-logo__text span {
    font-weight: 300;
    opacity: 0.7;
}

/* ===== NAV MENU ===== */
.ghdrol-nav-menu {
    display: flex;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.ghdrol-nav-menu li {
    position: relative;
}

.ghdrol-nav-menu a {
    color: var(--ghdrol-gray);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.ghdrol-nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--ghdrol-gold);
    transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.ghdrol-nav-menu a:hover {
    color: var(--ghdrol-white);
}

.ghdrol-nav-menu a:hover::after {
    width: 100%;
}

/* ===== NAV CTA ===== */
.ghdrol-nav-cta {
    background: var(--ghdrol-gold-gradient);
    color: var(--ghdrol-black);
    padding: 10px 24px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.3s;
}

.ghdrol-nav-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.4);
    color: var(--ghdrol-black);
}

/* ===== NAV CTA MOBILE ===== */
.ghdrol-nav-cta--mobile {
    display: none;
}

/* ===== MOBILE TOGGLE ===== */
.ghdrol-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.ghdrol-mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--ghdrol-white);
    transition: all 0.3s;
}

/* ===== MOBILE MENU ===== */
.ghdrol-mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(20px);
    padding: 20px;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.ghdrol-mobile-menu.active {
    display: block;
}

.ghdrol-mobile-menu__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ghdrol-mobile-menu__list a {
    color: var(--ghdrol-white);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 10px 0;
    display: block;
}

/* ===== SECTIONS COMMON ===== */
.ghdrol-section {
    padding: 120px 40px;
    position: relative;
}

.ghdrol-section__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.ghdrol-section__label {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    color: var(--ghdrol-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.ghdrol-section__title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
}

.ghdrol-section__desc {
    font-size: 18px;
    color: var(--ghdrol-gray);
    line-height: 1.7;
}

/* ===== FEATURES GRID ===== */
.ghdrol-features {
    background: var(--ghdrol-black-light);
}

.ghdrol-features-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    gap: 24px;
}

.ghdrol-features-grid--3 {
    grid-template-columns: repeat(3, 1fr);
}

.ghdrol-features-grid--2 {
    grid-template-columns: repeat(2, 1fr);
}

.ghdrol-features-grid--4 {
    grid-template-columns: repeat(4, 1fr);
}

.ghdrol-feature-card {
    background: var(--ghdrol-black-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 40px;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px);
}

.ghdrol-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--ghdrol-gold-gradient);
    opacity: 0;
    transition: opacity 0.5s;
}

.ghdrol-feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 215, 0, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.ghdrol-feature-card:hover::before {
    opacity: 1;
}

.ghdrol-feature-card__icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 24px;
}

.ghdrol-feature-card__title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--ghdrol-white);
}

.ghdrol-feature-card__desc {
    color: var(--ghdrol-gray);
    font-size: 15px;
    line-height: 1.6;
}

/* ===== STEPS TIMELINE ===== */
.ghdrol-steps {
    background: var(--ghdrol-black);
}

.ghdrol-steps__container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.ghdrol-steps__line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--ghdrol-gold), transparent);
    transform: translateX(-50%);
}

.ghdrol-step {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
    position: relative;
}

.ghdrol-step:last-child {
    margin-bottom: 0;
}

.ghdrol-step--right .ghdrol-step__content {
    grid-column: 2;
}

.ghdrol-step--right .ghdrol-step__visual {
    grid-column: 1;
    grid-row: 1;
}

.ghdrol-step__number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 120px;
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 215, 0, 0.3);
    line-height: 1;
    margin-bottom: 16px;
}

.ghdrol-step__title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--ghdrol-white);
}

.ghdrol-step__desc {
    color: var(--ghdrol-gray);
    font-size: 16px;
    line-height: 1.7;
}

.ghdrol-step__visual {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.ghdrol-step__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s;
}

.ghdrol-step:hover .ghdrol-step__visual img {
    transform: scale(1.05);
}

.ghdrol-step__visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5,5,5,0.8) 0%, transparent 50%);
}

/* ===== COMPOSITION ===== */
.ghdrol-composition {
    background: var(--ghdrol-black-light);
}

.ghdrol-comp-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.ghdrol-comp-card {
    background: var(--ghdrol-black-card);
    border-radius: 24px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    gap: 24px;
    transition: all 0.4s;
    opacity: 0;
    transform: translateY(30px);
}

.ghdrol-comp-card:hover {
    border-color: rgba(255, 215, 0, 0.2);
    transform: translateY(-4px);
}

.ghdrol-comp-card__icon {
    width: 64px;
    height: 64px;
    min-width: 64px;
    background: var(--ghdrol-gold-gradient);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    color: var(--ghdrol-black);
}

.ghdrol-comp-card__info {
    flex: 1;
}

.ghdrol-comp-card__dosage {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    color: var(--ghdrol-gold);
    margin-bottom: 12px;
}

.ghdrol-comp-card__name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--ghdrol-white);
}

.ghdrol-comp-card__desc {
    color: var(--ghdrol-gray);
    font-size: 14px;
    line-height: 1.6;
}

/* ===== PRICING ===== */
.ghdrol-pricing {
    background: var(--ghdrol-black);
}

.ghdrol-pricing-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.ghdrol-price-card {
    background: var(--ghdrol-black-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.5s;
    opacity: 0;
    transform: translateY(40px);
}

.ghdrol-price-card:hover {
    transform: translateY(-12px);
    border-color: rgba(255, 215, 0, 0.3);
}

.ghdrol-price-card--featured {
    background: linear-gradient(180deg, rgba(255, 215, 0, 0.08) 0%, var(--ghdrol-black-card) 100%);
    border-color: rgba(255, 215, 0, 0.3);
    transform: scale(1.05);
}

.ghdrol-price-card--featured:hover {
    transform: scale(1.08) translateY(-12px);
}

.ghdrol-price-card__badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--ghdrol-gold-gradient);
    color: var(--ghdrol-black);
    padding: 6px 20px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ghdrol-price-card__title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--ghdrol-gray);
}

.ghdrol-price-card__amount {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 48px;
    font-weight: 700;
    background: var(--ghdrol-gold-gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 16px 0;
}

.ghdrol-price-card__full {
    font-size: 16px;
    font-weight: 600;
    color: #4caf50;
    margin-top: -10px;
    margin-bottom: 6px;
}

.ghdrol-price-card__old {
    font-size: 14px;
    color: var(--ghdrol-gray);
    text-decoration: line-through;
    margin-bottom: 24px;
}

.ghdrol-price-card__features {
    list-style: none;
    margin-bottom: 32px;
    padding: 0;
}

.ghdrol-price-card__features li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--ghdrol-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.ghdrol-price-card__features li:last-child {
    border-bottom: none;
}

.ghdrol-price-card__feature--highlight {
    color: var(--ghdrol-white) !important;
    font-weight: 600;
}

.ghdrol-price-card__btn {
    display: block;
    width: 100%;
    padding: 14px;
    background: var(--ghdrol-gold-gradient);
    color: var(--ghdrol-black);
    border: none;
    border-radius: 100px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.ghdrol-price-card__btn:hover {
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.3);
    transform: scale(1.02);
    color: var(--ghdrol-black);
}

/* ===== TESTIMONIALS ===== */
.ghdrol-testimonials {
    background: var(--ghdrol-black-light);
    overflow: hidden;
}

.ghdrol-testimonials__wrapper {
    overflow: hidden;
    width: 100%;
}

.ghdrol-testimonials__track {
    display: flex;
    gap: 24px;
    animation: scroll 40s linear infinite;
    width: max-content;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.ghdrol-testimonial-card {
    background: var(--ghdrol-black-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 24px;
    min-width: 260px;
    max-width: 300px;
    transition: all 0.4s;
}

.ghdrol-testimonial-card:hover {
    border-color: rgba(255, 215, 0, 0.2);
}

.ghdrol-testimonial-card__stars {
    color: var(--ghdrol-gold);
    font-size: 18px;
    margin-bottom: 16px;
}

.ghdrol-testimonial-card__text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--ghdrol-gray);
    margin-bottom: 20px;
}

.ghdrol-testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ghdrol-testimonial-card__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--ghdrol-gold-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--ghdrol-black);
    font-size: 16px;
    flex-shrink: 0;
    overflow: hidden;
}

.ghdrol-testimonial-card__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.ghdrol-testimonial-card__name {
    font-weight: 600;
    font-size: 14px;
    color: var(--ghdrol-white);
}

.ghdrol-testimonial-card__role {
    font-size: 12px;
    color: var(--ghdrol-gray);
}

/* ===== FAQ ===== */
.ghdrol-faq {
    background: var(--ghdrol-black);
}

.ghdrol-faq__container {
    max-width: 800px;
    margin: 0 auto;
}

.ghdrol-faq__item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    opacity: 0;
    transform: translateY(20px);
}

.ghdrol-faq__question {
    padding: 28px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: color 0.3s;
}

.ghdrol-faq__question:hover {
    color: var(--ghdrol-gold);
}

.ghdrol-faq__question h3 {
    font-size: 18px;
    font-weight: 600;
    padding-right: 20px;
    color: var(--ghdrol-white);
    margin: 0;
}

.ghdrol-faq__icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    flex-shrink: 0;
    color: var(--ghdrol-white);
}

.ghdrol-faq__item.active .ghdrol-faq__icon {
    background: var(--ghdrol-gold);
    border-color: var(--ghdrol-gold);
    color: var(--ghdrol-black);
    transform: rotate(45deg);
}

.ghdrol-faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1), padding 0.5s;
}

.ghdrol-faq__item.active .ghdrol-faq__answer {
    max-height: 500px;
    padding-bottom: 28px;
}

.ghdrol-faq__answer-content {
    color: var(--ghdrol-gray);
    line-height: 1.7;
    font-size: 15px;
}

.ghdrol-faq__answer-content p {
    margin: 0 0 16px;
}

.ghdrol-faq__answer-content p:last-child {
    margin-bottom: 0;
}

/* ===== CTA SECTION ===== */
.ghdrol-cta {
    background: var(--ghdrol-black-light);
    text-align: center;
    padding: 160px 40px;
    position: relative;
    overflow: hidden;
}

.ghdrol-cta__glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.15) 0%, transparent 70%);
    filter: blur(80px);
}

.ghdrol-cta__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.1;
}

.ghdrol-cta__content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.ghdrol-cta__title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 700;
    margin-bottom: 24px;
}

.ghdrol-cta__desc {
    font-size: 20px;
    color: var(--ghdrol-gray);
    margin-bottom: 40px;
}

/* ===== ARTICLE ===== */
.ghdrol-article {
    background: var(--ghdrol-black);
}

.ghdrol-article.ghdrol-section {
    padding: 0;
}

.ghdrol-article__container {
    max-width: 900px;
    margin: 0 auto;
    padding: 56px 40px;
}

.ghdrol-article__title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
}

.ghdrol-article__content {
    color: var(--ghdrol-gray);
    font-size: 17px;
    line-height: 1.8;
}

.ghdrol-article__content h3 {
    font-size: 24px;
    font-weight: 700;
    margin: 48px 0 20px;
    color: var(--ghdrol-gold);
}

.ghdrol-article__content p {
    margin-bottom: 20px;
}

.ghdrol-article__content ul,
.ghdrol-article__content ol {
    margin-bottom: 24px;
    padding-left: 24px;
}

.ghdrol-article__content li {
    margin-bottom: 12px;
}

.ghdrol-article__content strong {
    color: var(--ghdrol-white);
}

.ghdrol-article__gallery {
    margin: 40px 0;
}

.ghdrol-article__image {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 24px;
}

.ghdrol-article__image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s;
}

.ghdrol-article__image:hover img {
    transform: scale(1.03);
}

/* ===== FOOTER ===== */
.ghdrol-footer {
    background: var(--ghdrol-black);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 60px 40px 40px;
}

.ghdrol-footer__container {
    max-width: 1200px;
    margin: 0 auto;
}

.ghdrol-footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.ghdrol-footer__brand {
    max-width: 300px;
}

.ghdrol-footer__brand .ghdrol-logo {
    margin-bottom: 16px;
}

.ghdrol-footer__desc {
    color: var(--ghdrol-gray);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.ghdrol-footer__whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #25D366;
    color: white;
    border-radius: 100px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s;
}

.ghdrol-footer__whatsapp:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
    color: white;
}

.ghdrol-footer__col h4 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: var(--ghdrol-white);
}

.ghdrol-footer__col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ghdrol-footer__col li {
    margin-bottom: 12px;
}

.ghdrol-footer__col a {
    color: var(--ghdrol-gray);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.ghdrol-footer__col a:hover {
    color: var(--ghdrol-gold);
}

.ghdrol-footer__bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.ghdrol-footer__copyright {
    color: var(--ghdrol-gray);
    font-size: 13px;
    margin: 0;
}

.ghdrol-footer__social {
    display: flex;
    gap: 16px;
}

.ghdrol-footer__social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ghdrol-gray);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 12px;
    font-weight: 700;
}

.ghdrol-footer__social a:hover {
    border-color: var(--ghdrol-gold);
    color: var(--ghdrol-gold);
    background: rgba(255, 215, 0, 0.1);
}

/* ===== PAGE / SINGLE ===== */
.ghdrol-page,
.ghdrol-single {
    padding-top: 100px;
}

.ghdrol-page__hero,
.ghdrol-single__header {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 60px;
    overflow: hidden;
}

.ghdrol-page__hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ghdrol-page__hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(5,5,5,0.5), rgba(5,5,5,0.9));
}

.ghdrol-page__hero-content,
.ghdrol-page__header,
.ghdrol-single__header {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 60px 40px;
}

.ghdrol-page__title,
.ghdrol-single__title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 700;
    margin: 0;
}

.ghdrol-page__content,
.ghdrol-single__content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px 80px;
    color: var(--ghdrol-gray);
    font-size: 17px;
    line-height: 1.8;
}

.ghdrol-page__content h2,
.ghdrol-single__content h2 {
    color: var(--ghdrol-white);
    font-size: 28px;
    margin: 40px 0 20px;
}

.ghdrol-page__content h3,
.ghdrol-single__content h3 {
    color: var(--ghdrol-gold);
    font-size: 22px;
    margin: 32px 0 16px;
}

.ghdrol-single__meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 14px;
    color: var(--ghdrol-gray);
}

.ghdrol-single__excerpt {
    font-size: 18px;
    color: var(--ghdrol-gray);
    max-width: 600px;
    margin: 0 auto;
}

.ghdrol-single__footer {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.ghdrol-single__tags {
    margin-bottom: 20px;
}

.ghdrol-single__tags a {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 100px;
    font-size: 12px;
    color: var(--ghdrol-gold);
    margin-right: 8px;
    margin-bottom: 8px;
}

.ghdrol-single__share {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.ghdrol-single__share span {
    color: var(--ghdrol-gray);
    font-size: 14px;
}

.ghdrol-single__share a {
    color: var(--ghdrol-gray);
    font-size: 14px;
    transition: color 0.3s;
}

.ghdrol-single__share a:hover {
    color: var(--ghdrol-gold);
}

/* ===== SINGLE POST LAYOUT SYSTEM ===== */

/* -- CSS custom properties por tema -- */
.ghdrol-single--dark {
    --post-card-bg:       #111111;
    --post-card-border:   rgba(255,255,255,0.06);
    --post-card-shadow:   0 16px 80px rgba(0,0,0,0.6);
    --post-divider:       rgba(255,255,255,0.07);
    --post-text:          rgba(255,255,255,0.72);
    --post-heading:       #ffffff;
    --post-h3:            var(--ghdrol-gold);
    --post-meta:          rgba(255,255,255,0.45);
    --post-sep:           rgba(255,255,255,0.2);
    --post-link:          var(--ghdrol-gold);
    --post-tag-bg:        rgba(255,215,0,0.1);
    --post-tag-color:     var(--ghdrol-gold);
    --post-share-color:   rgba(255,255,255,0.5);
    --post-nav-color:     rgba(255,255,255,0.5);
}

.ghdrol-single--light {
    --post-card-bg:       #ffffff;
    --post-card-border:   transparent;
    --post-card-shadow:   0 16px 80px rgba(0,0,0,0.18);
    --post-divider:       rgba(0,0,0,0.08);
    --post-text:          #444444;
    --post-heading:       #0a0a0a;
    --post-h3:            #b87a00;
    --post-meta:          #888888;
    --post-sep:           rgba(0,0,0,0.2);
    --post-link:          #b87a00;
    --post-tag-bg:        rgba(184,122,0,0.1);
    --post-tag-color:     #b87a00;
    --post-share-color:   #888888;
    --post-nav-color:     rgba(255,255,255,0.6);
}

/* Wrapper */
.ghdrol-single-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 40px 80px;
}

.ghdrol-single-wrap--full .ghdrol-single {
    max-width: 980px;
    margin: 0 auto;
}

.ghdrol-single-wrap--sidebar {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 60px;
    align-items: start;
}

.ghdrol-single-wrap .ghdrol-single {
    padding-top: 0;
}

/* Card — o elemento visual principal */
.ghdrol-single__card {
    border-radius: 25px;
    overflow: hidden;
    background: var(--post-card-bg);
    border: 1px solid var(--post-card-border);
    box-shadow: var(--post-card-shadow);
}

/* Hero image dentro do card */
.ghdrol-single__hero {
    position: relative;
    height: 420px;
    overflow: hidden;
}

.ghdrol-single__hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ghdrol-single__hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(5,5,5,0.55));
    pointer-events: none;
}

/* Corpo do card: padding único controla todos os filhos */
.ghdrol-single__card-body {
    padding: 40px 48px;
}

/* Header */
.ghdrol-single__header {
    min-height: auto !important;
    position: static !important;
    display: block !important;
    text-align: left !important;
    padding: 0 0 28px !important;
    margin-bottom: 0 !important;
    border-bottom: 1px solid var(--post-divider) !important;
}

.ghdrol-single__meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    font-size: 13px;
    color: var(--post-meta);
    justify-content: flex-start;
    flex-wrap: wrap;
}

.ghdrol-single__meta a {
    color: var(--post-meta);
}

.ghdrol-single__sep {
    color: var(--post-sep);
}

.ghdrol-single__read-time {
    color: var(--post-meta);
}

.ghdrol-single__title {
    color: var(--post-heading) !important;
    text-align: left !important;
    margin-bottom: 14px !important;
}

.ghdrol-single__excerpt {
    color: var(--post-text);
    text-align: left !important;
    margin: 0 !important;
    max-width: none !important;
}

/* Conteúdo */
.ghdrol-single__content {
    color: var(--post-text);
    padding: 32px 0 !important;
    max-width: none !important;
    margin: 0 !important;
}

.ghdrol-single__content h2 {
    color: var(--post-heading) !important;
}

.ghdrol-single__content h3 {
    color: var(--post-h3) !important;
}

.ghdrol-single__content a {
    color: var(--post-link);
}

.ghdrol-single__content a:hover {
    text-decoration: underline;
}

.ghdrol-single__content strong {
    color: var(--post-heading);
}

/* Footer */
.ghdrol-single__footer {
    padding: 24px 0 0 !important;
    max-width: none !important;
    margin: 0 !important;
    border-top: 1px solid var(--post-divider) !important;
}

.ghdrol-single__tags a {
    background: var(--post-tag-bg) !important;
    color: var(--post-tag-color) !important;
}

.ghdrol-single__share span,
.ghdrol-single__share a {
    color: var(--post-share-color) !important;
}

.ghdrol-single__share a:hover {
    color: var(--post-link) !important;
}

/* Navegação abaixo do card */
.ghdrol-single__below {
    margin-top: 40px;
}

.ghdrol-single__below .nav-links {
    display: flex;
    justify-content: space-between;
    gap: 24px;
}

.ghdrol-single__below .nav-previous a,
.ghdrol-single__below .nav-next a {
    color: var(--post-nav-color);
    font-size: 14px;
    transition: color 0.3s;
}

.ghdrol-single__below .nav-previous a:hover,
.ghdrol-single__below .nav-next a:hover {
    color: var(--ghdrol-gold);
}

/* ===== SIDEBAR ===== */
.ghdrol-sidebar {
    position: sticky;
    top: 100px;
}

.ghdrol-sidebar .widget {
    background: var(--ghdrol-black-card);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
}

.ghdrol-sidebar .widget:last-child {
    margin-bottom: 0;
}

.ghdrol-sidebar .widget-title,
.ghdrol-sidebar .widgettitle {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--ghdrol-gold);
    margin: 0 0 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,215,0,0.15);
}

.ghdrol-sidebar .widget a {
    color: var(--ghdrol-gray);
    font-size: 14px;
    line-height: 1.5;
    transition: color 0.3s;
}

.ghdrol-sidebar .widget a:hover {
    color: var(--ghdrol-gold);
}

.ghdrol-sidebar .widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ghdrol-sidebar .widget ul li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    font-size: 14px;
    color: var(--ghdrol-gray);
}

.ghdrol-sidebar .widget ul li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

/* ===== ARTICLE CONTENT COMPONENTS ===== */
.ghdrol-article__content .highlight-box {
    background: var(--ghdrol-black-card);
    border-left: 4px solid var(--ghdrol-gold);
    padding: 24px 28px;
    border-radius: 0 16px 16px 0;
    margin: 32px 0;
}

.ghdrol-article__content .highlight-box p {
    margin: 0;
    color: var(--ghdrol-white);
    font-weight: 500;
}

.ghdrol-article__content .comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 32px 0;
    font-size: 15px;
}

.ghdrol-article__content .comparison-table th {
    background: rgba(255, 215, 0, 0.1);
    color: var(--ghdrol-gold);
    padding: 16px;
    text-align: left;
    font-weight: 600;
    border-bottom: 2px solid rgba(255, 215, 0, 0.2);
}

.ghdrol-article__content .comparison-table td {
    padding: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--ghdrol-gray);
}

.ghdrol-article__content .comparison-table tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}

.ghdrol-article__content .comparison-table td:first-child {
    color: var(--ghdrol-white);
    font-weight: 600;
}

/* ===== ANIMATED ELEMENTS ===== */
.ghdrol-hero__badge,
.ghdrol-hero__title,
.ghdrol-hero__subtitle,
.ghdrol-hero__buttons,
.ghdrol-stat-item,
.ghdrol-feature-card,
.ghdrol-comp-card,
.ghdrol-price-card,
.ghdrol-faq__item {
    opacity: 0;
    transform: translateY(30px);
}

/* ===== GSAP ANIMATED STATES ===== */
.gsap-animated {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

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

/* Tablet: ≤ 1024px */
@media (max-width: 1024px) {
    .ghdrol-hero__content {
        gap: 48px;
    }

    .ghdrol-features-grid--4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .ghdrol-comp-grid {
        grid-template-columns: 1fr;
        max-width: 680px;
    }

    .ghdrol-pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 760px;
        margin: 0 auto;
    }

    .ghdrol-price-card--featured {
        transform: none;
    }

    .ghdrol-footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .ghdrol-footer__brand {
        grid-column: 1 / -1;
        max-width: 100%;
    }
}

/* Mobile: ≤ 768px */
@media (max-width: 768px) {
    /* WPBakery column inner reset */
    .vc_column_container > .vc_column-inner {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    /* Navbar */
    .ghdrol-nav-menu,
    .ghdrol-nav-cta:not(.ghdrol-nav-cta--mobile) { display: none; }
    .ghdrol-mobile-toggle { display: flex; }
    .ghdrol-navbar { padding: 14px 20px; }
    .ghdrol-nav-cta--mobile {
        display: inline-flex;
        align-items: center;
        margin-left: auto;
        margin-right: 12px;
        padding: 8px 18px;
        font-size: 13px;
        white-space: nowrap;
    }

    /* Sections */
    .ghdrol-section {
        padding: 60px 20px;
    }
    .ghdrol-section__header {
        margin-bottom: 40px;
    }
    .ghdrol-section__title {
        font-size: clamp(26px, 6.5vw, 38px);
    }

    /* Hero */
    .ghdrol-hero {
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        min-height: auto;
        padding: 90px 20px 48px;
    }
    .ghdrol-hero__content {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
        width: 100%;
        max-width: 520px;
        margin: 0 auto;
    }
    .ghdrol-hero__text {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .ghdrol-hero__title {
        font-size: clamp(32px, 8.5vw, 52px);
        letter-spacing: -1px;
    }
    .ghdrol-hero__subtitle {
        font-size: 16px;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    .ghdrol-hero__buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    .ghdrol-hero__buttons .ghdrol-btn {
        width: 100%;
        max-width: 400px;
        justify-content: center;
    }
    .ghdrol-product-showcase {
        width: 320px;
        height: 360px;
        margin: 0 auto;
    }
    .ghdrol-bottle-svg--center {
        width: 148px;
        height: 222px;
        margin: 0 -20px;
    }
    .ghdrol-bottle-svg--side {
        width: 96px;
        height: 144px;
    }
    .ghdrol-product-img {
        max-width: 150px;
    }
    .ghdrol-hero__stats {
        gap: 24px;
        flex-wrap: wrap;
        width: 100%;
    }
    .ghdrol-stat-item { min-width: 80px; }
    .ghdrol-stat-number { font-size: 28px; }
    .ghdrol-stat-label { font-size: 11px; }

    /* Features */
    .ghdrol-features-grid--3 {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .ghdrol-feature-card {
        padding: 24px 18px;
    }
    .ghdrol-feature-card__icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
    .ghdrol-feature-card__title { font-size: 17px; }

    /* Steps */
    .ghdrol-steps__line { display: none; }
    .ghdrol-step {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 56px;
    }
    .ghdrol-step--right .ghdrol-step__content,
    .ghdrol-step--right .ghdrol-step__visual {
        grid-column: 1;
        grid-row: auto;
    }
    .ghdrol-step__number { font-size: 72px; }
    .ghdrol-step__title { font-size: 22px; }
    .ghdrol-step__visual { aspect-ratio: 16/9; }

    /* Composition */
    .ghdrol-comp-grid { grid-template-columns: 1fr; }
    .ghdrol-comp-card { padding: 24px; gap: 16px; }
    .ghdrol-comp-card__icon { width: 52px; height: 52px; min-width: 52px; }

    /* Pricing */
    .ghdrol-pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        max-width: 560px;
        margin: 0 auto;
    }
    .ghdrol-price-card--featured {
        transform: none;
        grid-column: 1 / -1;
    }
    .ghdrol-price-card { padding: 32px 20px; }
    .ghdrol-price-card__amount { font-size: 36px; }

    /* Testimonials */
    .ghdrol-testimonial-card {
        min-width: 270px;
        padding: 22px;
    }

    /* FAQ */
    .ghdrol-faq__question { padding: 20px 0; }
    .ghdrol-faq__question h3 { font-size: 16px; }

    /* CTA */
    .ghdrol-cta { padding: 80px 20px; }
    .ghdrol-cta__desc { font-size: 16px; }
    .ghdrol-cta .ghdrol-btn--large {
        width: 100%;
        max-width: 100%;
        justify-content: center;
        font-size: 16px;
        padding: 18px 28px;
    }

    /* Articles */
    .ghdrol-article.ghdrol-section { padding: 0; }
    .ghdrol-article__container { padding: 40px 20px; }
    .ghdrol-article__title { font-size: 24px; }
    .ghdrol-article__content { font-size: 15px; }
    .ghdrol-article__content h3 { font-size: 19px; margin: 28px 0 14px; }
    .ghdrol-article__content .comparison-table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        font-size: 13px;
    }
    .ghdrol-article__content .comparison-table th,
    .ghdrol-article__content .comparison-table td {
        padding: 10px 12px;
        min-width: 88px;
        white-space: nowrap;
    }
    .ghdrol-article__content .highlight-box {
        padding: 18px 20px;
    }
    .ghdrol-article__gallery { gap: 12px; }

    /* Footer */
    .ghdrol-footer { padding: 48px 20px 32px; }
    .ghdrol-footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    .ghdrol-footer__brand { grid-column: 1 / -1; }
    .ghdrol-footer__bottom {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    .ghdrol-footer__social { justify-content: center; }
}

/* Small mobile: ≤ 480px */
@media (max-width: 480px) {
    .ghdrol-hero__content { max-width: 100%; }
    .ghdrol-hero__stats { gap: 16px; }
    .ghdrol-stat-item { min-width: 72px; }

    .ghdrol-features-grid--3,
    .ghdrol-features-grid--2 {
        grid-template-columns: 1fr;
    }

    .ghdrol-pricing-grid {
        grid-template-columns: 1fr;
        max-width: 340px;
    }
    .ghdrol-price-card--featured { grid-column: 1; }

    .ghdrol-footer__grid { grid-template-columns: 1fr; }

    .ghdrol-hero__buttons .ghdrol-btn {
        font-size: 14px;
        padding: 14px 20px;
    }

    .ghdrol-section { padding: 48px 16px; }
    .ghdrol-cta { padding: 64px 16px; }
}

/* ===== BLOG ARCHIVE / INDEX ===== */

.ghdrol-blog-page {
    padding-top: 100px;
    padding-bottom: 80px;
    min-height: 60vh;
}

.ghdrol-blog-page__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header */
.ghdrol-blog-header {
    text-align: center;
    margin-bottom: 56px;
}

.ghdrol-blog-header__title {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.ghdrol-blog-header__desc {
    font-size: 16px;
    color: rgba(255,255,255,0.55);
    max-width: 560px;
    margin: 0 auto;
}

/* Toolbar */
.ghdrol-blog-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.ghdrol-blog-toolbar__count {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    font-weight: 500;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.ghdrol-blog-toolbar__views {
    display: flex;
    gap: 4px;
}

.ghdrol-view-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    background: transparent;
    color: rgba(255,255,255,0.35);
    cursor: pointer;
    transition: all 0.2s ease;
}

.ghdrol-view-btn:hover {
    border-color: rgba(255,215,0,0.4);
    color: rgba(255,215,0,0.7);
}

.ghdrol-view-btn.active {
    background: rgba(255,215,0,0.12);
    border-color: var(--ghdrol-gold, #FFD700);
    color: var(--ghdrol-gold, #FFD700);
}

/* Posts wrapper — GRID view */
.ghdrol-posts-wrap.is-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* Posts wrapper — LIST view */
.ghdrol-posts-wrap.is-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* ===== POST CARD ===== */

.ghdrol-post-card {
    background: #111111;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.ghdrol-post-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    border-color: rgba(255,215,0,0.18);
}

/* Thumb — grid mode: full width, fixed height */
.ghdrol-posts-wrap.is-grid .ghdrol-post-card__thumb {
    display: block;
    width: 100%;
    height: 200px;
    overflow: hidden;
    flex-shrink: 0;
}

/* Thumb — list mode: fixed width column */
.ghdrol-posts-wrap.is-list .ghdrol-post-card {
    flex-direction: row;
    border-radius: 14px;
}

.ghdrol-posts-wrap.is-list .ghdrol-post-card__thumb {
    display: block;
    width: 240px;
    flex-shrink: 0;
    overflow: hidden;
}

.ghdrol-post-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.ghdrol-post-card:hover .ghdrol-post-card__img {
    transform: scale(1.05);
}

.ghdrol-post-card__img--placeholder {
    background: linear-gradient(135deg, rgba(255,215,0,0.06) 0%, rgba(255,255,255,0.03) 100%);
    min-height: 200px;
}

/* Body */
.ghdrol-post-card__body {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 22px 24px 24px;
    flex: 1;
}

/* Meta row */
.ghdrol-post-card__meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.ghdrol-post-card__cat {
    display: inline-block;
    padding: 3px 10px;
    background: rgba(255,215,0,0.12);
    color: var(--ghdrol-gold, #FFD700);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.2s;
}

.ghdrol-post-card__cat:hover {
    background: rgba(255,215,0,0.22);
}

.ghdrol-post-card__date,
.ghdrol-post-card__read-time {
    font-size: 12px;
    color: rgba(255,255,255,0.35);
}

.ghdrol-post-card__date::before,
.ghdrol-post-card__read-time::before {
    content: '·';
    margin-right: 8px;
    opacity: 0.5;
}

/* Title */
.ghdrol-post-card__title {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0;
    color: #ffffff;
}

.ghdrol-post-card__title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.ghdrol-post-card__title a:hover {
    color: var(--ghdrol-gold, #FFD700);
}

/* List mode: larger title */
.ghdrol-posts-wrap.is-list .ghdrol-post-card__title {
    font-size: 18px;
}

/* Excerpt */
.ghdrol-post-card__excerpt {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    line-height: 1.65;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ghdrol-posts-wrap.is-list .ghdrol-post-card__excerpt {
    -webkit-line-clamp: 2;
}

/* Read more link */
.ghdrol-post-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    padding-top: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--ghdrol-gold, #FFD700);
    text-decoration: none;
    transition: gap 0.2s;
}

.ghdrol-post-card__link:hover {
    gap: 10px;
}

/* ===== PAGINATION ===== */

.ghdrol-blog-pagination {
    margin-top: 52px;
}

.ghdrol-blog-pagination .nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
}

.ghdrol-blog-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border-radius: 10px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.6);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    justify-content: center;
}

.ghdrol-blog-pagination .page-numbers:hover {
    background: rgba(255,215,0,0.1);
    border-color: rgba(255,215,0,0.3);
    color: var(--ghdrol-gold, #FFD700);
}

.ghdrol-blog-pagination .page-numbers.current {
    background: var(--ghdrol-gold, #FFD700);
    border-color: var(--ghdrol-gold, #FFD700);
    color: #0a0a0a;
}

.ghdrol-blog-pagination .prev.page-numbers,
.ghdrol-blog-pagination .next.page-numbers {
    padding: 0 16px;
    gap: 8px;
}

/* Empty state */
.ghdrol-blog-empty {
    text-align: center;
    padding: 80px 20px;
    color: rgba(255,255,255,0.4);
    font-size: 16px;
}

/* ===== AUTHOR BOX (single post) ===== */

.ghdrol-author-box {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 16px;
    padding: 28px 32px;
    margin-top: 32px;
    transition: background 0.3s, border-color 0.3s;
}

.ghdrol-author-box__avatar-link {
    display: block;
    flex-shrink: 0;
    text-decoration: none;
}

.ghdrol-author-box__avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255,215,0,0.3);
    display: block;
    transition: border-color 0.2s;
}

.ghdrol-author-box__avatar--initials {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,215,0,0.12);
    color: #FFD700;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.ghdrol-author-box__info {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
    min-width: 0;
}

/* ---- Dark (padrão) ---- */
.ghdrol-author-box__label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.38);
}

.ghdrol-author-box__name {
    font-size: 18px;
    font-weight: 800;
    color: #ffffff !important;
    text-decoration: none !important;
    transition: color 0.2s;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.ghdrol-author-box__name:hover {
    color: #FFD700 !important;
}

.ghdrol-author-box__bio {
    font-size: 14px;
    color: rgba(255,255,255,0.58);
    line-height: 1.65;
    margin: 4px 0 0;
}

.ghdrol-author-box__footer {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 6px;
}

.ghdrol-author-box__count {
    font-size: 12px;
    color: rgba(255,255,255,0.38);
    font-weight: 500;
}

.ghdrol-author-box__cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    color: #FFD700 !important;
    text-decoration: none !important;
    transition: gap 0.2s;
}

.ghdrol-author-box__cta:hover {
    gap: 10px;
}

.ghdrol-author-box__avatar-link:hover .ghdrol-author-box__avatar {
    border-color: #FFD700;
}

/* ---- Light ---- */
.ghdrol-single--light .ghdrol-author-box {
    background: rgba(0,0,0,0.04);
    border-color: rgba(0,0,0,0.09);
}

.ghdrol-single--light .ghdrol-author-box__label {
    color: rgba(0,0,0,0.4);
}

.ghdrol-single--light .ghdrol-author-box__name {
    color: #111111 !important;
}

.ghdrol-single--light .ghdrol-author-box__name:hover {
    color: #b87a00 !important;
}

.ghdrol-single--light .ghdrol-author-box__bio {
    color: #555555;
}

.ghdrol-single--light .ghdrol-author-box__count {
    color: rgba(0,0,0,0.4);
}

.ghdrol-single--light .ghdrol-author-box__cta {
    color: #b87a00 !important;
}

.ghdrol-single--light .ghdrol-author-box__avatar--initials {
    background: rgba(184,122,0,0.1);
    color: #b87a00;
}

.ghdrol-single--light .ghdrol-author-box__avatar-link:hover .ghdrol-author-box__avatar {
    border-color: #b87a00;
}

/* ===== BLOG CARDS — LIGHT THEME ===== */

.ghdrol-posts-wrap[data-theme="light"] .ghdrol-post-card {
    background: #ffffff;
    border-color: rgba(0,0,0,0.07);
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.ghdrol-posts-wrap[data-theme="light"] .ghdrol-post-card:hover {
    border-color: rgba(184,122,0,0.25);
    box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

.ghdrol-posts-wrap[data-theme="light"] .ghdrol-post-card__title {
    color: #0a0a0a;
}

.ghdrol-posts-wrap[data-theme="light"] .ghdrol-post-card__title a:hover {
    color: #b87a00;
}

.ghdrol-posts-wrap[data-theme="light"] .ghdrol-post-card__excerpt {
    color: #555555;
}

.ghdrol-posts-wrap[data-theme="light"] .ghdrol-post-card__date,
.ghdrol-posts-wrap[data-theme="light"] .ghdrol-post-card__read-time {
    color: #888888;
}

.ghdrol-posts-wrap[data-theme="light"] .ghdrol-post-card__link {
    color: #b87a00;
}

.ghdrol-posts-wrap[data-theme="light"] .ghdrol-post-card__cat {
    background: rgba(184,122,0,0.1);
    color: #b87a00;
}

.ghdrol-posts-wrap[data-theme="light"] .ghdrol-post-card__img--placeholder {
    background: linear-gradient(135deg, rgba(184,122,0,0.06) 0%, rgba(0,0,0,0.03) 100%);
}

/* ===== AUTHOR ARCHIVE HEADER ===== */

.ghdrol-author-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
    padding: 48px 20px 52px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    margin-bottom: 48px;
}

.ghdrol-author-header__avatar {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255,215,0,0.35);
    display: block;
}

.ghdrol-author-header__avatar--initials {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,215,0,0.1);
    color: var(--ghdrol-gold, #FFD700);
    font-size: 36px;
    font-weight: 800;
}

.ghdrol-author-header__name {
    font-size: clamp(24px, 3.5vw, 38px);
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.02em;
}

.ghdrol-author-header__bio {
    font-size: 15px;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
    max-width: 520px;
    margin: 0;
}

.ghdrol-author-header__count {
    display: inline-block;
    padding: 4px 14px;
    background: rgba(255,215,0,0.1);
    color: var(--ghdrol-gold, #FFD700);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
