/* ========================================
   PÁGINA DE LOGOTIPOS - CSS ESPECÍFICO
   ======================================== */

/* Hero Logotipos - COLORES CORREGIDOS */
.logotipos-hero {
    background: linear-gradient(135deg, #5B2D91 0%, #E91E8C 50%, #00B8E6 100%);
    padding: 4rem 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.logotipos-hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.logotipos-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.logotipos-hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 1.2rem 2rem;
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    min-width: 120px;
    transition: all 0.3s;
}

.stat-badge:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Tabs Section */
.tabs-section {
    background: white;
    border-bottom: 2px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.tabs-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 0;
}

.tab-btn {
    flex: 1;
    max-width: 350px;
    padding: 1.2rem 2rem;
    background: white;
    border: none;
    border-bottom: 4px solid transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    font-size: 1rem;
    font-weight: 600;
    color: #555;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    background: #f5f5f5;
    color: #5B2D91;
}

.tab-btn.active {
    color: #5B2D91;
    border-bottom-color: #5B2D91;
    background: #f5f0ff;
}

.tab-icon {
    font-size: 1.4rem;
}

/* Content Sections */
.content-section {
    padding: 3rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    animation: fadeIn 0.5s ease;
}

.content-section.hidden {
    display: none;
}

/* Intro Box */
.intro-box {
    background: linear-gradient(135deg, #f8f8f8, #f0f0f0);
    padding: 2.5rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    border-left: 5px solid #5B2D91;
}

.intro-box h2 {
    font-size: 2rem;
    color: #2D7A4A;
    margin-bottom: 1rem;
}

.intro-box p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

/* Grid de Logotipos */
.versiones-container,
.proceso-container,
.uso-container {
    animation: fadeIn 0.5s ease;
}

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

.logotipo-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
}

.logotipo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.card-header {
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8f8f8, #ffffff);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #f0f0f0;
}

.card-header h3 {
    font-size: 1.3rem;
    color: #2D7A4A;
    margin: 0;
}

.version-badge {
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: #e0e0e0;
    color: #555;
}

.version-badge.principal {
    background: linear-gradient(135deg, #FF8C1A, #FFE500);
    color: white;
}

.logotipo-display {
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    position: relative;
}

.logotipo-display.color-bg {
    background: #ffffff;
}

.logotipo-display.white-bg {
    background: #f8f8f8;
}

.logotipo-display.dark-bg {
    background: linear-gradient(135deg, #2C2C2C, #1a1a1a);
}

.logotipo-display.black-bg {
    background: #000000;
}

.logotipo-display img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.1));
}

.icon-fallback {
    font-size: 4rem;
    opacity: 0.3;
    display: none;
}

.logotipo-info {
    padding: 1.5rem;
    background: #fafafa;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 0.6rem 0;
    font-size: 0.95rem;
    color: #555;
}

.info-icon {
    color: #2D7A4A;
    font-weight: bold;
    font-size: 1.1rem;
}

.download-section {
    padding: 1.5rem;
    display: flex;
    gap: 0.8rem;
    justify-content: center;
    background: white;
}

.btn-download {
    flex: 1;
    padding: 0.8rem;
    background: linear-gradient(135deg, #5B2D91, #E91E8C);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(91, 45, 145, 0.3);
}

.download-icon {
    font-size: 1.2rem;
}

/* Botón Descarga Completa */
.download-all-section {
    text-align: center;
    margin: 3rem 0;
}

.btn-download-all {
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 3rem;
    background: linear-gradient(135deg, #2D7A4A, #7CB900);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.4s;
    box-shadow: 0 6px 25px rgba(45, 122, 74, 0.3);
}

.btn-download-all:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 40px rgba(45, 122, 74, 0.4);
}

.download-icon-large {
    font-size: 2.5rem;
}

.download-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
}

.download-text strong {
    font-size: 1.2rem;
}

.download-text small {
    font-size: 0.85rem;
    opacity: 0.9;
}

/* Timeline del Proceso */
.proceso-timeline {
    position: relative;
    padding: 2rem 0;
}

.proceso-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, #5B2D91, #E91E8C, #00B8E6, #2D7A4A);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    margin-bottom: 4rem;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: calc(50% + 3rem);
    margin-left: 0;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: calc(50% + 3rem);
    margin-right: 0;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: white;
    border: 4px solid #5B2D91;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.step-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #5B2D91;
}

.timeline-content {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    flex: 1;
}

.timeline-content h3 {
    font-size: 1.5rem;
    color: #2D7A4A;
    margin-bottom: 1rem;
}

.timeline-image {
    width: 100%;
    height: 250px;
    border-radius: 10px;
    overflow: hidden;
    margin: 1rem 0;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.timeline-content p {
    line-height: 1.8;
    color: #555;
    margin-bottom: 1rem;
}

.timeline-list {
    list-style: none;
    padding: 0;
}

.timeline-list li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    color: #666;
}

.timeline-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #5B2D91;
    font-weight: bold;
}

/* Especificaciones Técnicas */
.especificaciones-section {
    margin-bottom: 4rem;
}

.especificaciones-section h3 {
    font-size: 2rem;
    color: #2D7A4A;
    margin-bottom: 2rem;
    text-align: center;
}

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

.spec-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s;
}

.spec-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.spec-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.spec-card h4 {
    font-size: 1.2rem;
    color: #2D7A4A;
    margin-bottom: 1.5rem;
}

.spec-visual {
    width: 100%;
    height: 200px;
    background: #f8f8f8;
    border-radius: 10px;
    margin: 1.5rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.spec-visual img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.spec-card p {
    line-height: 1.6;
    color: #666;
}

.color-palette {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.color-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.color-swatch {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.color-item span {
    font-size: 0.75rem;
    text-align: center;
    line-height: 1.3;
    color: #666;
}

/* Usos Correctos e Incorrectos */
.correctos-incorrectos-section {
    margin-bottom: 4rem;
}

.correctos-incorrectos-section h3 {
    font-size: 2rem;
    color: #2D7A4A;
    margin-bottom: 2rem;
    text-align: center;
}

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

.uso-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.uso-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.uso-badge {
    padding: 0.8rem;
    text-align: center;
    font-weight: 700;
    font-size: 1rem;
    color: white;
}

.correcto-badge {
    background: linear-gradient(135deg, #2D7A4A, #7CB900);
}

.incorrecto-badge {
    background: linear-gradient(135deg, #FF3333, #FF8C1A);
}

.uso-visual {
    height: 250px;
    background: #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.uso-visual img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.uso-item p {
    padding: 1.5rem;
    line-height: 1.6;
    color: #555;
    text-align: center;
}

/* Aplicaciones del Logotipo */
.aplicaciones-section {
    margin-bottom: 4rem;
}

.aplicaciones-section h3 {
    font-size: 2rem;
    color: #2D7A4A;
    margin-bottom: 2rem;
    text-align: center;
}

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

.aplicacion-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.aplicacion-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.aplicacion-image {
    height: 200px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.aplicacion-card h4 {
    padding: 1rem 1.5rem 0.5rem 1.5rem;
    font-size: 1.1rem;
    color: #2D7A4A;
}

.aplicacion-card p {
    padding: 0 1.5rem 1.5rem 1.5rem;
    line-height: 1.6;
    color: #666;
    font-size: 0.9rem;
}

/* Contacto Box */
.contacto-box {
    background: linear-gradient(135deg, #2D7A4A, #7CB900);
    color: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(45, 122, 74, 0.3);
}

.contacto-box h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.contacto-box > p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.contacto-info {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.contacto-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.1rem;
}

.contacto-icon {
    font-size: 1.5rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .logotipos-grid {
        grid-template-columns: 1fr;
    }
    
    .specs-grid,
    .aplicaciones-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: calc(50% + 2rem);
        margin-right: 0;
    }
    
    .timeline-item:nth-child(odd) {
        flex-direction: row;
    }
}

@media (max-width: 768px) {
    .logotipos-hero-content h1 {
        font-size: 2rem;
    }
    
    .logotipos-hero-content p {
        font-size: 1rem;
    }
    
    .hero-stats {
        gap: 1.5rem;
    }
    
    .tabs-container {
        flex-direction: column;
    }
    
    .tab-btn {
        max-width: 100%;
        padding: 1rem;
    }
    
    .specs-grid,
    .usos-grid,
    .aplicaciones-grid {
        grid-template-columns: 1fr;
    }
    
    .proceso-timeline::before {
        left: 20px;
    }
    
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        flex-direction: row;
    }
    
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 60px;
        margin-right: 0;
    }
    
    .timeline-marker {
        left: 20px;
        transform: none;
    }
    
    .contacto-info {
        flex-direction: column;
        gap: 1.5rem;
    }
}
/* ========================================
   ESTILOS FALTANTES DESPUÉS DE APLICACIONES
   ======================================== */

/* Sección de Descarga de Manual */
.manual-section {
    background: linear-gradient(135deg, #f8f0ff, #fff8f0);
    padding: 3rem;
    border-radius: 20px;
    margin: 4rem 0;
    text-align: center;
    border: 2px solid #e0d0ff;
    box-shadow: 0 8px 30px rgba(91, 45, 145, 0.1);
}

.manual-section h3 {
    font-size: 2rem;
    color: #5B2D91;
    margin-bottom: 1rem;
}

.manual-section p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.manual-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0 3rem 0;
}

.manual-feature {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.manual-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
}

.manual-feature h4 {
    font-size: 1.1rem;
    color: #5B2D91;
    margin-bottom: 0.5rem;
}

.manual-feature p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.btn-download-manual {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.3rem 3rem;
    background: linear-gradient(135deg, #5B2D91, #E91E8C);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s;
    box-shadow: 0 6px 25px rgba(91, 45, 145, 0.3);
    text-decoration: none;
}

.btn-download-manual:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 40px rgba(91, 45, 145, 0.4);
}

.btn-download-manual .download-icon {
    font-size: 1.5rem;
}

/* Sección de Recursos Adicionales */
.recursos-adicionales {
    margin: 4rem 0;
}

.recursos-adicionales h3 {
    font-size: 2rem;
    color: #2D7A4A;
    margin-bottom: 2rem;
    text-align: center;
}

.recursos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.recurso-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s;
    border-top: 4px solid #5B2D91;
}

.recurso-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.recurso-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #f8f0ff, #fff0f8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}

.recurso-card h4 {
    font-size: 1.3rem;
    color: #5B2D91;
    margin-bottom: 1rem;
}

.recurso-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.btn-recurso {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, #5B2D91, #E91E8C);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-recurso:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(91, 45, 145, 0.3);
}

/* FAQ Section */
.faq-section {
    margin: 4rem 0;
}

.faq-section h3 {
    font-size: 2rem;
    color: #2D7A4A;
    margin-bottom: 2rem;
    text-align: center;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 1rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: white;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: #5B2D91;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

.faq-question:hover {
    background: #f8f0ff;
}

.faq-icon {
    font-size: 1.5rem;
    transition: transform 0.3s;
}

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

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

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: #666;
    line-height: 1.8;
}

/* Sección de Ayuda */
.ayuda-section {
    background: linear-gradient(135deg, #5B2D91, #E91E8C);
    color: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    margin: 4rem 0;
    box-shadow: 0 8px 30px rgba(91, 45, 145, 0.3);
}

.ayuda-section h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: white;
}

.ayuda-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.ayuda-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-ayuda {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: white;
    color: #5B2D91;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-ayuda:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.btn-ayuda-icon {
    font-size: 1.3rem;
}

/* Responsive para secciones nuevas */
@media (max-width: 768px) {
    .manual-features {
        grid-template-columns: 1fr;
    }
     
    .recursos-grid {
        grid-template-columns: 1fr;
    }
    
    .ayuda-buttons {
        flex-direction: column;
    }
    
    .btn-ayuda {
        width: 100%;
        justify-content: center;
    }
    
    .manual-section,
    .ayuda-section {
        padding: 2rem;
    }
}
/* ========================================
   OPTIMIZACIÓN DE ESPACIADO Y TAMAÑOS
   ======================================== */

/* Hero más compacto */
.logotipos-hero {
    padding: 2.5rem 0;
}

.logotipos-hero-content h1 {
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
}

.logotipos-hero-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.stat-badge {
    padding: 0.8rem 1.5rem;
    min-width: 100px;
}

.stat-number {
    font-size: 2rem;
}

.stat-label {
    font-size: 0.85rem;
}

/* Tabs más compactos */
.tab-btn {
    padding: 0.9rem 1.5rem;
    font-size: 0.95rem;
}

.tab-icon {
    font-size: 1.2rem;
}

/* Content sections más compactas */
.content-section {
    padding: 2rem 1.5rem;
}

/* Intro box más pequeño */
.intro-box {
    padding: 1.8rem;
    margin-bottom: 2rem;
}

.intro-box h2 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
}

.intro-box p {
    font-size: 1rem;
    line-height: 1.6;
}

/* Grid de logotipos más compacto */
.logotipos-grid {
    gap: 1.8rem;
    margin-bottom: 2rem;
}

.card-header {
    padding: 1.2rem;
}

.card-header h3 {
    font-size: 1.15rem;
}

.version-badge {
    padding: 0.3rem 0.8rem;
    font-size: 0.7rem;
}

/* Display de logotipo reducido */
.logotipo-display {
    height: 220px;
    padding: 2rem;
}

/* Info más compacta */
.logotipo-info {
    padding: 1.2rem;
}

.info-item {
    padding: 0.4rem 0;
    font-size: 0.88rem;
}

.info-icon {
    font-size: 1rem;
}

/* Botones de descarga más pequeños */
.download-section {
    padding: 1.2rem;
    gap: 0.6rem;
}

.btn-download {
    padding: 0.7rem;
    font-size: 0.85rem;
}

.download-icon {
    font-size: 1.1rem;
}

/* Botón descarga completa más compacto */
.download-all-section {
    margin: 2rem 0;
}

.btn-download-all {
    padding: 1.2rem 2.5rem;
    font-size: 1rem;
    gap: 1.2rem;
}

.download-icon-large {
    font-size: 2rem;
}

.download-text strong {
    font-size: 1.1rem;
}

.download-text small {
    font-size: 0.8rem;
}

/* Timeline más compacto */
.proceso-timeline {
    padding: 1.5rem 0;
}

.timeline-item {
    margin-bottom: 2.5rem;
}

.timeline-marker {
    width: 50px;
    height: 50px;
}

.step-number {
    font-size: 1.3rem;
}

.timeline-content {
    padding: 1.5rem;
}

.timeline-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.timeline-image {
    height: 180px;
    margin: 0.8rem 0;
}

.timeline-content p {
    line-height: 1.6;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.timeline-list li {
    padding: 0.4rem 0 0.4rem 1.5rem;
    font-size: 0.9rem;
}

/* Especificaciones técnicas más compactas */
.especificaciones-section {
    margin-bottom: 3rem;
}

.especificaciones-section h3 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
}

.specs-grid {
    gap: 1.5rem;
}

.spec-card {
    padding: 1.5rem;
}

.spec-icon {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
}

.spec-card h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.spec-visual {
    height: 160px;
    margin: 1rem 0;
}

.spec-card p {
    line-height: 1.5;
    font-size: 0.9rem;
}

.color-palette {
    gap: 0.8rem;
    margin-top: 0.8rem;
}

.color-swatch {
    width: 50px;
    height: 50px;
}

.color-item span {
    font-size: 0.7rem;
}

/* Usos correctos/incorrectos más compactos */
.correctos-incorrectos-section {
    margin-bottom: 3rem;
}

.correctos-incorrectos-section h3 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
}

.usos-grid {
    gap: 1.5rem;
}

.uso-badge {
    padding: 0.6rem;
    font-size: 0.9rem;
}

.uso-visual {
    height: 200px;
    padding: 1.5rem;
}

.uso-item p {
    padding: 1.2rem;
    line-height: 1.5;
    font-size: 0.9rem;
}

/* Aplicaciones más compactas */
.aplicaciones-section {
    margin-bottom: 3rem;
}

.aplicaciones-section h3 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
}

.aplicaciones-grid {
    gap: 1.5rem;
}

.aplicacion-card {
    transition: all 0.3s;
}

.aplicacion-card:hover {
    transform: translateY(-5px);
}

.aplicacion-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.aplicacion-card h4 {
    padding: 0.8rem 1.2rem 0.4rem 1.2rem;
    font-size: 1rem;
}

.aplicacion-card ul {
    padding: 0 1.2rem 1rem 1.2rem;
    list-style: none;
    margin: 0;
}

.aplicacion-card li {
    padding: 0.3rem 0 0.3rem 1.2rem;
    position: relative;
    font-size: 0.85rem;
    color: #666;
}

.aplicacion-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #5B2D91;
    font-weight: bold;
}

.version-recomendada {
    display: block;
    padding: 0.6rem 1.2rem 1rem 1.2rem;
    font-size: 0.8rem;
    color: #5B2D91;
    font-weight: 600;
}

/* Manual section más compacta */
.manual-section {
    padding: 2rem;
    margin: 3rem 0;
}

.manual-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.manual-icon {
    font-size: 3rem;
}

.manual-content {
    flex: 1;
    min-width: 250px;
}

.manual-content h4 {
    font-size: 1.3rem;
    color: #5B2D91;
    margin-bottom: 0.5rem;
}

.manual-content p {
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.btn-manual {
    padding: 0.9rem 2rem;
    background: linear-gradient(135deg, #5B2D91, #E91E8C);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.95rem;
}

.btn-manual:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(91, 45, 145, 0.3);
}

/* Responsive optimizado */
@media (max-width: 1024px) {
    .logotipos-hero-content h1 {
        font-size: 1.9rem;
    }
    
    .specs-grid,
    .aplicaciones-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .logotipos-hero {
        padding: 2rem 0;
    }
    
    .logotipos-hero-content h1 {
        font-size: 1.6rem;
    }
    
    .logotipos-hero-content p {
        font-size: 0.95rem;
    }
    
    .hero-stats {
        gap: 1rem;
    }
    
    .stat-badge {
        padding: 0.7rem 1.2rem;
        min-width: 90px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .content-section {
        padding: 1.5rem 1rem;
    }
    
    .intro-box {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .intro-box h2 {
        font-size: 1.4rem;
    }
    
    .intro-box p {
        font-size: 0.95rem;
    }
    
    .logotipos-grid {
        gap: 1.5rem;
    }
    
    .logotipo-display {
        height: 180px;
        padding: 1.5rem;
    }
    
    .timeline-marker {
        width: 40px;
        height: 40px;
    }
    
    .step-number {
        font-size: 1.1rem;
    }
    
    .timeline-content {
        padding: 1.2rem;
    }
    
    .timeline-image {
        height: 150px;
    }
    
    .specs-grid,
    .usos-grid,
    .aplicaciones-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    
    .manual-card {
        flex-direction: column;
        text-align: center;
    }
}

/* Eliminar espacios excesivos en secciones */
section + section {
    margin-top: 0;
}

/* Optimizar altura de hero stats */
.hero-stats {
    margin-top: 1.5rem;
}