/*
Theme Name: WebP Converter Theme
Theme URI: https://webpconverter.pro 
Author: WebP Converter
Author URI: https://webpconverter.pro 
Description: Tema independiente para WebP Converter - Plugin de conversión de imágenes a WebP
Version: 1.0.0
License: GPL v2 or later
Text Domain: webpconverter
*/

/* ============================================
   RESET Y BASE
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #3c434a;
    background: #ffffff;
}

a {
    color: #2271b1;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #4f94d4;
}

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

/* ============================================
   VARIABLES
   ============================================ */

:root {
    --wco-blue: #2271b1;
    --wco-blue-light: #4f94d4;
    --wco-green: #00a32a;
    --wco-green-light: #46b450;
    --wco-dark: #1d2327;
    --wco-gray: #646970;
    --wco-light-gray: #f6f7f7;
    --wco-border: #e0e0e0;
}

/* ============================================
   HEADER
   ============================================ */

.site-header {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo a {
    font-size: 24px;
    font-weight: 700;
    color: var(--wco-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.site-logo img {
    height: 40px;
    width: auto;
}

/* Navegación */
.main-navigation ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.main-navigation a {
    color: var(--wco-dark);
    font-weight: 500;
    font-size: 15px;
    padding: 8px 0;
    position: relative;
}

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

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--wco-blue);
    transition: width 0.3s ease;
}

.main-navigation a:hover::after {
    width: 100%;
}

/* Botón CTA en menú */
.nav-cta {
    background: linear-gradient(135deg, var(--wco-blue) 0%, var(--wco-blue-light) 100%);
    color: white !important;
    padding: 10px 20px !important;
    border-radius: 6px;
    margin-left: 15px;
}

.nav-cta:hover {
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(34, 113, 177, 0.3);
}

.nav-cta::after {
    display: none !important;
}

/* ============================================
   BOTONES
   ============================================ */

.button,
.btn {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, var(--wco-blue) 0%, var(--wco-blue-light) 100%);
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.button:hover,
.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(34, 113, 177, 0.3);
    color: white;
}

.button-green,
.btn-green {
    background: linear-gradient(135deg, var(--wco-green) 0%, var(--wco-green-light) 100%);
}

.button-green:hover,
.btn-green:hover {
    box-shadow: 0 4px 12px rgba(0, 163, 42, 0.3);
}

.button-large {
    padding: 15px 40px;
    font-size: 18px;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero-logo {
    text-align: center;
    margin-bottom: 10px;
}

.hero-logo img {
    max-width: 280px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1));
}

.hero-section {
    background: linear-gradient(135deg, #f0f6fc 0%, #ffffff 100%);
    padding: 100px 20px 80px;
    text-align: center;
}

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

.hero-title {
    font-size: 27px;
    font-weight: 900;
    color: var(--wco-dark);
    margin-bottom: 18px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 16px;
    color: var(--wco-gray);
    margin-bottom: 33px;
    line-height: 1.6;
}

.hero-buttons {
    margin-bottom: 20px;
}

.hero-buttons .button {
    margin: 0 10px 10px;
}

.trust-badge {
    background: white;
    padding: 20px 30px;
    border-radius: 8px;
    display: inline-block;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.trust-badge p {
    margin: 0;
    font-size: 15px;
    color: var(--wco-gray);
}

/* ============================================
   STATS SECTION
   ============================================ */

.stats-section {
    padding: 80px 20px;
    background: white;
}

.stats-grid {
    display: flex;
    justify-content: center;
    gap: 80px;
    max-width: 900px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 56px;
    font-weight: 700;
    color: var(--wco-blue);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    color: var(--wco-gray);
    font-size: 16px;
}

/* ============================================
   STEPS SECTION
   ============================================ */

.steps-section {
    padding: 80px 20px;
    background: var(--wco-light-gray);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 33px;
    color: var(--wco-dark);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.step-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--wco-blue) 0%, var(--wco-blue-light) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 28px;
    font-weight: 700;
}

.step-card h3 {
    margin-bottom: 15px;
    color: var(--wco-dark);
    font-size: 22px;
}

.step-card p {
    color: var(--wco-gray);
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   FEATURES SECTION
   ============================================ */

.features-section {
    padding: 80px 20px;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-box {
    padding: 30px;
    background: var(--wco-light-gray);
    border-radius: 10px;
    border-left: 4px solid var(--wco-blue);
}

.feature-box h3 {
    margin-bottom: 12px;
    color: var(--wco-dark);
    font-size: 20px;
}

.feature-box p {
    color: var(--wco-gray);
    margin: 0;
    line-height: 1.6;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    background: var(--wco-dark);
    padding: 100px 20px;
    text-align: center;
}

.cta-section h2 {
    color: white;
    font-size: 36px;
    margin-bottom: 15px;
}

.cta-section p {
    color: #a7aaad;
    font-size: 18px;
    margin-bottom: 35px;
}

/* ============================================
   PRICING PAGE
   ============================================ */

.pricing-hero {
    padding: 80px 20px 40px;
    text-align: center;
    background: linear-gradient(180deg, #f0f6fc 0%, white 100%);
}

.pricing-hero h1 {
    font-size: 42px;
    color: var(--wco-dark);
    margin-bottom: 15px;
}

.pricing-hero p {
    color: var(--wco-gray);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

/* Toggle */
.toggle-wrap {
    text-align: center;
    margin: 40px 0;
}

.toggle-btn {
    padding: 12px 30px;
    border: 2px solid var(--wco-blue);
    background: white;
    color: var(--wco-blue);
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
}

.toggle-btn:first-child {
    border-radius: 6px 0 0 6px;
    border-right: 1px solid var(--wco-blue);
}

.toggle-btn:last-child {
    border-radius: 0 6px 6px 0;
    border-left: 1px solid var(--wco-blue);
}

.toggle-btn.active,
.toggle-btn:hover {
    background: var(--wco-blue);
    color: white;
}

/* Pricing Grid - PACKS: 3 columnas en PC */
.pricing-section {
    padding: 20px 20px 80px;
    max-width: 1400px;
    margin: 0 auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columnas fijas */
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Pricing Card */
.price-card {
    background: white;
    border: 2px solid var(--wco-border);
    border-radius: 12px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.price-card:hover {
    border-color: var(--wco-blue);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.price-card.popular {
    border-color: var(--wco-green);
    position: relative;
    transform: scale(1.02);
}

.price-card.popular:hover {
    transform: scale(1.02) translateY(-5px);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--wco-green);
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.price-card h3 {
    margin: 0 0 10px 0;
    font-size: 22px;
    color: var(--wco-dark);
}

.price {
    font-size: 48px;
    font-weight: 700;
    color: var(--wco-blue);
    margin: 20px 0;
    line-height: 1;
}

.price span {
    font-size: 16px;
    color: var(--wco-gray);
    font-weight: normal;
}

.price-features {
    list-style: none;
    padding: 0;
    margin: 25px 0;
    text-align: left;
}

.price-features li {
    padding: 10px 0 10px 28px;
    position: relative;
    color: #3c434a;
    border-bottom: 1px solid #f0f0f1;
}

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

.price-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--wco-green);
    font-weight: bold;
    font-size: 18px;
}

.price-card .button {
    width: 100%;
}

/* FAQ */
.faq-section {
    padding: 80px 20px;
    background: var(--wco-light-gray);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    padding: 25px 30px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.faq-item h4 {
    margin: 0 0 10px 0;
    color: var(--wco-dark);
    font-size: 18px;
}

.faq-item p {
    margin: 0;
    color: var(--wco-gray);
    line-height: 1.6;
}

.guarantee {
    text-align: center;
    padding: 40px 20px;
    background: white;
}

.guarantee p {
    color: var(--wco-gray);
    margin: 0;
}

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
    background: var(--wco-dark);
    color: white;
    padding: 60px 20px 30px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #a7aaad;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #3c434a;
    color: #a7aaad;
    font-size: 14px;
}

/* ============================================
   UTILIDADES
   ============================================ */

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

.text-center {
    text-align: center;
}

.hidden {
    display: none;
}

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

@media (max-width: 800px) {
    .hero-title {
        font-size: 27px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .stats-grid {
        flex-direction: column;
        gap: 40px;
    }
    
    .stat-number {
        font-size: 42px;
    }
    
    .main-navigation {
        display: none; /* En móvil necesitarías menú hamburguesa */
    }
    
    .toggle-btn {
        display: block;
        width: 100%;
        max-width: 300px;
        margin: 0 auto 5px;
        border-radius: 6px !important;
        border: 2px solid var(--wco-blue) !important;
    }
    
    .price-card.popular {
        transform: none;
    }
    
    .price-card.popular:hover {
        transform: translateY(-5px);
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    /* FIX: Sobrescribir inline style de packs en móvil - USAR ID PARA MÁXIMA ESPECIFICIDAD */
    #packs-section .pricing-grid {
        grid-template-columns: 1fr !important;
        max-width: 400px;
        margin: 0 auto;
    }
}

.hero-logo {
    text-align: center;
    margin-bottom: 20px;
}

.hero-logo img {
    max-width: 200px;
    height: auto;
    display: inline-block;
}

/* ============================================
   PRICING SECTION VISIBILITY - CLASES
   ============================================ */

.pricing-section {
    transition: opacity 0.3s ease;
}

.pricing-section.section-visible {
    display: block;
    opacity: 1;
    position: relative;
    height: auto;
    overflow: visible;
}

.pricing-section.section-hidden {
    display: none;
    opacity: 0;
    position: absolute;
    height: 0;
    overflow: hidden;
}

/* ============================================
   SUBSCRIPTIONS GRID - 4 COLUMNAS
   ============================================ */

.subs-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 20px !important;
    max-width: 1400px !important;
    margin: 0 auto !important;
    width: 100% !important;
}

.subs-grid > .price-card {
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
    min-width: 0 !important;
    width: auto !important;
}

.subs-grid .price-features {
    flex-grow: 1 !important;
}

/* Responsive: packs y subs en móvil/tablet */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: 1fr !important;
        max-width: 400px;
    }
    
    .subs-grid {
        grid-template-columns: 1fr !important;
        max-width: 400px !important;
    }
    
    .subs-grid > .price-card.popular {
        transform: none !important;
    }
}

/* ============================================
   CONTACT PAGE
   ============================================ */

.contact-section {
    padding: 60px 20px;
    background: var(--wco-light-gray);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form-wrap {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.contact-form-wrap h2 {
    margin-bottom: 30px;
    color: var(--wco-dark);
}

.contact-form .form-group {
    margin-bottom: 25px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--wco-dark);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--wco-border);
    border-radius: 6px;
    font-size: 15px;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--wco-blue);
}

.contact-info {
    padding: 20px;
}

.contact-info h2 {
    margin-bottom: 30px;
    color: var(--wco-dark);
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.info-icon {
    font-size: 32px;
    line-height: 1;
}

.info-content h4 {
    margin-bottom: 5px;
    color: var(--wco-dark);
}

.info-content p {
    margin: 0;
    color: var(--wco-gray);
}

.info-note {
    font-size: 13px;
    color: #a7aaad;
    margin-top: 5px;
}

@media (max-width: 800px) {
    .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 40px;
    }
}

/* ============================================
   DOCUMENTATION PAGE
   ============================================ */

.docs-nav {
    background: white;
    border-bottom: 1px solid var(--wco-border);
    position: sticky;
    top: 70px;
    z-index: 50;
}

.docs-nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    overflow-x: auto;
    padding: 0 20px;
}

.docs-nav-item {
    padding: 20px 25px;
    color: var(--wco-gray);
    font-weight: 500;
    white-space: nowrap;
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
}

.docs-nav-item:hover,
.docs-nav-item.active {
    color: var(--wco-blue);
    border-bottom-color: var(--wco-blue);
}

.docs-container {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.docs-sidebar {
    position: sticky;
    top: 140px;
    height: fit-content;
}

.sidebar-section {
    background: white;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.sidebar-section h4 {
    margin-bottom: 15px;
    color: var(--wco-dark);
    font-size: 16px;
}

.sidebar-section ul {
    list-style: none;
}

.sidebar-section li {
    margin-bottom: 10px;
}

.sidebar-section a {
    color: var(--wco-gray);
    font-size: 14px;
}

.sidebar-section a:hover {
    color: var(--wco-blue);
}

.sidebar-cta {
    background: linear-gradient(135deg, var(--wco-blue) 0%, var(--wco-blue-light) 100%);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    color: white;
}

.sidebar-cta p {
    margin-bottom: 15px;
}

.sidebar-cta .button {
    background: white;
    color: var(--wco-blue);
    width: 100%;
}

.docs-content {
    max-width: 100%;
}

.doc-section {
    margin-bottom: 60px;
}

.doc-section h2 {
    font-size: 32px;
    color: var(--wco-dark);
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--wco-border);
}

.doc-article {
    margin-bottom: 40px;
}

.doc-article h3 {
    font-size: 24px;
    color: var(--wco-dark);
    margin-bottom: 20px;
}

.doc-article h4 {
    font-size: 18px;
    color: var(--wco-dark);
    margin: 25px 0 15px;
}

.doc-article p,
.doc-article li {
    color: var(--wco-gray);
    line-height: 1.8;
    margin-bottom: 15px;
}

.doc-article ol,
.doc-article ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.doc-article li {
    margin-bottom: 10px;
}

.docs-notice {
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.docs-notice.info {
    background: #f0f6fc;
    border-left: 4px solid var(--wco-blue);
}

.docs-notice.warning {
    background: #fcf9e8;
    border-left: 4px solid #dba617;
}

.docs-notice strong {
    color: var(--wco-dark);
}

.doc-article pre {
    background: #1d2327;
    color: #a7aaad;
    padding: 20px;
    border-radius: 8px;
    overflow-x: auto;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    line-height: 1.6;
}

@media (max-width: 900px) {
    .docs-container {
        grid-template-columns: 1fr;
    }
    
    .docs-sidebar {
        position: relative;
        top: 0;
        order: 2;
    }
    
    .docs-content {
        order: 1;
    }
}

/* ============================================
   DOWNLOAD PAGE
   ============================================ */

.download-section {
    padding: 60px 20px;
    background: var(--wco-light-gray);
}

.download-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.download-card {
    background: white;
    padding: 50px 40px;
    border-radius: 16px;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.download-card.featured {
    border: 3px solid var(--wco-green);
    transform: scale(1.02);
}

.download-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--wco-green);
    color: white;
    padding: 8px 25px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.download-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.download-card h2 {
    font-size: 32px;
    color: var(--wco-dark);
    margin-bottom: 15px;
}

.download-desc {
    color: var(--wco-gray);
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.download-features {
    list-style: none;
    text-align: left;
    max-width: 280px;
    margin: 0 auto 30px;
}

.download-features li {
    padding: 10px 0;
    color: var(--wco-dark);
    border-bottom: 1px solid #f0f0f1;
}

.download-features li:last-child {
    border-bottom: none;
}

.download-buttons {
    margin-bottom: 25px;
}

.download-buttons .button {
    display: block;
    width: 100%;
    margin-bottom: 15px;
}

.download-note {
    font-size: 13px;
    color: #a7aaad;
    margin-bottom: 10px;
}

.version-info {
    font-size: 13px;
    color: #a7aaad;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.pro-options {
    background: var(--wco-light-gray);
    padding: 25px;
    border-radius: 10px;
    margin-top: 20px;
}

.pro-options p {
    margin-bottom: 15px;
    color: var(--wco-dark);
}

.pro-plans-mini {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.mini-plan {
    background: white;
    padding: 15px;
    border-radius: 8px;
    border: 2px solid var(--wco-border);
    transition: all 0.3s;
}

.mini-plan:hover {
    border-color: var(--wco-blue);
    transform: translateY(-2px);
}

.mini-name {
    display: block;
    font-weight: 600;
    color: var(--wco-dark);
    margin-bottom: 5px;
}

.mini-price {
    display: block;
    color: var(--wco-green);
    font-weight: 700;
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto 50px;
}

.requirement-item {
    text-align: center;
    padding: 30px;
    background: var(--wco-light-gray);
    border-radius: 10px;
}

.requirement-item h4 {
    color: var(--wco-dark);
    margin-bottom: 10px;
    font-size: 20px;
}

.requirement-item p {
    color: var(--wco-gray);
    margin: 0;
}

.requirements-check {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 40px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.requirements-check h3 {
    margin-bottom: 10px;
    color: var(--wco-dark);
}

.requirements-check p {
    color: var(--wco-gray);
    margin-bottom: 25px;
}

@media (max-width: 800px) {
    .download-grid {
        grid-template-columns: 1fr !important;
    }
    
    .download-card.featured {
        transform: none;
    }
    
    .pro-plans-mini {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   FIX: TOGGLE VISIBILITY PRICING PAGE
   ============================================ */

/* Por defecto: mostrar packs, ocultar subs */
#packs-section {
    display: block;
}

#subs-section {
    display: none;
}

/* Cuando subs está activo */
#subs-section.active {
    display: block;
}

/* Responsive - asegurar que funcione en móvil */
@media (max-width: 1024px) {
    #subs-section {
        display: none;
    }
    
    #subs-section.active {
        display: block;
    }
}

/* ============================================
   FEATURE NO - Estilo para características no incluidas
   ============================================ */

.price-features li.feature-no {
    color: #a7aaad;
    text-decoration: line-through;
    opacity: 0.7;
}

.price-features li.feature-no:before {
    content: "✗";
    color: #d63638;
    font-weight: bold;
    font-size: 18px;
}

/* ============================================
   DOCS IMAGES
   ============================================ */

.docs-image {
    margin: 30px 0;
    background: #f6f7f7;
    border: 1px solid #c3c4c7;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
}

.docs-image img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.docs-image .caption {
    margin: 15px 0 0 0;
    font-size: 14px;
    color: #646970;
    font-style: italic;
}

/* Responsive */
@media (max-width: 800px) {
    .docs-image {
        padding: 10px;
    }
}