/* ==========================================================================
   EXCEL TEMPLATE CONTENT - DISEÑO PROFESIONAL CENTRADO TIPO APP
   Estilos profesionales para contenido SEO generado por Excel Generator AI
   ========================================================================== */

/* Variables CSS para el tema profesional */
:root {
    --primary-green: #2d5a4a;
    --secondary-green: #4a7c66;
    --accent-green: #6ca882;
    --light-green: #f0f7f4;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #6a6a6a;
    --border-light: #e5e5e5;
    --white: #ffffff;
    --shadow-subtle: rgba(0, 0, 0, 0.05);
    --shadow-medium: rgba(0, 0, 0, 0.1);
    --cta-bg: #fafbfa;
}

/* Contenedor principal centrado tipo app */
.excel-template-content {
    margin: 20px 0;
    padding: 0;
    color: var(--text-dark);
    line-height: 1.5;
    background: var(--white);
    text-align: center;
}

/* Headers principales */
.excel-header-main {
    font-size: 2.2rem;
    font-weight: 700;
    margin: 0 0 25px 0;
    color: var(--primary-green);
    text-align: center;
    line-height: 1.2;
}

.excel-header-section {
    font-weight: 600;
    margin: 50px 0 15px 0;
    color: var(--primary-green);
    line-height: 1.3;
    text-align: center;
}

.excel-header-sub {
    font-weight: 600;
    color: var(--secondary-green);
    margin: 40px 0 10px 0;
    line-height: 1.4;
    text-align: center;
}

/* Bloques de texto centrados */
.excel-text-block {
    margin: 20px 0;
    padding: 0;
    text-align: center;
}

.excel-text-block p {
    margin: 0 0 12px 0;
    line-height: 1.6;
    color: var(--text-medium);
    text-align: center;
}

.excel-text-block p strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* Separadores de sección con más espacio */
.excel-section-separator {
    font-weight: 600 !important;
    color: var(--primary-green) !important;
    margin: 50px 0 25px 0 !important;
    padding: 0 !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
}

/* Grid de características centrado */
.excel-features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
    margin: 20px 0;
    padding: 0;
    list-style: none;
    justify-items: center;
}

.excel-features-list li {
    padding: 15px;
    background: var(--light-green);
    border-radius: 6px;
    line-height: 1.5;
    color: var(--text-medium);
    text-align: center;
    max-width: 350px;
}

.excel-features-list li strong {
    color: var(--primary-green);
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}

/* Listas de beneficios y pasos centradas */
.excel-benefits-list,
.excel-steps-list {
    margin: 15px 0;
    padding: 0;
    list-style: none;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
}

.excel-benefits-list li,
.excel-steps-list li {
    margin: 0 0 12px 0;
    padding: 12px 0;
    line-height: 1.5;
    color: var(--text-medium);
    border-bottom: 1px solid var(--border-light);
}

.excel-benefits-list li:last-child,
.excel-steps-list li:last-child {
    border-bottom: none;
}

.excel-benefits-list li strong,
.excel-steps-list li strong {
    color: var(--primary-green);
    font-weight: 600;
    display: block;
    margin-bottom: 3px;
}

/* Listas numeradas con schema HowTo */
.excel-text-block ol {
    counter-reset: step-counter;
    list-style: none;
    padding: 0;
    margin: 15px 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.excel-text-block ol li {
    counter-increment: step-counter;
    position: relative;
    padding: 12px 0 12px 45px;
    margin: 0 0 12px 0;
    border-bottom: 1px solid var(--border-light);
    line-height: 1.5;
    color: var(--text-medium);
}

.excel-text-block ol li:last-child {
    border-bottom: none;
}

.excel-text-block ol li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 12px;
    width: 30px;
    height: 30px;
    background: var(--primary-green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

/* Listas simples sin bullets */
.excel-text-block ul {
    margin: 15px 0;
    padding: 0;
    list-style: none;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.excel-text-block ul li {
    padding: 8px 0;
    margin: 0 0 8px 0;
    line-height: 1.5;
    color: var(--text-medium);
}

/* Contenido visual sin background */
.excel-visual-content {
    margin: 25px 0;
}

.excel-visual-content .excel-text-block {
    margin: 15px 0;
}

.excel-visual-content .excel-section-separator {
    margin: 40px 0 20px 0 !important;
}

/* Botones principales */
.excel-download-button {
    display: inline-block;
    background: var(--primary-green);
    color: var(--white) !important;
    padding: 12px 24px;
    text-decoration: none !important;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.excel-download-button:hover {
    background: var(--secondary-green);
    transform: translateY(-1px);
    box-shadow: 0 3px 10px var(--shadow-medium);
    color: var(--white) !important;
}

/* Sección de botones como cajas CTA */
.excel-buttons-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 30px 0;
    padding: 0;
}

.excel-button-container {
    background: var(--cta-bg);
    padding: 25px 20px;
    border-radius: 6px;
    text-align: center;
    border: 1px solid var(--border-light);
}

.excel-button-container h2 {
    margin: 0 0 15px 0 !important;
    color: var(--primary-green);
}

/* Sección CTA profesional centrada */
.excel-cta-section {
    background: var(--primary-green);
    color: var(--white);
    padding: 30px 25px;
    border-radius: 6px;
    text-align: center;
    margin: 30px 0;
}

.excel-cta-section p {
    color: var(--white) !important;
    margin: 0 0 15px 0;
}

.excel-cta-section .excel-download-button {
    background: var(--white);
    color: var(--primary-green) !important;
    font-weight: 700;
    padding: 15px 30px;
    margin-top: 5px;
}

.excel-cta-section .excel-download-button:hover {
    background: var(--light-green);
    color: var(--primary-green) !important;
    transform: translateY(-1px);
}

.excel-cta-info {
    margin-top: 15px;
    color: rgba(255, 255, 255, 0.9);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 15px;
}

/* Sección FAQ con schema markup */
.excel-faq-section {
    margin: 30px 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.excel-faq-section .excel-text-block {
    padding: 15px 0;
    border-bottom: 1px solid var(--border-light);
    margin: 0;
    text-align: left;
}

.excel-faq-section .excel-text-block:last-child {
    border-bottom: none;
}

.excel-faq-section .excel-text-block p:first-child {
    color: var(--primary-green) !important;
    font-weight: 500;
    margin-bottom: 8px !important;
}

/* Grid de descargas centrado */
.excel-downloads-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
    margin: 20px 0;
    justify-items: center;
}

.excel-download-link {
    display: block;
    padding: 12px 15px;
    background: var(--white);
    border: 2px solid var(--border-light);
    border-radius: 6px;
    text-decoration: none !important;
    color: var(--primary-green) !important;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
}

.excel-download-link:hover {
    border-color: var(--primary-green);
    background: var(--light-green);
    color: var(--primary-green) !important;
    transform: translateY(-1px);
}

/* Imagen personalizada centrada */
.excel-custom-image-section {
    text-align: center;
    margin: 30px 0;
    padding: 0;
}

.excel-custom-image {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 5px 15px var(--shadow-medium);
}

/* Responsive Design */
@media (max-width: 768px) {
    .excel-buttons-section {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 25px 0;
    }
    
    .excel-header-main {
        font-size: 1.9rem;
    }
    
    .excel-features-list {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .excel-cta-section {
        padding: 25px 20px;
    }
    
    .excel-text-block ol li {
        padding-left: 40px;
    }
    
    .excel-text-block ol li::before {
        width: 28px;
        height: 28px;
    }
    
    .excel-downloads-grid {
        grid-template-columns: 1fr;
    }
    
    .excel-button-container {
        padding: 20px 15px;
    }
}

@media (max-width: 480px) {
    .excel-header-main {
        font-size: 1.7rem;
        margin-bottom: 20px;
    }
    
    .excel-features-list li {
        padding: 12px;
    }
    
    .excel-cta-section {
        padding: 20px 15px;
    }
    
    .excel-text-block ol li {
        padding-left: 35px;
    }
    
    .excel-text-block ol li::before {
        width: 25px;
        height: 25px;
    }
    
    .excel-button-container {
        padding: 18px 12px;
    }
} 