@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@font-face {
    font-family: 'Codec Pro';
    src: url('/Fuentes/code-pro/Code-Pro-Regular.woff2') format('otf'),
        url('/Fuentes/code-pro/Code-Pro-Regular.woff') format('otf');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Codec Pro';
    src: url('/Fuentes/code-pro/Code-Pro-Bold.woff2') format('otf'),
        url('/Fuentes/code-pro/Code-Pro-Bold.woff') format('otf');
    font-weight: 700;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
    font-family: "Poppins", sans-serif;
}

:root {
    --font-principal: "Codec Pro";
    --font-secundario: "";
    --font-texto: "";

    --principal: #052868;
    --secundario: #ffffff;
    --terciario: #000000;
    /*Usar muy poco*/
    --cuarto: #0e5ff4;
    --claro: #f0f0e7;
    --oscuro: #0f161c;
}

/* Spans */
/* .highlight {
    color: var(--cuarto) !important;
} */

/* PARA CORREGIR DESBORDE EN CELULAR */

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.opiniones,
.opiniones .container,
.opiniones-slider,
.opiniones-track-wrapper {
    max-width: 100%;
}

/*Auto scrol*/

html {
    scroll-behavior: smooth;
}

section[id] {
    scroll-margin-top: 70px;
}

html,
body {
    min-height: 100%;
}

body {
    position: relative;
    background-color: var(--oscuro);
    color: var(--claro);
    overflow-x: hidden;
}

/* .inicio {
    position: relative;
    background: transparent !important;
    overflow: visible !important;
} */

/* INICIO ANTERIOR */
/* .inicio{
    position: relative;
    overflow: hidden;
    background:#0b1118;
} */

/* .inicio::before{
    content:"";
    position:absolute;
    inset:0;

    background:
        radial-gradient(circle at 20% 80%,
            rgba(17, 96, 255, 0.253),
            transparent 38%),

        radial-gradient(circle at 82% 35%,
            rgba(0, 110, 255, 0.384),
            transparent 28%),

        radial-gradient(circle at 50% 120%,
            rgba(37,96,255,.35),
            transparent 55%);

    filter: blur(60px);

    z-index:0;
} */

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
}

body {
    background-color: var(--oscuro);
}

.inicio::before {
    animation: heroGlow 10s ease-in-out infinite alternate;
}

@keyframes heroGlow {

    0% {
        transform: scale(1) translate(0, 0);
        opacity: .75;
    }

    50% {
        transform: scale(1.08) translate(-30px, 10px);
        opacity: 1;
    }

    100% {
        transform: scale(1.15) translate(25px, -15px);
        opacity: .8;
    }

}

.tittle-header,
.menu {
    position: relative;
    z-index: 2;
}

.exp-items,
.candela,
.companias-2,
.servicios,
.opiniones,
.contact {
    position: relative;
    background: transparent !important;
    overflow: visible !important;
    isolation: isolate;
}

img {
    max-width: 100%;
}

.container-1 {
    max-width: 85%;
    margin: 0 auto;
}

.menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 14px 40px;
    z-index: 99999;

    background: rgba(5, 40, 104, 0.6);
    backdrop-filter: blur(12px);
    /* -webkit-backdrop-filter: blur(12px); */

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.menu .img-logo {
    width: 120px;
}

.menu .navbar ul li {
    position: relative;
    float: left;
}

.menu .navbar ul li a {
    font-size: 14px;
    padding: 10px 14px;
    color: #f0f0e7;
    display: block;
    transition: 0.3s;
}

.menu .navbar ul li a:hover {
    color: #0e5ff4;
}

/*Todo esto es para cuando se despliegue la version de celular*/
#menu {
    /*Para q no aparezca el INPUT*/
    display: none;
}

.menu-icon {
    width: 25px;
}

.menu label {
    cursor: pointer;
    display: none;
}

/*FIN*/

.inicio {
    position: relative;
    min-height: 100vh;
    background: #0f161c;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.tittle-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    max-width: 1300px;
    margin: auto;
    padding: 120px 40px 40px;
    width: 100%;

    position: relative;
    z-index: 2;
}

.text-header {
    width: 50%;
}

.text-tittle {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.2rem;
    margin-bottom: 25px;
}

.botton {
    display: inline-block;
    padding: 12px 22px;
    border-radius: 999px;

    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);

    color: #f0f0e7;
    font-size: 14px;
    text-decoration: none;

    backdrop-filter: blur(8px);
    transition: 0.3s;
}

.botton:hover {
    background: rgba(14, 95, 244, 0.2);
    border-color: rgba(14, 95, 244, 0.5);
    box-shadow: 0 0 20px rgba(14, 95, 244, 0.3);
}

.img-header {
    width: 50%;
    position: relative;
    display: flex;
    justify-content: center;
}

.img-header img {
    width: 100%;
    max-width: 880px;
    position: relative;
    z-index: 2;
}

.img-header::after {
    content: "";
    position: absolute;

    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);

    width: 680px;
    height: 360px;

    background: radial-gradient(ellipse,
            rgba(14, 95, 244, 0.48) 0%,
            rgba(14, 95, 244, 0.24) 34%,
            rgba(14, 94, 244, 0.555) 54%,
            rgba(14, 94, 244, 0.63) 76%);

    filter: blur(110px);
    z-index: 1;
    pointer-events: none;
}

/* NUEVO */


/* INICIO DE EXP */
.exp-items {
    position: relative;
    padding: 120px 40px;
    background: #0f161c;
    overflow: hidden;
}

.exp-items::before {
    content: "";
    position: absolute;
    top: 40%;
    left: -18vw;
    transform: translateY(-50%);

    width: 520px;
    height: 520px;

    background: radial-gradient(circle,
            rgba(14, 95, 244, 0.45) 0%,
            rgba(14, 95, 244, 0.18) 38%,
            rgba(14, 94, 244, 0.63) 72%);

    filter: blur(120px);
    z-index: 1;
    pointer-events: none;
}

.exp-items .exp-title {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--claro);
    font-size: 2.8rem;
    margin-bottom: 60px;
    line-height: 1.1;
}

.exp-items .exp-grid {
    position: relative;
    z-index: 2;
    max-width: 1300px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* + adelante */
.span-num.plus::before {
    content: "+";
    margin-right: 4px;
}

/* AÑOS después */
.span-num.años::after {
    content: " AÑOS";
    margin-left: 6px;

    font-size: inherit;
    font-weight: inherit;
    font-family: inherit;
    letter-spacing: inherit;
}

.exp-items .items-1 {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border-radius: 28px;
    padding: 40px 30px;
    text-align: center;

    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.exp-items .items-1:hover {
    border-color: var(--cuarto);
    box-shadow: 0 18px 45px rgba(8, 28, 78, 0.28);
}

.exp-items .span-num {
    display: block;
    font-size: 4.2rem;
    font-weight: 700;
    line-height: 1;
    color: var(--claro);
    margin-bottom: 16px;
}

.exp-items .items-1 p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1rem;
    line-height: 1.5;
}

/* INICIO CANDE */
.candela {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 70px;

    max-width: 1280px;
    margin: 0 auto;
    padding: 120px 40px;

    background: transparent;
    overflow: visible;
}

.candela::before {
    content: "";
    position: absolute;
    top: 50%;
    right: -18vw;
    transform: translateY(-50%);

    width: 520px;
    height: 520px;

    background: radial-gradient(circle,
            rgba(14, 95, 244, 0.45) 0%,
            rgba(14, 94, 244, 0.541) 38%,
            rgba(14, 94, 244, 0.521) 72%);

    filter: blur(120px);
    z-index: 1;
    pointer-events: none;
}

.candela .cande-img,
.candela .cande-text {
    position: relative;
    z-index: 2;
}

.candela .cande-img {
    flex: 0 0 55%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.candela .cande-img img {
    width: 100%;
    max-width: 650px;
    transform: scale(1.1);
    display: block;
    position: relative;
    z-index: 2;

    animation: candeFloat 5s ease-in-out infinite;
    filter: drop-shadow(0 28px 55px rgba(0, 0, 0, 0.35));
}

@keyframes candeFloat {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-14px);
    }

    100% {
        transform: translateY(0);
    }
}

.candela .cande-img::after {
    content: "";
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);

    width: 420px;
    height: 260px;

    background: radial-gradient(ellipse,
            rgba(14, 95, 244, 0.45) 0%,
            rgba(14, 94, 244, 0.507) 38%,
            rgba(14, 94, 244, 0.377) 72%);

    filter: blur(90px);
    z-index: 1;
}

.candela .cande-text {
    flex: 0 0 42%;
    max-width: 620px;
}

.candela .cande-title {
    color: var(--claro);
    font-size: 2.8rem;
    line-height: 1.1;
    margin-bottom: 24px;
}

.candela .cande-description {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 32px;
}

.candela .cande-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.candela .cande-item {
    display: flex;
    align-items: center;
    gap: 16px;

    padding: 14px 18px;
    border-radius: 16px;

    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.10);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.candela .cande-item:hover {
    transform: translateY(-4px);
    border-color: rgba(14, 95, 244, 0.35);
    box-shadow: 0 14px 35px rgba(8, 28, 78, 0.24);
}

.candela .cande-icon {
    position: relative;
    width: 54px;
    height: 54px;
    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 16px;
    background: rgba(14, 95, 244, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.candela .cande-icon::before {
    content: "";
    position: absolute;
    inset: -10px;

    background: radial-gradient(circle,
            rgba(14, 95, 244, 0.38) 0%,
            rgba(14, 95, 244, 0.10) 45%,
            rgba(14, 95, 244, 0) 75%);

    filter: blur(22px);
    z-index: 1;
    pointer-events: none;
}

.candela .cande-icon i {
    position: relative;
    z-index: 2;
    color: #f0f0e7;
    font-size: 1.2rem;
    text-shadow: 0 4px 12px rgb(14, 94, 244);
}

.candela .cande-item p {
    margin: 0;
    color: var(--claro);
    font-size: 0.92rem;
    line-height: 1.5;
}

/* FIN - Sobre mí */

/* INICIO - COMPAÑIAS */

.companias-2 {
    position: relative;
    padding: 40px 40px;
    background: #0f161c;
    overflow: hidden;
}

.companias-2::before {
    content: "";
    position: absolute;
    top: 40%;
    left: -18vw;
    transform: translateY(-50%);

    width: 520px;
    height: 520px;

    background: radial-gradient(circle,
            rgba(14, 95, 244, 0.42) 0%,
            rgba(14, 95, 244, 0.16) 38%,
            rgba(14, 95, 244, 0) 72%);

    filter: blur(120px);
    z-index: 1;
    pointer-events: none;
}

.companias-2 .companias-header {
    position: relative;
    z-index: 2;
    max-width: 1300px;
    margin: 0 auto 70px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
}

.companias-2 .companias-header span {
    flex: 1;
    max-width: 360px;
    height: 1px;
    background: rgba(255, 255, 255, 0.28);
}

.companias-2 .companias-header h2 {
    margin: 0;
    color: var(--claro);
    font-size: 2.3rem;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 1px;
    line-height: 1.2;
}

.companias-2 .companias-grid {
    position: relative;
    z-index: 2;
    max-width: 1300px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 34px 44px;
    align-items: stretch;
}

.companias-2 .logo-card {
    min-height: 210px;
    padding: 26px 24px 20px;
    border-radius: 28px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;

    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);


}

.companias-2 .logo-card:active {
    transform: translateY(-2px) scale(0.99);
}

.companias-2 .logo-card img {
    max-width: 100%;
    max-height: 105px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: brightness(1);
    transition: transform 0.3s ease;
}

.companias-2 .logo-link {
    width: 100%;
    height: 110px;
    min-height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.logo-link img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-width: 160px;
    max-height: 80px;
    transition: none;
    cursor: pointer;
    transform: scale(var(--logo-scale, 1));
}

.logo-card:nth-child(1) {
    --logo-scale: 1.2;
}

.logo-card:nth-child(2) {
    --logo-scale: 1.2;
}

.logo-card:nth-child(3) {
    --logo-scale: 0.7;
}

.logo-card:nth-child(4) {
    --logo-scale: 1.2;
}

.logo-card:nth-child(5) {
    --logo-scale: 0.6;
}

.logo-card:nth-child(6) {
    --logo-scale: 1.6;
}

.logo-card:nth-child(7) {
    --logo-scale: 0.8;
}

.logo-card:nth-child(8) {
    --logo-scale: 1.3;
}

.logo-card:nth-child(9) {
    --logo-scale: 0.6;
}

.logo-rubro {
    margin: 0;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 6px 14px;
    border-radius: 999px;

    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.5px;

    color: rgba(255, 255, 255, 0.85);

    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);

    /* backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px); */

    transition: none;
    cursor: pointer;

    text-align: center;
}

.logo-card:hover {
    background: rgba(14, 95, 244, 0.15);
    border-color: rgba(14, 95, 244, 0.4);
    box-shadow: 0 0 12px rgba(14, 95, 244, 0.2);

    border: 1px solid var(--cuarto);
    transition: all 0.3s ease;
}

.logo-btn:hover {
    background: rgba(14, 95, 244, 0.2);
    border-color: rgba(14, 95, 244, 0.5);
    box-shadow: 0 0 15px rgba(14, 95, 244, 0.3);
}

/* FIN - COMPAÑIAS */

/* INICIO - LOGOS 2 */
.compañias-2 {
    background-color: var(--claro);
    padding: 40px 0;
}

.compañias-2 h2 {
    margin: 0 auto 28px;
    max-width: 1200px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;

    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-family: var(--font-principal);
    color: var(--principal);
    white-space: nowrap;
}

.compañias-2 h2::before,
.compañias-2 h2::after {
    content: "";
    height: 1px;
    background: var(--principal);
    flex: 1 1 auto;
    max-width: 420px;
}

.logo1 {
    flex: 0 0 auto;
    width: 180px;
    margin: 0 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo1:hover {
    transform: scale(1.05);
    transition: .3s;

}

.content-1 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    padding: 30px 0;
}

.content-2 {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 20px;
    padding: 30px 0;
}

.content-3 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    padding: 30px 0;
}

/* FIN - LOGOS 2 */


/* INICIO - SERVICIOS */
.servicios {
    position: relative;
    padding: 120px 40px;
    background: #0f161c;
    overflow: hidden;
}

/* Glow lateral */
.servicios::after {
    content: "";
    position: absolute;
    top: 0;
    right: -250px;
    width: 700px;
    height: 100%;
    background: radial-gradient(circle, #0e5ff4 0%, transparent 70%);
    filter: blur(120px);
    opacity: 0.6;
}

/* CONTENEDOR */
.servicios .container {
    max-width: 1400px;
    margin: auto;
    position: relative;
    z-index: 2;
}

/* TITULO */
.servicios .titulo {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 80px;
    color: var(--claro);
}

/* GRID DESKTOP */
.servicios .grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* CARD */
.servicios .card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 35px;
    text-align: center;
    /* backdrop-filter: blur(12px); */
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);

    overflow: hidden;
    isolation: isolate;
}

.servicios .card:hover {
    /* transform: translateY(-10px) scale(1.03);
    box-shadow: 0 15px 50px rgba(14, 95, 244, 0.25);*/
    border-color: rgba(14, 95, 244, 0.5);
}

/* ICONO */
.servicios .icono {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card:nth-child(2) {
    --img-scale: 1;
}

.servicios .icono::before {
    content: "";
    position: absolute;
    inset: -30px;
    background: radial-gradient(circle, rgba(14, 95, 244, 0.55) 0%, rgba(14, 95, 244, 0.18) 45%, rgba(14, 95, 244, 0) 75%);
    filter: blur(28px);
    z-index: 1;
    pointer-events: none;
}

.servicios .icono img {
    position: relative;
    z-index: 2;
    width: 120px;
    height: 120px;
    object-fit: contain;
}

/* TEXTO */
.servicios .card h3 {
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.5;
    color: var(--claro);
    margin-bottom: 10px;
}

.servicios .btn-card {
    position: relative;
    z-index: 2;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    margin-top: 18px;
    padding: 10px 18px;

    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);

    background: rgba(255, 255, 255, 0.08);
    color: var(--claro);

    font-size: 0.85rem;
    font-weight: 500;

    cursor: pointer;

    /* backdrop-filter: none;
    -webkit-backdrop-filter: none; */

    transition:
        background-color 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s ease;
}

.btn-card:hover {
    border-color: var(--cuarto);
}

.card .icono img {
    transform: scale(var(--img-scale, 1));
    transition: transform 0.3s ease;
}

/* MODIFICAR A MANO LAS CARDS */
.card:nth-child(1) {
    --img-scale: 1;
}

.card:nth-child(2) {
    --img-scale: 1.5;
}

.card:nth-child(3) {
    --img-scale: 1;
}

.card:nth-child(4) {
    --img-scale: 1;
}

.card:nth-child(5) {
    --img-scale: 1;
}

.card:nth-child(6) {
    --img-scale: 1;
}

/* OPINIONES */
.opiniones {
    position: relative;
    padding: 120px 40px;
    background: #0f161c;
    overflow: hidden;
    padding-bottom: 110px;
}

.opiniones::after {
    content: "";
    position: absolute;
    top: 50%;
    left: -180px;
    transform: translateY(-50%);
    width: 520px;
    height: 520px;
    background: radial-gradient(circle,
            rgba(0, 89, 255, 0.726) 0%,
            rgba(14, 94, 244, 0.527) 35%,
            rgba(14, 95, 244, 0) 72%);
    filter: blur(110px);
    pointer-events: none;
}

/* .opiniones::after {
    display: none;
} */

.opiniones .container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: auto;
}

.opiniones .titulo {
    margin-bottom: 70px;
    text-align: center;
    color: var(--claro);
    font-size: 3rem;
    line-height: 1.1;
}

.opiniones-slider {
    position: relative;
    display: flex;
    align-items: center;
}

.opiniones-track-wrapper {
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    cursor: grab;
}

.opiniones-track {
    display: flex;
    gap: 24px;
    transition: transform 0.45s ease;
    will-change: transform;
}

.opiniones-track-wrapper.dragging {
    cursor: grabbing;
}

.opiniones-track-wrapper.dragging .opiniones-track {
    transition: none !important;
}

.opiniones-track {
    user-select: none;
}

.opinion-card {
    user-select: none;
}

.opinion-card {
    flex: 0 0 calc(33.333% - 16px);
    min-height: 320px;
    padding: 30px;
    border-radius: 28px;

    background: rgba(29, 38, 46, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.10);

    /* backdrop-filter: none;
    -webkit-backdrop-filter: none; */

    overflow: hidden;
    isolation: isolate;

    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease;

    cursor: pointer;
    user-select: none;
}

.opinion-card:hover {
    border-color: var(--cuarto);
    box-shadow: 0 18px 45px rgba(8, 28, 78, 0.28);
}

.opinion-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 22px;
}

.opinion-foto {
    position: relative;
    flex-shrink: 0;
    width: 82px;
    height: 82px;
    border-radius: 50%;
}

.opinion-foto::before {
    content: "";
    position: absolute;
    inset: -14px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(14, 95, 244, 0.42) 0%, rgba(14, 95, 244, 0.14) 45%, rgba(14, 95, 244, 0) 72%);
    filter: blur(24px);
    pointer-events: none;
}

.opinion-foto img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.opinion-info h3 {
    color: var(--claro);
    font-size: 1.18rem;
    font-weight: 600;
    line-height: 1.2;
}

.opinion-info .review-role {
    display: block;

    margin: 4px 0 10px;

    color: rgba(255, 255, 255, .55);

    font-size: .85rem;
    font-weight: 500;
    letter-spacing: .02em;
}

.estrellas {
    display: flex;
    gap: 6px;
    color: #ffd15c;
    font-size: 0.95rem;
}

.opinion-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1rem;
    line-height: 1.7;
}

.slider-btn {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
    color: var(--claro);
    cursor: pointer;
    /* backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px); */
    transition: all 0.3s ease;
    z-index: 3;
}

.slider-btn:hover {
    background: rgba(14, 95, 244, 0.16);
    border-color: rgba(14, 95, 244, 0.45);
    box-shadow: 0 0 24px rgba(14, 95, 244, 0.2);
}

.slider-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 35px;
}

.slider-dots button {
    width: 12px;
    height: 12px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.28);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dots button.active {
    width: 34px;
    border-radius: 999px;
    background: #0e5ff4;
    box-shadow: 0 0 18px rgba(14, 95, 244, 0.35);
}

/* INICIO - CONTACTO */

.contact {
    position: relative;
    padding: 105px 40px 115px;
    background: #0f161c;
    overflow: hidden;
    isolation: isolate;
    padding-top: 105px;
}

.contact .contact-container {
    position: relative;
    z-index: 2;
}

.contact::before {
    content: "";
    position: absolute;
    top: 52%;
    right: -260px;
    transform: translateY(-50%);

    width: 650px;
    height: 650px;

    background: radial-gradient(circle,
            rgba(14, 95, 244, 0.48) 0%,
            rgba(14, 95, 244, 0.20) 38%,
            rgba(14, 95, 244, 0) 72%);

    filter: blur(95px);
    opacity: 0.65;

    z-index: 0;
    pointer-events: none;
}

.contact .contact-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.contact .contact-card {
    position: relative;
    padding: 40px 34px;
    border-radius: 28px;

    background: rgba(29, 38, 46, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.10);

    /* backdrop-filter: none;
    -webkit-backdrop-filter: none; */

    overflow: hidden;
    isolation: isolate;

    text-align: center;

    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact .contact-card::before {
    content: "";
    position: absolute;
    inset: auto auto -80px -80px;
    width: 220px;
    height: 220px;

    background: radial-gradient(circle,
            rgba(14, 95, 244, 0.22) 0%,
            rgba(14, 95, 244, 0.08) 45%,
            rgba(14, 95, 244, 0) 75%);

    filter: blur(60px);
    pointer-events: none;
}

.contact .contact-card:hover {
    transform: translateY(-6px);
    border-color: rgba(14, 95, 244, 0.34);
    box-shadow: 0 18px 40px rgba(8, 28, 78, 0.24);
}

.contact .contact-card h2 {
    position: relative;
    z-index: 2;
    margin: 0 0 22px;
    color: var(--claro);
    font-size: 2rem;
    line-height: 1.1;
}

.contact .contact-card a {
    position: relative;
    z-index: 2;
    display: inline-block;
    color: var(--claro);
    text-decoration: none;
    font-size: 1.15rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact .contact-card a:hover {
    color: #0e5ff4;
}

.contact .contact-card p {
    position: relative;
    z-index: 2;
    margin: 16px 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1rem;
    line-height: 1.6;
}

.contact .contact-socials {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 10px;
    justify-content: center;
}

.contact .contact-socials a {
    width: 58px;
    height: 58px;
    border-radius: 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);

    color: var(--claro);
    font-size: 1.35rem;
    text-decoration: none;

    /* backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px); */

    transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
}

.contact .contact-socials a:hover {
    transform: translateY(-4px) scale(1.05);
    background: rgba(14, 95, 244, 0.18);
    border-color: rgba(14, 95, 244, 0.45);
    box-shadow: 0 0 18px rgba(14, 95, 244, 0.28);
    color: #f0f0e7;
}

/* FIN - CONTACTO */

/**FOOTER**/
.footer {
    position: relative;
    padding: 90px 40px 30px;
    overflow: hidden;
    background: transparent;
}

/* capa de cierre */
.footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(5, 40, 104, 0) 0%,
            rgba(5, 40, 104, 0.45) 30%,
            rgba(5, 40, 104, 0.75) 60%,
            rgba(5, 40, 104, 0.96) 100%);
    pointer-events: none;
    z-index: 1;
}

/* glow sutil final */
.footer::after {
    content: "";
    position: absolute;
    bottom: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 720px;
    height: 320px;
    background: radial-gradient(ellipse,
            rgba(14, 95, 244, 0.24) 0%,
            rgba(14, 95, 244, 0.08) 45%,
            rgba(14, 95, 244, 0) 72%);
    filter: blur(100px);
    pointer-events: none;
    z-index: 1;
}

.footer-top,
.footer-bottom {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-top {
    text-align: center;
    padding-bottom: 45px;
    margin-bottom: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top h3 {
    margin: 0 0 16px;
    color: var(--claro);
    font-size: 2rem;
    line-height: 1.1;
}

.footer-top p {
    max-width: 620px;
    margin: 0 auto 24px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1rem;
    line-height: 1.7;
}

.footer-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
    border-radius: 999px;
    text-decoration: none;
    color: var(--claro);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    /* backdrop-filter: blur(8px); */
    transition: all 0.3s ease;
}

.footer-btn:hover {
    background: rgba(14, 95, 244, 0.18);
    border-color: rgba(14, 95, 244, 0.45);
    box-shadow: 0 0 18px rgba(14, 95, 244, 0.25);
    transform: translateY(-2px);
}

.footer-bottom {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.95rem;
}

/* Agrandá y unificá los glows laterales */
.exp-items::before,
.candela::before,
.companias-2::before,
.servicios::after,
.opiniones::after,
.contact::before {
    width: clamp(420px, 42vw, 700px);
    height: clamp(420px, 42vw, 700px);
    filter: blur(100px);
    opacity: 0.58;
    pointer-events: none;
}

.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;

    width: 64px;
    height: 64px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #25D366;
    color: var(--claro);

    font-size: 28px;
    text-decoration: none;

    z-index: 99999;

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);

    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* hover */
.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 25px rgba(37, 211, 102, 0.6);
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    }

    70% {
        box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-btn {
    animation: whatsappPulse 2s infinite;
}

.whatsapp-btn::after {
    content: "";
    position: absolute;
    inset: -10px;
    border-radius: 50%;

    background: radial-gradient(circle,
            rgba(14, 94, 244, 0.753),
            transparent 70%);

    filter: blur(20px);
    z-index: -1;
}

/* contenido quede arriba */
.planes-container,
.planes-tabla-container,
.forma-trabajo-container,
.cta-lugares-container,
.contact-container,
.footer-top,
.footer-bottom {
    position: relative;
    z-index: 2;
}

/* NUEVO PARA HERO PARA LA PARTE DE LA DERECHA*/

/* Contenedor del lado derecho */
.hero-right-scene {
    position: relative;
    width: 500px;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Espacio con perspectiva 3D */
.scene-3d {
    position: relative;
    width: 100%;
    height: 100%;
    perspective: 1000px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Posicionamiento milimétrico de las dos capas de la mano */
.hand-layer {
    position: absolute;
    width: 90%;
    height: auto;
    bottom: 10%;
    /* Ajusta para que calce bien abajo a la derecha */
    right: 0;
    pointer-events: none;
    /* Deja pasar los clicks a los iconos */
}

/* Capas en el orden del sándwich visual */
.hand-back {
    z-index: 1;
    filter: drop-shadow(0 0 30px rgba(0, 110, 255, 0.25));
}

.hand-front {
    z-index: 3;
    /* Queda por encima de los iconos en el eje visual estándar */
}

/* Contenedor de la órbita (Intermedio en el sándwich) */
.orbit-wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
    transform-style: preserve-3d;
    /* Inclinación perfecta de la elipse orbital */
    transform: rotateX(70deg) rotateY(-20deg);
}

/* Hilos de rotación */
.icon-orbit {
    position: absolute;
    top: 45%;
    /* Centro focal de la mano */
    left: 50%;
    width: 0;
    height: 0;
    transform-style: preserve-3d;
    animation: orbitRotation 10s linear infinite;
    animation-delay: var(--delay);
}

/* Tarjeta contenedora de los iconos (Estilo vidrio azul como tu web) */
.icon-card {
    position: absolute;

    width: 90px;
    height: 90px;

    left: -45px;
    top: -45px;

    font-size: 34px;

    /* Mantenemos tu súper difuminado intenso y tus estilos visuales */
    background: rgba(13, 38, 77, 0.45);
    /* backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px); */
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 18px;
    /* Un poco más de curvatura para el nuevo tamaño */
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    box-shadow: 0 0 25px rgb(0, 119, 255);

    animation: counterRotation 10s linear infinite;
    animation-delay: var(--delay);
}

/* --- ANIMACIONES --- */
@keyframes orbitRotation {
    from {
        transform: rotateZ(0deg) translateX(190px);
    }

    to {
        transform: rotateZ(360deg) translateX(190px);
    }
}

@keyframes counterRotation {
    from {
        transform: rotateX(-70deg) rotateY(20deg) rotateZ(0deg);
    }

    to {
        transform: rotateX(-70deg) rotateY(20deg) rotateZ(-360deg);
    }
}

/* =========================
   SCROLL REVEAL - INDEX
========================= */

.reveal {
    opacity: 0;
    transform: translate3d(0, 38px, 0);
    transition:
        opacity 0.75s ease,
        transform 0.75s ease;
    will-change: opacity, transform;
}

.reveal.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.reveal-left {
    transform: translate3d(-32px, 0, 0);
}

.reveal-right {
    transform: translate3d(32px, 0, 0);
}

.reveal-scale {
    transform: scale(0.96);
}

.reveal-left.is-visible,
.reveal-right.is-visible,
.reveal-scale.is-visible {
    transform: translate3d(0, 0, 0) scale(1);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

/* En mobile hacemos el efecto más corto para que no rompa */
@media (max-width: 768px) {
    .reveal {
        opacity: 0;
        transform: translateY(24px);
        transition: opacity .65s ease, transform .65s ease;
    }

    .reveal.is-visible {
        opacity: 1;
        transform: translateY(0);
    }

    .reveal-left,
    .reveal-right {
        transform: translateY(24px);
    }

    .reveal-left.is-visible,
    .reveal-right.is-visible {
        transform: translateY(0);
    }
}


/* --- AJUSTES EXCLUSIVOS PARA DISPOSITIVOS MÓVILES --- */
@media (max-width: 768px) {

    /* Achicamos el contenedor para eliminar el espacio vacío */
    .hero-right-scene {
        width: 100%;
        /* Ocupa el ancho disponible del celular */
        height: 320px;
        /* Reducimos la altura para que suba la animación */
        margin-top: -20px;
        /* Desplaza la animación hacia arriba, pegándose al botón */
    }

    /* Centramos el punto focal de la órbita en pantallas chicas */
    .icon-orbit {
        top: 50%;
        left: 50%;
    }

    /* Ajustamos el tamaño de los iconos en móvil para que no se vean gigantes */
    .icon-card {
        width: 65px;
        height: 65px;
        left: -32.5px;
        /* Sigue siendo la mitad exacta del ancho */
        top: -32.5px;
        /* Sigue siendo la mitad exacta del alto */
        font-size: 24px;
        border-radius: 14px;
    }

    /* --- NUEVAS ANIMACIONES PARA MÓVIL (Órbita más compacta) --- */
    @keyframes orbitRotation {
        from {
            /* Reducimos el radio de 190px a 120px para que quepa perfecto en el ancho del celular */
            transform: rotateZ(0deg) translateX(120px);
        }

        to {
            transform: rotateZ(360deg) translateX(120px);
        }
    }

    @keyframes counterRotation {
        from {
            /* Mantenemos la corrección de perspectiva adaptada al ángulo del celular */
            transform: rotateX(-70deg) rotateY(20deg) rotateZ(0deg);
        }

        to {
            transform: rotateX(-70deg) rotateY(20deg) rotateZ(-360deg);
        }
    }
}

/* HERO DIVIDER */

.hero-divider {
    position: relative;
    height: 320px;
    margin-top: -180px;
    margin-bottom: -80px;
    background: transparent !important;
    overflow: visible !important;
    isolation: isolate;
    z-index: 5;
    pointer-events: none;
}

.hero-divider::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at left center,
            rgba(4, 54, 146, 0.95) 0%,
            rgba(8, 57, 148, 0.65) 18%,
            rgba(14, 95, 244, 0.22) 34%,
            transparent 58%),
        radial-gradient(ellipse at right center,
            rgba(0, 89, 255, 0.95) 0%,
            rgba(14, 95, 244, 0.65) 18%,
            rgba(14, 95, 244, 0.22) 34%,
            transparent 58%),
        linear-gradient(to bottom,
            transparent 0%,
            rgba(15, 22, 28, 0.35) 45%,
            transparent 100%);
    filter: blur(36px);
    transform: scale(1.15);
    pointer-events: none;
}

.hero-divider::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 70%;
    height: 36px;
    transform: translate(-50%, -50%);
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(14, 95, 244, 0.25) 18%,
            rgba(145, 205, 255, 0.55) 50%,
            rgba(14, 95, 244, 0.25) 82%,
            transparent 100%);
    filter: blur(26px);
    opacity: 0.75;
    pointer-events: none;
}



/* ========================= */
/* BREAKPOINTS */
/* ========================= */

@media (max-width: 1280px) {
    .text-header-1 img {
        width: 100%;
        max-width: 480px;
    }

    .servicios .container {
        max-width: 1100px;
    }

    .opiniones .container {
        max-width: 1140px;
    }

    .opinion-card {
        flex: 0 0 calc(50% - 12px);
    }

    .tittle-header {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .text-header,
    .img-header {
        width: 100%;
    }

    .exp-items .exp-grid {
        max-width: 1100px;
        gap: 24px;
    }

    .exp-items .span-num {
        font-size: 3.8rem;
    }

    .candela .cande-title {
        font-size: 2.5rem;
    }

    .companias-2 .companias-header h2 {
        font-size: 2.1rem;
    }

    .companias-2 .companias-grid {
        gap: 28px;
    }

    .companias-2 .logo-card {
        min-height: 195px;
    }

}

@media (max-width: 1024px) {
    .servicios .grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .servicios .titulo {
        font-size: 2.5rem;
    }

    .opiniones {
        padding: 100px 32px;
    }

    .opiniones .titulo {
        font-size: 2.6rem;
        margin-bottom: 55px;
    }

    .exp-items {
        padding: 100px 32px;
    }

    .exp-items .exp-title {
        font-size: 2.5rem;
        margin-bottom: 50px;
    }

    .exp-items .exp-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .exp-items .items-1 {
        padding: 34px 22px;
    }

    .exp-items .span-num {
        font-size: 3.2rem;
    }

    .candela {
        gap: 40px;
        padding: 100px 32px;
    }

    .candela .cande-img {
        flex: 0 0 44%;
    }

    .candela .cande-text {
        flex: 0 0 48%;
        max-width: 560px;
    }

    .candela .cande-img img {
        max-width: 470px;
    }

    .candela .cande-title {
        font-size: 2.3rem;
    }

    .companias-2 {
        padding: 100px 32px;
    }

    .companias-2 .companias-header {
        margin-bottom: 55px;
    }

    .companias-2 .companias-header h2 {
        font-size: 1.9rem;
    }

    .companias-2 .companias-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 22px;
    }

    .companias-2 .logo-card {
        min-height: 185px;
        padding: 22px 18px 18px;
    }

    .companias-2 .logo-link img {
        max-height: 78px;
    }

    .companias-2 .logo-rubro {
        font-size: 0.9rem;
    }

    .contact {
        padding: 100px 32px;
    }

    .contact .contact-card h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .text-header-1 img {
        width: 100%;
        max-width: 380px;
    }

    .servicios {
        padding: 80px 25px;
    }

    .servicios .card {
        padding: 25px;
    }

    .opiniones {
        padding: 80px 24px;
    }

    .opiniones-slider {
        gap: 14px;
    }

    .opinion-card {
        flex: 0 0 100%;
        min-height: auto;
        padding: 26px 56px;
    }

    .opiniones .titulo {
        font-size: 2.2rem;
    }

    .slider-btn {
        width: 46px;
        height: 46px;
        top: 170px;
        transform: none;
    }

    .menu label {
        display: block;
    }

    .menu .navbar {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;

        background: rgba(5, 40, 104, 0.95);
        backdrop-filter: blur(12px);

        display: none;
    }

    .menu .navbar ul li {
        width: 100%;
        text-align: center;
    }

    #menu:checked~.navbar {
        display: block;
    }

    .exp-items {
        padding: 80px 24px;
    }

    .exp-items .exp-title {
        font-size: 2.2rem;
        margin-bottom: 40px;
    }

    .exp-items .exp-grid {
        grid-template-columns: 1fr;
        max-width: 520px;
    }

    .exp-items .items-1 {
        padding: 30px 24px;
    }

    .exp-items .span-num {
        font-size: 3.2rem;
    }

    .candela {
        flex-direction: column;
        text-align: center;
        gap: 34px;
        padding: 80px 24px;
    }

    .candela .cande-img,
    .candela .cande-text {
        flex: none;
        width: 100%;
        max-width: 100%;
    }

    .candela .cande-img {
        order: 1;
    }

    .candela .cande-text {
        order: 2;
    }

    .candela .cande-img img {
        max-width: 360px;

    }

    .candela .cande-title {
        font-size: 2.2rem;
        margin-bottom: 18px;
    }

    .candela .cande-description {
        margin-bottom: 28px;
    }

    .candela .cande-item {
        text-align: left;
    }

    .companias-2 {
        padding: 80px 24px;
    }

    .companias-2 .companias-header {
        gap: 14px;
        margin-bottom: 38px;
    }

    .companias-2 .companias-header h2 {
        font-size: 1.5rem;
    }

    .companias-2 .companias-header span {
        max-width: 120px;
    }

    .companias-2 .companias-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .companias-2 .logo-card {
        min-height: 170px;
        border-radius: 24px;
        padding: 20px 16px 16px;
    }

    .companias-2 .logo-card {
        min-height: 190px;
        padding: 20px 16px 16px;
    }

    .companias-2 .logo-link {
        height: 120px;
        min-height: 120px;
    }

    .companias-2 .logo-link img {
        max-width: 140px;
        max-height: 95px;
    }

    .logo-rubro {
        font-size: 0.75rem;
        padding: 5px 12px;
    }

    .logo-card {
        --mobile-factor: 1;
    }

    .logo-btn {
        display: flex;
    }

    .contact {
        padding: 80px 24px;
    }

    .contact .contact-container {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .contact .contact-card {
        padding: 34px 26px;
    }

    .footer {
        padding: 70px 24px 26px;
    }

    .footer-top {
        padding-bottom: 34px;
        margin-bottom: 22px;
    }

    .footer-top h3 {
        font-size: 1.7rem;
    }

    .footer-top p {
        font-size: 0.95rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
    }

    .footer-bottom p {
        font-size: 0.9rem;
    }

    .whatsapp-btn {
        width: 58px;
        height: 58px;
        font-size: 24px;
        bottom: 100px;
        right: 20px;
    }

    .opiniones-slider {
        position: relative;
    }

    .opiniones-track-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .slider-btn {
        position: absolute;
        top: 42%;
        transform: translateY(-50%);
        width: 42px;
        height: 42px;
        z-index: 4;
    }

    .slider-btn.prev {
        left: 12px;
    }

    .slider-btn.next {
        right: 12px;
    }

    .companias-2 {
        padding: 70px 20px;
    }

    .companias-2 .companias-header h2 {
        font-size: 1.35rem;
    }

    .companias-2 .companias-header span {
        max-width: 70px;
    }

    .companias-2 .companias-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .companias-2 .logo-card {
        min-height: 155px;
        padding: 18px 14px 14px;
    }

    .companias-2 .logo-link img {
        max-height: 56px;
    }

    .companias-2 .logo-rubro {
        font-size: 0.82rem;
    }

    .logo-card:nth-child(1) {
        --logo-scale: 1.1;
    }

    .logo-card:nth-child(2) {
        --logo-scale: 1;
    }

    .logo-card:nth-child(3) {
        --logo-scale: 1;
    }

    .logo-card:nth-child(4) {
        --logo-scale: 1.3;
    }

    .logo-card:nth-child(5) {
        --logo-scale: 1.1;
    }

    .logo-card:nth-child(6) {
        --logo-scale: 1.4;
    }

    .logo-card:nth-child(7) {
        --logo-scale: 1.2;
    }

    .logo-card:nth-child(8) {
        --logo-scale: 1.3;
    }

    .logo-card:nth-child(9) {
        --logo-scale: 0.8;
    }

}

@media (max-width: 600px) {
    .servicios .grid {
        grid-template-columns: 1fr;
    }

    .servicios .titulo {
        font-size: 2.2rem;
        margin-bottom: 50px;
    }

    .opiniones {
        padding: 70px 20px;
    }

    .opiniones .titulo {
        font-size: 2rem;
        margin-bottom: 42px;
    }

    .opinion-header {
        gap: 14px;
    }

    .opinion-foto {
        width: 72px;
        height: 72px;
    }

    .opinion-info h3 {
        font-size: 1.05rem;
    }

    .opinion-card p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .exp-items {
        padding: 70px 20px;
    }

    .exp-items .exp-title {
        font-size: 2rem;
    }

    .exp-items .span-num {
        font-size: 2.9rem;
    }

    .exp-items .items-1 p {
        font-size: 0.95rem;
    }

    .candela {
        padding: 70px 20px;
    }

    .candela .cande-title {
        font-size: 2rem;
    }

    .candela .cande-description {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .candela .cande-item {
        padding: 16px 18px;
        gap: 14px;
    }

    .candela .cande-icon {
        width: 48px;
        height: 48px;
    }

    .companias-2 {
        padding: 70px 20px;
    }

    .companias-2 .companias-header h2 {
        font-size: 1.35rem;
    }

    .companias-2 .companias-header span {
        max-width: 70px;
    }

    .companias-2 .logo-card {
        min-height: 138px;
    }

    .contact {
        padding: 70px 20px;
    }

    .contact .contact-card {
        border-radius: 24px;
        padding: 30px 22px;
    }

    .contact .contact-card h2 {
        font-size: 1.65rem;
    }

    .contact .contact-card a {
        font-size: 1.02rem;
    }

    .contact .contact-card p {
        font-size: 0.95rem;
    }

    .contact .contact-socials a {
        width: 54px;
        height: 54px;
        border-radius: 16px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .servicios {
        padding: 60px 20px;
    }

    .servicios .titulo {
        font-size: 2rem;
    }

    .servicios .card h3 {
        font-size: 0.95rem;
    }

    .opiniones-slider {
        gap: 10px;
    }

    .slider-btn {
        width: 38px;
        height: 38px;
        top: 40%;
    }

    .slider-btn.prev {
        left: 10px;
    }

    .slider-btn.next {
        right: 10px;
    }

    .opinion-card {
        padding: 22px 48px;
    }

    .opinion-card {
        padding: 22px;
        border-radius: 22px;
    }

    .exp-items .items-1 {
        border-radius: 22px;
        padding: 26px 20px;
    }

    .exp-items .span-num {
        font-size: 2.6rem;
    }

    .candela .cande-img img {
        max-width: 280px;
    }

    .candela .cande-title {
        font-size: 1.9rem;
    }

    .candela .cande-item p {
        font-size: 0.95rem;
    }

    .companias-2 .logo-card {
        min-height: 145px;
    }

    .companias-2 .logo-link {
        height: 120px;
    }

    .companias-2 .logo-card {
        min-height: 180px;
    }

    .companias-2 .logo-link {
        height: 110px;
        min-height: 110px;
    }

    .companias-2 .logo-link img {
        max-width: 130px;
        max-height: 88px;
    }

    .logo-rubro {
        font-size: 0.7rem;
        padding: 4px 10px;
    }

    .logo-card {
        --mobile-factor: 0.76;
    }
}

@media (max-width: 360px) {
    .companias-2 .companias-header h2 {
        font-size: 1.2rem;
    }

    .companias-2 .logo-card {
        min-height: 170px;
    }

    .companias-2 .logo-link {
        height: 100px;
        min-height: 100px;
    }

    .companias-2 .logo-link img {
        max-width: 120px;
        max-height: 80px;
    }

    .companias-2 .logo-rubro {
        font-size: 0.74rem;
    }

    .contact .contact-card h2 {
        font-size: 1.5rem;
    }

    .contact .contact-socials {
        gap: 14px;
    }

    .footer {
        padding: 60px 20px 22px;
    }

    .footer-top h3 {
        font-size: 1.5rem;
    }

    .footer-top p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .footer-btn {
        width: 100%;
        max-width: 260px;
    }

    .whatsapp-btn {
        width: 52px;
        height: 52px;
        font-size: 22px;
        bottom: 18px;
        right: 18px;
    }

    .logo-card {
        --mobile-factor: 0.72;
    }
}

@media (max-width: 360px) {
    .servicios .titulo {
        font-size: 1.8rem;
    }

    .servicios .card {
        padding: 20px;
    }

    .servicios .icono {
        width: 60px;
        height: 60px;
    }

    .opiniones .titulo {
        font-size: 1.8rem;
    }

    .opinion-card {
        padding: 20px;
    }

    .opinion-foto {
        width: 64px;
        height: 64px;
    }

    .estrellas {
        font-size: 0.88rem;
        gap: 4px;
    }

    .exp-items .exp-title {
        font-size: 1.8rem;
    }

    .exp-items .span-num {
        font-size: 2.3rem;
    }

    .exp-items .items-1 p {
        font-size: 0.9rem;
    }

    .candela .cande-title {
        font-size: 1.75rem;
    }

    .candela .cande-item {
        padding: 14px 16px;
    }

    .candela .cande-icon {
        width: 44px;
        height: 44px;
    }

    .candela .cande-icon i {
        font-size: 1rem;
    }

    .companias-2 .companias-header h2 {
        font-size: 1.2rem;
    }

    .companias-2 .logo-card {
        min-height: 122px;
    }

    .companias-2 .logo-card img {
        max-height: 64px;
    }

    .contact .contact-card {
        padding: 26px 18px;
    }

    .contact .contact-card h2 {
        font-size: 1.35rem;
    }

    .contact .contact-card a {
        font-size: 0.96rem;
    }

    .contact .contact-socials a {
        width: 48px;
        height: 48px;
        font-size: 1.05rem;
    }

    .companias-2 .logo-card {
        min-height: 155px;
    }

    .companias-2 .logo-link {
        height: 90px;
        min-height: 90px;
    }

    .companias-2 .logo-link img {
        max-width: 110px;
        max-height: 72px;
    }
}