: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 pisos de hule - Mismos estilos que 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;
}

.reading-time {
    color: #666;
}

.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;
}

/* Pro Tip */
.pro-tip {
    background-color: #fff8e1;
    border-left: 4px solid #ffc107;
    padding: 20px;
    border-radius: 8px;
    margin: 25px 0;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.pro-tip-icon {
    flex-shrink: 0;
}

.pro-tip-icon i {
    font-size: 2rem;
    color: #ffc107;
}

.pro-tip-content h4 {
    color: #e65100;
    margin-bottom: 10px;
}

.pro-tip-content p {
    color: #5d4037;
}

.pro-tip-content a {
    color: #d32f2f;
    font-weight: 600;
    text-decoration: none;
}

.pro-tip-content a:hover {
    text-decoration: underline;
}

/* Step Installation */
.step-installation {
    display: flex;
    gap: 30px;
    margin: 30px 0;
    align-items: center;
    flex-wrap: wrap;
}

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

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

.step-content {
    flex: 2;
    min-width: 300px;
}

.step-content p {
    margin-bottom: 20px;
}

.step-checklist {
    background-color: #f1f8e9;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #7cb342;
}

.step-checklist p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    color: #33691e;
}

.step-checklist i {
    color: #7cb342;
}

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

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

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

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

.planning-item h4 i {
    color: #d32f2f;
}

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

/* Installation Process */
.installation-process {
    margin: 30px 0;
}

.process-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #eee;
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
}

.process-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.process-item.animate-in {
    animation: fadeInUp 0.5s ease forwards;
}

.process-number {
    width: 40px;
    height: 40px;
    background-color: #d32f2f;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    flex-shrink: 0;
}

.process-content h4 {
    margin-top: 0;
    margin-bottom: 10px;
    color: var(--everest-blue);
}

.process-content p {
    color: #666;
    margin: 0;
}

/* Installation Image Full */
.installation-image-full {
    margin: 40px 0;
    text-align: center;
}

.installation-image-full img {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.image-caption {
    margin-top: 10px;
    font-style: italic;
    color: #666;
    font-size: 0.9rem;
}

/* Cutting Guide */
.cutting-guide {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.cutting-tips {
    background-color: #ffebee;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #f44336;
}

.cutting-tips h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #c62828;
    margin-bottom: 15px;
}

.cutting-tips ul {
    list-style-type: none;
    padding-left: 0;
}

.cutting-tips li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #d32f2f;
}

.cutting-tips li i {
    color: #f44336;
}

.cutting-techniques {
    background-color: #e8f5e9;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #4caf50;
}

.cutting-techniques h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #2e7d32;
    margin-bottom: 15px;
}

.technique {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #c8e6c9;
}

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

.technique h5 {
    color: #388e3c;
    margin-bottom: 5px;
}

.technique p {
    color: #555;
    margin: 0;
    font-size: 0.95rem;
}

/* Maintenance Guide */
.maintenance-guide {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.maintenance-schedule {
    background-color: #e3f2fd;
    padding: 25px;
    border-radius: 8px;
}

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

.schedule-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #bbdefb;
}

.schedule-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.schedule-item h5 {
    color: #1976d2;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

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

.maintenance-donts {
    background-color: #ffebee;
    padding: 25px;
    border-radius: 8px;
}

.maintenance-donts h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #c62828;
    margin-bottom: 20px;
}

.maintenance-donts ul {
    list-style-type: none;
    padding-left: 0;
}

.maintenance-donts li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #d32f2f;
}

.maintenance-donts li i {
    color: #f44336;
    margin-top: 3px;
    flex-shrink: 0;
}

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

.comparison-table h3 {
    color: var(--everest-blue);
    margin-bottom: 20px;
}

.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;
}

/* FAQ Section */
.faq-section {
    margin: 40px 0;
}

.faq-item {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    background-color: #f8f9fa;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #e9ecef;
}

.faq-question h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--everest-blue);
    margin: 0;
    font-size: 1.1rem;
}

.faq-question i.fa-question-circle {
    color: #d32f2f;
}

.faq-question i.fa-chevron-down {
    color: #666;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

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

.faq-answer p {
    color: #666;
    line-height: 1.6;
}

.faq-answer a {
    color: #d32f2f;
    font-weight: 600;
    text-decoration: none;
}

.faq-answer a:hover {
    text-decoration: underline;
}

/* CTA Banner (igual que el anterior artículo) */
.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-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 25px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature i {
    color: #4caf50;
}

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

.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);
}

.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;
}

/* Expert Advice (igual que el anterior artículo) */
.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 (igual que el anterior artículo) */
.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;
}

.product-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.spec {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: white;
    padding: 10px 15px;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.spec i {
    color: #d32f2f;
}

.spec span {
    color: #555;
    font-size: 0.9rem;
}

.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: 15px;
}

.product-price {
    margin-bottom: 20px;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #d32f2f;
    display: block;
}

.discount {
    font-size: 0.9rem;
    color: #4caf50;
    font-weight: 600;
}

.product-cta {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

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

/* Article Tags (igual que el anterior artículo) */
.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 (igual que el anterior artículo) */
.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 (igual que el anterior artículo) */
.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 (igual que el anterior artículo) */
.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 (igual que el anterior artículo) */
.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 (igual que el anterior artículo) */
.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 (igual que el anterior artículo) */
.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;
}

.product-widget-price {
    margin-bottom: 15px;
}

.product-widget-price .price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #d32f2f;
}

.product-widget-price .old-price {
    font-size: 0.9rem;
    color: #999;
    text-decoration: line-through;
    margin-left: 10px;
}

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

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

/* Widget Recent Entries (igual que el anterior artículo) */
.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 (igual que el anterior artículo) */
.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 (igual que el anterior artículo) */
.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 (igual que el anterior artículo) */
@media (max-width: 992px) {
    .col-lg-8,
    .col-lg-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .entry-title {
        font-size: 2rem;
    }
    
    .cta-card,
    .step-installation,
    .cutting-guide,
    .maintenance-guide {
        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,
    .product-cta,
    .social-share {
        flex-direction: column;
    }
    
    .social-share a {
        justify-content: center;
    }
    
    .features-grid,
    .planning-grid,
    .case-studies {
        grid-template-columns: 1fr;
    }
    
    .faq-question h4 {
        font-size: 1rem;
    }
}