.icon-wrap-services {
    font-size: 2em;
    height: 60px;
    width: 60px;
    margin: 10px auto 10px auto;
    line-height: 60px;
    text-align: center;
    color: #fff;
}

/* Service Cards Wrapper */
.service-card-wrapper {
    height: 100%;
    width: 100%;
}

/* Service Cards */
.service-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 30px 20px;
    text-align: center;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: relative;
    float: none !important;
    clear: both;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-color: grey;
    border-width: 2px;
}

.service-card h3 {
    margin: 20px 0 15px 0;
    color: #333;
    font-size: 1.5rem;
    font-weight: 600;
}

.service-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Fix para el grid de servicios */
.price-container .row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px 40px -15px; /* Agregado margen inferior para separar filas */
}

.price-container .row > [class*="col-"] {
    float: none !important;
    display: flex;
    padding: 0 15px;
    margin-bottom: 10px; /* Espacio adicional entre tarjetas */
}

/* Espaciado adicional para el contenedor de servicios */
.price-container {
    padding-bottom: 60px !important; /* Más espacio antes del CTA */
}

/* CTA section con margen superior adicional */
.cta-section {
    margin-top: 40px;
    position: relative;
    z-index: 1;
}

/* Grid específico de servicios */
.services-grid {
    row-gap: 30px !important; /* Separación entre filas */
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
}

.services-grid > [class*="col-"] {
    margin-bottom: 0; /* Resetear el margin-bottom ya que usamos row-gap */
    float: none !important;
}

/* ===== SECCIÓN DE TECNOLOGÍAS ===== */

.technologies-section {
    background: #ffffff;
    border-top: 1px solid #e5e7eb;
}

.technologies-grid {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    row-gap: 1.75rem; /* solo separación entre filas; el ancho entre columnas lo marcan los cols de Bootstrap */
}

.technologies-grid > [class*="col-"] {
    float: none !important;
    margin-bottom: 0; /* el espacio vertical lo marca row-gap (mb-4 no existe en Bootstrap 3 del tema) */
}

.tech-card {
    background: #fff;
    border: 2px solid #f3f4f6;
    border-radius: 16px;
    padding: 25px 15px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 140px;
    margin-top: 10px;
}

.tech-card:hover {
    transform: translateY(-8px);
    border-color: #326b2f;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.15);
}

.tech-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    min-height: 76px;
    height: 76px;
}

.tech-img {
    max-width: 72px;
    max-height: 72px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.1));
}

.tech-logo .tech-icon {
    font-size: 3.5rem;
    line-height: 1;
    color: #374151;
    transition: transform 0.3s ease, color 0.3s ease, filter 0.3s ease;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.08));
}

.tech-card:hover .tech-icon {
    transform: scale(1.12);
    color: #326b2f;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
}

.tech-card:hover .tech-img {
    transform: scale(1.15);
    filter: drop-shadow(0 4px 15px rgba(0,0,0,0.2));
}

/* Fallback para imágenes que no cargan */
.tech-img:not([src]), .tech-img[src=""] {
    display: none;
}

.tech-img:not([src])::after, .tech-img[src=""]::after {
    content: "📦";
    font-size: 3rem;
    display: block;
}

.tech-card h5 {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: #374151;
    letter-spacing: 0.5px;
}

.tech-card:hover h5 {
    color: #1f2937;
}

/* Tarjeta destacada para especialidades */
.tech-card-featured {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    border-color: #2563eb !important;
    position: relative;
    overflow: hidden;
}

.tech-card-featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.1);
    z-index: 1;
}

.tech-card-featured .tech-logo,
.tech-card-featured h5,
.tech-card-featured .tech-badge {
    position: relative;
    z-index: 2;
}

.tech-card-featured h5 {
    color: white !important;
    font-weight: 700;
}

.tech-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tech-card-featured:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.3);
}

/* Responsive para tecnologías */
@media (max-width: 768px) {
    .tech-card {
        padding: 20px 10px;
        min-height: 120px;
    }

    .tech-logo {
        min-height: 68px;
        height: 68px;
    }

    .tech-logo .tech-icon {
        font-size: 3rem;
    }
    
    .tech-logo svg {
        width: 50px;
        height: 50px;
    }
    
    .tech-card h5 {
        font-size: 0.85rem;
    }
    
    .tech-badge {
        font-size: 0.6rem;
        padding: 3px 6px;
    }
}

/* ===== ESTILOS UNIFICADOS PARA TARJETAS DE SERVICIOS ===== */

/* API/REST - Azul */
.service-api {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border: none !important;
    color: white;
}

.service-api .icon-wrap-services {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.service-api .icon-wrap-services i {
    color: #ffffff;
}

.service-api h2 {
    color: #ffffff;
}

.service-api p {
    color: rgba(255, 255, 255, 0.9);
}

/* Diseño Gráfico - Rosa/Violeta */
.service-design {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    border: none !important;
    color: white;
}

.service-design .icon-wrap-services {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.service-design .icon-wrap-services i {
    color: #ffffff;
}

.service-design h2 {
    color: #ffffff;
}

.service-design p {
    color: rgba(255, 255, 255, 0.9);
}

/* Badge para servicios especiales (opcional) */
.service-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Responsive para nuevas tarjetas */
@media (max-width: 768px) {
    .service-badge {
        font-size: 0.65rem;
        padding: 4px 8px;
        top: 10px;
        right: 10px;
    }
}

/* ===== TEMAS DE COLORES PARA TARJETAS DE SERVICIOS ===== */

/* Desarrollo Web - Verde */
.service-web {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border: none !important;
    color: white;
}

.service-web .icon-wrap-services {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.service-web .icon-wrap-services i {
    color: #ffffff;
}

.service-web h2 {
    color: #ffffff;
}

.service-web p {
    color: rgba(255, 255, 255, 0.9);
}

/* E-commerce - Naranja */
.service-ecommerce {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    border: none !important;
    color: white;
}

.service-ecommerce .icon-wrap-services {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.service-ecommerce .icon-wrap-services i {
    color: #ffffff;
}

.service-ecommerce h2 {
    color: #ffffff;
}

.service-ecommerce p {
    color: rgba(255, 255, 255, 0.9);
}

/* Aplicaciones Móviles - Teal */
.service-apps {
    background: linear-gradient(135deg, #14b8a6 0%, #0f766e 100%);
    border: none !important;
    color: white;
}

.service-apps .icon-wrap-services {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.service-apps .icon-wrap-services i {
    color: #ffffff;
}

.service-apps h2 {
    color: #ffffff;
}

.service-apps p {
    color: rgba(255, 255, 255, 0.9);
}

/* Mantenimiento y Soporte - Amarillo */
.service-support {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    border: none !important;
    color: white;
}

.service-support .icon-wrap-services {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.service-support .icon-wrap-services i {
    color: #ffffff;
}

.service-support h2 {
    color: #ffffff;
}

.service-support p {
    color: rgba(255, 255, 255, 0.9);
}

/* ===== ESTILOS PARA BOTONES DE SERVICIOS ===== */

/* Botones dentro de las tarjetas de servicios */
.service-card .btn {
    padding: 12px 24px !important;
    font-size: 0.95rem !important;
    font-weight: 700 !important;
    border-radius: 25px !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    border: 2px solid white !important;
    background: white !important;
    color: #333 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    margin-top: auto !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
}

.service-card .btn:hover {
    background: #f8f9fa !important;
    border-color: #fff !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3) !important;
    color: #000 !important;
}

/* ===== BOTÓN CTA PRINCIPAL ===== */

.cta-section {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%) !important;
    position: relative;
    overflow: hidden;
    padding: 30px 20px !important;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-section h2 {
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    margin-bottom: 1.5rem !important;
    color: white !important;
}

.cta-section p {
    font-size: 1.2rem !important;
    margin-bottom: 2rem !important;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: white !important;
}

.cta-section .btn,
.btn-cta {
    padding: 18px 40px !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    border-radius: 35px !important;
    background: #326b2f !important;
    color: #fff !important;
    border: 2px solid rgba(255, 255, 255, 0.25) !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 8px 25px rgba(50, 107, 47, 0.45) !important;
    position: relative;
    overflow: hidden;
    text-decoration: none !important;
}

.cta-section .btn::before,
.btn-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

.cta-section .btn:hover::before,
.btn-cta:hover::before {
    left: 100%;
}

.cta-section .btn:hover,
.btn-cta:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 12px 35px rgba(50, 107, 47, 0.55) !important;
    background: #295826 !important;
    border-color: rgba(255, 255, 255, 0.35) !important;
    color: #fff !important;
}

/* Responsive para botones */
@media (max-width: 768px) {
    .service-card .btn {
        padding: 10px 20px !important;
        font-size: 0.85rem !important;
    }
    
    .cta-section h2 {
        font-size: 2rem !important;
    }
    
    .cta-section p {
        font-size: 1rem !important;
    }
    
    .cta-section .btn,
    .btn-cta {
        padding: 15px 30px !important;
        font-size: 1rem !important;
    }
}

/* ===== RESPONSIVE PARA SLIDER ===== */

/* Tablets y móviles grandes */
@media (max-width: 768px) {
    .da-slide p {
        width: 80% !important;
        height: auto !important;
        max-height: 120px !important;
        font-size: 16px !important;
        line-height: 22px !important;
        top: 200px !important;
        margin-left: 0 !important;
        left: 10% !important;
        overflow: visible !important;
    }
    
    .da-slide h2 {
        font-size: 28px !important;
        margin-left: 0 !important;
        left: 10% !important;
        width: 80% !important;
        white-space: normal !important;
    }
    
    .da-slide h3 {
        font-size: 18px !important;
        margin-left: 0 !important;
        left: 10% !important;
        width: 80% !important;
        white-space: normal !important;
        top: 110px !important;
    }
    
    .da-slide .da-link {
        margin-left: 0 !important;
        left: 10% !important;
        top: 320px !important;
    }
}

/* Móviles pequeños */
@media (max-width: 480px) {
    .da-slide p {
        width: 90% !important;
        height: auto !important;
        max-height: 140px !important;
        font-size: 14px !important;
        line-height: 20px !important;
        top: 170px !important;
        left: 5% !important;
    }
    
    .da-slide h2 {
        font-size: 24px !important;
        left: 5% !important;
        width: 90% !important;
        top: 40px !important;
    }
    
    .da-slide h3 {
        font-size: 16px !important;
        left: 5% !important;
        width: 90% !important;
        top: 90px !important;
    }
    
    .da-slide .da-link {
        left: 5% !important;
        top: 330px !important;
        font-size: 16px !important;
        padding: 8px 4px !important;
        width: 100px !important;
    }
}

/* ===== BLOG TWO COLUMN ===== */
.blog-two-row {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.blog-two-col {
    display: flex;
}

.blog-two-card {
    width: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(50, 107, 47, 0.2) !important;
    border-radius: 8px;
    background: linear-gradient(180deg, #f6faf6 0%, #ffffff 40%);
    box-shadow: 0 2px 14px rgba(42, 66, 48, 0.08);
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.blog-two-card:hover {
    border-color: rgba(50, 107, 47, 0.35) !important;
    box-shadow: 0 8px 24px rgba(42, 66, 48, 0.12);
}

.blog-two-card .blog-content {
    flex: 1 1 auto;
}

/* Botón "Leer más": el tema solo ponía margin-left y se salía por la derecha en columnas */
.blog-two-card > .btn,
.blog-left.blog-two-card > .btn,
.blog-right.blog-two-card > .btn {
    margin: 0 20px 20px 20px !important;
    max-width: calc(100% - 40px);
    box-sizing: border-box;
    align-self: flex-start;
    white-space: normal;
    text-align: center;
}

.product-form-block .panel-title {
    font-size: 22px;
}

.product-form-block .panel-body {
    padding: 25px;
}

.contact-map iframe {
    width: 100%;
    min-height: 400px;
    border: 0;
    display: block;
}

.legal-page-body h2 {
    margin-top: 1.75rem;
    font-size: 22px;
}

.site-legal-links a {
    white-space: nowrap;
}

.header-contact-strip {
    background: #ffffff;
    border-bottom: 0;
}

.header-contact-list {
    margin: 0;
    padding: 7px 0;
    text-align: right;
}

.header-contact-list li {
    padding-left: 14px;
}

.header-contact-list a {
    color: #475168;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}

.header-contact-list a i {
    color: #6b7280;
    margin-right: 6px;
}

.header-contact-list a:hover {
    color: #2f3c4f;
}

.head-section .navbar {
    min-height: 66px;
}

.head-section .navbar-nav > li {
    padding-top: 19px;
    padding-bottom: 14px;
}

.footer-directory {
    background: #111827;
    color: #cbd5e1;
    padding: 50px 0 35px;
}

.footer-directory .footer-col {
    margin-bottom: 22px;
}

.footer-directory .footer-title {
    color: #f8fafc;
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 14px;
    letter-spacing: 0.3px;
}

.footer-directory .footer-title-icon {
    margin-right: 6px;
    color: #93c5fd;
}

.footer-directory .footer-tree {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-directory .footer-tree li {
    margin-bottom: 8px;
}

.footer-directory .footer-tree a {
    color: #e2e8f0;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-directory .footer-link-icon {
    width: 12px;
    margin-right: 8px;
    color: #93c5fd;
}

.footer-directory .footer-tree a:hover,
.footer-directory .footer-tree a:focus {
    color: #60a5fa;
    text-decoration: none;
}

.footer-directory .footer-text {
    color: #cbd5e1;
    margin-bottom: 12px;
    line-height: 1.55;
}

.footer-directory .footer-contact-line {
    margin-bottom: 8px;
    color: #e2e8f0;
}

.footer-directory .footer-contact-line a {
    color: #e2e8f0;
    text-decoration: none;
}

.footer-directory .footer-contact-line a:hover {
    color: #93c5fd;
}

.footer-directory .footer-cta {
    display: inline-block;
    color: #93c5fd;
    font-weight: 600;
    text-decoration: none;
}

.footer-directory .footer-cta:hover,
.footer-directory .footer-cta:focus {
    color: #dbeafe;
    text-decoration: underline;
}

.footer-directory .footer-response-time {
    margin-top: 8px;
    margin-bottom: 0;
    color: #94a3b8;
    font-size: 13px;
}

.footer-small-contrast {
    background: #0b1220;
    border-top: 1px solid rgba(148, 163, 184, 0.2);
}

.footer-small-contrast .copyright p {
    color: #94a3b8;
    margin: 10px 0;
}

.footer-small-contrast .social-link-footer {
    margin: 6px 0 0;
}

.footer-small-contrast .social-link-footer li {
    float: none;
    display: inline-block;
    margin: 0 0 0 8px;
}

.footer-small-contrast .social-link-footer li a {
    background: #1f2937;
    color: #e2e8f0;
    width: 38px;
    height: 38px;
    line-height: 18px;
    padding: 10px;
}

.footer-small-contrast .social-link-footer li a:hover {
    background: #2563eb;
    color: #ffffff;
}

.whatsapp-float {
    position: fixed;
    right: 86px;
    bottom: 20px;
    z-index: 999;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 31px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.28);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    padding: 0;
    line-height: 1;
}

.whatsapp-float:hover,
.whatsapp-float:focus {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.34);
}

.whatsapp-float svg {
    width: 29px;
    height: 29px;
    display: block;
    margin: 0;
    transform: translate(0.5px, 0.5px);
}

@media (max-width: 767px) {
    .footer-small-contrast .text-right {
        text-align: left;
    }

    .footer-small-contrast .social-link-footer li {
        margin: 6px 8px 0 0;
    }

    .whatsapp-float {
        width: 52px;
        height: 52px;
        font-size: 28px;
        right: 74px;
        bottom: 14px;
    }
}

.portfolio-page-intro {
    margin-bottom: 10px;
}

.portfolio-page-intro .lead {
    margin-bottom: 12px;
}

#portfolio-filters {
    margin-bottom: 20px;
}

.portfolio-item-body {
    margin-top: 1rem;
}

@media (max-width: 991px) {
    .blog-two-row {
        display: block;
        margin-bottom: 0;
    }

    .blog-two-col {
        display: block;
    }
}

/* Marca corporativa: toques mínimos (unifica acentos del tema con #326b2f) */
:root {
    --brand-primary: #326b2f;
    --brand-primary-hover: #295826;
}

.navbar-brand span {
    color: var(--brand-primary) !important;
}

.btn.btn-primary,
.btn.btn-info,
.open .dropdown-toggle.btn-info {
    background-color: var(--brand-primary) !important;
    border-color: var(--brand-primary) !important;
}

.btn.btn-primary:hover,
.btn.btn-primary:active,
.btn.btn-primary:focus,
.btn.btn-info:hover,
.btn.btn-info:active,
.btn.btn-info:focus,
.open .dropdown-toggle.btn-info:hover {
    background-color: var(--brand-primary-hover) !important;
    border-color: var(--brand-primary-hover) !important;
}

.ico-bg {
    background: var(--brand-primary) !important;
}

.head-section .nav li a:hover,
.head-section .nav li a:focus,
.head-section .nav li.active a,
.head-section .nav li.active a:hover,
.head-section .nav li a.dropdown-toggle:hover,
.head-section .nav li a.dropdown-toggle:focus,
.head-section .navbar-default .navbar-nav > .open > a,
.head-section .navbar-default .navbar-nav > .open > a:hover,
.head-section .navbar-default .navbar-nav > .open > a:focus {
    background-color: var(--brand-primary) !important;
}

#back-to-top:hover {
    background-color: var(--brand-primary) !important;
}

/* Breadcrumb: fondo en familia del verde corporativo (evita el azul #34495e del tema) */
.breadcrumbs {
    background: #2a4230 !important;
    border-bottom: 1px solid rgba(50, 107, 47, 0.35);
}

/* Enlaces claros sobre la franja oscura */
.breadcrumbs .breadcrumb li a {
    color: rgba(255, 255, 255, 0.88) !important;
}

.breadcrumbs .breadcrumb li a:hover,
.breadcrumbs .breadcrumb li a:focus {
    color: #c5e8c0 !important;
}

/* Blog: títulos y fecha lateral (detalle + listado dos columnas) */
.blog-item h1,
.blog-item h1 a {
    color: var(--brand-primary) !important;
}

.blog-item h1 a:hover {
    color: var(--brand-primary-hover) !important;
}

.blog-two-card .blog-content h3,
.blog-two-card .blog-content h3 a {
    color: var(--brand-primary) !important;
}

.blog-two-card .blog-content h3 a:hover {
    color: var(--brand-primary-hover) !important;
}

.date-wrap .date {
    background: var(--brand-primary) !important;
    color: #fff !important;
}

.blog-two-info .label-info {
    background-color: var(--brand-primary) !important;
}

.author a,
.st-view a {
    color: var(--brand-primary) !important;
}

.footer-directory .footer-title-icon,
.footer-directory .footer-link-icon {
    color: #7dae79 !important;
}

.footer-directory .footer-tree a:hover,
.footer-directory .footer-tree a:focus,
.footer-directory .footer-contact-line a:hover {
    color: #9ed098 !important;
}

.footer-directory .footer-cta,
.footer-directory .footer-cta:hover,
.footer-directory .footer-cta:focus {
    color: #9ed098 !important;
}

.footer-small-contrast .social-link-footer li a:hover {
    background: var(--brand-primary) !important;
}

/* Paginador blog (vista default = marcado Bootstrap 3 del tema) */
.blog-pagination-wrap .pagination {
    margin-bottom: 0;
}

.blog-pagination-wrap .pagination > li > a,
.blog-pagination-wrap .pagination > li > span {
    color: var(--brand-primary);
    border-color: #ddd;
}

.blog-pagination-wrap .pagination > li > a:hover,
.blog-pagination-wrap .pagination > li > a:focus {
    color: var(--brand-primary-hover);
    background-color: #eaf3e9;
    border-color: #b8d4b6;
}

.blog-pagination-wrap .pagination > .active > a,
.blog-pagination-wrap .pagination > .active > span,
.blog-pagination-wrap .pagination > .active > a:hover,
.blog-pagination-wrap .pagination > .active > span:hover,
.blog-pagination-wrap .pagination > .active > a:focus,
.blog-pagination-wrap .pagination > .active > span:focus {
    background-color: var(--brand-primary);
    border-color: var(--brand-primary);
    color: #fff;
}

.blog-pagination-wrap .pagination > .disabled > span,
.blog-pagination-wrap .pagination > .disabled > a {
    color: #999;
    background-color: #f5f5f5;
}
