:root {
    --blue: #1A5FA8;
    --blue-dark: #0D3B6E;
    --blue-light: #EBF3FF;
    --teal: #0D8A9A;
    --teal-light: #E6F7F9;
    --purple: #7B4FA6;
    --purple-light: #F3EEF9;
    --purple-m: #c2b1d3;
    --cotiza: #FF6B00;
    --cotiza-hover: #E55A00;
    --text: #111827;
    --text-soft: #6B7280;
    --border: #E5E7EB;
    --bg: #FFFFFF;
    --bg-soft: #F9FAFB;
    --radius: 14px;
    --shadow: 0 4px 24px rgba(0, 0, 0, .07);
    --shadow-lg: 0 12px 48px rgba(0, 0, 0, .12);
}

* {
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-variation-settings:
        "wdth" 100;
}

*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth
}

/* todas las propiedades de cabecera(navegador) en orden */

.cabecera {
    background-color: var(--blue-dark);
    position: sticky;
    top: 0;
    z-index: auto
}

.cabecera-logo {
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    height: 60px;
    object-fit: contain;
}

.cabecera-logo img {
     height: 60px;
}

/* navegador */
.n {
    position: relative;
}

.nav-enlaces {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    flex-flow: wrap;
    background-color: var(--blue-dark);
    align-items: center;
    gap: 2px;
}

.nav-enlaces a {
    font-size: large;
    font-style: normal;
    font-weight: 400;
    color: var(--bg-soft);
    text-decoration: none;
    list-style-type: none;
    padding: 7px 11px;
    border-radius: 8px;
    transition: all .18s;
}

.nav-enlaces a:hover {
    color: var(--blue-dark);
}

.cotiza {
    background: var(--cotiza);
    color: var(--bg-soft);
    font-weight: 700;
    padding: 8px 16px;
    font-size: 12.5px;
}

/* propiedades para seccion cotiza */
.cotiza-enlaces {
    display: flex;
    justify-content: space-around;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    width: 100%;
    margin-bottom: 20px;
    margin-top: 20px;
}

.cotiza p,
.cotiza h5 {
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--bg-soft);
    margin-bottom: 6px;

}

.cotiza h3 {
    font-size: clamp(18px, 3vw, 26px);
    color: var(--bg-soft);
    font-weight: 800;
}

.cotiza:hover {
    background: var(--cotiza-hover);
    transform: translateY(-1px)
}

.botones {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;

}

.botones a {
    background-color: rgba(255, 255, 255, 0.7);
    color: var(--cotiza);
    font-size: 15px;
    font-weight: 800;
    padding: 13px 26px;
    border-radius: 12px;
    text-decoration: none;
}

.sumate {
    background: var(--blue);
    color: var(--bg-soft);
    border-radius: 10px;
    font-weight: 700;
    padding: 8px 16px;
    font-size: 12.5px;
}

.sumate:hover {
    background: var(--blue);
}

.hero {
    background-image: url(IMG/seccion-hero.png);
    background-size: cover;
}

.hero-inner {
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    padding: 20px;
    margin: 0 auto;
}

.hero-tag,
.hero-tag1 {
    gap: 8px;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px;
    border-radius: 20px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    width: 30%;
    align-items: flex-start;
    text-align: center;
}

.hero-tag1 {
    color: var(--bg-soft);
}

.hero-tag a {
    text-decoration: none;
    color: var(--bg-soft);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.hero-h1 {
    display: flex;
    justify-content: right;
    width: 90%;
}

.hero-h1 h1 {
    font-size: clamp(32px, 4.5vw, 56px);
    color: #fff;
    margin-bottom: 20px;
    font-weight: 700;
    text-align: center;
}

.hero h1 em {
    font-style: normal;
    color: #7DD8E8;
}

.hero-sub {
    background-color: rgba(0, 0, 0, 0.5);
    color: var(--bg-soft);
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 20px;
    line-height: 1.75;
    margin-bottom: 32px;
    padding: 10px;
    border-radius: 20px;
    margin-bottom: 20px;
    align-items: center;
    text-align: center;
}

.ws {
    display: flex;
    position: fixed;
    justify-content: right;
    width: 92%;

}

.ws img {
    align-items: center;
}

/* QUIENES */
.quienes {
    display: flex;
    background: var(--blue-light);
    padding: 20px 5%;
    flex-direction: column;


}

.quienes-foto {
    flex-flow: wrap;
    flex: 1;
    box-sizing: border-box;
    /* Ocupa el 47.6% del espacio proporcional */
}

/* fijarse tamaño de foto */
.quienes-foto img {
    width: auto;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    align-items: center;
    /* margin: 0 25%; */
}

/* Para pantallas chicas (móviles) */
@media (max-width: 768px) {
    .quienes-foto img {
        height: 300px;
        margin: 0 5%;
        /* Reducimos la altura en celulares para que mantenga armonía */
    }
}

.quienes-foto p {
    color: var(--text);
    text-align: left;
    padding: 15px;
    margin: 0 5%;
}

.quienes-foto h2,
.quienes-foto h4,
.quienes-foto h5 {

    flex: 1.1;
    /* Ocupa el 52.4% del espacio proporcional */
}

.quienes-foto h4 {
    text-align: left;
    color: var(--blue);
    font-size: larger;
    padding-bottom: 20px;
    font-weight: 700;
}

.quienes-foto h2 {
    text-align: left;
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 700;
    color: var(--text);
    margin-bottom: 14px
}

.quienes-foto h5 {
    text-align: start;
    font-size: medium;
    padding-bottom: 20px;
    color: var(--text-soft);
    line-height: 1.75;

}

.quienes-label-block {
    display: flex;
    flex-direction: column;
}

.quienes-label-block h4 {
    text-align: left;
    color: var(--blue);
    font-size: larger;
    padding-bottom: 20px;
    font-weight: 700;
}

.quienes-label-block p {
    text-align: start;
    font-size: medium;
    color: var(--text-soft);
    line-height: 1.75;
}

.quienes-pillar {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 15px;
    background: var(--bg-soft);
    border-radius: 12px;
    border-left: 3px solid var(--blue);
    margin-bottom: 12px
}

.quienes-pillar h5 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px
}

.quienes-pillar p {
    font-size: 13px;
    color: var(--text-soft);
    line-height: 1.55
}

/* EQUIPO */
.equipo {
    padding: 72px 5%;
    background: var(--purple-light);
}

.equipo-inner {
    margin: 0 auto;
    padding: 15PX;
    max-width: 1200px;
}

.equipo-inner h4 {
    text-align: left;
    color: var(--blue);
    font-size: larger;
    padding-bottom: 20px;
    font-weight: 700;
}

.equipo-inner h2 {
    text-align: left;
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 700;
    color: var(--text);
    margin-bottom: 14px
}

.equipo-inner p {
    font-size: medium;
    color: var(--text);
    line-height: 1.75;

}

.equipo-grid {
    margin-top: 25px;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 16px;
    display: grid;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;

}

.eq-card {
    background: var(--bg-soft);
    border-radius: 16px;
    padding: 14px;
    text-align: center;
    border: 1px solid var(--border);
    transition: all .2s
}

.eq-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow)
}

.eq-av-wrap {
    margin-bottom: 12px
}

.eq-nombre {
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px
}

.eq-rol {
    font-size: 12px;
    color: var(--text-soft);
    line-height: 1.4
}

/* SUMATE */
.sumate-1 {
    padding: 80px 5%;
    background: linear-gradient(98deg, #0D3B6E, #1A5FA8, #0D8A9A);
}

.sumate-inner {
    width: 100%;
    height: 100%;
    margin: 0 auto;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 10px;
    place-items: start;
    display: grid;

}

.sumate-inner a {
    font-size: large;
    font-style: normal;
    font-weight: 400;
    color: var(--bg-soft);
    text-decoration: none;
    list-style-type: none;
    padding: 7px 11px;
    border-radius: 8px;
    transition: all .18s;

}

.sumate-inner a:hover {
    background: var(--blue-dark);
}

.sumate-inner p {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 700;
    margin-bottom: 8px
}

.sumate-inner h2 {
    font-family: sans-serif;
    font-size: clamp(22px, 3vw, 32px);
    color: var(--bg-soft);
    line-height: 1.2;
    margin-bottom: 14px;
    font-weight: 800;
}

.sumate-benefits {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sumate-benefits li {
    align-items: center;
    gap: 10px;
    color: var(--bg-soft);
    font-size: medium;
    font-style: normal;
    font-weight: 400;

}

.sumate-form {
    background: var(--teal-light);
    padding: 20px;
    display: grid;
    width: 90%;

}

.sumate-form p {
    color: var(--blue-dark);
    font-size: small;
    margin-bottom: 18px;
    text-align: center;

}

form {
    width: 95%;
    margin: auto;
    padding: 10px;
    background-color: var(--teal-light);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.9);
    flex-direction: column;
    justify-content: center;
    display: flex;
   
}

label {
    display: block;
    margin-bottom: 5px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid;
    box-sizing: border-box;
    margin-bottom: 15px;
    height: 30px;
}

textarea {
    height: 100px;
    resize: none;
}

button[type="submit"] {
    background-color: var(--teal-light);
    color: var(--blue-dark);
    padding: 10px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
    width: auto;

}

button[type="submit"]:hover {
    background-color: var(--border);
    border-radius: 14px;

}

/* COMPANIAS */
.companias {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 10px;
    background-color: rgba(255, 255, 255, 0.7);
}

.companias p {
    text-align: center;
    color: var(--text);
    padding: 10px;
    font-size: 12.5px;
    font-weight: 400;

}

.comp {
    display: flex;
    justify-content: center;
    gap: 5px;

}

.comp img {
    width: 80%;
    padding-bottom: 15px;
    padding: 5px;
}

footer {
    display: flex;
    justify-content: space-around;
    flex-direction: row;
    gap: 2px;
    background-color: var(--blue-dark);

}

footer img {
    height: 80px;
    margin: 0 10px;
}

footer iframe {
    height: 70%;
    width: 70%;
    margin: 20px;
}

footer p {
    font-size: 15px;
    font-weight: 400;
    color: var(--text-soft);
    line-height: 1.65;
    margin: 15px;
    letter-spacing: 1.5px;

}

footer a {
    list-style: none;
    text-decoration-line: none;
    color: var(--bg-soft);
    gap: 9px;
    padding: 5px;
    font-size: 13px;

}

footer a img {
    height: 30px;
    width: 30px;
    padding: 10px;
}

.copy {
    display: flex;
    justify-content: center;
    background: var(--blue-dark);
    padding: 5px;
    flex-wrap: wrap;
    gap: 2px;
}

.copy p {
    font-size: 11px;
    color: var(--text-soft);
    font-weight: 600;
}

/* ritvo-seguros */
/* seccion 1 */

.hero-s-inner {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.5);
    color: var(--bg-soft);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
    border: 1px solid rgba(255, 255, 255, .2);

}

.hero-s {
    width: 95%;
    padding: 20px;
}

.hero-s h1 {
    font-size: clamp(28px, 4vw, 48px);
    color: var(--bg-soft);
    margin-bottom: 14px;
    font-weight: 800;
}

.hero-s h1 em {
    font-style: normal;
    color: #7EEAF5;
}

.hero-s-sub {
    color: rgba(255, 255, 255, .9);
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 26px;
    padding: 3%;
    background-color: rgba(0, 0, 0, 0.5);
    text-align: center;
}

/* seccion cotiza-online */
.cotiza-online {
    background: linear-gradient(98deg, #E6F7F9, #0D8A9A, #1A5FA8, #0D8A9A);
    padding: 80px 5%;
}

.cotiza-online-viaje {
    background: linear-gradient(98deg, #c2b1d3, #827094, #8e30eb);
    padding: 80px 5%;
}

.hero-s-inner1 {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    /* grid-template-columns: 1.1fr 1fr; */
    gap: 52px;
    align-items: center;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

}

.hero-s-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    background-color: var(--cotiza);
    border-radius: 15px;
    justify-content: center;
    margin: 0 auto;
}

.hero-s-btns p {
    padding: 10px;

}

.cotiz-box {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 18px;
    padding: 22px;

}

.cotiza-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--cotiza);
    color: var(--bg-soft);
    font-family: 'Sora', sans-serif;
    font-size: 13px;
    font-weight: 700;
    padding: 9px 20px;
    border-radius: 30px;
    text-decoration: none;
    transition: all .2s;
    box-shadow: 0 4px 16px rgba(255, 107, 0, .35);
    text-transform: uppercase;
    letter-spacing: .5px;
}

.cotiza-badge:hover {
    background: var(--cotiza-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 107, 0, .4);
}

.cotiza-badge-lg {
    font-size: 16px;
    padding: 15px 30px;
    border-radius: 36px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all .18s;
    cursor: pointer;
    border: none;
    font-family: 'Inter', sans-serif;
}

.btn-blue {
    background: var(--blue);
    color: var(--bg-soft);
}

.btn-blue:hover {
    background: var(--blue-dark);
    transform: translateY(-1px)
}

.btn-outline {
    border: 1.5px solid var(--border);
    color: var(--text);
    background: var(--bg-soft);
}

.btn-outline:hover {
    border-color: var(--blue);
    color: var(--blue);
}

.btn-wsp {
    background: #25D366;
    color: #fff;
}

.btn-wsp:hover {
    background: #1EBE58;
    transform: translateY(-1px);
}


.cotiz-box-title {
    color: var(--bg-soft);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}

.cotiz-box-sub {
    color: rgba(255, 255, 255, .6);
    font-size: 14px;
    margin-bottom: 14px;
}

.ci {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--bg);
    border-radius: 12px;
    padding: 12px 14px;
    text-decoration: none;
    margin-bottom: 9px;
    transition: all .2s;
}

.ci:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, .15);
}

.ci-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.ci-text strong {
    display: block;
    font-size: 13px;
    color: #111827;
    font-weight: 700;
}

.ci-text span {
    font-size: 11px;
    color: #6B7280;
}

.ci-badge {
    margin-left: auto;
    background: var(--cotiza);
    color: var(--bg-soft);
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 20px;
    white-space: nowrap;
}

.ci-star {
    border: 2px solid var(--cotiza);
    background: var(--bg);
}

/* sección productos propiedades de Est-Contable */
.prod-sec {
    padding: 64px 5%;
    background: var(--teal-light);
}

.prod-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.prod-inner p,
.serv-sec p,
.pq-inner p,
.eq-c-inner p {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 8px;
}

.prod-inner h2,
.serv-sec h2,
.pq-inner h2,
.eq-c-inner h2,
.cf-inner h2 {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 800;
    color: var(--text);
    margin-bottom: 14px;
}

.prod-inner h4,
.serv-sec h4,
.pq-inner h4,
.eq-c-inner h4,
.cf-inner h4 {
    font-size: 16px;
    color: var(--text-soft);
    max-width: 100%;
    margin-bottom: 44px;
    line-height: 1.7;
    overflow-wrap: break-word;
    margin: 0 auto;
}

.prod-cat {
    margin-bottom: 48px;

}

.prod-cat-hdr {
    display: flex;
    gap: 12px;
    margin-bottom: 18px;
    border-bottom: 2px solid var(--cotiza);
    justify-content: right;
}

.prod-cat-hdr h3 {
    font-size: 20px;
    color: var(--text);
    font-weight: 700;
}

.prod-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 13px;
    justify-content: center;
}

@media (min-width: 1024px) {
    .prod-grid {
        /* Muestra 4 o más columnas según prefieras */
        grid-template-columns: repeat(4, 1fr);
    }
}

.prod-grid img {
    display: block;
    margin-top: 5px;
    margin-bottom: 5px;
    margin-left: auto;
    margin-right: auto;
}

.prod-card {
    background: var(--bg-soft);
    border-radius: 14px;
    padding: 22px 18px;
    border: 1.5px solid var(--border);
    transition: all .2s;
    text-decoration: none;
    display: block;

}

.prod-card:hover {
    border-color: var(--teal);
    background: var(--teal-light);
    transform: translateY(-3px);
}


.prod-card-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 5px;
}

.prod-card-desc {
    font-size: 12px;
    color: var(--text-soft);
    line-height: 1.5;
}

.prod-cotiza {
    align-items: center;
    gap: 4px;
    margin-top: 8px;
    font-size: 12px;
    font-weight: 700;
    color: var(--cotiza);
}

.pasos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 32px;
}

.paso {
    text-align: center;
    padding: 22px 14px;
    background: var(--bg-soft);
    border-radius: 14px;
}

.paso-num {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, #065A66, #0D8A9A);
    color: #fff;
    font-size: 19px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-family: 'Sora', sans-serif;
}

.paso h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 5px;
}

.paso p {
    font-size: 12px;
    color: var(--text-soft);
    line-height: 1.5;
}

.comp-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 22px;
    margin-top: 22px;
}

.cl {
    height: 36px;
    object-fit: contain;
    filter: grayscale(20%);
    opacity: .7;
    transition: all .2s;
}

.cl:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* seccion contrato */
.contrato-p {
    background-color: var(--bg);
    padding: 64px 5%;
    margin: 0 auto;
    flex: 1 1 250px;
    max-width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    box-sizing: border-box;

}

.contrato-p p {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 8px;

}

.contrato-p h2 {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 800;
    color: var(--text);
    margin-bottom: 14px;

}

.encontra {
    background: var(--bg-soft);
    padding: 52px 5%;

}

.encontra h2 {
    text-align: center;
}

.encontra p {
    color: var(--text-soft);
    font-size: 15px;
    margin-bottom: 24px;
    text-align: center;
}

.bot {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Ritvo viaje */
.urgencia {
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(0, 0, 0, .5);
    color: var(--cotiza);
    font-size: 16px;
    font-weight: 500;
    padding: 10px;
    border-radius: 20px;
    margin-bottom: 20px;
    align-items: center;
    text-align: center;

}

.cv-box {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 18px;
    padding: 22px;

}

.cv-box-title {
    color: var(--bg-soft);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 4px;
}

.cv-box-sub {
    color: rgba(255, 255, 255, .5);
    font-size: 12px;
    margin-bottom: 14px;
}

.cv-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, .95);
    border-radius: 12px;
    padding: 14px 15px;
    text-decoration: none;
    margin-bottom: 10px;
    transition: all .2s;
}

.cv-item:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, .15);
}

.cv-item img {
    height: 36px;
    object-fit: contain;
    flex-shrink: 0;
}

.cv-item-text strong {
    display: block;
    font-size: 13.5px;
    color: var(--text);
    font-weight: 700;
}

.cv-item-text span {
    font-size: 11.5px;
    color: var(--text-soft);
}

.cv-item-arrow {
    margin-left: auto;
    color: var(--purple);
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
}

.cv-wsp {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(37, 211, 102, .2);
    border: 1px solid rgba(37, 211, 102, .4);
    border-radius: 10px;
    padding: 12px 16px;
    text-decoration: none;
    color: var(--bg-soft);
    font-size: 13.5px;
    font-weight: 600;
    transition: all .2s;
    margin-top: 4px;
}

.cv-wsp:hover {
    background: rgba(37, 211, 102, .35);
}

.pq-v,
.cob-sec {
    padding: 64px 5%;
    background: var(--purple-light);
}

.pq-v p,
.cob-sec p,
.faq-inner p {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 8px;
}

.pq-v h2,
.cob-sec h2,
.faq-inner h2 {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 800;
    color: var(--text);
    margin-bottom: 14px;
}

.pq-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 13px;
    margin-bottom: 32px;
    justify-content: center;
}

@media (max-width: 768px) {
    .pq-grid {
        grid-template-columns: 1fr;
        /* Fuerza una sola columna, tirando todo abajo */
    }
}

.pq-grid h3 {
    font-size: 20px;
    color: var(--text);
    font-weight: 700;
}

.pq-grid img {
    display: block;
    margin-top: 5px;
    margin-bottom: 5px;
    margin-left: auto;
    margin-right: auto;
}

.pq-card,
.pq-card-dest {
    background: var(--bg-soft);
    color: var(--text);
    letter-spacing: normal;
    border-radius: 14px;
    padding: 22px 18px;
    border: 1.5px solid var(--border);
    transition: all .2s;
    text-decoration: none;
    display: block;

}

.pq-card:hover {
    border-color: var(--teal);
    background: var(--purple-m);
    transform: translateY(-3px);
}

/* seccion coberturas */
.cob-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;

}

.cob-sec {
    background-color: var(--bg);
}

.cob-card {
    background: var(--purple-light);
    border-radius: 12px;
    padding: 22px 16px;
    border: 1.5px solid var(--border);
    border-top: 3px solid var(--purple);
    transition: all .2s;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.cob-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.cob-card p {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--text);
}

.cob-desc {
    font-size: 12.5px;
    color: var(--text-soft);
    line-height: 1.55;
}

@media (max-width: 768px) {
    .cob-grid {
        grid-template-columns: 1fr;
    }
}

/* seccion preguntas frecuentes */
.faq {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--bg-soft);
    margin: 5%;
}

.faq-item {
    border-bottom: 1px solid var(--purple);
    padding: 16px 0;
    margin: 0 20%;
}

.faq-item h5 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 7px;
}

.cv-comp {
    padding: 52px 5%;
    background: linear-gradient(98deg, #c2b1d3, #827094, #8e30eb);
}

.cv-comp-cards {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
    margin-top: 24px;
    max-width: 768px;
    margin: 20px auto 0;
}

@media (max-width: 768px) {
    .cv-comp-cards {
        grid-template-columns: 1fr;
    }
}

.cv-card {
    background: var(--purple-light);
    border: 2px solid var(--border);
    border-radius: 16px;
    padding: 26px;
    text-align: center;
    transition: all .2s;
}

.cv-card:hover {
    background: var(--purple-m);
    box-shadow: var(--shadow);
}

.cv-card h3 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px;
}

.cv-card p {
    font-size: 13px;
    color: var(--text-soft);
    line-height: 1.55;
    margin-bottom: 14px;
}

.cv-card a {
    display: inline-block;
    padding: 10px 20px;
    background: var(--purple);
    color: var(--bg-soft);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

/* Contable */
.hero-c {
    background-color: var(--blue-light);
    width: 100%;
}

.hero-c-inner,
.pq-inner {
    max-width: 90%;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 52px;
    align-items: center;
    margin-left: 5%;
    margin: 0 auto;

}

@media (max-width: 768px) {
    .pq-inner {
        grid-template-columns: 1fr;
    }
}

.hero-c-inner img {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 16px 56px rgba(0, 0, 0, .25);
    margin: 20px;
    height: 340px;
    display: block;

}

.check-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-left: 5%;
    padding-bottom: 3%;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--text);
    line-height: 1.55;
}

.check-list li::before {
    content: '✓';
    background: var(--teal);
    color: var(--bg-soft);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

/* seccion Equipo Contable atributos de titulos y sub en línea 925 */

.eq-c-inner {
    max-width: 95%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

@media (max-width: 768px) {

    .eq-c-inner,
    .cf-inner {
        grid-template-columns: 1fr;
    }
}

.prof-card {
    border-radius: 16px;
    padding: 24px;
    border-top: 3px solid var(--teal);
    margin-bottom: 14px;
}

.prof-card h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 2px;
}

.prof-card h5 {
    font-size: 13px;
    color: var(--teal);
    font-weight: 600;
    margin-bottom: 4px;
}

.prof-card h6 {
    font-size: 12px;
    color: var(--text-soft);
    line-height: 1.5;
}

.cf {
    background:var(--bg-soft);
    padding: 60px 5%;
}

.cf-dato {
    color:var(--blue-dark);
    font-size: 16px;
    margin-bottom: 8px;
}

.cf-inner h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text);
    text-align: center;
}

.serv-sec,
.eq-c {
    padding: 64px 5%;
    background: var(--bg-soft);
}

.serv-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.serv-card {
    background: var(--bg-soft);
    border-radius: 14px;
    padding: 24px 20px;
    border: 1.5px solid var(--border);
    border-top: 3px solid var(--teal);
    transition: all .2s;
    text-align: center;
}

.serv-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.serv-card h5 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--blue);
}

.serv-card p {
    font-size: 12px;
    color: var(--text-soft);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .serv-grid {
        grid-template-columns: 1fr;
    }
}