h1,
h2,
h3,
h4,
h5 {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

p,
span {
    font-family: "Poppins", sans-serif;
    font-style: normal;
}

/* BODY */
body {
    margin: 0;
    font-family: Arial, sans-serif;
}

/*TOP BAR*/
.topbar {
    background-color: #0F172A;
    color: white;
    font-size: 0.9rem;
    position: relative;
    /* asegura que no sea tapada */
    z-index: 10;
}

.topbar-icon {
    font-size: 1.5rem;
}

.topbar-text p {
    line-height: 1.2;
    margin: 0;
}

@media (max-width: 768px) {
    .topbar .container {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
}

/* HEADER */
header {
    font-family: 'Poppins', sans-serif;
    position: sticky;
    top: 0;
    background: white;
    z-index: 20;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.nav-link {
    position: relative;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, #004aad, #6F42C1);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: #004aad !important;
}

.btn-gradient {
    background: linear-gradient(90deg, #004aad, #00c6ff);
    color: #fff;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 30px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 76, 255, 0.3);
}

/* HEADER */

/* CARRUSEL 1*/
.hero-banner {
    background: linear-gradient(135deg, #0b1120 0%, #202b46 100%);
    color: var(--text-white);
    position: relative;
    overflow: hidden;
    padding: 4rem 0;
    min-height: 600px;
    display: flex;
    align-content: center;
}

.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.shape-1 {
    position: absolute;
    top: -15%;
    left: -5%;
    width: 500px;
    height: 500px;
    border-radius: 100%;
    background: radial-gradient(circle, rgba(78, 84, 200, 0.3) 0%, rgba(78, 84, 200, 0) 70%);
}

.shape-2 {
    position: absolute;
    top: 10%;
    right: -15%;
    width: 600px;
    height: 600px;
    border-radius: 100%;
    background: radial-gradient(circle, rgba(143, 148, 251, 0.25) 0%, rgba(143, 148, 251, 0) 70%);
}

.shape-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.4;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.hero-section {
    overflow: hidden;
    max-width: 1500px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 40px;
    padding-right: 40px;
}

.hero-content {
    position: relative;
    z-index: 2;
    gap: 2rem;
    width: 100%;
}

.hero-text {
    max-width: 500px;
}

.hero-subtitle {
    display: inline-block;
    font-weight: 700;
    font-size: 1rem;
    background: linear-gradient(90deg, #8F94FB, #6F42C1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero-description {
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.hero-image {
    position: relative;
    width: 50%;
    min-width: 320px;
    border-radius: 20px;
    overflow: visible;
}

.hero-image .main-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
    display: block;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.floating-element {
    position: absolute;
    background: white;
    color: #4b0082;
    border-radius: 12px;
    padding: 12px 18px;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    z-index: 3;
    font-weight: 500;
    transition: transform 0.3s ease;
    animation: floatAnimation 4s ease-in-out infinite;
}

.floating-element:hover {
    transform: scale(1.05);
}

@keyframes floatAnimation {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }

    100% {
        transform: translateY(0);
    }
}


.elem-icon i {
    font-size: 1.4rem;
}

.elem-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.elem-text span {
    font-size: 0.9rem;
    color: #4b0082;
}

.elem-text strong {
    font-size: 1rem;
    color: black;
    font-weight: 600;
}

.elem-top-left {
    top: -25px;
    left: -25px;
}

.elem-bottom-right {
    bottom: -25px;
    right: -13px;
}

/* Responsivo */
@media (max-width: 992px) {
    .hero-image {
        width: 100%;
    }

    .floating-element {
        font-size: 0.85rem;
        padding: 10px 14px;
    }

    .elem-top-left {
        top: -20px;
        left: -20px;
    }

    .elem-bottom-right {
        bottom: -20px;
        right: -20px;
    }
}

/* CARRUSEL 1 */

/* CARRUSEL 2*/
.service-banner {
    background: linear-gradient(135deg, #15172b 0%, #2d335d 100%);
    min-height: 600px;
    display: flex;
    align-content: center;
}

.hero-title {
    font-size: 2.4rem;
    line-height: 1.2;
}

.service-description {
    font-size: 1.1rem;
    max-width: 450px;
}

.hero-image {
    position: relative;
    z-index: 2;
}

.hero-image .main-image {
    border-radius: 20px;
    transform: translateY(0);
    transition: transform .4s ease, box-shadow .4s ease;
}

.hero-image:hover .main-image {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(122, 52, 255, 0.25);
}

.image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 85%;
    height: 85%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(164, 75, 255, 0.25) 0%, rgba(255, 255, 255, 0) 70%);
    filter: blur(40px);
    z-index: 1;
}

.text-purple-gradient {
    background: linear-gradient(90deg, #7B2FF7, #9F62FF);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-gradient {
    background: linear-gradient(90deg, #7B2FF7, #9F62FF);
    color: #fff !important;
    padding: 10px 24px;
    border-radius: 50px;
    text-decoration: none;
    transition: 0.3s ease;
}

.btn-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(127, 55, 255, 0.3);
}

.letter-spacing {
    letter-spacing: 2px;
    opacity: 0.8;
    font-size: 0.85rem;
}

/* CARRUSEL 2*/

/* CARRUSEL 3*/
.team-banner {
    background: linear-gradient(135deg, #2c273f 0%, #5a5694 100%);
    position: relative;
    overflow: hidden;
    min-height: 600px;
    align-content: center;
}

/* CARRUSEL 3*/

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

    #heroCarousel,
    #heroCarousel .carousel-inner,
    #heroCarousel .carousel-item {
        min-height: 110vh;
    }

    #heroCarousel .hero-section {
        width: 100%;
    }

    .hero-cta {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 1rem;
        flex-wrap: wrap;
    }
}

/* RESPONSIVE CARRUSEL */

/* BANNER PAGINAS */
.banner-full {
    width: 100%;
    height: 60vh;
    overflow: hidden;
}

.banner-full img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* BANNER PAGINAS */

/*TITULOS*/
.section-header {
    text-align: center;
    padding: 1rem 0;
}

.home h2.section-subtitle {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 10px;
    background: linear-gradient(90deg, #4E54C8, #8F94FB);
    background-clip: text;
    color: transparent;
}

@media (max-width: 768px) {
    .home h2.section-subtitle {
        font-size: 12px;
    }
}

.section-title {
    font-size: 40px;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
}

.section-description {
    font-size: 16px;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

/*TITULOS*/

/*BACKGROUNDS*/
.bg-soft {
    background-color: #F9FAFF;
}

.bg-aboutus {
    background-color: #F3F6FF;
}

.bg-clients {
    background-color: #F5F6FA;
}

/*BACKGROUNDS*/

/* SECCION QUIENES SOMOS*/
.text-box {
    border: 2px solid #6f42c1;
    background-color: white;
    border-radius: 10px;
    line-height: 1.8;
    font-size: 1rem;
    color: #333;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    padding: 30px;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-height: 100%;
    border-radius: 10px;
}

/* SECCION QUIENES SOMOS*/

/* BOTONES GENERALES */
.btn-gradient {
    display: inline-block;
    background: linear-gradient(135deg, #4E54C8, #8F94FB);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(78, 84, 200, 0.3);
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(78, 84, 200, 0.45);
    text-decoration: none;
    color: white;
}

.btn-gradient-outline {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 30px;
    border: 2px solid transparent;
    background: linear-gradient(white, white) padding-box,
        linear-gradient(135deg, #4E54C8, #8F94FB) border-box;
    color: #4E54C8;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-gradient-outline:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(78, 84, 200, 0.35);
}

/* =========================
    FIX ACTIVE / FOCUS MOBILE
========================= */

button,
a,
span,
i {
    -webkit-tap-highlight-color: transparent;
}

/* Evita cambio de color al tocar */
button:focus,
button:active,
a:focus,
a:active {
    outline: none;
    box-shadow: none;
    color: inherit;
}

/* Evita estados raros en spans clickeables */
span:focus,
span:active {
    color: inherit;
}

/* BOTONES GENERALES */

/* CARRUSEL INFINITO */
.btns {
    text-align: center;
    margin-bottom: 40px;
}

.btns button {
    background: none;
    border: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 12px 25px;
    margin: 0 12px;
    cursor: pointer;
    position: relative;
    color: linear-gradient(135deg, #4E54C8, #8F94FB);
    transition: color 0.3s ease, transform 0.2s ease;
}

.btns button:hover {
    color: #004aad;
    transform: translateY(-2px);
}

.btns button::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 0;
    background: linear-gradient(135deg, #4E54C8, #8F94FB);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.btns button.active::after {
    width: 100%;
}

.btns button.active {
    color: #004aad;
}

/* ==== CARRUSEL ==== */
.carousel-container {
    position: relative;
    overflow: hidden;
    width: 90%;
    max-width: 1100px;
    margin: 0 auto 60px;
}

.carousel-track {
    display: flex;
    gap: 20px;
    animation: scrollLoop 30s linear infinite;
}

.carousel-container:hover .carousel-track {
    animation-play-state: paused;
}

@keyframes scrollLoop {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ==== TARJETAS ==== */
.card {
    flex: 0 0 300px;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.card i {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3rem;
    color: #004aad;
    margin-top: 20px;
    margin-bottom: 10px;
}

/* ==== CONTENIDO TARJETA ==== */
.card-body {
    flex: 1;
    padding: 1rem 1.2rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.card-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
    margin-bottom: 1rem;
    word-wrap: break-word;
}

/* ==== BOTÓN TARJETA ==== */
.card .btn-gradient {
    background: linear-gradient(135deg, #4E54C8, #8F94FB);
    color: white;
    padding: 8px 18px;
    border-radius: 25px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.card .btn-gradient:hover {
    background: linear-gradient(135deg, #4E54C8, #8F94FB);
    transform: translateY(-2px);
}

/* ==== GRUPOS ==== */
.grupo {
    display: none;
}

.grupo.activo {
    display: block;
}

/* ==== RESPONSIVE ==== */
@media (max-width: 768px) {
    .carousel-track {
        gap: 15px;
        animation-duration: 40s;
    }

    .card i {
        font-size: 2.2rem;
    }

    .card-title {
        font-size: 0.95rem;
    }

    .card {
        transition: transform 0.3s ease;
    }

    .card:active {
        transform: scale(0.97);
    }
}

@media (max-width: 480px) {
    .carousel-container {
        width: 100%;
    }

    .card {
        flex: 0 0 200px;
    }

    .btns button {
        font-size: 1rem;
        padding: 8px 15px;
    }
}

/* CARRUSEL INFINITO */

/* GRUPOS */
.grupo {
    display: none;
}

.grupo.activo {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

}

.info-sections {
    position: relative;
    overflow: visible;
}

.info-sections h2,
.info-sections h4 {
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    position: relative;
}

.info-sections h2::after,
.info-sections h4::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: #6F42C1;
    margin: 20px auto;
}

.info-item {
    position: relative;
    margin-bottom: 90px;
}

@media (max-width: 768px) {
    .info-item {
        margin-bottom: 40px;
    }
}

.content-img-mobile {
    display: block;
}

@media (min-width: 769px) {
    .content-img-mobile {
        display: none;
    }
}

.img-mobile-servicios img {
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.content-listado {
    position: relative;
    z-index: 2;
}

.content-listado.right {
    padding-left: 60px;
}

.content-listado.left {
    padding-right: 60px;
}

@media (max-width: 768px) {

    .content-listado.right,
    .content-listado.left {
        padding: 25px 20px;
    }
}

.listado-servicios h3 {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 25px;
    font-size: 1.5rem;
}

.listado-servicios p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 18px;
}

.info-sections h4[id] {
    scroll-margin-top: 140px;
    /* ajusta según altura real del header + topbar */
}

.img-listado-right,
.img-listado-left {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45%;
    height: 80%;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 1;
    display: block;
}

.img-listado-right {
    right: 0;
}

.img-listado-left {
    left: 0;
}

.img-listado-right img,
.img-listado-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9);
    transition: transform 0.5s ease;
}

@media (max-width: 768px) {

    .img-listado-right,
    .img-listado-left {
        display: none;
    }
}


.listado-servicios h3 {
    transition: color 0.3s ease;
}

.py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}


@media (max-width: 768px) {

    .text-center h2,
    .text-center h4 {
        font-size: 2rem;
    }
}

/* CARRUSEL INFINITO */

/*POR QUE ELEGIRNOS*/
.contenido-eleccion {
    background-color: #000828;
    border-radius: 8px;
    padding: 50px;
}

.icono-cuadro {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4E54C8, #8F94FB);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    flex-shrink: 0;
}

.icono-cuadro i {
    font-size: 1.8rem;
}

.badge-experiencia {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: linear-gradient(135deg, #0044ff, #00aaff);
    color: white;
    padding: 10px 20px;
    border-radius: 10px;
    text-align: center;
}

.badge-experiencia span {
    font-size: 2rem;
    font-weight: bold;
    display: block;
}

/*POR QUE ELEGIRNOS*/

/*EVIDENCIAS DE EXITO*/
.image-stack {
    position: relative;
    width: fit-content;
}

.image-stack .img-top {
    position: relative;
    z-index: 2;
    width: 580px;
    border-radius: 20px;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.image-stack .img-bottom {
    position: absolute;
    bottom: -35px;
    left: 35px;
    width: 520px;
    border-radius: 20px;
    z-index: 1;
    opacity: 0.9;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.badge-experiencia {
    position: absolute;
    bottom: -20px;
    left: 370px;
    background: #6c63ff;
    color: white;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(108, 99, 255, 0.4);
    z-index: 3;
}

.badge-experiencia span {
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
}

.badge-experiencia p {
    font-size: 12px;
    margin: 0;
    line-height: 1.2;
    text-transform: uppercase;
}

/* Responsive */
@media (max-width: 768px) {
    .image-stack {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .image-stack .img-top,
    .image-stack .img-bottom {
        position: relative;
        width: 100%;
        left: 0;
        bottom: 0;
    }

    .badge-experiencia {
        position: relative;
        bottom: 0;
        left: 0;
        margin-top: 15px;
    }
}

.valores-empresa h5 {
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    margin-bottom: 6px;
}

.valores-empresa p {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    color: white;
    opacity: 0.9;
}

/* MOBILE / RESPONSIVE */
@media (max-width: 767px) {
    .valor-item {
        flex-direction: column !important;
        text-align: center;
        align-items: center !important;
    }

    .valor-item i {
        margin: 0 0 1rem 0 !important;
    }

    .valor-item .texto {
        text-align: center !important;
    }
}

/*EVIDENCIAS DE EXITO*/

/* CASOS DE EXITO */
.testimonial-card {
    border: 1px solid #7B2CBF;
    border-radius: 15px;
    overflow: hidden;
    color: white;
    position: relative;
}

.testimonial-header {
    position: relative;
    height: 200px;
}

.testimonial-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5);
}

.testimonial-logo {
    max-height: 60px;
    object-fit: contain;
}

.testimonial-content {
    position: relative;
    background-color: #f5f5f5;
    color: #333;
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 1.5rem;
    margin: -30px 20px 20px 20px;
    z-index: 2;
}

.testimonial-content blockquote {
    background: #f4f7fc;
    border-left: 12px solid #4b57d1;
    padding: 22px 25px;
    border-radius: 12px;
    font-style: italic;
    color: #4b57d1;
    line-height: 1.6;
    font-family: "Poppins", sans-serif;
    font-style: normal;
}

.success-card {
    border: none;
    border-radius: 12px;
    background: #111827;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    overflow: hidden;
}

.success-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.client-logos-box {
    background-color: white;
    border: 2px solid #7B2CBF;
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    box-shadow: 0 4px 12px rgba(123, 44, 191, 0.15);
}

.success-card:hover .client-logo {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.case-content {
    padding: 2rem;
}

.case-description {
    font-size: 1.05rem;
    color: #495057;
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

/* CASOS DE EXITO*/

/*CLIENTES*/
.client-card {
    border: none;
    border-radius: 10px;
    padding: 1.5rem;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: none;
}


.client-logo {
    max-width: 100%;
    height: 70px;
    object-fit: contain;
    transition: all 0.3s ease;
}

/* Responsivo */
@media (max-width: 768px) {
    .client-card {
        height: 100px;
    }

    .client-logo {
        height: 50px;
    }
}

/*CLIENTES*/

/* CONTENIDO PRINCIPAL */
.container,
.container-fluid {
    border-radius: 8px;
    padding: 20px;
    box-shadow: none;
}

/* COLOR DE FONDO NUESTRA EXPERIENCIA EN LA INDUSTRIA*/

/*TALENTO*/
.valores-empresa {
    width: 100%;
    background: #000828;
    color: white;
}

.valores-empresa .valor-item {
    padding: 20px;
    transition: transform 0.3s ease;
    text-align: left;
}

.valores-empresa .valor-item:hover {
    transform: translateY(-5px);
}

.icon-solidaridad {
    color: #ff6b6b;
}

.icon-respeto {
    color: #4ecdc4;
}

.icon-inclusion {
    color: #feca57;
}

.icon-pasion {
    color: #1dd1a1;
}

.values-section {
    background-color: #f8f9fc;
    color: #1a1a1a;
}

.values-section .section-title {
    font-weight: 700;
    font-size: 2.2rem;
    color: #000828;
}

.values-section .section-subtitle {
    font-weight: 500;
    color: #0057b7;
}

.value-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
}

.icon-wrapper {
    background: linear-gradient(135deg, #0057b7, #00a8e8);
    color: #fff;
    width: 60px;
    height: 60px;
    margin: 0 auto;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

/* Responsivo */
@media (max-width: 767px) {
    .values-section .section-title {
        font-size: 1.8rem;
    }

    .value-card {
        padding: 2rem 1.5rem;
    }
}

/*TALENTO*/

/* FORMULARIO COLUMNA IZQUIERDA*/
.text-gradient {
    color: #8F94FB;
}

.contact-section {
    width: 100%;
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.shadow-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

input.form-control {
    border-radius: 10px;
}

/*FORMULARIO CV*/
.contact-section {
    width: 100%;
    background-color: #EEEEEE;
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.shadow-box {
    background-color: #1a1f3a;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.shadow-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

input.form-control {
    border-radius: 10px;
}

/* FORMULARIO COLUMNA IZQUIERDA*/

/*POLÍTICA DE PRIVACIDAD*/
.privacy-list {
    font-family: 'Poppins', sans-serif;
}

.poppins-text {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
}

/*POLÍTICA DE PRIVACIDAD*/

/* FOOTER */
.footer-custom {
    background-image: url('../../images/banner/bg-footer.png');
    color: white;
    font-size: 0.95rem;
}

.logo img {
    height: 60px;
    width: auto;
}

.footer-text p {
    text-align: center;
    font-weight: 500;
}

.enlaces-footer ul,
.enlaces-footer a {
    font-family: 'Poppins', sans-serif;
    list-style: none;
    padding-left: 0;
    color: #fff;
    /* opcional */
}


/* Responsive */
@media (max-width: 768px) {
    .footer-custom .container {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
}

/* BACK TO TOP*/
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #000;
    color: white;
    border: none;
    font-size: 22px;
    cursor: pointer;
    display: none;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transition: opacity .3s ease;
}

.back-to-top.show {
    display: flex;
    opacity: 1;
}

/* BACK TO TOP*/