.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: var(--brand-primary);
    box-shadow: 0 10px 30px rgba(72, 207, 173, 0.2);
}

.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: var(--brand-primary);
    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, var(--brand-primary) 0%, var(--brand-primary-hover) 100%);
    color: white;
    border-color: var(--brand-primary-hover) !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(72, 207, 173, 0.32);
}

/* Responsive para tecnologías */
@media (max-width: 768px) {
    html,
    body {
        overflow-x: hidden;
    }

    #da-slider {
        padding-bottom: 28px !important;
        overflow: hidden !important;
    }

    .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 ===== */

/* Base de tarjeta de servicio: misma estructura visual para toda la sección */
.service-card {
    background: var(--surface-elevated) !important;
    border: 1px solid var(--border-soft) !important;
    border-top: 4px solid var(--brand-primary) !important;
    color: var(--text-strong) !important;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.service-card h2 {
    color: var(--text-strong) !important;
}

.service-card p {
    color: var(--text-muted) !important;
}

.service-card .icon-wrap-services {
    background: var(--brand-primary);
    border: 2px solid var(--brand-primary);
}

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

/* Variantes por servicio: solo acento, no paleta diferente completa */
.service-web { --service-accent: #7dae79; }
.service-apps { --service-accent: #2f5d7c; }
.service-ecommerce { --service-accent: #7a4f1f; }
.service-support { --service-accent: #5f5a1c; }
.service-api { --service-accent: #2f5d7c; }
.service-design { --service-accent: #6c3f72; }

.service-web,
.service-apps,
.service-ecommerce,
.service-support,
.service-api,
.service-design {
    border-top-color: var(--service-accent) !important;
    background: linear-gradient(180deg, #f7faf7 0%, #ffffff 42%) !important;
}

.service-web .icon-wrap-services,
.service-apps .icon-wrap-services,
.service-ecommerce .icon-wrap-services,
.service-support .icon-wrap-services,
.service-api .icon-wrap-services,
.service-design .icon-wrap-services {
    background: var(--service-accent);
    border-color: var(--service-accent);
}

.service-web .icon-wrap-services i,
.service-apps .icon-wrap-services i,
.service-ecommerce .icon-wrap-services i,
.service-support .icon-wrap-services i,
.service-api .icon-wrap-services i,
.service-design .icon-wrap-services i {
    color: #ffffff;
}

/* 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;
    }
}

/* ===== 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 var(--brand-primary) !important;
    background: var(--brand-primary) !important;
    color: #fff !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    margin-top: auto !important;
    box-shadow: 0 8px 20px rgba(72, 207, 173, 0.32) !important;
}

.service-card .btn:hover {
    background: var(--brand-primary-hover) !important;
    border-color: var(--brand-primary-hover) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 12px 28px rgba(41, 88, 38, 0.42) !important;
    color: #fff !important;
}

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

.cta-section {
    background: linear-gradient(135deg, var(--cta-bg-start) 0%, var(--cta-bg-end) 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: var(--brand-primary) !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(72, 207, 173, 0.42) !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(72, 207, 173, 0.5) !important;
    background: var(--brand-primary-hover) !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;
    }
}

/* ===== HOME: fila de CTAs del slider (evita solape y ancho fijo 120px del tema) ===== */

#da-slider .da-slide .da-slide-eyebrow {
    color: var(--brand-primary) !important;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    font-size: 18px !important;
    font-weight: 700 !important;
    top: 44px !important;
    max-width: 72%;
    line-height: 1.25 !important;
}

#da-slider .da-slide .da-slide-headline {
    font-size: 46px !important;
    line-height: 1.12 !important;
    font-weight: 700 !important;
    max-width: 70%;
    top: 92px !important;
}

#da-slider .da-slide .da-slide-headline-highlight {
    color: var(--brand-primary);
    font-weight: 800;
}

.da-slide-mobile-copy {
    display: none;
}

#da-slider .da-slide .da-slide-cta-row.da-link {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 12px;
    width: auto;
    min-width: 0;
    max-width: 55%;
    padding: 0;
    margin-left: -8%;
    background: transparent !important;
    box-shadow: none !important;
    z-index: 25;
    line-height: normal;
}

#da-slider .da-slide .da-slide-cta-row.da-link:hover {
    background: transparent !important;
}

#da-slider .da-slide .da-slide-cta-btn {
    position: relative;
    left: auto !important;
    opacity: 1 !important;
    width: auto;
    min-width: 8em;
    flex: 0 1 auto;
    margin: 0;
    text-align: center;
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 10px 18px;
    line-height: 1.25;
    border-style: solid;
    border-width: 1px;
}

#da-slider .da-slide .da-slide-cta-btn-primary {
    background-color: var(--brand-primary);
    border-color: var(--brand-primary);
    color: #fff;
}

#da-slider .da-slide .da-slide-cta-btn-secondary {
    background-color: #fff;
    border-color: var(--border-soft);
    color: var(--text-strong);
}

#da-slider .da-slide .da-slide-cta-btn-secondary:hover,
#da-slider .da-slide .da-slide-cta-btn-secondary:focus {
    background-color: #f4f4f5;
    border-color: #d1d5db;
    color: #111827;
}

#da-slider .da-slide .da-slide-cta-btn-primary:hover,
#da-slider .da-slide .da-slide-cta-btn-primary:focus {
    background-color: var(--brand-primary-hover);
    border-color: var(--brand-primary-hover);
    color: #fff;
}

/* Oculta los puntos de paginación del slider */
#da-slider .da-dots {
    display: none !important;
}

.da-dots {
    display: none !important;
}

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

/* Tablets y móviles grandes */
@media (max-width: 768px) {
    #da-slider .da-slide .da-slide-eyebrow {
        font-size: 14px !important;
        letter-spacing: 1.2px;
        top: 38px !important;
        max-width: 88%;
    }

    #da-slider .da-slide .da-slide-headline {
        font-size: 32px !important;
        max-width: 90%;
        top: 80px !important;
    }

    .da-slide p {
        width: 80% !important;
        height: auto !important;
        max-height: 120px !important;
        font-size: 16px !important;
        line-height: 22px !important;
        top: 228px !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-slide-cta-row.da-link {
        margin-left: 0 !important;
        left: 10% !important;
        top: 350px !important;
        max-width: 90% !important;
    }

    /* En móvil/tablet, usar siempre el bloque en flujo normal para evitar solapes */
    .da-slide-desktop-copy,
    #da-slider .da-slide .da-slide-desktop-cta,
    #da-slider .da-slide .da-img {
        display: none !important;
    }

    .da-slide-mobile-copy {
        display: block !important;
        position: relative;
        margin: 16px 5% 14px 5%;
        width: auto;
        max-width: none;
        padding-bottom: 14px;
        z-index: 30;
    }

    .da-slide-mobile-copy .da-slide-eyebrow,
    .da-slide-mobile-copy .da-slide-headline,
    .da-slide-mobile-copy p,
    .da-slide-mobile-copy .da-slide-mobile-cta-row,
    .da-slide-mobile-copy .da-slide-mobile-cta-row .da-slide-cta-btn {
        position: static !important;
        left: auto !important;
        top: auto !important;
        margin-left: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        max-height: none !important;
        opacity: 1 !important;
        animation: none !important;
        transform: none !important;
        transition: none !important;
        overflow: visible !important;
    }

    .da-slide-mobile-copy .da-slide-mobile-cta-row {
        margin-top: 12px;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        overflow: hidden;
    }

    .da-slide-mobile-copy .da-slide-mobile-cta-row .da-slide-cta-btn {
        width: auto !important;
        min-width: 0 !important;
        min-height: 42px !important;
        padding: 8px 14px !important;
        font-size: 14px !important;
    }

    .da-slide-mobile-copy .da-slide-headline {
        font-size: 30px !important;
        line-height: 1.2 !important;
        white-space: normal !important;
        overflow: visible !important;
        word-break: break-word;
        padding-right: 0;
        box-sizing: border-box;
    }

    .da-slide-mobile-copy .da-slide-headline i {
        white-space: inherit !important;
        font-style: inherit;
    }
}

/* Móviles pequeños */
@media (max-width: 480px) {
    /* Modo definitivo móvil: neutralizamos layout absoluto del plugin del slider */
    #da-slider,
    #da-slider .da-slide,
    #da-slider .da-slide-current {
        height: auto !important;
        min-height: 0 !important;
    }

    #da-slider .da-slide {
        position: relative !important;
    }

    #da-slider .da-slide h2,
    #da-slider .da-slide h3,
    #da-slider .da-slide p,
    #da-slider .da-slide .da-link,
    #da-slider .da-slide .da-img {
        position: static !important;
        left: auto !important;
        top: auto !important;
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
        transition: none !important;
    }

    /* Solución definitiva móvil: ocultar bloque absoluto y mostrar bloque en flujo normal */
    .da-slide-desktop-copy,
    #da-slider .da-slide .da-slide-desktop-cta {
        display: none !important;
    }

    .da-slide-mobile-copy {
        display: block !important;
        position: relative;
        margin: 16px 0 0 5%;
        width: 90%;
        max-width: 90%;
        z-index: 30;
    }

    .da-slide-mobile-copy .da-slide-eyebrow,
    .da-slide-mobile-copy .da-slide-headline,
    .da-slide-mobile-copy p {
        position: static !important;
        left: auto !important;
        top: auto !important;
        margin-left: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        opacity: 1 !important;
        animation: none !important;
        transform: none !important;
        transition: none !important;
    }

    .da-slide-mobile-copy .da-slide-mobile-cta-row {
        margin-top: 12px;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .da-slide-mobile-copy .da-slide-mobile-cta-row .da-slide-cta-btn {
        position: static !important;
        left: auto !important;
        top: auto !important;
        opacity: 1 !important;
        animation: none !important;
        transform: none !important;
        min-height: 40px !important;
        padding: 8px 14px !important;
        font-size: 14px !important;
    }

    /* Evita que la imagen del slide invada la zona de texto en móvil */
    #da-slider .da-slide .da-img {
        display: none !important;
    }

    #da-slider .da-slide .da-slide-eyebrow {
        font-size: 12px !important;
        letter-spacing: 1px;
        max-width: 90%;
    }

    #da-slider .da-slide .da-slide-headline {
        font-size: 24px !important;
        max-width: 95%;
        line-height: 1.2 !important;
    }

    .da-slide p {
        font-size: 14px !important;
        line-height: 20px !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-slide-cta-btn {
        font-size: 15px !important;
        padding: 8px 14px !important;
        min-width: 0 !important;
        min-height: 42px !important;
    }
}

/* Móviles muy estrechos: evitamos cualquier solape entre título y párrafo */
@media (max-width: 390px) {
    .da-slide-mobile-copy {
        margin-top: 12px;
    }

    #da-slider .da-slide .da-slide-headline {
        font-size: 22px !important;
        max-width: 94% !important;
        line-height: 1.2 !important;
    }

    .da-slide p {
        line-height: 19px !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(72, 207, 173, 0.24) !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(72, 207, 173, 0.4) !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;
}

.product-form-block form {
    position: relative;
}

/* Evita que el campo Mensaje (col-md-12) "enganche" con un campo de media
   fila de arriba en el grid flotante de Bootstrap y descoloque su label.
   Solo en escritorio; en movil los campos apilan con el flujo normal. */
@media (min-width: 992px) {
    .product-form-block form > .row {
        display: flex;
        flex-wrap: wrap;
    }
}

.product-form-block .form-group label {
    display: block;
    margin-bottom: 6px;
    position: static;
}

.product-form-block .required-mark {
    color: #dc3545;
    margin-left: 3px;
    font-weight: 700;
}

.product-form-block .form-control {
    position: relative;
    z-index: 1;
    color: #1f2937;
    background-color: #fff;
}

.product-form-block .form-control:focus {
    color: #111827;
}

.product-form-block .form-control::placeholder {
    color: #6b7280;
    opacity: 1;
}

.product-form-block .form-group-message label {
    margin-top: 2px;
}

.product-form-block .form-group-message textarea.form-control {
    min-height: 130px;
    resize: vertical;
}

.product-form-block .honeypot-field {
    position: absolute !important;
    left: -10000px !important;
    top: auto !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

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

@media (max-width: 767px) {
    /* Menú hamburguesa: compactar separación vertical entre items */
    .head-section .navbar-collapse ul.navbar-nav {
        float: none;
        margin: 0;
    }

    .head-section .navbar-nav > li {
        padding-top: 0;
        padding-bottom: 0;
    }

    .head-section .navbar-nav > li > a {
        padding: 9px 15px;
        margin-left: 0;
        line-height: 1.25;
    }
}

.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: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0;
    list-style: none;
}

#portfolio-filters li {
    margin: 0;
}

.portfolio-filter-chip {
    display: inline-flex;
    align-items: center;
    border: 1px solid #d1d5db;
    border-radius: 999px;
    background: #fff;
    color: #374151;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.2px;
    line-height: 1;
    cursor: pointer;
    transition: all 0.2s ease;
}

.portfolio-filter-chip:hover,
.portfolio-filter-chip:focus {
    outline: none;
    border-color: var(--brand-primary);
    color: var(--brand-primary);
    box-shadow: 0 2px 10px rgba(72, 207, 173, 0.18);
}

.portfolio-filter-chip.active {
    background: var(--brand-primary);
    border-color: var(--brand-primary);
    color: #fff;
}

/* Ajuste visual de miniaturas de portfolio (mejor para PNG con transparencias). */
#portfoliolist .portfolio-wrapper {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.16);
}

#portfoliolist .portfolio-hover img {
    display: block;
}

#portfoliolist .portfolio .image-caption .label.icon {
    background-color: var(--brand-primary);
    border-color: var(--brand-primary);
    color: #fff;
}

#portfoliolist .portfolio .image-caption .label.icon:hover,
#portfoliolist .portfolio .image-caption .label.icon:focus {
    background-color: var(--brand-primary-hover);
    border-color: var(--brand-primary-hover);
    color: #fff;
}

/* Si no hay filtros, evitamos que los items queden ocultos por el CSS base (display:none). */
#portfoliolist.portfolio-no-filters .portfolio {
    display: block;
}

.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: acentos unificados al combo footer (#7dae79 + gris) */
:root {
    --brand-primary: #7dae79;
    --brand-primary-hover: #6b9e67;
    --brand-secondary: #34495e;
    --surface-elevated: #ffffff;
    --border-soft: #e5e7eb;
    --text-strong: #1f2937;
    --text-muted: #4b5563;
    --cta-bg-start: #34495e;
    --cta-bg-end: #2c3e50;
    --focus-ring: rgba(125, 174, 121, 0.32);
    --btn-radius: 10px;
}

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

.btn.btn-primary,
.btn.btn-info,
.btn.btn-secondary,
.open .dropdown-toggle.btn-info {
    background-color: var(--brand-primary) !important;
    border-color: var(--brand-primary) !important;
    color: #fff !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,
.btn.btn-secondary:hover,
.btn.btn-secondary:active,
.btn.btn-secondary:focus,
.open .dropdown-toggle.btn-info:hover {
    background-color: var(--brand-primary-hover) !important;
    border-color: var(--brand-primary-hover) !important;
    color: #fff !important;
}

.btn {
    border-radius: var(--btn-radius);
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.btn:focus {
    outline: none;
}

.btn:focus-visible {
    box-shadow: 0 0 0 3px var(--focus-ring) !important;
}

/* Escalas consistentes para botones */
.btn.btn-sm {
    padding: 6px 12px !important;
    font-size: 12px !important;
    line-height: 1.2;
}

.btn.btn-md,
.btn.btn-default,
.btn.btn-primary,
.btn.btn-info,
.btn.btn-secondary {
    padding: 10px 18px;
    font-size: 14px;
    line-height: 1.25;
}

.btn.btn-lg {
    padding: 13px 24px !important;
    font-size: 16px !important;
    line-height: 1.2;
}

/* Variante secundaria real para acciones menos prioritarias */
.btn-outline-brand {
    background: #fff !important;
    border: 1px solid var(--brand-primary) !important;
    color: var(--brand-primary) !important;
}

.btn-outline-brand:hover,
.btn-outline-brand:focus,
.btn-outline-brand:active {
    background: #f1fbf8 !important;
    border-color: var(--brand-primary-hover) !important;
    color: var(--brand-primary-hover) !important;
}

/* ===== JERARQUIA DE BOTONES POR CONTEXTO ===== */

/* Hero: CTAs en outline para no competir con la imagen/fondo */
#da-slider .da-slide .da-slide-cta-btn {
    border-width: 2px;
    border-radius: 999px;
    min-height: 44px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    box-shadow: none;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

#da-slider .da-slide .da-slide-cta-btn-primary {
    background-color: rgba(125, 174, 121, 0.9) !important;
    border-color: rgba(255, 255, 255, 0.92) !important;
    color: #ffffff !important;
}

#da-slider .da-slide .da-slide-cta-btn-primary:hover,
#da-slider .da-slide .da-slide-cta-btn-primary:focus {
    background-color: rgba(107, 158, 103, 0.98) !important;
    border-color: rgba(255, 255, 255, 1) !important;
    color: #ffffff !important;
    transform: translateY(-1px) !important;
}

#da-slider .da-slide .da-slide-cta-btn-secondary {
    background-color: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(255, 255, 255, 0.88) !important;
    color: #ffffff !important;
}

#da-slider .da-slide .da-slide-cta-btn-secondary:hover,
#da-slider .da-slide .da-slide-cta-btn-secondary:focus {
    background-color: rgba(255, 255, 255, 0.2) !important;
    border-color: rgba(255, 255, 255, 1) !important;
    color: #ffffff !important;
    transform: translateY(-1px) !important;
}

/* CTA de seccion: boton principal relleno (ya existente), con enfoque consistente */
.cta-section .btn:focus-visible,
.btn-cta:focus-visible {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.24), 0 0 0 6px var(--focus-ring) !important;
}

/* Listados: botones medianos, limpios y consistentes */
.blog-two-card > .btn,
.portfolio-item-detail .btn,
.pricing-table-two .price-actions .btn,
.product-form-block .btn {
    min-height: 40px;
    padding: 10px 18px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    border-radius: var(--btn-radius) !important;
}

/* Botones de vuelta/listado en outline para distinguir de acciones principales */
.portfolio-item-detail .btn.btn-default,
.blog-pagination-wrap .pagination > li > a,
.blog-pagination-wrap .pagination > li > span {
    border-radius: var(--btn-radius);
}

.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: #34495e !important;
    border-bottom: 1px solid rgba(125, 174, 121, 0.38);
}

/* 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: #c9e1c6 !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: #b5d1b2 !important;
}

.footer-directory .footer-cta,
.footer-directory .footer-cta:hover,
.footer-directory .footer-cta:focus {
    color: #b5d1b2 !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;
}

/* ===== PRODUCTO: tabla de características (en lugar de precio clásico) ===== */
.product-feature-card {
    text-align: center;
}

.product-feature-card .title {
    font-size: 26px;
    line-height: 1.2;
    margin: 0 0 8px;
    text-align: center;
}

.product-feature-card .inner {
    padding-top: 6px;
}

.product-feature-price-wrap {
    margin-bottom: 16px;
    text-align: center;
}

.product-feature-card .desc {
    text-align: center;
}

.product-feature-price-label {
    margin: 0;
    color: var(--text-muted);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    text-align: center !important;
    width: 100%;
    display: block;
}

.product-feature-price {
    margin: 2px 0 0;
    color: var(--brand-primary);
    font-size: 22px;
    font-weight: 700;
    text-align: center !important;
    width: 100%;
    display: block;
}

.product-plan-highlights {
    list-style: none;
    margin: 0 0 14px;
    padding: 0;
}

.product-plan-highlights li {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
    margin-bottom: 8px;
    color: var(--text-strong);
    text-align: center;
}

.product-plan-highlights i {
    color: var(--brand-primary);
    margin-top: 2px;
}

.product-feature-section-title {
    margin: 10px 0 8px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    color: var(--text-strong);
    text-align: center;
}

.product-feature-items {
    text-align: center;
}

.pricing-table-two .items.product-feature-items > li.optional {
    opacity: 0.95;
    background: #fff8e1;
    border: 1px solid #faebcc;
}

.product-feature-items li {
    display: flex;
    justify-content: center;
}

.product-feature-items .icon-holder {
    padding-left: 0;
    margin-right: 8px;
}

.product-feature-items .desc {
    width: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.product-feature-items .desc .product-feature-optional-label {
    display: inline-block;
    margin-left: 8px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    color: #8a6d3b;
    background: #fcf8e3;
    border: 1px solid #faebcc;
    border-radius: 999px;
    padding: 2px 7px;
}

.product-feature-items > li.optional .icon-holder i {
    color: #8a6d3b !important;
}

.product-feature-card .price-actions {
    text-align: center;
}

.product-feature-card .price-actions .btn {
    display: inline-block;
    width: auto !important;
    min-width: 180px;
    margin: 14px auto 0 !important;
}

/* Evita que el wrapper interno se encoja dentro de .row flex */
.product-plans-container {
    width: 100%;
    flex: 0 0 100%;
    max-width: 100%;
}

.product-offer-layout {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}

.product-form-side {
    margin-top: 20px;
}

.product-offer-layout > .product-plans-container,
.product-offer-layout > .product-form-side {
    width: 100%;
    flex: 0 0 100%;
    max-width: 100%;
}

.product-plans-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 20px;
    width: 100%;
    margin: 0 auto;
}

.product-plan-col {
    width: 100%;
    max-width: 460px;
    display: flex;
    margin-left: auto;
    margin-right: auto;
}

.product-plans-grid .product-plan-col:only-child {
    width: min(100%, 680px);
    max-width: 680px;
    margin-left: auto !important;
    margin-right: auto !important;
}

.product-plan-col .pricing-table-two {
    width: 100%;
    margin: 0;
}

@media (min-width: 768px) {
    .product-plan-col {
        width: calc(50% - 10px);
        max-width: none;
    }

    .product-form-side {
        margin-top: 0;
    }

    .product-offer-layout > .product-plans-container {
        flex: 0 0 66.66666667%;
        max-width: 66.66666667%;
    }

    .product-offer-layout > .product-form-side {
        flex: 0 0 33.33333333%;
        max-width: 33.33333333%;
    }
}

@media (min-width: 1200px) {
    .product-plan-col {
        width: calc(33.333% - 14px);
    }
}

/* Regla final: si solo hay 1 plan, nunca aplicar 50%/33% */
.product-plans-grid .product-plan-col:only-child {
    width: min(100%, 680px) !important;
    max-width: 680px !important;
}

/* ==========================================================================
   Home modular sections (producto destacado, opiniones, ventajas)
   ========================================================================== */

.home-featured-products,
.home-value-props {
    padding: 60px 0;
}

.home-featured-products .row,
.home-testimonials .row,
.home-value-props .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

/* ---- Producto destacado ---- */
.home-featured-card {
    position: relative;
    height: 100%;
    background: #fff;
    border: 1px solid #eceff3;
    border-radius: 16px;
    padding: 48px 44px 40px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(18, 38, 63, 0.06);
    text-align: center;
    transition: transform .25s ease, box-shadow .25s ease;
}

.home-featured-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(18, 38, 63, 0.12);
}

.home-featured-badge {
    display: inline-block;
    background: var(--brand-primary);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 999px;
    margin-bottom: 18px;
}

.home-featured-media {
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.home-featured-media img {
    max-height: 130px;
    max-width: 65%;
    object-fit: contain;
}

.home-featured-title {
    font-size: 28px;
    margin: 0 0 6px;
    color: #1c2b39;
}

.home-featured-subtitle {
    color: var(--brand-primary);
    font-weight: 600;
    font-size: 18px;
    margin: 0 0 16px;
    text-align: center;
}

.home-featured-text {
    color: #5b6b7b;
    font-size: 16px;
    margin-bottom: 28px;
}

.home-featured-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.home-featured-actions .btn {
    margin: 0;
    padding: 12px 26px;
    font-size: 15px;
}

/* ---- Opiniones ---- */
.home-testimonials {
    padding: 60px 0;
}

.home-testimonial-card {
    height: 100%;
    background: #fff;
    border-radius: 14px;
    padding: 28px 26px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(18, 38, 63, 0.06);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.home-testimonial-quote i {
    color: var(--brand-primary);
    font-size: 22px;
    margin-bottom: 10px;
    display: inline-block;
}

.home-testimonial-quote p {
    color: #4a5867;
    font-style: italic;
    margin-bottom: 20px;
}

.home-testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.home-testimonial-photo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    flex: 0 0 48px;
}

.home-testimonial-photo-placeholder {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(125, 174, 121, 0.14);
    color: var(--brand-primary);
}

.home-testimonial-meta strong {
    display: block;
    color: #1c2b39;
}

.home-testimonial-meta span {
    color: #8593a1;
    font-size: 14px;
}

/* ---- Ventajas de una web ---- */
.home-value-prop {
    height: 100%;
    text-align: center;
    padding: 26px 22px;
    margin-bottom: 30px;
}

.home-value-prop-icon {
    width: 74px;
    height: 74px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: rgba(125, 174, 121, 0.14);
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-value-prop-icon i {
    font-size: 30px;
    color: var(--brand-primary);
}

.home-value-prop-title {
    color: #1c2b39;
    margin-bottom: 10px;
    text-align: center;
}

.home-value-prop-text {
    color: #5b6b7b;
    text-align: center;
}

@media (max-width: 767px) {
    .home-featured-products,
    .home-testimonials,
    .home-value-props {
        padding: 40px 0;
    }
}

/* ---- Opiniones: carrusel Owl ---- */
.home-testimonials-carousel .item {
    padding: 10px 12px;
}

.home-testimonials-carousel .home-testimonial-card {
    margin-bottom: 0;
    height: auto;
}

.home-testimonials .owl-controls {
    margin-top: 26px;
    text-align: center;
}

.home-testimonials .owl-controls .owl-page span {
    background: #b9c4cf;
    opacity: 1;
    transition: background .2s ease;
}

.home-testimonials .owl-controls .owl-page.active span,
.home-testimonials .owl-controls .owl-page:hover span {
    background: var(--brand-primary);
}

.home-testimonials .owl-buttons div {
    position: absolute;
    top: 40%;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    background: #fff;
    color: var(--brand-primary);
    box-shadow: 0 6px 16px rgba(18, 38, 63, 0.12);
    opacity: 1;
    margin: 0;
}

.home-testimonials .owl-buttons .owl-prev {
    left: -6px;
}

.home-testimonials .owl-buttons .owl-next {
    right: -6px;
}

.home-testimonials .owl-buttons div:hover {
    background: var(--brand-primary);
    color: #fff;
}

/* ---- Producto destacado: carrusel Owl ---- */
.home-featured-carousel .item {
    padding: 12px;
}

.home-featured-carousel .home-featured-card {
    margin-bottom: 0;
    height: auto;
}

.home-featured-products .owl-controls {
    margin-top: 26px;
    text-align: center;
}

.home-featured-products .owl-controls .owl-page span {
    background: #b9c4cf;
    opacity: 1;
    transition: background .2s ease;
}

.home-featured-products .owl-controls .owl-page.active span,
.home-featured-products .owl-controls .owl-page:hover span {
    background: var(--brand-primary);
}

.home-featured-products .owl-buttons div {
    position: absolute;
    top: 40%;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    background: #fff;
    color: var(--brand-primary);
    box-shadow: 0 6px 16px rgba(18, 38, 63, 0.12);
    opacity: 1;
    margin: 0;
}

.home-featured-products .owl-buttons .owl-prev {
    left: -6px;
}

.home-featured-products .owl-buttons .owl-next {
    right: -6px;
}

.home-featured-products .owl-buttons div:hover {
    background: var(--brand-primary);
    color: #fff;
}
