:root {
    --everest-blue: #002c5b;
    --everest-red: #c40000;
    --everest-white: #ffffff;
    --everest-black: #000000;
}

/* ======= FONTS ======= */
body {
    font-family: 'Roboto', sans-serif !important;
    font-weight: normal;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Raleway', sans-serif !important;
}

/* Estilos específicos para artículo de apoyos de neopreno */
.site-main {
    padding: 40px 0;
    background-color: #fff;
}

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

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-lg-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
    padding: 0 15px;
}

.col-lg-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
    padding: 0 15px;
}

/* Header del artículo */
.entry-header {
    margin-bottom: 40px;
}

.entry-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
    color: #666;
    font-size: 0.9rem;
}

.entry-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.entry-meta i {
    color: #d32f2f;
}

.entry-meta a {
    color: var(--everest-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.entry-meta a:hover {
    color: #d32f2f;
}

.entry-title {
    color: var(--everest-blue);
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 30px;
    font-weight: 700;
}

.featured-image {
    margin-top: 20px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Contenido del artículo */
.entry-content {
    line-height: 1.8;
    color: #444;
    font-size: 1.1rem;
}

.entry-content h2 {
    color: var(--everest-blue);
    font-size: 2rem;
    margin: 40px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #eee;
}

.entry-content h3 {
    color: var(--everest-blue);
    font-size: 1.5rem;
    margin: 30px 0 15px;
}

.entry-content h4 {
    color: var(--everest-blue);
    font-size: 1.2rem;
    margin: 25px 0 10px;
}

.intro-box {
    background-color: #f8f9fa;
    border-left: 4px solid #d32f2f;
    padding: 25px;
    margin: 30px 0;
    border-radius: 0 8px 8px 0;
    font-size: 1.1rem;
}

.intro-box strong {
    color: #d32f2f;
}

/* Info Box */
.info-box {
    background-color: #e8f4fd;
    border: 1px solid #bbdefb;
    border-radius: 8px;
    padding: 25px;
    margin: 25px 0;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.info-box-icon {
    flex-shrink: 0;
}

.info-box-icon i {
    font-size: 2.5rem;
    color: #1976d2;
}

.info-box-content h3 {
    margin-top: 0;
    color: #1565c0;
}

.info-box-content ul {
    list-style-type: none;
    padding-left: 0;
}

.info-box-content li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.info-box-content li:before {
    content: "✓";
    color: #4caf50;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.feature-item {
    text-align: center;
    padding: 25px 15px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.feature-icon {
    margin-bottom: 15px;
}

.feature-icon i {
    font-size: 2.5rem;
    color: #d32f2f;
}

.feature-item h4 {
    color: var(--everest-blue);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

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

/* Product Showcase */
.product-showcase {
    display: flex;
    gap: 30px;
    align-items: center;
    background: #f5f5f5;
    padding: 30px;
    border-radius: 8px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.product-image {
    flex: 1;
    min-width: 300px;
}

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

.product-details {
    flex: 2;
    min-width: 300px;
}

.product-details h4 {
    color: var(--everest-blue);
    margin-bottom: 15px;
}

.product-details ul {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.product-details li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.product-details li:before {
    content: "•";
    color: #d32f2f;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -5px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #d32f2f;
    color: white;
    padding: 12px 25px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #b71c1c;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Tech Features */
.tech-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.tech-item {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    border-left: 4px solid #2196f3;
}

.tech-item h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #1565c0;
    margin-bottom: 10px;
}

.tech-item h4 i {
    color: #2196f3;
}

.tech-item p {
    color: #555;
    margin: 0;
}

/* Case Studies */
.case-studies {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.case-study {
    background: white;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    transition: transform 0.3s ease;
}

.case-study:hover {
    transform: translateY(-3px);
    border-color: #d32f2f;
}

.case-study h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--everest-blue);
    margin-bottom: 10px;
}

.case-study h4 i {
    color: #d32f2f;
}

.case-study p {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, var(--everest-blue), #1a252f);
    color: white;
    padding: 40px;
    border-radius: 12px;
    margin: 40px 0;
}

.cta-content h3 {
    color: white;
    margin-top: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cta-content h3 i {
    color: #4caf50;
}

.cta-content p {
    opacity: 0.9;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-large {
    padding: 15px 30px;
    font-size: 1.1rem;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #607d8b;
    color: white;
    padding: 12px 25px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #455a64;
    color: white;
}

/* Comparison Table */
.comparison-table {
    margin: 40px 0;
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.comparison-table th {
    background-color: var(--everest-blue);
    color: white;
    padding: 15px;
    text-align: left;
    font-weight: 600;
}

.comparison-table td {
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.comparison-table tbody tr:hover {
    background-color: #f9f9f9;
}

.comparison-table .highlight {
    color: #d32f2f;
    font-weight: 600;
    background-color: #ffebee;
}

/* Technical Considerations */
.technical-considerations {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.consideration {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #ff9800;
}

.consideration h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--everest-blue);
    margin-bottom: 10px;
}

.consideration h4 i {
    color: #ff9800;
}

.consideration p {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
}

/* Expert Advice */
.expert-advice {
    background-color: #e8f5e9;
    border: 1px solid #c8e6c9;
    border-radius: 8px;
    padding: 30px;
    margin: 40px 0;
}

.expert-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.expert-header i {
    font-size: 2rem;
    color: #4caf50;
}

.expert-header h3 {
    color: #2e7d32;
    margin: 0;
}

.expert-content p {
    color: #1b5e20;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.expert-signature {
    text-align: right;
    font-style: italic;
    color: #388e3c;
}

/* Final CTA */
.final-cta {
    margin: 50px 0;
}

.cta-card {
    display: flex;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    flex-wrap: wrap;
}

.cta-left {
    flex: 2;
    padding: 40px;
    background: linear-gradient(135deg, #f5f5f5, #e0e0e0);
    min-width: 300px;
}

.cta-left h3 {
    color: var(--everest-blue);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.cta-left h3 i {
    color: #d32f2f;
}

.cta-left ul {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 30px;
}

.cta-left li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cta-left li i {
    color: #4caf50;
}

.cta-right {
    flex: 1;
    padding: 40px;
    background: white;
    min-width: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-mini-card {
    text-align: center;
    max-width: 300px;
}

.product-mini-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.product-info h4 {
    color: var(--everest-blue);
    margin-bottom: 10px;
}

.product-info p {
    color: #666;
    margin-bottom: 20px;
}

.product-cta .btn-primary {
    width: 100%;
    justify-content: center;
}

/* Article Tags */
.article-tags {
    margin: 40px 0;
    padding: 20px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
}

.tags-title {
    font-weight: 600;
    color: var(--everest-blue);
    display: flex;
    align-items: center;
    gap: 8px;
}

.article-tags a {
    background-color: #f0f0f0;
    color: #555;
    padding: 8px 15px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.article-tags a:hover {
    background-color: #d32f2f;
    color: white;
}

/* Share Post */
.share-post {
    margin: 40px 0;
}

.share-post h4 {
    color: var(--everest-blue);
    margin-bottom: 20px;
}

.social-share {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.social-share a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 4px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.social-share a:hover {
    transform: translateY(-2px);
}

.social-facebook { background-color: #3b5998; }
.social-twitter { background-color: #1da1f2; }
.social-linkedin { background-color: #0077b5; }
.social-whatsapp { background-color: #25d366; }

/* Entry Footer */
.entry-footer {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #eee;
}

.post-navigation {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.nav-previous,
.nav-next {
    flex: 1;
    min-width: 300px;
}

.nav-previous a,
.nav-next a {
    display: block;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.nav-previous a:hover,
.nav-next a:hover {
    background-color: white;
    border-color: #d32f2f;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.nav-subtitle {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 5px;
}

.nav-title {
    display: block;
    font-weight: 600;
    color: var(--everest-blue);
}

/* Widget Area */
.widget-area {
    margin-top: 0;
}

.widget {
    margin-bottom: 40px;
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.widget-title {
    color: var(--everest-blue);
    font-size: 1.3rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #eee;
}

/* Widget Search */
.search-form {
    display: flex;
}

.search-field {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-right: none;
    border-radius: 4px 0 0 4px;
    font-size: 1rem;
}

.search-submit {
    background-color: #d32f2f;
    color: white;
    border: none;
    padding: 0 20px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.search-submit:hover {
    background-color: #b71c1c;
}

/* Widget Categories */
.widget_categories ul {
    list-style-type: none;
    padding-left: 0;
}

.widget_categories li {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

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

.widget_categories a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s ease;
}

.widget_categories a:hover {
    color: #d32f2f;
}

/* Widget Products */
.product-widget {
    text-align: center;
}

.product-widget img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.product-widget-info h4 {
    margin-bottom: 10px;
}

.product-widget-info h4 a {
    color: var(--everest-blue);
    text-decoration: none;
}

.product-widget-info h4 a:hover {
    color: #d32f2f;
}

.product-widget-info p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.btn-small {
    display: inline-block;
    background-color: #d32f2f;
    color: white;
    padding: 8px 15px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-small:hover {
    background-color: #b71c1c;
    color: white;
}

/* Widget Recent Entries */
.widget_recent_entries ul {
    list-style-type: none;
    padding-left: 0;
}

.widget_recent_entries li {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.widget_recent_entries li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.widget_recent_entries a {
    color: var(--everest-blue);
    text-decoration: none;
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
    transition: color 0.3s ease;
}

.widget_recent_entries a:hover {
    color: #d32f2f;
}

.post-date {
    font-size: 0.85rem;
    color: #888;
}

/* Widget Contact */
.contact-widget-content p {
    color: #666;
    margin-bottom: 20px;
}

.contact-info {
    margin-bottom: 25px;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #555;
}

.contact-info i {
    color: #d32f2f;
    width: 20px;
}

.contact-widget-content .btn-primary {
    width: 100%;
    justify-content: center;
}

/* Widget Tag Cloud */
.tagcloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-cloud-link {
    background-color: #f0f0f0;
    color: #555;
    padding: 6px 12px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.tag-cloud-link:hover {
    background-color: #d32f2f;
    color: white;
}

/* Responsive */
@media (max-width: 992px) {
    .col-lg-8,
    .col-lg-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .entry-title {
        font-size: 2rem;
    }
    
    .cta-card {
        flex-direction: column;
    }
    
    .product-showcase {
        flex-direction: column;
    }
    
    .post-navigation {
        flex-direction: column;
    }
    
    .nav-previous,
    .nav-next {
        min-width: 100%;
    }
}

@media (max-width: 768px) {
    .entry-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .entry-title {
        font-size: 1.8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .social-share {
        flex-direction: column;
    }
    
    .social-share a {
        justify-content: center;
    }
    
    .features-grid,
    .case-studies,
    .technical-considerations {
        grid-template-columns: 1fr;
    }
}