.rs-landing {
    --rs-primary: #2f97f3;
    --rs-accent: #54c8ff;
    --rs-dark: #1d2b3f;
    --rs-muted: #7a8798;
    --rs-soft: #eef7fe;
    --rs-soft-2: #f7fbff;
    --rs-line: rgba(47, 151, 243, .14);
    --rs-shadow: 0 18px 45px rgba(30, 111, 190, .13);
    --rs-shadow-soft: 0 10px 30px rgba(28, 70, 112, .08);
    --rs-radius: 7px;
    font-family: Inter, "Nunito Sans", "Segoe UI", Arial, sans-serif;
    color: var(--rs-dark);
    background: #fff;
    font-size: 14px;
    line-height: 1.72;
    overflow: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
.rs-landing * { box-sizing: border-box; }
.rs-landing a { color: inherit; }
.rs-container { width: min(1080px, calc(100% - 40px)); margin: 0 auto; }
.rs-fullscreen { min-height: 100svh; }
.rs-section {
    position: relative;
    padding: clamp(78px, 9vw, 118px) 0;
}
.rs-section::after,
.rs-hero::after,
.rs-about::before,
.rs-showcase-blue::before,
.rs-contact::before {
    content: '';
    position: absolute;
    width: 180px;
    height: 180px;
    background-image: radial-gradient(rgba(47,151,243,.22) 1.2px, transparent 1.2px);
    background-size: 14px 14px;
    opacity: .35;
    pointer-events: none;
}
.rs-section::after { right: 7%; top: 17%; }
.rs-hero {
    position: relative;
    display: flex;
    align-items: center;
    padding: 110px 0 70px;
    background: #fff;
}
.rs-hero::before {
    content: '';
    position: absolute;
    left: -170px;
    top: -130px;
    width: 470px;
    height: 330px;
    background: rgba(47,151,243,.055);
    border-radius: 0 0 58% 42%;
    transform: rotate(-12deg);
    pointer-events: none;
}
.rs-hero::after {
    right: -35px;
    bottom: 28px;
    width: 430px;
    height: 430px;
    background: linear-gradient(135deg, rgba(47,151,243,.08), rgba(84,200,255,.16));
    border-radius: 43% 57% 50% 50%;
    opacity: 1;
}
.rs-shape { position: absolute; pointer-events: none; }
.rs-shape-one {
    width: 260px;
    height: 260px;
    left: -125px;
    bottom: 18%;
    border-radius: 38% 62% 44% 56%;
    background: rgba(47,151,243,.04);
}
.rs-shape-two {
    right: 5%;
    top: 20%;
    width: 92px;
    height: 92px;
    border-radius: 24px;
    background: rgba(84,200,255,.11);
    transform: rotate(18deg);
}
.rs-hero-grid,
.rs-split,
.rs-showcase-grid,
.rs-contact-grid,
.rs-footer-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
    align-items: center;
    gap: clamp(44px, 6.5vw, 86px);
}
.rs-hero-copy { max-width: 520px; }
.rs-hero-copy h1,
.rs-section-head h2,
.rs-split-copy h2,
.rs-showcase-copy h2,
.rs-contact-copy h2 {
    margin: 12px 0 15px;
    font-weight: 800;
    line-height: 1.18;
    letter-spacing: -.022em;
    color: var(--rs-dark);
}
.rs-hero-copy h1 {
    font-size: clamp(2.15rem, 4.2vw, 3.35rem);
    text-transform: uppercase;
    max-width: 600px;
}
.rs-section-head h2,
.rs-split-copy h2,
.rs-showcase-copy h2,
.rs-contact-copy h2 {
    font-size: clamp(1.75rem, 2.8vw, 2.45rem);
}
.rs-hero-copy p,
.rs-section-head p,
.rs-split-copy p,
.rs-showcase-copy p,
.rs-contact-copy p,
.rs-feature-card p,
.rs-pillar-card p,
.rs-mini-card p,
.rs-footer p {
    color: var(--rs-muted);
    line-height: 1.78;
    font-size: clamp(.92rem, 1.2vw, 1rem);
    margin: 0 0 12px;
}
.rs-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--rs-primary);
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .045em;
    text-transform: none;
}
.rs-kicker::before {
    content: '';
    width: 24px;
    height: 2px;
    border-radius: 99px;
    background: linear-gradient(90deg, var(--rs-primary), var(--rs-accent));
}
.rs-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }
.rs-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 39px;
    padding: 0 18px;
    border-radius: 4px;
    text-decoration: none;
    font-size: .86rem;
    line-height: 1;
    font-weight: 700;
    border: 1px solid transparent;
    cursor: pointer;
    letter-spacing: .01em;
    transition: transform .22s ease, box-shadow .22s ease, background .22s ease, border-color .22s ease, color .22s ease;
}
.rs-btn:hover { transform: translateY(-2px); }
.rs-btn-primary {
    color: #fff;
    background: var(--rs-primary);
    border-color: var(--rs-primary);
    box-shadow: 0 12px 24px rgba(47,151,243,.25);
}
.rs-btn-primary:hover { background: #1d83df; border-color: #1d83df; }
.rs-btn-ghost {
    color: var(--rs-primary);
    background: rgba(255,255,255,.72);
    border-color: rgba(47,151,243,.32);
}
.rs-btn-ghost:hover { background: rgba(47,151,243,.08); }
.rs-hero-metrics { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 24px; }
.rs-hero-metrics span {
    display: inline-flex;
    gap: 6px;
    align-items: center;
    padding: 8px 10px;
    border-radius: 4px;
    background: rgba(255,255,255,.78);
    border: 1px solid var(--rs-line);
    color: #617084;
    font-size: .78rem;
    box-shadow: 0 8px 18px rgba(24,78,130,.05);
}
.rs-hero-metrics strong { color: var(--rs-primary); }
.rs-hero-visual,
.rs-showcase-image,
.rs-split-image {
    position: relative;
}
.rs-hero-visual img,
.rs-showcase-image img,
.rs-split-image img {
    display: block;
    width: 100%;
    border: 0;
    filter: drop-shadow(0 22px 28px rgba(30,80,135,.16));
    transform: translateZ(0);
}
.rs-hero-visual::before,
.rs-showcase-image::before,
.rs-split-image::before {
    content: '';
    position: absolute;
    inset: 11% -3% -2% 10%;
    z-index: -1;
    border-radius: 42% 58% 45% 55%;
    background: linear-gradient(135deg, rgba(47,151,243,.06), rgba(84,200,255,.15));
}
.rs-floating-card {
    position: absolute;
    padding: 11px 14px;
    min-width: 126px;
    border-radius: 7px;
    background: rgba(255,255,255,.92);
    border: 1px solid rgba(47,151,243,.14);
    box-shadow: var(--rs-shadow-soft);
    color: #45556c;
    font-size: .78rem;
    line-height: 1.45;
    backdrop-filter: blur(14px);
    animation: rsFloat 4.7s ease-in-out infinite;
}
.rs-floating-card strong { color: var(--rs-primary); }
.rs-card-a { left: -3%; bottom: 18%; }
.rs-card-b { right: 2%; top: 9%; animation-delay: .8s; }
@keyframes rsFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
.rs-section-head {
    text-align: center;
    width: min(650px, 100%);
    margin: 0 auto 46px;
}
.rs-icon-badge,
.rs-card-icon,
.rs-feature-number {
    display: inline-grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 6px;
    color: var(--rs-primary);
    background: rgba(47,151,243,.08);
    border: 1px solid rgba(47,151,243,.11);
    font-weight: 800;
    font-size: .82rem;
}
.rs-pillars {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid rgba(47,151,243,.16);
    border-bottom: 1px solid rgba(47,151,243,.16);
}
.rs-pillar-card,
.rs-feature-card,
.rs-mini-card,
.rs-contact-form {
    background: rgba(255,255,255,.88);
    border: 1px solid rgba(47,151,243,.13);
    border-radius: var(--rs-radius);
    box-shadow: var(--rs-shadow-soft);
}
.rs-pillar-card {
    padding: 26px 24px 23px;
    min-height: 228px;
    border: 0;
    border-right: 1px solid rgba(47,151,243,.14);
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    transition: background .24s ease, transform .24s ease, box-shadow .24s ease;
}
.rs-pillar-card:last-child { border-right: 0; }
.rs-pillar-card:hover {
    background: #fff;
    transform: translateY(-5px);
    box-shadow: 0 16px 32px rgba(30,111,190,.09);
}
.rs-pillar-card h3,
.rs-feature-card h3,
.rs-mini-card h3 {
    margin: 18px 0 9px;
    font-size: 1.04rem;
    line-height: 1.35;
    font-weight: 800;
    letter-spacing: -.015em;
    color: #24364b;
}
.rs-about,
.rs-showcase-blue {
    background: var(--rs-soft);
}
.rs-about::before { left: 6%; bottom: 11%; }
.rs-split { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
.rs-mini-card {
    padding: 19px 21px;
    margin-top: 14px;
    border-radius: 5px;
}
.rs-mini-card h3 { margin-top: 0; color: var(--rs-primary); font-size: 1rem; }
.rs-features { background: #fff; }
.rs-feature-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 22px;
}
.rs-feature-card {
    padding: 25px 24px 22px;
    grid-column: span 2;
    transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}
.rs-feature-card:nth-child(4),
.rs-feature-card:nth-child(5) { grid-column: span 3; }
.rs-feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(47,151,243,.26);
    box-shadow: var(--rs-shadow);
}
.rs-feature-number {
    color: #fff;
    background: var(--rs-primary);
    border-color: var(--rs-primary);
}
.rs-showcase { overflow: hidden; }
.rs-showcase-blue::before { right: 8%; top: 16%; }
.rs-showcase-grid {
    min-height: min(660px, 82svh);
    grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
}
.rs-reverse .rs-showcase-copy { order: 2; }
.rs-reverse .rs-showcase-image { order: 1; }
.rs-check-list {
    padding: 0;
    margin: 21px 0 0;
    list-style: none;
    display: grid;
    gap: 10px;
}
.rs-check-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: #42526a;
    font-size: .93rem;
}
.rs-check-list li::before {
    content: '✓';
    display: inline-grid;
    place-items: center;
    flex: 0 0 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(47,151,243,.1);
    color: var(--rs-primary);
    font-size: .74rem;
    font-weight: 900;
    margin-top: 2px;
}
.rs-team {
    background: radial-gradient(circle at 82% 16%, rgba(84,200,255,.12), transparent 24%), #fff;
}
.rs-quote {
    margin-top: 22px;
    padding: 18px 20px;
    border-left: 3px solid var(--rs-primary);
    background: #f6fbff;
    color: #415169;
    font-weight: 700;
    font-size: .94rem;
    border-radius: 0 7px 7px 0;
}
.rs-contact {
    background: linear-gradient(135deg, #fff 0%, #f0f8ff 100%);
}
.rs-contact::before { left: 5%; top: 13%; }
.rs-contact-grid { align-items: center; }
.rs-contact-form {
    padding: clamp(22px, 3vw, 34px);
    display: grid;
    gap: 13px;
    border-radius: 6px;
}
.rs-contact-form label {
    display: grid;
    gap: 6px;
    color: #37475b;
    font-size: .82rem;
    font-weight: 700;
}
.rs-contact-form input,
.rs-contact-form textarea {
    width: 100%;
    border: 1px solid rgba(47,151,243,.15);
    border-radius: 4px;
    padding: 11px 13px;
    font: inherit;
    outline: none;
    background: rgba(255,255,255,.95);
    color: #26374b;
    transition: border .2s ease, box-shadow .2s ease;
}
.rs-contact-form input:focus,
.rs-contact-form textarea:focus {
    border-color: var(--rs-primary);
    box-shadow: 0 0 0 3px rgba(47,151,243,.1);
}
.rs-hp { position: absolute !important; left: -9999px !important; opacity: 0 !important; }
.rs-form-response { margin: 0; color: var(--rs-primary); font-weight: 800; font-size: .88rem; }
.rs-whatsapp,
.rs-floating-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    background: #25d366;
    font-weight: 800;
    box-shadow: 0 12px 28px rgba(37,211,102,.25);
}
.rs-whatsapp { min-height: 39px; padding: 0 17px; border-radius: 4px; margin-top: 17px; }
.rs-floating-whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    z-index: 999;
    font-size: 23px;
}
.rs-footer {
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding: clamp(68px, 7vw, 94px) 0 0;
    background: #eaf5fe;
    color: #101820;
}
.rs-footer::before {
    content: '';
    position: absolute;
    left: -70px;
    top: -95px;
    width: 280px;
    height: 220px;
    border-radius: 43% 57% 58% 42%;
    background: rgba(47,151,243,.07);
    pointer-events: none;
}
.rs-footer-grid {
    align-items: start;
    grid-template-columns: 1.35fr .9fr 1.05fr 1.15fr;
    gap: clamp(32px, 5vw, 70px);
}
.rs-footer-about { max-width: 360px; }
.rs-footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    margin: 0 0 28px;
    text-decoration: none;
    color: var(--rs-primary);
    font-size: clamp(1.5rem, 2.2vw, 2.25rem);
    line-height: 1;
    font-weight: 900;
    letter-spacing: -.04em;
}
.rs-footer-brand span {
    display: inline-grid;
    place-items: center;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    color: #fff;
    background: radial-gradient(circle at 28% 25%, #7addff, var(--rs-primary) 63%, #1456c8);
    box-shadow: 0 12px 26px rgba(47,151,243,.24);
    font-size: 1.15rem;
    letter-spacing: -.05em;
}
.rs-footer-about p {
    margin: 0 0 28px;
    color: #111827;
    font-size: clamp(.98rem, 1.15vw, 1.08rem);
    line-height: 1.8;
}
.rs-footer-column h3 {
    margin: 0;
    color: #050b12;
    font-size: clamp(1.25rem, 1.7vw, 1.7rem);
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: -.03em;
}
.rs-footer-heading-line {
    display: block;
    width: 86px;
    height: 3px;
    margin: 24px 0 28px;
    background: #050b12;
}
.rs-footer-links,
.rs-footer-services {
    display: grid;
    gap: 0;
}
.rs-footer-links a,
.rs-footer-services p {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 38px;
    margin: 0 0 15px;
    color: #111827;
    text-decoration: none;
    font-size: clamp(.98rem, 1.1vw, 1.08rem);
    line-height: 1.35;
    font-weight: 500;
}
.rs-footer-links a span,
.rs-footer-services p span {
    display: inline-grid;
    place-items: center;
    flex: 0 0 18px;
    width: 18px;
    height: 18px;
    border: 2px solid #09111c;
    border-radius: 50%;
}
.rs-footer-links a span::after,
.rs-footer-services p span::after {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #09111c;
}
.rs-footer-links a:hover { color: var(--rs-primary); }
.rs-footer-links a:hover span { border-color: var(--rs-primary); }
.rs-footer-links a:hover span::after { background: var(--rs-primary); }
.rs-socials { display: flex !important; flex-direction: row; flex-wrap: wrap; }
.rs-footer-socials { gap: 13px; }
.rs-socials a {
    display: inline-grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: var(--rs-primary);
    color: #fff;
    text-decoration: none;
    font-size: .95rem;
    font-weight: 900;
    box-shadow: 0 13px 25px rgba(47,151,243,.20);
    transition: transform .2s ease, background .2s ease;
}
.rs-socials a:hover {
    transform: translateY(-3px);
    background: #1d83df;
}
.rs-footer-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}
.rs-footer-gallery-grid a {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 1 / .94;
    border-radius: 7px;
    background: #dbeafe;
    box-shadow: 0 10px 20px rgba(30, 80, 135, .08);
}
.rs-footer-gallery-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .28s ease, filter .28s ease;
}
.rs-footer-gallery-grid a:hover img {
    transform: scale(1.06);
    filter: saturate(1.05);
}
.rs-footer-bottom {
    margin: clamp(58px, 7vw, 86px) 0 0;
    padding: 28px 20px 30px;
    background: #000;
    color: #fff;
    text-align: center;
    font-size: clamp(1.02rem, 1.35vw, 1.22rem);
    letter-spacing: -.01em;
}
.rs-footer-bottom strong {
    font-weight: 900;
}
.rs-reveal { opacity: 0; transform: translateY(28px); transition: opacity .72s ease, transform .72s ease; }
.rs-reveal.rs-visible { opacity: 1; transform: translateY(0); }
.rs-reveal-delay { transition-delay: .14s; }
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .rs-reveal, .rs-floating-card, .rs-btn, .rs-pillar-card, .rs-feature-card { transition: none !important; animation: none !important; transform: none !important; opacity: 1 !important; }
}
@media (max-width: 980px) {
    .rs-hero { padding-top: 110px; min-height: auto; }
    .rs-hero-grid,
    .rs-split,
    .rs-showcase-grid,
    .rs-contact-grid,
    .rs-footer-grid { grid-template-columns: 1fr; }
    .rs-hero-copy { max-width: 680px; }
    .rs-pillars { grid-template-columns: 1fr; border: 0; gap: 14px; }
    .rs-pillar-card { border: 1px solid rgba(47,151,243,.13); border-radius: 6px; background: #fff; box-shadow: var(--rs-shadow-soft); }
    .rs-feature-grid { grid-template-columns: 1fr; }
    .rs-feature-card,
    .rs-feature-card:nth-child(4),
    .rs-feature-card:nth-child(5) { grid-column: auto; }
    .rs-reverse .rs-showcase-copy,
    .rs-reverse .rs-showcase-image { order: initial; }
    .rs-floating-card { position: static; margin: 10px 0 0; display: inline-block; }
}
@media (max-width: 560px) {
    .rs-container { width: min(100% - 28px, 1080px); }
    .rs-section { padding: 68px 0; }
    .rs-hero { padding: 100px 0 55px; }
    .rs-hero-copy h1 { font-size: clamp(1.85rem, 10vw, 2.65rem); }
    .rs-section-head h2,
    .rs-split-copy h2,
    .rs-showcase-copy h2,
    .rs-contact-copy h2 { font-size: clamp(1.55rem, 8vw, 2.05rem); }
    .rs-actions .rs-btn { width: 100%; }
    .rs-hero-metrics { display: grid; }
    .rs-contact-form { border-radius: 5px; }
    .rs-floating-whatsapp { width: 50px; height: 50px; right: 16px; bottom: 16px; }
}
.rs-image-credit { margin: 8px 0 0; font-size: 10px; line-height: 1.45; color: rgba(71, 85, 105, .72); text-align: center; overflow-wrap: anywhere; }
.rs-hero-visual .rs-image-credit { position: relative; z-index: 4; }

/* v1.0.3: ocultar créditos/atribuciones debajo de imágenes en la landing pública. */
.rs-landing .rs-image-credit { display: none !important; }
@media (max-width: 980px) {
    .rs-footer-grid { grid-template-columns: 1fr 1fr; }
    .rs-footer-about { max-width: 100%; }
}
@media (max-width: 620px) {
    .rs-footer-grid { grid-template-columns: 1fr; }
    .rs-socials a { width: 48px; height: 48px; }
    .rs-footer-gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* v1.0.8: rediseño premium de la sección de pilares con tramado de fondo e iconos. */
.rs-pillar-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 12%, rgba(47,151,243,.08), transparent 16%),
        radial-gradient(circle at 88% 88%, rgba(84,200,255,.18), transparent 18%),
        linear-gradient(180deg, #fcfeff 0%, #f5f9ff 100%);
}
.rs-pillar-section::before,
.rs-pillar-section::after {
    content: '';
    position: absolute;
    pointer-events: none;
    z-index: 0;
}
.rs-pillar-section::before {
    inset: 24px auto auto 0;
    width: 300px;
    height: 170px;
    background-image: radial-gradient(rgba(47,151,243,.20) 1.4px, transparent 1.4px);
    background-size: 18px 18px;
    opacity: .55;
}
.rs-pillar-section::after {
    right: -40px;
    top: 70px;
    width: 320px;
    height: 260px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='320' height='260' viewBox='0 0 320 260'%3E%3Cg fill='none' stroke='%2398c2ff' stroke-width='1.6' opacity='0.42'%3E%3Cpath d='M73 52l33 0 17 29-17 29-33 0-17-29z'/%3E%3Cpath d='M139 9l33 0 17 29-17 29-33 0-17-29z'/%3E%3Cpath d='M171 101l33 0 17 29-17 29-33 0-17-29z'/%3E%3Cpath d='M238 56l33 0 17 29-17 29-33 0-17-29z'/%3E%3Cpath d='M233 146l33 0 17 29-17 29-33 0-17-29z'/%3E%3Cpath d='M106 108l33 0 17 29-17 29-33 0-17-29z'/%3E%3C/g%3E%3Cg fill='%2398c2ff' opacity='0.65'%3E%3Ccircle cx='73' cy='81' r='5'/%3E%3Ccircle cx='139' cy='38' r='5'/%3E%3Ccircle cx='189' cy='139' r='5'/%3E%3Ccircle cx='238' cy='85' r='5'/%3E%3Ccircle cx='122' cy='138' r='5'/%3E%3C/g%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    opacity: .9;
}
.rs-pillar-section .rs-container { position: relative; z-index: 1; }
.rs-pillar-section .rs-section-head {
    width: min(860px, 100%);
    margin-bottom: 54px;
}
.rs-pillar-section .rs-section-head h2 {
    font-size: clamp(2.1rem, 4.3vw, 3.35rem);
    line-height: 1.12;
    letter-spacing: -.045em;
}
.rs-pillar-section .rs-section-head p {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(1rem, 1.25vw, 1.15rem);
}
.rs-pillar-section .rs-icon-badge {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    margin-bottom: 8px;
    background: rgba(255,255,255,.8);
    box-shadow: 0 10px 22px rgba(29,85,151,.08);
}
.rs-pillar-section .rs-pillars {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    border: 0;
}
.rs-pillar-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 420px;
    padding: 26px 28px 22px;
    overflow: hidden;
    border: 1px solid rgba(47,151,243,.12);
    border-radius: 24px;
    background: rgba(255,255,255,.92);
    box-shadow: 0 20px 40px rgba(18, 82, 155, .08);
    backdrop-filter: blur(4px);
}
.rs-pillar-card::before {
    content: '';
    position: absolute;
    top: 28px;
    right: 24px;
    width: 92px;
    height: 62px;
    background-image: radial-gradient(rgba(47,151,243,.18) 1.15px, transparent 1.15px);
    background-size: 12px 12px;
    opacity: .7;
}
.rs-pillar-card::after {
    content: '';
    position: absolute;
    left: -28px;
    bottom: -34px;
    width: 180px;
    height: 88px;
    background: linear-gradient(135deg, rgba(47,151,243,.04), rgba(84,200,255,.13));
    border-radius: 999px 999px 0 0;
    opacity: .65;
}
.rs-pillar-card:hover {
    transform: translateY(-8px);
    border-color: rgba(47,151,243,.25);
    box-shadow: 0 26px 48px rgba(18, 82, 155, .12);
}
.rs-pillar-top {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 18px;
}
.rs-pillar-card .rs-card-icon {
    width: 64px;
    height: 50px;
    border-radius: 14px;
    color: #fff;
    border: 0;
    background: linear-gradient(135deg, var(--rs-accent), var(--rs-primary));
    box-shadow: 0 12px 22px rgba(47,151,243,.24);
    font-size: 1.3rem;
    font-weight: 900;
}
.rs-pillar-graphic {
    position: relative;
    z-index: 1;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    width: 118px;
    height: 118px;
    border-radius: 50%;
    background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(240,248,255,.96));
    border: 1px solid rgba(47,151,243,.12);
    box-shadow: inset 0 0 0 1px rgba(47,151,243,.05), 0 14px 25px rgba(46,91,150,.08);
}
.rs-svg-icon,
.rs-svg-icon svg {
    display: block;
    width: 82px;
    height: 82px;
}
.rs-pillar-divider {
    display: block;
    width: 62px;
    height: 3px;
    margin: 2px 0 18px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--rs-primary), var(--rs-accent));
}
.rs-pillar-card h3 {
    position: relative;
    z-index: 1;
    margin: 0 0 10px;
    font-size: clamp(1.18rem, 1.45vw, 1.6rem);
    line-height: 1.26;
    color: #0f2452;
}
.rs-pillar-card p {
    position: relative;
    z-index: 1;
    margin: 0;
    font-size: clamp(1rem, 1.12vw, 1.08rem);
    line-height: 1.76;
    color: #5c6f88;
}
.rs-pillar-dots {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 8px;
    margin-top: auto;
    padding-top: 18px;
}
.rs-pillar-dots span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(47,151,243,.22);
}
.rs-pillar-dots span:first-child { background: var(--rs-primary); }
@media (max-width: 1180px) {
    .rs-pillar-card {
        min-height: 390px;
        padding: 24px 24px 20px;
    }
    .rs-pillar-graphic {
        width: 108px;
        height: 108px;
    }
}
@media (max-width: 980px) {
    .rs-pillar-section .rs-pillars {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .rs-pillar-card {
        min-height: 0;
        border-radius: 18px;
    }
}
@media (max-width: 560px) {
    .rs-pillar-top {
        flex-direction: column;
        align-items: flex-start;
    }
    .rs-pillar-graphic {
        width: 96px;
        height: 96px;
    }
    .rs-svg-icon,
    .rs-svg-icon svg {
        width: 72px;
        height: 72px;
    }
    .rs-pillar-section::after {
        opacity: .35;
        right: -120px;
    }
}

/* v1.0.9: alineación integral de secciones imagen/texto. */
.rs-hero-grid,
.rs-split,
.rs-showcase-grid,
.rs-contact-grid {
    align-items: center !important;
}
.rs-hero-copy,
.rs-split-copy,
.rs-showcase-copy,
.rs-contact-copy {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-self: center;
    width: min(100%, 560px);
    min-height: 100%;
}
.rs-hero-copy,
.rs-split-copy,
.rs-showcase-copy,
.rs-contact-copy {
    justify-self: start;
}
.rs-hero-visual,
.rs-split-image,
.rs-showcase-image {
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    justify-self: center;
    width: 100%;
    min-height: clamp(320px, 38vw, 520px);
}
.rs-hero-visual img,
.rs-split-image img,
.rs-showcase-image img {
    width: min(100%, 640px);
    max-height: clamp(320px, 42vw, 560px);
    object-fit: contain;
    object-position: center;
}
.rs-split-image img {
    width: min(100%, 560px);
}
.rs-showcase-image img {
    width: min(100%, 660px);
}
.rs-showcase-copy {
    max-width: 540px;
}
.rs-split-copy {
    max-width: 560px;
}
.rs-contact-copy {
    max-width: 520px;
}
.rs-contact-form {
    align-self: center;
    justify-self: center;
    width: min(100%, 540px);
}
.rs-reverse .rs-showcase-copy {
    justify-self: start;
    text-align: left;
}
.rs-reverse .rs-showcase-image {
    justify-self: center;
}
.rs-team .rs-split-image,
.rs-about .rs-split-image {
    min-height: clamp(300px, 36vw, 500px);
}
.rs-about .rs-split,
.rs-team .rs-split,
.rs-showcase-grid {
    row-gap: clamp(36px, 5vw, 70px);
}
.rs-showcase-grid {
    min-height: clamp(540px, 74svh, 700px);
}
.rs-showcase-copy .rs-icon-badge,
.rs-split-copy .rs-kicker,
.rs-contact-copy .rs-kicker {
    flex: 0 0 auto;
}
.rs-showcase-copy h2,
.rs-split-copy h2,
.rs-contact-copy h2,
.rs-showcase-copy p,
.rs-split-copy p,
.rs-contact-copy p,
.rs-check-list,
.rs-quote,
.rs-whatsapp {
    flex: 0 0 auto;
}
@media (min-width: 981px) {
    .rs-about .rs-split-copy,
    .rs-showcase-grid:not(.rs-reverse) .rs-showcase-copy,
    .rs-contact-copy {
        padding-right: clamp(8px, 1.2vw, 22px);
    }
    .rs-team .rs-split-copy,
    .rs-reverse .rs-showcase-copy,
    .rs-contact-form {
        padding-left: clamp(8px, 1.2vw, 22px);
    }
    .rs-showcase-grid:not(.rs-reverse) .rs-showcase-image,
    .rs-about .rs-split-image {
        justify-self: end;
    }
    .rs-reverse .rs-showcase-image,
    .rs-team .rs-split-image {
        justify-self: start;
    }
    .rs-hero-visual { justify-self: end; }
}
@media (max-width: 980px) {
    .rs-hero-copy,
    .rs-split-copy,
    .rs-showcase-copy,
    .rs-contact-copy,
    .rs-contact-form {
        width: 100%;
        max-width: 760px;
        justify-self: center;
        min-height: 0;
        padding-left: 0;
        padding-right: 0;
    }
    .rs-hero-visual,
    .rs-split-image,
    .rs-showcase-image {
        min-height: auto;
        justify-self: center;
    }
    .rs-hero-visual img,
    .rs-split-image img,
    .rs-showcase-image img {
        max-height: none;
        width: min(100%, 620px);
    }
    .rs-split,
    .rs-showcase-grid,
    .rs-contact-grid {
        align-items: start !important;
    }
    .rs-split-image,
    .rs-showcase-image {
        order: 2;
    }
    .rs-split-copy,
    .rs-showcase-copy {
        order: 1;
    }
    .rs-contact-form {
        order: 2;
    }
    .rs-contact-copy {
        order: 1;
    }
    .rs-reverse .rs-showcase-copy,
    .rs-reverse .rs-showcase-image {
        order: initial;
    }
    .rs-reverse .rs-showcase-copy { order: 1; }
    .rs-reverse .rs-showcase-image { order: 2; }
}
@media (max-width: 560px) {
    .rs-hero-copy,
    .rs-split-copy,
    .rs-showcase-copy,
    .rs-contact-copy {
        text-align: left;
    }
    .rs-showcase-grid {
        min-height: auto;
    }
}


/* v1.0.10: normalización avanzada de tamaños de imagen para alinear mejor texto + visual. */
@media (min-width: 981px) {
    .rs-hero-grid,
    .rs-split,
    .rs-showcase-grid,
    .rs-contact-grid {
        column-gap: clamp(44px, 6vw, 84px);
    }
    .rs-split-copy,
    .rs-showcase-copy {
        max-width: 520px;
    }
    .rs-split-image,
    .rs-showcase-image {
        width: 100%;
        max-width: 560px;
        min-height: 420px;
    }
    .rs-split-image img,
    .rs-showcase-image img {
        width: 100%;
        height: 420px;
        max-height: 420px;
        border-radius: 14px;
        object-fit: cover;
        object-position: center center;
        background: #edf6ff;
        box-shadow: 0 22px 42px rgba(30,80,135,.14);
    }
    .rs-about .rs-split-image img,
    .rs-team .rs-split-image img,
    #dashboard .rs-showcase-image img,
    #monitoreo .rs-showcase-image img {
        aspect-ratio: 5 / 4;
    }
    .rs-hero-visual {
        width: 100%;
        max-width: 600px;
        min-height: 400px;
    }
    .rs-hero-visual img {
        width: 100%;
        height: 400px;
        max-height: 400px;
        border-radius: 14px;
        object-fit: cover;
        object-position: center center;
        background: #edf6ff;
    }
    .rs-contact-form {
        width: min(100%, 520px);
    }
}
@media (max-width: 980px) {
    .rs-hero-visual img,
    .rs-split-image img,
    .rs-showcase-image img {
        width: 100%;
        max-width: 680px;
        height: auto;
        max-height: none;
        object-fit: cover;
        border-radius: 12px;
    }
}


/* v1.0.11: footer sin columna de servicios y galería ampliada. */
.rs-footer-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, .8fr) minmax(0, 1.85fr);
    gap: clamp(34px, 5vw, 82px);
}
.rs-footer-gallery {
    min-width: 0;
}
.rs-footer-gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}
.rs-footer-gallery-grid a {
    aspect-ratio: 1 / .76;
    border-radius: 10px;
}
@media (max-width: 980px) {
    .rs-footer-grid { grid-template-columns: 1fr 1fr; }
    .rs-footer-gallery { grid-column: 1 / -1; }
    .rs-footer-gallery-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 620px) {
    .rs-footer-grid { grid-template-columns: 1fr; }
    .rs-footer-gallery { grid-column: auto; }
    .rs-footer-gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* v1.0.12: logo configurable del footer. */
.rs-footer-logo-img {
    display: block;
    width: auto;
    max-width: 190px;
    max-height: 64px;
    object-fit: contain;
    object-position: left center;
    filter: drop-shadow(0 10px 20px rgba(47,151,243,.10));
}
.rs-footer-brand:has(.rs-footer-logo-img) {
    gap: 12px;
    align-items: center;
}
@media (max-width: 620px) {
    .rs-footer-logo-img {
        max-width: 170px;
        max-height: 56px;
    }
}

/* v1.0.13: rediseño profesional de la sección Sobre nosotros. */
.rs-about {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 18%, rgba(255,255,255,.58), transparent 24%),
        radial-gradient(circle at 82% 72%, rgba(84,200,255,.14), transparent 22%),
        linear-gradient(180deg, #f4f9ff 0%, #ecf5fd 100%);
}
.rs-about::after {
    content: '';
    position: absolute;
    right: 6%;
    top: 18%;
    width: 180px;
    height: 180px;
    background-image: radial-gradient(rgba(47,151,243,.16) 1.3px, transparent 1.3px);
    background-size: 15px 15px;
    opacity: .6;
    pointer-events: none;
}
.rs-about-grid {
    position: relative;
    z-index: 1;
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
    gap: clamp(44px, 6vw, 90px);
}
.rs-about .rs-split-copy {
    max-width: 560px;
}
.rs-about .rs-kicker {
    margin-bottom: 8px;
}
.rs-about .rs-split-copy h2 {
    font-size: clamp(2.25rem, 4.4vw, 4rem);
    line-height: 1.08;
    letter-spacing: -.04em;
    margin-bottom: 26px;
    max-width: 9.6ch;
}
.rs-about-panels {
    display: grid;
    gap: 18px;
}
.rs-about .rs-mini-card {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 18px;
    align-items: start;
    padding: 24px 24px 22px;
    margin-top: 0;
    border-radius: 18px;
    background: rgba(255,255,255,.82);
    border: 1px solid rgba(47,151,243,.14);
    box-shadow: 0 18px 36px rgba(25, 77, 129, .08);
    backdrop-filter: blur(8px);
    transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}
.rs-about .rs-mini-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 42px rgba(25, 77, 129, .11);
    border-color: rgba(47,151,243,.26);
}
.rs-mini-icon {
    display: inline-grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border-radius: 16px;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--rs-accent), var(--rs-primary));
    box-shadow: 0 12px 24px rgba(47,151,243,.22);
}
.rs-mini-card-body h3,
.rs-about .rs-mini-card h3 {
    margin: 3px 0 10px;
    color: #1167f1;
    font-size: 1.08rem;
    line-height: 1.3;
}
.rs-mini-card-body p,
.rs-about .rs-mini-card p {
    margin: 0;
    color: #65778f;
    font-size: 1rem;
    line-height: 1.85;
}
.rs-about-media {
    display: flex;
    align-items: center;
    justify-content: center;
}
.rs-about-image-wrap {
    position: relative;
    width: min(100%, 620px);
    padding: 12px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255,255,255,.94), rgba(255,255,255,.78));
    border: 1px solid rgba(47,151,243,.14);
    box-shadow: 0 24px 54px rgba(25, 77, 129, .10);
}
.rs-about-image-wrap::before {
    content: '';
    position: absolute;
    left: -30px;
    bottom: -26px;
    width: 240px;
    height: 130px;
    background: radial-gradient(circle at center, rgba(84,200,255,.26), rgba(84,200,255,0) 68%);
    pointer-events: none;
}
.rs-about-image-wrap img {
    width: 100%;
    height: 460px;
    max-height: 460px;
    object-fit: cover;
    object-position: center;
    border-radius: 22px;
    box-shadow: none;
    background: #eef6fd;
}
.rs-about-floating-note {
    position: absolute;
    left: 24px;
    bottom: 22px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    background: rgba(15, 23, 42, .88);
    color: #fff;
    font-size: .84rem;
    font-weight: 800;
    letter-spacing: .01em;
    box-shadow: 0 12px 26px rgba(15, 23, 42, .22);
}
.rs-about-floating-note::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--rs-accent);
    box-shadow: 0 0 0 5px rgba(84,200,255,.18);
}
@media (max-width: 980px) {
    .rs-about .rs-split-copy h2 {
        max-width: none;
        font-size: clamp(2rem, 7vw, 3.2rem);
    }
    .rs-about-grid {
        gap: 28px;
    }
    .rs-about-image-wrap {
        width: min(100%, 700px);
    }
    .rs-about-image-wrap img {
        height: auto;
        max-height: none;
    }
}
@media (max-width: 560px) {
    .rs-about .rs-mini-card {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 20px 18px;
    }
    .rs-mini-icon {
        width: 50px;
        height: 50px;
        border-radius: 14px;
    }
    .rs-about-image-wrap {
        padding: 10px;
        border-radius: 20px;
    }
    .rs-about-image-wrap img {
        border-radius: 16px;
    }
    .rs-about-floating-note {
        left: 16px;
        bottom: 16px;
        font-size: .76rem;
        padding: 0 12px;
    }
}


/* v1.0.14: ampliar el ancho útil del título en Sobre nosotros. */
.rs-about .rs-split-copy {
    max-width: 650px;
}
.rs-about .rs-split-copy h2 {
    width: 100%;
    max-width: none;
    font-size: clamp(2.1rem, 3.9vw, 3.7rem);
    text-wrap: balance;
}
@media (max-width: 980px) {
    .rs-about .rs-split-copy {
        max-width: 100%;
    }
    .rs-about .rs-split-copy h2 {
        width: 100%;
        max-width: none;
    }
}
