<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* TESTIMONIOS SECTION */
#sec_testimonios {
    margin-bottom: 5rem;
    padding: 0 1rem;
}

.testimonios-header {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonios-header h2 {
    font-size: 1.7rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.75rem;
    position: relative;
}

.testimonios-header h2::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ce1212, #ae0000);
    border-radius: 2px;
}

.testimonios-header p {
    font-size: 0.8rem;
    line-height: 1.2;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

#sec_testimonios .splide {
    padding: 2rem 0;
    max-width: 1200px;
    margin: 0 auto;
}

#sec_testimonios .caja-testimonio {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 2rem;
    margin: 0 0.5rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 280px;
    display: flex;
    flex-direction: column;
}

#sec_testimonios .caja-testimonio::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ce1212, #ae0000);
}

#sec_testimonios .caja-testimonio:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    border-color: #cbd5e1;
}

#sec_testimonios .testimonio-arriba {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f1f5f9;
}

#sec_testimonios .google-logo {
    width: 32px;
    height: 32px;
    margin-right: 1rem;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

#sec_testimonios .st-datos {
    flex-grow: 1;
}

#sec_testimonios .st-nombres {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.25rem;
}

#sec_testimonios .st-estrellas {
    color: #fbbf24;
    font-size: 1.2rem;
    display: block;
    letter-spacing: 2px;
}

#sec_testimonios .testimonio {
    font-size: 0.8rem;
    line-height: 1.2;
    color: #475569;
    flex-grow: 1;
    position: relative;
}

#sec_testimonios .testimonio::before {
    content: '"';
    font-size: 4rem;
    color: rgba(59, 130, 246, 0.08);
    position: absolute;
    top: -1rem;
    left: -0.5rem;
    font-family: serif;
}
#sec_testimonios .splide__arrow{
	width: 3.25em !important;
}
#sec_testimonios .splide__pagination__page{
	min-height: 8px !important;
}

/* MAIN CONTAINER */
#campo_seo {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* SECTION HEADERS */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 1.7rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.75rem;
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #ce1212, #ae0000);
    border-radius: 2px;
}

.section-header p {
    font-size: 0.8rem;
    line-height: 1.2;
    color: #64748b;
    max-width: 500px;
    margin: 0 auto;
}

/* CAJA ADICIONAL SECTION */
#sec_caja_adicional {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 5rem;
}

#sec_caja_adicional .item-caja_adicional {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

#sec_caja_adicional .item-caja_adicional:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-color: #cbd5e1;
}

#sec_caja_adicional .titulo-ca {
    background: #f8fafc;
    color: #1e293b;
    padding: 1.5rem;
    width: 100%;
    text-align: left;
    border: none;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    font-family: inherit;
    border-bottom: 1px solid #e2e8f0;
}

#sec_caja_adicional .titulo-ca h2 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    padding-right: 2rem;
    color: #1e293b;
}

#sec_caja_adicional .titulo-ca::after {
    content: '\f129';
    font-family: "woodmart-font";
    font-weight: 400;
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
    color: #3b82f6;
}

#sec_caja_adicional .titulo-ca.active::after {
    transform: translateY(-50%) rotate(180deg);
}

#sec_caja_adicional .titulo-ca:hover {
    background: #f1f5f9;
}

#sec_caja_adicional .contenido-ca {
    display: none;
    padding: 1.5rem;
    background: white;
    color: #475569;
    font-size: 0.8rem;
    line-height: 1.2;
    animation: slideDown 0.3s ease-out;
}

/* FAQ SECTION */
#sec_preguntas_frecuentes {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

#sec_preguntas_frecuentes h2 {
    font-size: 1.7rem;
    font-weight: 700;
    color: #1e293b;
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
}

#sec_preguntas_frecuentes h2::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #ce1212, #ce1212);
    border-radius: 2px;
}

.faq-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.item-faq {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.item-faq:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    border-color: #cbd5e1;
}

.pregunta-faq {
    background: transparent;
    color: #1e293b;
    padding: 1.25rem 1.5rem;
    width: 100%;
    text-align: left;
    border: none;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    font-family: inherit;
}

.pregunta-faq h3 {
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
    padding-right: 2rem;
    line-height: 1.4;
}

.pregunta-faq::after {
    content: '\f129';
    font-family: "woodmart-font";
    font-weight: 400;
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
    color: #3b82f6;
}

.pregunta-faq.active::after {
    transform: translateY(-50%) rotate(180deg);
}

.pregunta-faq:hover {
    background: #f1f5f9;
}

.respuesta-faq {
    display: none;
    padding: 1.5rem;
    background: white;
    color: #475569;
    font-size: 0.8rem;
    line-height: 1.2;
    border-top: 1px solid #e2e8f0;
    animation: slideDown 0.3s ease-out;
}

/* ANIMATIONS */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RESPONSIVE */
@media (max-width: 768px) {

    .testimonios-header h2,
    .section-header h2 {
        font-size: 1.5rem;
    }

    #sec_testimonios .caja-testimonio {
        height: auto;
        min-height: 250px;
        padding: 1.5rem;
    }

    #sec_caja_adicional {
        grid-template-columns: 1fr;
    }

    /* FAQ en mÃģvil: una columna */
    .faq-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    #sec_preguntas_frecuentes {
        padding: 2rem 1.5rem;
    }

    .splide__slide {
        padding: 0 0.25rem;
    }
}

@media (max-width: 480px) {

    .testimonios-header h2,
    .section-header h2 {
        font-size: 1.3rem;
    }

    #sec_preguntas_frecuentes h2 {
        font-size: 1.3rem;
    }

    #sec_testimonios .caja-testimonio {
        padding: 1.25rem;
        margin: 0 0.25rem;
    }

    #sec_preguntas_frecuentes {
        padding: 1.5rem 1rem;
    }

    .pregunta-faq {
        padding: 1rem 1.25rem;
    }

    .respuesta-faq {
        padding: 1.25rem;
    }
}

/* Splide customization */
.splide__pagination {
    padding-top: 1rem;
}

.splide__pagination__page {
    background: #cbd5e1;
    width: 8px;
    height: 8px;
    margin: 0 4px;
}

.splide__pagination__page.is-active {
    background: #3b82f6;
}

.splide__arrow {
    background: white;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.splide__arrow:hover {
    background: #f8fafc;
}

.splide__arrow svg {
    fill: #475569;
}

/* KEYWORDS TAGS SECTION */
.keywords-section {
    margin-top: 4rem;
    padding: 2rem 0;
    background: white;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.keywords-section&gt;div{
	margin-bottom: 0 !important;
}

.keywords-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    padding: 0 1rem;
}

.keyword-tag {
    display: inline-block;
    background: #f8fafc;
    color: #475569;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.75rem;
    line-height: 1.2;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.keyword-tag:hover {
    background: #3b82f6;
    color: white;
    border-color: #3b82f6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

@media (max-width: 768px) {
    .keywords-section {
        margin-top: 3rem;
        padding: 1.5rem 0;
    }

    .keyword-tag {
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
    }
}</pre></body></html>