/*
Theme Name: GeneratePress Child
Theme URI: https://jasagrowth.com
Description: Child theme de GeneratePress para JasaGrowth
Author: JasaGrowth
Template: generatepress
Version: 1.0.0
*/



/* ===== Grid de tarjetas para categorías ===== */

.category-archive-header {
	text-align: center;
	max-width: 800px;
	margin: 0 auto 40px;
	padding-top: 20px;
}

.category-archive-title {
	font-size: 2.2em;
	margin-bottom: 10px;
}

.category-archive-description {
	color: #666;
	font-size: 1.05em;
}

.category-posts-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 30px;
	margin: 0 auto 40px;
	max-width: 1200px;
	padding: 0 20px;
}

.category-card {
	background: #fff;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 2px 10px rgba(0,0,0,0.08);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.category-card-link {
	display: block;
	text-decoration: none;
	color: inherit;
}

.category-card-image {
	width: 100%;
	aspect-ratio: 16 / 10;
	overflow: hidden;
}

.category-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.35s ease;
}

.category-card:hover .category-card-image img {
	transform: scale(1.06);
}

.category-card-content {
	padding: 18px 20px 22px;
}

.category-card-title {
	font-size: 1.15em;
	margin: 0 0 10px;
	line-height: 1.35;
	color: #1a1a1a;
}

.category-card-excerpt {
	font-size: 0.92em;
	color: #666;
	line-height: 1.5;
	margin-bottom: 12px;
}

.category-card-date {
	font-size: 0.8em;
	color: #999;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.category-pagination {
	text-align: center;
	margin: 20px 0 50px;
}

.category-pagination .page-numbers {
	display: inline-block;
	padding: 8px 14px;
	margin: 0 4px;
	border-radius: 5px;
	background: #f2f2f2;
	color: #333;
	text-decoration: none;
}

.category-pagination .page-numbers.current {
	background: #333;
	color: #fff;
}

@media (max-width: 600px) {
	.category-posts-grid {
		grid-template-columns: 1fr;
	}
}







/* ============================================
   MENÚ — mismo estilo en todo el sitio
   ============================================ */
.site-header,
header.site-header {
    background-color: #0D1B2A !important;
}

.main-navigation ul li a,
.main-navigation ul li a:link,
.main-navigation ul li a:visited,
.main-header-bar-navigation .main-nav ul li a,
nav.main-navigation a {
    color: #FFFFFF !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    opacity: 1 !important;
    transition: color 0.3s ease !important;
}

.main-navigation ul li a:hover,
nav.main-navigation a:hover {
    color: #00C9A7 !important;
}

.menu-btn a {
    background-color: #00C9A7 !important;
    color: #0D1B2A !important;
    padding: 8px 22px !important;
    border-radius: 6px !important;
    font-weight: 700 !important;
}

.menu-btn a:hover {
    background-color: #00b396 !important;
    color: #0D1B2A !important;
}

/* Menú hamburguesa (móvil) */
.menu-toggle,
button.menu-toggle,
.ast-mobile-menu-trigger,
.mobile-menu-toggle,
.hamburger,
.menu-toggle-open,
.main-header-menu-toggle {
    background-color: #FFFFFF !important;
    color: #0D1B2A !important;
    border-color: #FFFFFF !important;
    border-radius: 6px !important;
}

.menu-toggle:before,
.menu-toggle .icon-menu-bars,
button.menu-toggle .icon-menu-bars {
    color: #0D1B2A !important;
}

.menu-toggle svg,
.menu-toggle svg path,
.menu-toggle svg rect,
.menu-toggle svg line {
    fill: #0D1B2A !important;
    stroke: #0D1B2A !important;
    color: #0D1B2A !important;
}

/* Panel desplegable del menú en móvil */
.main-navigation.toggled ul,
.ast-mobile-popup-drawer .main-navigation ul {
    background-color: #0D1B2A !important;
}

.main-navigation.toggled ul li,
.ast-mobile-popup-drawer .main-navigation ul li {
    border-bottom: 1px solid #1E3A5F !important;
}




/* ============================================
   FOOTER
   ============================================ */
.jg-footer {
    background-color: #0A1628 !important;
    padding: 60px 40px 0 !important;
    box-sizing: border-box !important;
    width: 100% !important;
}

.jg-footer-inner {
    display: flex !important;
    gap: 48px !important;
    justify-content: space-between !important;
    flex-wrap: wrap !important;
    max-width: 1100px !important;
    margin: 0 auto !important;
    padding-bottom: 48px !important;
}

.jg-footer-brand {
    flex: 2 !important;
    min-width: 220px !important;
    max-width: 300px !important;
}

.jg-footer-logo {
    font-size: 24px !important;
    font-weight: 800 !important;
    color: #FFFFFF !important;
    margin-bottom: 16px !important;
}

.jg-footer-logo span {
    color: #00C9A7 !important;
}

.jg-footer-desc {
    color: #64748B !important;
    font-size: 14px !important;
    line-height: 1.7 !important;
    margin: 0 0 20px !important;
}

.jg-footer-social {
    display: flex !important;
    gap: 10px !important;
}

.jg-social-btn {
    background-color: #1a2942 !important;
    color: #CBD5E1 !important;
    width: 36px !important;
    height: 36px !important;
    border-radius: 8px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    transition: background 0.3s ease !important;
}

.jg-social-btn:hover {
    background-color: #00C9A7 !important;
    color: #0D1B2A !important;
}

.jg-footer-col {
    flex: 1 !important;
    min-width: 140px !important;
}

.jg-footer-heading {
    color: #FFFFFF !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    margin: 0 0 20px !important;
}

.jg-footer-links {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.jg-footer-links li {
    margin-bottom: 12px !important;
}

.jg-footer-links a {
    color: #64748B !important;
    text-decoration: none !important;
    font-size: 14px !important;
    transition: color 0.3s ease !important;
}

.jg-footer-links a:hover {
    color: #00C9A7 !important;
}

.jg-footer-divider {
    max-width: 1100px !important;
    margin: 0 auto !important;
    height: 1px !important;
    background-color: #1E3A5F !important;
}

.jg-footer-bottom {
    max-width: 1100px !important;
    margin: 0 auto !important;
    padding: 24px 0 !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 12px !important;
}

.jg-footer-copy,
.jg-footer-made {
    color: #64748B !important;
    font-size: 13px !important;
    margin: 0 !important;
}

/* FOOTER MÓVIL */
@media (max-width: 768px) {
    .jg-footer-inner {
        flex-direction: column !important;
        gap: 32px !important;
        padding-left: 24px !important;
        padding-right: 24px !important;
    }

    .jg-footer-brand {
        max-width: 100% !important;
    }

    .jg-footer-bottom {
        flex-direction: column !important;
        text-align: center !important;
        gap: 8px !important;
        padding-left: 24px !important;
        padding-right: 24px !important;
    }

    .jg-footer-divider {
        margin-left: 24px !important;
        margin-right: 24px !important;
    }
}


/* FIX: sacar el footer del grid de 2 columnas de GeneratePress */
body {
    display: block !important;
}

#page.site,
#content.site-content {
    display: block !important;
    grid-template-columns: none !important;
}

.jg-footer {
    display: block !important;
    grid-column: 1 / -1 !important;
    width: 100vw !important;
    position: relative !important;
    left: 50% !important;
    right: 50% !important;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
}




/* ============================================
   BLOG (home.php — Posts Page)
   Pegar esto AL FINAL del style.css existente.
   No reemplaza nada de lo que ya tienes arriba.
   ============================================ */

body:has(.jg-blog-hero) .page-header,
body:has(.jg-blog-hero) .entry-header {
    display: none !important;
}

.jg-blog-hero {
    background-color: #0D1B2A;
    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px),
        radial-gradient(circle at 50% 0%, rgba(0,201,167,0.14) 0%, transparent 60%);
    background-size: 40px 40px, 40px 40px, 100% 100%;
    padding: 90px 20px 60px;
    text-align: center;
    box-sizing: border-box;
}

.jg-blog-eyebrow {
    background: #00C9A7;
    color: #0D1B2A;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 26px;
}

.jg-blog-hero h1 {
    color: #FFFFFF;
    font-size: 46px;
    font-weight: 800;
    max-width: 760px;
    margin: 0 auto 16px;
    line-height: 1.18;
}

.jg-blog-hero h1 span { color: #00C9A7; }

.jg-blog-hero-sub {
    color: #94A3B8;
    font-size: 17px;
    max-width: 480px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

.jg-blog-search {
    max-width: 460px;
    margin: 0 auto;
    background: #FFFFFF;
    border-radius: 12px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.28);
}

.jg-blog-search svg { color: #94A3B8; flex-shrink: 0; }

.jg-blog-search input {
    border: none;
    outline: none;
    background: transparent;
    font-size: 15px;
    color: #0D1B2A;
    width: 100%;
    font-family: inherit;
}

.jg-blog-search input::placeholder { color: #94A3B8; }

.jg-blog-filters {
    background: #F8F9FA;
    padding: 28px 20px 8px;
    box-sizing: border-box;
}

.jg-blog-filters-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.jg-filter-pill {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    color: #475569;
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 30px;
    transition: all 0.25s ease;
}

.jg-filter-pill:hover {
    border-color: #00C9A7;
    color: #0D1B2A;
}

.jg-filter-pill.is-active {
    background: #0D1B2A;
    border-color: #0D1B2A;
    color: #FFFFFF;
}

.jg-blog-featured {
    background: #F8F9FA;
    padding: 32px 40px 8px;
    box-sizing: border-box;
}

.jg-featured-card {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.jg-featured-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.jg-featured-media {
    flex: 0 0 340px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    overflow: hidden;
}

.jg-featured-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    background: #0D1B2A;
    color: #00C9A7;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 20px;
}

.jg-featured-body {
    padding: 36px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.jg-featured-body h2 {
    color: #0D1B2A;
    font-size: 26px;
    font-weight: 800;
    line-height: 1.3;
    margin: 14px 0 12px;
}

.jg-featured-body p {
    color: #64748B;
    font-size: 15px;
    line-height: 1.7;
    margin: 0 0 18px;
}

.jg-featured-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #64748B;
    font-size: 13px;
    font-weight: 600;
}

.jg-author-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #00C9A7;
    display: inline-block;
}

.jg-meta-sep { color: #CBD5E1; }

.jg-article-tag {
    background: #00C9A7;
    color: #0D1B2A;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
}

.jg-blog-main {
    background: #F8F9FA;
    padding: 40px 40px 90px;
    box-sizing: border-box;
}

.jg-blog-main-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

.jg-blog-articles-col { flex: 1; min-width: 0; }

.jg-blog-articles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.jg-post-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.jg-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 32px rgba(0,0,0,0.09);
}

.jg-post-media {
    padding: 34px;
    text-align: center;
    font-size: 42px;
    overflow: hidden;
}

.jg-media-green { background: #E8F4F1; }
.jg-media-yellow { background: #FFF8E8; }
.jg-media-blue { background: #EEF2FF; }
.jg-media-purple { background: #F5EEFF; }

.jg-post-body { padding: 22px; }

.jg-post-body h3 {
    color: #0D1B2A;
    font-size: 16.5px;
    font-weight: 700;
    line-height: 1.4;
    margin: 14px 0 8px;
}

.jg-post-body p {
    color: #64748B;
    font-size: 13.5px;
    line-height: 1.65;
    margin: 0 0 14px;
}

.jg-post-meta {
    color: #94A3B8;
    font-size: 12.5px;
    font-weight: 600;
    display: flex;
    gap: 6px;
}

.jg-blog-loadmore {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.jg-btn-secondary-dark {
    display: inline-block;
    background: transparent;
    color: #0D1B2A;
    border: 2px solid #0D1B2A;
    padding: 13px 30px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14.5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.jg-btn-secondary-dark:hover {
    background: #0D1B2A;
    color: #FFFFFF;
}

.jg-blog-sidebar {
    flex: 0 0 300px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: 24px;
}

.jg-sidebar-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}

.jg-sidebar-label {
    color: #00C9A7;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0 0 16px;
}

.jg-popular-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.jg-popular-list li {
    display: flex;
    align-items: baseline;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #F1F5F9;
}

.jg-popular-list li:last-child { border-bottom: none; }

.jg-popular-num {
    color: #00C9A7;
    font-weight: 800;
    font-size: 13px;
    flex-shrink: 0;
}

.jg-popular-list a {
    color: #334155;
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 600;
    line-height: 1.5;
    transition: color 0.2s ease;
}

.jg-popular-list a:hover { color: #00998A; }

.jg-sidebar-newsletter {
    background: #0D1B2A;
    border-color: #0D1B2A;
}

.jg-sidebar-newsletter .jg-sidebar-label { color: #00C9A7; }

.jg-sidebar-newsletter h4 {
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 800;
    margin: 0 0 8px;
}

.jg-sidebar-sub {
    color: #94A3B8;
    font-size: 13px;
    line-height: 1.6;
    margin: 0 0 18px;
}

.jg-sidebar-form {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.jg-sidebar-form input {
    padding: 11px 14px;
    border-radius: 8px;
    border: 1px solid #1E3A5F;
    background: #111F35;
    color: #FFFFFF;
    font-size: 13.5px;
    box-sizing: border-box;
}

.jg-sidebar-form input::placeholder { color: #64748B; }

.jg-sidebar-form input:focus {
    outline: none;
    border-color: #00C9A7;
}

.jg-sidebar-form button {
    background: #00C9A7;
    color: #0D1B2A;
    border: none;
    padding: 11px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 13.5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.jg-sidebar-form button:hover { background: #00b396; }

.jg-cat-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.jg-cat-list li { margin-bottom: 4px; }

.jg-cat-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #334155;
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 600;
    padding: 10px 4px;
    border-radius: 8px;
    transition: background 0.2s ease, color 0.2s ease;
}

.jg-cat-list a:hover {
    background: #F8F9FA;
    color: #00998A;
}

.jg-cat-count {
    background: #F1F5F9;
    color: #64748B;
    font-size: 11.5px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 20px;
}



@media (max-width: 1024px) {
    .jg-blog-main-inner { flex-direction: column; }
    .jg-blog-sidebar { flex: 1 1 auto; width: 100%; position: static; flex-direction: row; flex-wrap: wrap; }
    .jg-sidebar-card { flex: 1 1 260px; }
    .jg-featured-card { flex-direction: column; }
    .jg-featured-media { flex: none; height: 200px; }
}

/* ============================================
   FULL-BLEED: estas secciones deben salir del
   contenedor angosto de GeneratePress (#page/#content)
   igual que ya se hace con .jg-footer.
   ============================================ */
.jg-blog-hero,
.jg-blog-filters,
.jg-blog-featured,
.jg-blog-main,
.jg-newsletter {
    width: 100vw !important;
    position: relative !important;
    left: 50% !important;
    right: 50% !important;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
    max-width: 100vw !important;
}

@media (max-width: 768px) {
    .jg-blog-hero { padding: 60px 20px 44px; }
    .jg-blog-hero h1 { font-size: 30px; }
    .jg-blog-hero-sub { font-size: 15px; }
    .jg-blog-filters { padding: 22px 16px 4px; }
    .jg-blog-filters-inner { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; -webkit-overflow-scrolling: touch; }
    .jg-filter-pill { flex-shrink: 0; }
    .jg-blog-featured { padding: 24px 16px 4px; }
    .jg-blog-main { padding: 30px 16px 70px; }
    .jg-blog-articles-grid { grid-template-columns: 1fr; }
    .jg-blog-sidebar { flex-direction: column; }
    .jg-featured-body { padding: 26px 22px; }
    .jg-featured-body h2 { font-size: 20px; }
    .jg-newsletter { padding: 50px 20px !important; }
    .jg-newsletter-card { padding: 36px 24px !important; }
    .jg-newsletter h2 { font-size: 26px !important; }
    .jg-newsletter-form { flex-direction: column !important; }
    .jg-newsletter-submit { width: 100% !important; }
}




/* ============================================
   NEWSLETTER BOX
   ============================================ */

.jg-newsletter-box  {
    background-color: #0D1B2A !important;
    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px) !important;
    background-size: 40px 40px !important;
    padding: 70px 40px;
    text-align: center;
    box-sizing: border-box;
      display: flex;
    justify-content: center;
}

.jg-newsletter-inner {
    background: #ffffff;
    border-radius: 24px;
    max-width: 620px;
    width: 100%;
    padding: 50px 40px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.jg-newsletter-title {
    font-size: 32px;
    font-weight: 800;
    color: #0a0e1a;
    margin: 0 0 12px;
}

.jg-newsletter-subtitle {
    color: #555;
    font-size: 16px;
    margin: 0 0 28px;
    line-height: 1.5;
}

.jg-newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 480px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.jg-newsletter-form input[type="email"] {
    flex: 1;
    min-width: 200px;
    padding: 14px 18px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 15px;
    outline: none;
}

.jg-newsletter-form input[type="email"]:focus {
    border-color: #1abc9c;
}

.jg-newsletter-form button {
    background: #1abc9c;
    color: #0a0e1a;
    font-weight: 700;
    border: none;
    padding: 14px 28px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 15px;
    transition: background 0.2s;
}

.jg-newsletter-form button:hover {
    background: #16a085;
}

.jg-newsletter-form button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.jg-newsletter-message {
    margin-top: 16px;
    font-size: 14px;
    min-height: 20px;
}

.jg-newsletter-success {
    color: #1abc9c;
    font-weight: 600;
}

.jg-newsletter-error {
    color: #e74c3c;
    font-weight: 600;
}

/* Fix: newsletter debe ocupar todo el ancho en cualquier página */
.jg-newsletter-box {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    box-sizing: border-box;
}





/* ============================================
   CONTACT PAGE - Header + Formulario WPForms
   Solo afecta a la página con post ID 17 (Contact)
   ============================================ */

/* Header de la página Contact */
.page-id-17 .entry-header {
    background: #0a0e1a;
    padding: 70px 20px 60px;
    text-align: center;
}

.page-id-17 .entry-title {
    color: #ffffff;
    font-size: 42px;
    font-weight: 800;
    margin: 0 0 14px;
}

.page-id-17 .jg-page-subtitle {
    color: #b8c1d1;
    font-size: 17px;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Contenedor general de la página Contact */
.page-id-17 .entry-content {
    max-width: 640px;
    margin: 0 auto;
    padding: 50px 20px 80px;
}

/* Tarjeta que envuelve el formulario de WPForms, solo en Contact */
.page-id-17 .wpforms-container {
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 20px;
    padding: 40px 36px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.page-id-17 .wpforms-container .wpforms-field-label {
    font-weight: 700;
    color: #0a0e1a;
    font-size: 15px;
    margin-bottom: 8px;
}

.page-id-17 .wpforms-container .wpforms-required-label {
    color: #1abc9c;
}

.page-id-17 .wpforms-container input[type="text"],
.page-id-17 .wpforms-container input[type="email"],
.page-id-17 .wpforms-container textarea {
    border: 1.5px solid #e0e0e0 !important;
    border-radius: 10px !important;
    padding: 13px 16px !important;
    font-size: 15px !important;
    transition: border-color 0.2s;
    background: #fafafa !important;
}

.page-id-17 .wpforms-container input[type="text"]:focus,
.page-id-17 .wpforms-container input[type="email"]:focus,
.page-id-17 .wpforms-container textarea:focus {
    border-color: #1abc9c !important;
    background: #ffffff !important;
    outline: none;
}

.page-id-17 .wpforms-container textarea {
    min-height: 140px;
    resize: vertical;
}

.page-id-17 .wpforms-container .wpforms-field-sublabel {
    color: #999;
    font-size: 13px;
    margin-top: 6px;
}

.page-id-17 .wpforms-container .wpforms-field {
    margin-bottom: 26px;
}

.page-id-17 .wpforms-container button[type="submit"] {
    background: #1abc9c !important;
    color: #0a0e1a !important;
    font-weight: 700 !important;
    border: none !important;
    padding: 14px 36px !important;
    border-radius: 10px !important;
    font-size: 15px !important;
    cursor: pointer;
    transition: background 0.2s;
    width: 100%;
}

.page-id-17 .wpforms-container button[type="submit"]:hover {
    background: #16a085 !important;
}





/* ============================================
   CONTACT PAGE HERO (estilo tipo Terms of Service)
   ============================================ */
.jg-page-hero {
    background: #0D1B2A ;
    background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
                       linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 24px 24px;
    padding: 90px 20px 80px;
    text-align: center;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    box-sizing: border-box;
}

.jg-page-badge {
    display: inline-block;
    background: rgba(26, 188, 156, 0.15);
    color: #1abc9c;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.jg-page-hero-title {
    color: #ffffff;
    font-size: 42px;
    font-weight: 800;
    margin: 0 0 16px;
}

.jg-page-hero-title span {
    color: #1abc9c;
}

.jg-page-hero-subtitle {
    color: #b8c1d1;
    font-size: 17px;
    max-width: 560px;
    margin: 0 auto 24px;
    line-height: 1.6;
}

.jg-page-pills {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.jg-pill {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #b8c1d1;
    font-size: 13px;
    padding: 8px 16px;
    border-radius: 20px;
}

/* Elimina el espacio blanco superior en la página Contact antes del hero */
.page-id-17 .entry-content {
    padding-top: 0;
}

.page-id-17 .entry-header {
    display: none;
}






/* ============================================
   ARTICLE / BLOG POST CONTENT STYLES
   (mover desde el <style> inline de cada post)
   ============================================ */
.jg-article {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #1a1a1a;
    line-height: 1.75;
    max-width: 800px;
    margin: 0 auto;
    font-size: 17px;
}

.jg-article h2 {
    font-size: 1.6em;
    margin-top: 2.2em;
    margin-bottom: 0.6em;
    color: #14213d;
    font-weight: 700;
}

.jg-article h3 {
    font-size: 1.25em;
    margin-top: 1.6em;
    margin-bottom: 0.5em;
    color: #14213d;
    font-weight: 700;
}

.jg-article p {
    margin-bottom: 1.2em;
}

.jg-article a {
    color: #0d6efd;
    text-decoration: underline;
}

.jg-article a:hover {
    color: #0a58ca;
}

.jg-article ul {
    margin-bottom: 1.2em;
    padding-left: 1.4em;
}

.jg-article li {
    margin-bottom: 0.6em;
}

.jg-table-wrap {
    overflow-x: auto;
    margin: 1.8em 0;
}

.jg-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95em;
}

.jg-table th,
.jg-table td {
    border: 1px solid #e2e2e2;
    padding: 10px 12px;
    text-align: left;
    vertical-align: top;
}

.jg-table th {
    background-color: #14213d;
    color: #ffffff;
    font-weight: 600;
}

.jg-table tr:nth-child(even) {
    background-color: #f7f8fa;
}

.jg-faq-item {
    border-bottom: 1px solid #e2e2e2;
    padding: 1em 0;
}

.jg-note {
    background-color: #f1f6ff;
    border-left: 4px solid #0d6efd;
    padding: 0.9em 1.2em;
    margin: 1.5em 0;
    font-size: 0.95em;
}

@media (max-width: 600px) {
    .jg-article {
        font-size: 16px;
    }
    .jg-article h2 {
        font-size: 1.35em;
    }
    .jg-article h3 {
        font-size: 1.1em;
    }
}








/* ---------- AI Guides & Tutorials ---------- */


/* ============================================
   SINGLE POST (single.php)
   Pegar esto AL FINAL del style.css existente,
   después del bloque de BLOG que ya pegaste.
   ============================================ */

body:has(.jg-single-hero) .page-header,
body:has(.jg-single-hero) .entry-header {
    display: none !important;
}

/* ---------- HERO DEL POST (todas las categorías) ---------- */

.jg-single-hero {
    background: #0D1B2A;
    padding: 70px 20px 0;
    box-sizing: border-box;
}

.jg-single-hero-inner {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    padding-bottom: 40px;
}

.jg-single-tag {
    text-decoration: none;
}

.jg-single-hero h1 {
    color: #FFFFFF;
    font-size: 38px;
    font-weight: 800;
    line-height: 1.25;
    margin: 18px 0 16px;
}

.jg-single-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #94A3B8;
    font-size: 13.5px;
    font-weight: 600;
}

.jg-single-featured-media {
    max-width: 900px;
    margin: 0 auto;
    transform: translateY(50%);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.jg-single-featured-media img {
    width: 100%;
    display: block;
    object-fit: cover;
    max-height: 420px;
}

/* ---------- LAYOUT PRINCIPAL + SIDEBAR ---------- */

.jg-single-body {
    background: #F8F9FA;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 40px;
    padding: 90px 40px 90px;
    box-sizing: border-box;
}

.jg-single-main-col {
    flex: 1;
    min-width: 0;
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    padding: 48px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    box-sizing: border-box;
}

.jg-single-sidebar {
    flex: 0 0 300px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: 24px;
}

/* ---------- CONTENIDO BASE (jg-post-content) — aplica a TODAS las categorías ---------- */

.jg-post-content {
    color: #334155;
    font-size: 16px;
    line-height: 1.8;
}

.jg-post-content > *:first-child { margin-top: 0; }

.jg-post-content h2 {
    color: #0D1B2A;
    font-size: 26px;
    font-weight: 800;
    margin: 44px 0 18px;
    line-height: 1.35;
}

.jg-post-content h3 {
    color: #0D1B2A;
    font-size: 20px;
    font-weight: 700;
    margin: 32px 0 14px;
}

.jg-post-content p { margin: 0 0 20px; }

.jg-post-content a {
    color: #00998A;
    font-weight: 700;
    text-decoration: underline;
}

.jg-post-content ul,
.jg-post-content ol {
    margin: 0 0 24px;
    padding-left: 22px;
}

.jg-post-content li { margin-bottom: 8px; }

.jg-post-content blockquote {
    border-left: 4px solid #00C9A7;
    background: #F0FBF9;
    margin: 28px 0;
    padding: 18px 24px;
    border-radius: 0 12px 12px 0;
    color: #0D1B2A;
    font-style: italic;
}

.jg-post-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 28px 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}

.jg-post-content table thead th {
    background: #0D1B2A;
    color: #FFFFFF;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 14px 16px;
    text-align: left;
}

.jg-post-content table td {
    padding: 14px 16px;
    border-bottom: 1px solid #F1F5F9;
    font-size: 14.5px;
}

.jg-post-content table tbody tr:nth-child(even) { background: #FAFBFC; }
.jg-post-content table tbody tr:last-child td { border-bottom: none; }

.jg-single-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid #F1F5F9;
}

.jg-tag-pill {
    background: #F1F5F9;
    color: #475569;
    font-size: 12.5px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    text-decoration: none;
}

.jg-tag-pill:hover { background: #E2E8F0; }

.nav-links {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-top: 32px;
}

.nav-links a {
    display: block;
    flex: 1;
    background: #F8F9FA;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    padding: 16px 18px;
    text-decoration: none;
    transition: border-color 0.2s ease;
}

.nav-links a:hover { border-color: #00C9A7; }

.jg-nav-label {
    display: block;
    color: #00998A;
    font-size: 11.5px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.jg-nav-title {
    display: block;
    color: #0D1B2A;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
}

/* ============================================
   SKIN: "AI Guides & Tutorials" (jg-skin-guides)
   Todo lo de aquí en adelante SOLO aplica a
   posts de esta categoría.
   ============================================ */

.jg-single-hero-guides {
    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px),
        radial-gradient(circle at 50% 0%, rgba(0,201,167,0.16) 0%, transparent 60%);
    background-size: 40px 40px, 40px 40px, 100% 100%;
}

/* Caja "En esta guía" arriba del contenido */
.jg-guide-intro-box {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    align-items: flex-start;
    gap: 16px;
    background: #F0FBF9;
    border: 1px solid #B7EBE1;
    border-radius: 14px;
    padding: 20px 24px;
    margin-top: 70px;
    margin-bottom: 28px;
}

.jg-guide-intro-icon { font-size: 26px; line-height: 1; }

.jg-guide-intro-label {
    color: #00998A;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 4px;
}

.jg-guide-intro-text {
    color: #0D1B2A;
    font-size: 14.5px;
    margin: 0;
    line-height: 1.6;
}

/* H2 con numeración/acento visual, look de "paso a paso" */
.jg-skin-guides h2 {
    position: relative;
    padding-left: 20px;
    border-left: 4px solid #00C9A7;
}

/* Tabla con acento distinto para diferenciarla de otras categorías */
.jg-skin-guides table thead th {
    background: #00998A;
}

.jg-skin-guides table {
    border: 1px solid #B7EBE1;
}

/* Blockquote en look "tip" en vez de cita */
.jg-skin-guides blockquote {
    background: #FFF8E8;
    border-left-color: #F4B740;
    position: relative;
    padding-left: 52px;
}

.jg-skin-guides blockquote::before {
    content: "💡";
    position: absolute;
    left: 18px;
    top: 16px;
    font-size: 18px;
    font-style: normal;
}

/* Listas con check en vez de bullet plano, look de guía práctica */
.jg-skin-guides ul:not(.jg-popular-list):not(.jg-single-tags) {
    list-style: none;
    padding-left: 0;
}

.jg-skin-guides ul:not(.jg-popular-list):not(.jg-single-tags) li {
    position: relative;
    padding-left: 30px;
}

.jg-skin-guides ul:not(.jg-popular-list):not(.jg-single-tags) li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #00C9A7;
    font-weight: 800;
}

/* Caja de cierre al final del contenido */
.jg-guide-closing-box {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #0D1B2A;
    border-radius: 14px;
    padding: 22px 26px;
    margin-top: 36px;
}

.jg-guide-closing-icon { font-size: 22px; }

.jg-guide-closing-box p {
    color: #CBD5E1;
    font-size: 14.5px;
    margin: 0;
    line-height: 1.6;
}

.jg-guide-closing-box a {
    color: #00C9A7;
    font-weight: 700;
    text-decoration: underline;
}

.jg-sidebar-guides-highlight {
    border-color: #B7EBE1;
    background: #F0FBF9;
    margin-top: 70px;
}
.jg-sidebar-guides-highlight .jg-sidebar-label { color: #00998A; }

/* ---------- RESPONSIVE ---------- */

@media (max-width: 1024px) {
    .jg-single-body { flex-direction: column; padding: 90px 20px 60px; }
    .jg-single-sidebar { flex: 1 1 auto; width: 100%; position: static; flex-direction: row; flex-wrap: wrap; }
    .jg-sidebar-card { flex: 1 1 260px; }
    .jg-single-main-col { padding: 32px; }
}

@media (max-width: 768px) {
    .jg-single-hero { padding: 50px 20px 0; }
    .jg-single-hero h1 { font-size: 26px; }
    .jg-single-body { padding: 80px 16px 50px; }
    .jg-single-main-col { padding: 24px; }
    .nav-links { flex-direction: column; }

}


html {
    overflow-x: hidden;
    width: 100%;
}

body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
}









/* ---------- AI Tool Comparisons ---------- */

/* ============================================
   SKIN: "AI Tool Comparisons" (jg-skin-comparisons)
   Pegar al final del style.css, después del bloque
   de "AI Guides & Tutorials".
   Acento ámbar/dorado para diferenciarlo del verde
   de Guides a simple vista.
   ============================================ */

.jg-single-hero-comparisons {
    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px),
        radial-gradient(circle at 50% 0%, rgba(244,183,64,0.16) 0%, transparent 60%);
    background-size: 40px 40px, 40px 40px, 100% 100%;
}

/* Caja "Comparación Honesta" arriba del contenido */
.jg-comparison-intro-box {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    align-items: flex-start;
    gap: 16px;
    background: #FFF8E8;
    border: 1px solid #F4DFA3;
    border-radius: 14px;
    padding: 20px 24px;
    margin-top: 24px;
    margin-bottom: 28px;
}

.jg-comparison-intro-icon { font-size: 26px; line-height: 1; }

.jg-comparison-intro-label {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    align-items: flex-start;
    gap: 16px;
    background: #F0FBF9;
    border: 1px solid #B7EBE1;
    border-radius: 14px;
    padding: 20px 24px;
    margin-top: 70px;
    margin-bottom: 28px;
}

.jg-comparison-intro-text {
    color: #0D1B2A;
    font-size: 14.5px;
    margin: 0;
    line-height: 1.6;
}

/* H2 con acento ámbar en vez de verde */
.jg-skin-comparisons h2 {
    position: relative;
    padding-left: 20px;
    border-left: 4px solid #F4B740;
}

/* Tabla de comparación: header ámbar + fila "ganador" destacada.
   Para marcar la fila ganadora, agrega la clase jg-winner-row
   a la fila <tr> correspondiente al editar el HTML de la tabla
   en el editor de WordPress (vista de código/HTML del bloque). */
.jg-skin-comparisons table {
    border: 1px solid #F4DFA3;
}

.jg-skin-comparisons table thead th {
    background: #9A7215;
}

.jg-skin-comparisons table tbody tr.jg-winner-row td {
    background: #FFF8E8;
    font-weight: 700;
    position: relative;
}

.jg-skin-comparisons table tbody tr.jg-winner-row td:first-child::before {
    content: "🏆";
    margin-right: 6px;
}

/* Blockquote en look "veredicto" con medalla en vez de cita */
.jg-skin-comparisons blockquote {
    background: #FFF8E8;
    border-left-color: #F4B740;
    position: relative;
    padding-left: 52px;
}

.jg-skin-comparisons blockquote::before {
    content: "🏅";
    position: absolute;
    left: 18px;
    top: 16px;
    font-size: 18px;
    font-style: normal;
}

/* Listas con check ámbar en vez de check verde, para diferenciar */
.jg-skin-comparisons ul:not(.jg-popular-list):not(.jg-single-tags) {
    list-style: none;
    padding-left: 0;
}

.jg-skin-comparisons ul:not(.jg-popular-list):not(.jg-single-tags) li {
    position: relative;
    padding-left: 30px;
}

.jg-skin-comparisons ul:not(.jg-popular-list):not(.jg-single-tags) li::before {
    content: "▸";
    position: absolute;
    left: 0;
    top: 0;
    color: #F4B740;
    font-weight: 800;
}

/* Caja de cierre al final del contenido */
.jg-comparison-closing-box {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #0D1B2A;
    border-radius: 14px;
    padding: 22px 26px;
    margin-top: 36px;
}

.jg-comparison-closing-icon { font-size: 22px; }

.jg-comparison-closing-box p {
    color: #CBD5E1;
    font-size: 14.5px;
    margin: 0;
    line-height: 1.6;
}

.jg-comparison-closing-box a {
    color: #F4B740;
    font-weight: 700;
    text-decoration: underline;
}


.jg-sidebar-comparisons-highlight {
    border-color: #F4DFA3;
    background: #FFF8E8;
    margin-top: 70px;
}

.jg-sidebar-comparisons-highlight .jg-sidebar-label { color: #9A7215; }




/* ---------- is_best_tools---------- */

.jg-single-hero-besttools {
    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px),
        radial-gradient(circle at 50% 0%, rgba(139,92,246,0.16) 0%, transparent 60%);
    background-size: 40px 40px, 40px 40px, 100% 100%;
}

.jg-besttools-intro-box {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    align-items: flex-start;
    gap: 16px;
    background: #F5EEFF;
    border: 1px solid #D9C6FA;
    border-radius: 14px;
    padding: 20px 24px;
    margin-top: 24px;
    margin-bottom: 28px;
}

.jg-besttools-intro-icon { font-size: 26px; line-height: 1; }


.jg-besttools-intro-label {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    align-items: flex-start;
    gap: 16px;
    background: #F0FBF9;
    border: 1px solid #B7EBE1;
    border-radius: 14px;
    padding: 20px 24px;
    margin-top: 70px;
    margin-bottom: 28px;
}

.jg-besttools-intro-text {
    color: #0D1B2A;
    font-size: 14.5px;
    margin: 0;
    line-height: 1.6;
}

.jg-skin-besttools h2 {
    position: relative;
    padding-left: 20px;
    border-left: 4px solid #8B5CF6;
}

.jg-skin-besttools table {
    border: 1px solid #D9C6FA;
}

.jg-skin-besttools table thead th {
    background: #6D28D9;
}

.jg-skin-besttools blockquote {
    background: #F5EEFF;
    border-left-color: #8B5CF6;
    position: relative;
    padding-left: 52px;
}

.jg-skin-besttools blockquote::before {
    content: "⭐";
    position: absolute;
    left: 18px;
    top: 16px;
    font-size: 18px;
    font-style: normal;
}

.jg-skin-besttools ul:not(.jg-popular-list):not(.jg-single-tags) {
    list-style: none;
    padding-left: 0;
}

.jg-skin-besttools ul:not(.jg-popular-list):not(.jg-single-tags) li {
    position: relative;
    padding-left: 30px;
}

.jg-skin-besttools ul:not(.jg-popular-list):not(.jg-single-tags) li::before {
    content: "★";
    position: absolute;
    left: 0;
    top: 0;
    color: #8B5CF6;
    font-weight: 800;
}

.jg-besttools-closing-box {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #0D1B2A;
    border-radius: 14px;
    padding: 22px 26px;
    margin-top: 36px;
}

.jg-besttools-closing-icon { font-size: 22px; }

.jg-besttools-closing-box p {
    color: #CBD5E1;
    font-size: 14.5px;
    margin: 0;
    line-height: 1.6;
}

.jg-besttools-closing-box a {
    color: #8B5CF6;
    font-weight: 700;
    text-decoration: underline;
}

.jg-sidebar-besttools-highlight {
    border-color: #D9C6FA;
    background: #F5EEFF;
    margin-top: 70px;
}

.jg-sidebar-besttools-highlight .jg-sidebar-label { color: #6D28D9; }






/* ---------- business-growth-strategies---------- */

.jg-single-hero-growth {
    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px),
        radial-gradient(circle at 50% 0%, rgba(59,130,246,0.16) 0%, transparent 60%);
    background-size: 40px 40px, 40px 40px, 100% 100%;
}

.jg-growth-intro-box {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    align-items: flex-start;
    gap: 16px;
    background: #EEF2FF;
    border: 1px solid #BFDBFE;
    border-radius: 14px;
    padding: 20px 24px;
    margin-top: 24px;
    margin-bottom: 28px;
}

.jg-growth-intro-icon { font-size: 26px; line-height: 1; }

.jg-growth-intro-label{
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    align-items: flex-start;
    gap: 16px;
    background: #F0FBF9;
    border: 1px solid #B7EBE1;
    border-radius: 14px;
    padding: 20px 24px;
    margin-top: 70px;
    margin-bottom: 28px;
}

.jg-growth-intro-text {
    color: #0D1B2A;
    font-size: 14.5px;
    margin: 0;
    line-height: 1.6;
}

.jg-skin-growth h2 {
    position: relative;
    padding-left: 20px;
    border-left: 4px solid #3B82F6;
}

.jg-skin-growth table {
    border: 1px solid #BFDBFE;
}

.jg-skin-growth table thead th {
    background: #1D4ED8;
}

.jg-skin-growth blockquote {
    background: #EEF2FF;
    border-left-color: #3B82F6;
    position: relative;
    padding-left: 52px;
}

.jg-skin-growth blockquote::before {
    content: "📊";
    position: absolute;
    left: 18px;
    top: 16px;
    font-size: 18px;
    font-style: normal;
}

.jg-skin-growth ul:not(.jg-popular-list):not(.jg-single-tags) {
    list-style: none;
    padding-left: 0;
}

.jg-skin-growth ul:not(.jg-popular-list):not(.jg-single-tags) li {
    position: relative;
    padding-left: 30px;
}

.jg-skin-growth ul:not(.jg-popular-list):not(.jg-single-tags) li::before {
    content: "→";
    position: absolute;
    left: 0;
    top: 0;
    color: #3B82F6;
    font-weight: 800;
}

.jg-growth-closing-box {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #0D1B2A;
    border-radius: 14px;
    padding: 22px 26px;
    margin-top: 36px;
}

.jg-growth-closing-icon { font-size: 22px; }

.jg-growth-closing-box p {
    color: #CBD5E1;
    font-size: 14.5px;
    margin: 0;
    line-height: 1.6;
}

.jg-growth-closing-box a {
    color: #3B82F6;
    font-weight: 700;
    text-decoration: underline;
}

.jg-sidebar-growth-highlight {
    border-color: #BFDBFE;
    background: #EEF2FF;
    margin-top: 70px;
}

.jg-sidebar-growth-highlight .jg-sidebar-label { color: #1D4ED8; }





/* ---------- Responsive blog movil---------- */


@media (max-width: 480px) {
    .jg-single-body {
        padding: 70px 16px 40px !important;
        box-sizing: border-box;
    }

    .jg-single-main-col {
        padding: 20px !important;
        box-sizing: border-box;
        width: 100%;
    }

    .jg-guide-intro-box,
    .jg-comparison-intro-box,
    .jg-besttools-intro-box,
    .jg-growth-intro-box {
        padding: 16px 18px;
        box-sizing: border-box;
        width: 100%;
    }

    .jg-single-featured-media {
        width: 100%;
        transform: none;
        margin-top: -20px;
    }
}
















/* ---------- Diseño categorias---------- */




/* ============================================
   CATEGORY SKIN: AI Guides & Tutorials
   Pegar al final de style.css.
   No reemplaza nada de lo que ya tienes arriba.
   ============================================ */

body:has(.jg-cat-hero-guides) .page-header,
body:has(.jg-cat-hero-guides) .entry-header {
    display: none !important;
}

/* ---------- HERO DE LA CATEGORÍA ---------- */

.jg-cat-hero {
    box-sizing: border-box;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    max-width: 100vw;
}

.jg-cat-hero-guides {
    background-color: #0D1B2A;
    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px),
        radial-gradient(circle at 50% 0%, rgba(0,201,167,0.16) 0%, transparent 60%);
    background-size: 40px 40px, 40px 40px, 100% 100%;
    padding: 80px 20px 56px;
    text-align: center;
}

.jg-cat-hero-inner {
    max-width: 720px;
    margin: 0 auto;
}

.jg-cat-hero-badge {
    display: inline-block;
    background: #00C9A7;
    color: #0D1B2A;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.2px;
    padding: 7px 18px;
    border-radius: 20px;
    margin-bottom: 22px;
}

.jg-cat-hero-title {
    color: #FFFFFF;
    font-size: 40px;
    font-weight: 800;
    margin: 0 0 16px;
    line-height: 1.2;
}

.jg-cat-hero-desc {
    color: #94A3B8;
    font-size: 15.5px;
    line-height: 1.75;
    margin: 0 auto 32px;
    max-width: 620px;
}

.jg-cat-hero-desc p { margin: 0 0 12px; }
.jg-cat-hero-desc p:last-child { margin-bottom: 0; }

.jg-cat-hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.jg-cat-hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.jg-cat-hero-stat-num {
    color: #00C9A7;
    font-size: 24px;
    font-weight: 800;
}

.jg-cat-hero-stat-label {
    color: #64748B;
    font-size: 12px;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

/* ---------- CONTENEDOR GENERAL ---------- */

.jg-cat-guides-page {
    background: #F8F9FA;
    padding: 56px 40px 90px;
    box-sizing: border-box;
}

/* ---------- TARJETA DESTACADA ---------- */

.jg-cat-featured-wrap {
    max-width: 1100px;
    margin: 0 auto 48px;
}

.jg-cat-featured-card {
    display: flex;
    background: #FFFFFF;
    border: 1px solid #B7EBE1;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.jg-cat-featured-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.jg-cat-featured-media {
    flex: 0 0 340px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F0FBF9;
    font-size: 70px;
    overflow: hidden;
}

.jg-cat-featured-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.jg-cat-featured-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    background: #0D1B2A;
    color: #00C9A7;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.5px;
    padding: 6px 14px;
    border-radius: 20px;
}

.jg-cat-featured-body {
    padding: 36px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.jg-cat-featured-body h2 {
    color: #0D1B2A;
    font-size: 25px;
    font-weight: 800;
    line-height: 1.3;
    margin: 14px 0 12px;
}

.jg-cat-featured-body p {
    color: #64748B;
    font-size: 15px;
    line-height: 1.7;
    margin: 0 0 16px;
}

.jg-cat-featured-meta {
    color: #64748B;
    font-size: 13px;
    font-weight: 600;
}

/* ---------- GRID DE GUÍAS ---------- */

.jg-cat-grid-wrap {
    max-width: 1100px;
    margin: 0 auto;
}

.jg-cat-grid-label {
    color: #00998A;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.5px;
    margin: 0 0 20px;
}

.jg-cat-guides-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.jg-cat-guide-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.jg-cat-guide-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 32px rgba(0,0,0,0.09);
    border-color: #B7EBE1;
}

.jg-cat-guide-media {
    background: #F0FBF9;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
    overflow: hidden;
}

.jg-cat-guide-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.jg-cat-guide-body {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.jg-cat-guide-body h3 {
    color: #0D1B2A;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 8px;
}

.jg-cat-guide-body p {
    color: #64748B;
    font-size: 13.5px;
    line-height: 1.6;
    margin: 0 0 14px;
    flex: 1;
}

.jg-cat-guide-meta {
    color: #94A3B8;
    font-size: 12.5px;
    font-weight: 600;
}

/* ---------- PAGINACIÓN ---------- */

.jg-cat-pagination {
    max-width: 1100px;
    margin: 48px auto 0;
    text-align: center;
}

.jg-cat-pagination .page-numbers {
    display: inline-block;
    padding: 9px 16px;
    margin: 0 4px;
    border-radius: 8px;
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    color: #334155;
    text-decoration: none;
    font-weight: 700;
    font-size: 13.5px;
    transition: all 0.2s ease;
}

.jg-cat-pagination .page-numbers:hover {
    border-color: #00C9A7;
    color: #00998A;
}

.jg-cat-pagination .page-numbers.current {
    background: #0D1B2A;
    border-color: #0D1B2A;
    color: #FFFFFF;
}

.jg-cat-empty {
    text-align: center;
    color: #64748B;
    max-width: 1100px;
    margin: 0 auto;
}

/* ---------- RESPONSIVE ---------- */

@media (max-width: 1024px) {
    .jg-cat-guides-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .jg-cat-hero-guides { padding: 56px 20px 40px; }
    .jg-cat-hero-title { font-size: 28px; }
    .jg-cat-hero-desc { font-size: 14px; }
    .jg-cat-hero-stats { gap: 24px; }
    .jg-cat-guides-page { padding: 36px 16px 60px; }
    .jg-cat-featured-card { flex-direction: column; }
    .jg-cat-featured-media { flex: none; height: 180px; }
    .jg-cat-featured-body { padding: 26px 22px; }
    .jg-cat-featured-body h2 { font-size: 20px; }
    .jg-cat-guides-grid { grid-template-columns: 1fr; }
}















/* ============================================
   CATEGORY SKIN: AI Tool Comparisons
   Pegar al final de style.css, después del bloque
   de "CATEGORY SKIN: AI Guides & Tutorials".
   Reutiliza el layout de esa fase, solo cambia colores.
   ============================================ */

body:has(.jg-cat-hero-comparisons) .page-header,
body:has(.jg-cat-hero-comparisons) .entry-header {
    display: none !important;
}

/* ---------- HERO ---------- */

.jg-cat-hero-comparisons {
    background-color: #0D1B2A;
    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px),
        radial-gradient(circle at 50% 0%, rgba(244,183,64,0.16) 0%, transparent 60%);
    background-size: 40px 40px, 40px 40px, 100% 100%;
    padding: 80px 20px 56px;
    text-align: center;
}

.jg-cat-hero-badge-comparisons {
    background: #F4B740;
    color: #0D1B2A;
}

.jg-cat-hero-stat-num-comparisons {
    color: #F4B740;
}

/* ---------- CONTENEDOR GENERAL ---------- */

.jg-cat-comparisons-page {
    background: #F8F9FA;
    padding: 56px 40px 90px;
    box-sizing: border-box;
}

/* ---------- TARJETA DESTACADA ---------- */

.jg-cat-featured-comparisons {
    border-color: #F4DFA3;
}

.jg-cat-featured-media-comparisons {
    background: #FFF8E8;
}

.jg-cat-featured-badge-comparisons {
    color: #F4B740;
}

.jg-article-tag-comparisons {
    background: #F4B740;
    color: #0D1B2A;
}

/* ---------- GRID ---------- */

.jg-cat-grid-label-comparisons {
    color: #9A7215;
}

.jg-cat-guide-card-comparisons:hover {
    border-color: #F4DFA3;
}

.jg-cat-guide-media-comparisons {
    background: #FFF8E8;
}

/* ---------- PAGINACIÓN ---------- */

.jg-cat-pagination-comparisons .page-numbers:hover {
    border-color: #F4B740;
    color: #9A7215;
}





/* ============================================
   CATEGORY SKIN: Best AI Tools
   Pegar al final de style.css, después del bloque
   de "CATEGORY SKIN: AI Tool Comparisons".
   Reutiliza el layout de la fase 1, solo cambia colores.
   ============================================ */

body:has(.jg-cat-hero-besttools) .page-header,
body:has(.jg-cat-hero-besttools) .entry-header {
    display: none !important;
}

/* ---------- HERO ---------- */

.jg-cat-hero-besttools {
    background-color: #0D1B2A;
    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px),
        radial-gradient(circle at 50% 0%, rgba(139,92,246,0.16) 0%, transparent 60%);
    background-size: 40px 40px, 40px 40px, 100% 100%;
    padding: 80px 20px 56px;
    text-align: center;
}

.jg-cat-hero-badge-besttools {
    background: #8B5CF6;
    color: #FFFFFF;
}

.jg-cat-hero-stat-num-besttools {
    color: #8B5CF6;
}

/* ---------- CONTENEDOR GENERAL ---------- */

.jg-cat-besttools-page {
    background: #F8F9FA;
    padding: 56px 40px 90px;
    box-sizing: border-box;
}

/* ---------- TARJETA DESTACADA ---------- */

.jg-cat-featured-besttools {
    border-color: #D9C6FA;
}

.jg-cat-featured-media-besttools {
    background: #F5EEFF;
}

.jg-cat-featured-badge-besttools {
    color: #8B5CF6;
}

.jg-article-tag-besttools {
    background: #8B5CF6;
    color: #FFFFFF;
}

/* ---------- GRID ---------- */

.jg-cat-grid-label-besttools {
    color: #6D28D9;
}

.jg-cat-guide-card-besttools:hover {
    border-color: #D9C6FA;
}

.jg-cat-guide-media-besttools {
    background: #F5EEFF;
}

/* ---------- PAGINACIÓN ---------- */

.jg-cat-pagination-besttools .page-numbers:hover {
    border-color: #8B5CF6;
    color: #6D28D9;
}





/* ============================================
   CATEGORY SKIN: Business Growth Strategies
   Pegar al final de style.css, después del bloque
   de "CATEGORY SKIN: Best AI Tools".
   Reutiliza el layout de la fase 1, solo cambia colores.
   Con este bloque las 4 categorías quedan completas.
   ============================================ */

body:has(.jg-cat-hero-growth) .page-header,
body:has(.jg-cat-hero-growth) .entry-header {
    display: none !important;
}

/* ---------- HERO ---------- */

.jg-cat-hero-growth {
    background-color: #0D1B2A;
    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px),
        radial-gradient(circle at 50% 0%, rgba(59,130,246,0.16) 0%, transparent 60%);
    background-size: 40px 40px, 40px 40px, 100% 100%;
    padding: 80px 20px 56px;
    text-align: center;
}

.jg-cat-hero-badge-growth {
    background: #3B82F6;
    color: #FFFFFF;
}

.jg-cat-hero-stat-num-growth {
    color: #3B82F6;
}

/* ---------- CONTENEDOR GENERAL ---------- */

.jg-cat-growth-page {
    background: #F8F9FA;
    padding: 56px 40px 90px;
    box-sizing: border-box;
}

/* ---------- TARJETA DESTACADA ---------- */

.jg-cat-featured-growth {
    border-color: #BFDBFE;
}

.jg-cat-featured-media-growth {
    background: #EEF2FF;
}

.jg-cat-featured-badge-growth {
    color: #3B82F6;
}

.jg-article-tag-growth {
    background: #3B82F6;
    color: #FFFFFF;
}

/* ---------- GRID ---------- */

.jg-cat-grid-label-growth {
    color: #1D4ED8;
}

.jg-cat-guide-card-growth:hover {
    border-color: #BFDBFE;
}

.jg-cat-guide-media-growth {
    background: #EEF2FF;
}

/* ---------- PAGINACIÓN ---------- */

.jg-cat-pagination-growth .page-numbers:hover {
    border-color: #3B82F6;
    color: #1D4ED8;
}