/*
 * Copyright © 2025 AkiraWeb
 * All rights reserved.
 * Desarrollado por AkiraWeb - www.akiraweb.com.ar
 */


/* Font Declarations */
@font-face {
    font-family: 'TT Norms Pro';
    src: url('../fonts/TT_Norms_Pro/TT Norms Pro Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'TT Norms Pro';
    src: url('../fonts/TT_Norms_Pro/TT\ Norms\ Pro\ Medium.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'TT Norms Pro';
    src: url('../fonts/TT_Norms_Pro/TT Norms Pro Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'TT Norms Pro';
    src: url('../fonts/TT_Norms_Pro/TT Norms Pro Italic.otf') format('opentype');
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: 'TT Norms Pro';
    src: url('../fonts/TT_Norms_Pro/TT Norms Pro Bold Italic.otf') format('opentype');
    font-weight: 700;
    font-style: italic;
}

/* Root Variables */
:root {
    --primary-color: #4E78F5;
    --secondary-color: #021D49;
}

/* General Styles */

* {
    font-family: 'TT Norms Pro', 'Gantari', sans-serif;
}

body, h1, h2, h3, h4, h5, h6, p, .footer {
    font-family: 'TT Norms Pro', 'Gantari', sans-serif;
}

body {
    font-family: 'TT Norms Pro', 'Gantari', sans-serif;
}

html {
    scroll-padding-top: 120px;
    scroll-behavior: smooth;
}

section[id] {
    scroll-margin-top: 120px;
}

/* Section Navigation */

.custom-nav {
    background-color: transparent;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-scrolled {
    background-color: var(--primary-color);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 0.5rem 0;
}

.navbar, .nav-link {
    font-family: 'TT Norms Pro', 'Gantari', sans-serif;
}

.nav-link {
    font-size: 1.2rem;
    padding: 0.5rem 0.8rem !important;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: #FFFFFF !important;
    transition: transform 0.2s ease-in-out;
}

.nav-link:hover {
    transform: translateY(-2px);
    color: rgba(255, 255, 255, 0.9) !important;
}

.nav-logo {
    height: 80px;
    width: auto;
}

/* General Carrousel */

.carousel-item {
    height: 100vh;
    position: relative;
}

.carousel-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.carousel-item video,
.carousel-item img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
    z-index: 1;
}

.carousel-caption {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    text-align: center;
    z-index: 2;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.caption-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.carousel-caption h3, 
.carousel-caption p {
    width: 100%;
    max-width: 900px;
}

.carousel-caption h3 {
    font-family: 'Inter', sans-serif;
    font-size:6rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
    line-height: 1.2;
}

.carousel-caption p {
    font-family: 'Inter', sans-serif;
    font-size: 2rem;
    font-weight: 400;
    color: white;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.01em;
}

.caption-content h3 {
    margin-bottom: 1rem;
}

.caption-content p {
    margin-bottom: 0;
}

.carousel-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 12px;
}

.carousel-indicators button {
    width: 30px !important;
    height: 4px !important;
    border-radius: 2px !important;
    background-color: rgba(255,255,255,0.5) !important;
    border: none !important;
    margin: 0 !important;
    transition: all 0.4s ease;
    opacity: 0.6;
}

.carousel-indicators button.active {
    background-color: #fff !important;
    width: 45px !important;
    opacity: 1;
}

.carousel-indicators [data-bs-target] {
    width: 30px;
    height: 4px;
    border-radius: 2px;
    background-color: rgba(255, 255, 255, 0.6);
    border: none;
    margin: 0;
    transition: all 0.4s ease;
}

.carousel-indicators .active {
    background-color: white;
    width: 45px;
    opacity: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
    opacity: 1;
    z-index: 15;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.carousel-control-prev {
    left: 0;
}

.carousel-control-next {
    right: 0;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    background-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
    background-color: var(--primary-color);
    transform: scale(1.1);
}

.carousel-control-prev-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e") !important;
    background-size: 50% !important;
    background-position: center;
    background-repeat: no-repeat;
}

.carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
    background-size: 50% !important;
    background-position: center;
    background-repeat: no-repeat;
}

#mainCarousel {
    position: relative;
}

.carousel-control-prev,
.carousel-control-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    z-index: 20;
    opacity: 1;
    margin: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 45px;
    height: 45px;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Section About Us */

#quienes-somos {
    background-color: #F5F8FF;
    padding: 6rem 0 !important;
}

#quienes-somos .quienes-somos-content {
    padding: 2rem 6rem;
    position: relative;
}

#quienes-somos p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    text-align: justify;
}

#quienes-somos .col-md-7 {
    display: flex;
    align-items: center;
    justify-content: center;
}

#quienes-somos .col-md-5 {
    padding: 2rem;
}

main section {
    padding: 0 !important;
}

.quienes-somos-content p {
    margin-bottom: 3rem;
    position: relative;
}

.quienes-somos-content p::after {
    content: '';
    position: absolute;
    bottom: -2rem;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--primary-color);
    transition: width 0.8s ease-in-out;
}

.quienes-somos-content.visible p::after {
    width: 100%;
}

/* Section Mission and Vision */

.mision-section {
    background-color: #F5F8FF;
    position: relative;
    padding: 8rem 0;
    min-height: 500px;
}

.mision-section::after {
    content: '';
    position: absolute;
    right: -120px;
    top: 0;
    width: 500px;
    height: 100%;
    background-color: #F5F8FF;
    transform: skew(-20deg);
    z-index: 1;
}

.vision-section {
    background-color: var(--primary-color);
    color: white;
    padding: 8rem 0;
    position: relative;
    z-index: 0;
    min-height: 500px;
}

.mision-section, .vision-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem;
    min-height: 500px;
}

.content-box {
    width: 100%;
    max-width: 450px;
    position: relative;
    z-index: 2;
}

.mision-section .content-box {
    margin-left: auto;
    margin-right: 2rem;
}

.vision-section .content-box {
    margin-left: 8rem;
}

.mision-section h2,
.vision-section h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    font-weight: 600;
    line-height: 1.2;
}

.mision-section p,
.vision-section p {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 0;
    text-align: justify;
}

.mision-section h2 {
    color: var(--primary-color);
}

#MyV .row {
    min-height: 500px;
}


/* Section Services */

#servicios {
    background-image: url('../img/servicios-fondo.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    position: relative;
    padding: 6rem 0;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    overflow: hidden;
}

#servicios::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(5, 4, 22, 0.4);
}

#servicios .container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

#servicios h1 {
    color: #FFFFFF;
    margin-bottom: 3rem;
    font-size: 2rem;
    text-align: center;
}

#servicios h2 span {
    color: var(--primary-color);
}

/* Tarjetas de Servicios */
.service-card {
    height: 240px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 1rem;
    background-color: #fff;
    border-radius: 10px;
    border-bottom: 10px solid var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
    max-width: 85%;
    margin: 0 auto;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    background-color: transparent;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.3rem;
}

.service-icon i {
    color: var(--primary-color);
    font-size: 2rem;
}

.service-card h3 {
    text-align: center;
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 0.3rem;
    font-weight: 500;
}

.service-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
    text-align: center;
}

/* Section Service Detail */

.service-detail {
    min-height: 400px;
}

.service-detail .row {
    min-height: 400px;
}

.service-detail .service-bg {
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed !important;
    box-shadow: 3px 4px 5px 0px rgba(0, 0, 0, 0.38);
}

.service-detail .overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(2, 29, 73, 0.5);
    pointer-events: none;
}

.service-detail .service-content {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 2rem;
    height: 100%;
    background-color: #fff;
}

.service-detail .content-wrapper {
    text-align: center;
    padding: 2rem 5rem;
    max-width: 100%;
    margin: auto;
}

.service-detail .service-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: initial;
}

.service-detail h2 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.service-detail p {
    color: #666;
    line-height: 1.6;
}

.service-content .content-wrapper h2 {
    margin-bottom: 15px;
    position: relative;
}

.service-content .content-wrapper h2::after {
    display: none;
}

.service-content .content-wrapper p {
    position: relative;
    margin-bottom: 30px;
}

.service-content .content-wrapper p::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -25px;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 1s ease-in-out;
}

.service-content .content-wrapper p.animated::after,
.service-content:hover .content-wrapper p::after {
    width: 100%;
}

.service-bg, .service-content {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50vh;
}

::selection {
    background-color: var(--primary-color);
    color: white;
}

::-moz-selection {
    background-color: var(--primary-color);
    color: white;
}

.typed-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    text-align: center;
    width: 100%;
}

.typed-text {
    font-size: 2.5rem;
    font-weight: 600;
    color: white;
    line-height: 1.2;
    margin: 0;
    padding: 0;
    display: inline-block;
    vertical-align: middle;
}

.typed-cursor {
    font-size: 3rem;
    color: white;
}

.typed-text .primary {
    color: #6b90ff;
}

.typed-text .white {
    color: white;
}


@media (max-width: 1200px) {
    .services-row {
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .mision-section::after {
        display: none;
    }
    
    .mision-section, .vision-section {
        padding: 4rem 0;
        min-height: auto;
    }
    
    .content-box {
        padding: 0 2rem;
        max-width: 100%;
    }
    
    .mision-section h2,
    .vision-section h2 {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }
    
    .mision-section p,
    .vision-section p {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .vision-section .content-box {
        margin-left: 2rem;
    }

    .carousel-caption h3 {
        font-size: 2.5rem;
        padding: 0 2rem;
    }
    
    .carousel-caption p {
        font-size: 1.2rem;
    }

    .carousel-control-next {
        margin: 0px;
    }

    .carousel-control-prev {
        margin: 0px;
    }

    #quienes-somos .row {
        flex-direction: column;
        text-align: center;
    }

    #quienes-somos p {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    #quienes-somos .col-md-5 {
        margin-bottom: 2rem;
    }

    .quienes-somos-content {
        padding: 0.1rem 1rem !important;
    }

    #servicios h2 {
        font-size: 2.5rem;
    }

    #servicios h1 {
        margin-top: 2rem;
    }
    
    .service-card {
        margin-bottom: 1rem;
    }

    .service-detail .content-wrapper {
        text-align: left;
        padding: 1rem 1rem;
    }

    .typed-text {
        font-size: 1.5rem;
    }
    .typed-cursor {
        font-size: 2rem;
        color: white;
    }

    .row.justify-content-center {
        flex-wrap: wrap;
        overflow-x: visible;
        padding: 1rem;
    }
    
    .col {
        width: 100%;
        min-width: auto;
    }

    .col-md-6.col-lg {
        aspect-ratio: auto;
        height: 400px;
    }

    .service-detail .service-bg {
        min-height: 250px;
    }
    
    .service-detail .service-content {
        padding: 2rem;
    }

    #servicios {
        height: auto;
        min-height: 80vh;
        padding: 4rem 0;
    }

    .footer {
        padding: 3rem 0 0 0;
    }
    
    .footer .col-md-4 {
        margin-bottom: 2rem;
        text-align: center;
    }
    
    
    .footer-logo {
        margin: 0 auto 2rem;
    }

    .custom-nav {
        padding: 0.5rem 0;
    }

    .nav-logo {
        height: 60px; /* Reduce el tamaño del logo */
        width: auto;
    }

    .nav-link {
        padding: 0.4rem 0.6rem !important;
    }


    .navbar-collapse {
        text-align: center; /* Centra los elementos del menú */
    }

    .nav-link:hover {
        transform: none; /* Desactiva el efecto de hover en móviles */
    }

    .custom-nav {
        background-color: var(--primary-color); 
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        padding: 0.5rem 0;
    }
}

/* Equipo Section */

#equipo {
    position: relative;
    width: 100%;
    padding: 6rem 0;
    overflow: hidden;
    border-top: #c7c7c7 1px solid;
}

#equipo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ffffff 50%, var(--primary-color) 50% );
    z-index: -1;
}

#equipo h1 {
    margin-bottom: 4rem;
    margin-top: 4rem;
    font-size: 2rem;
    text-align: center;
    color: var(--primary-color);
}

#equipo h1 span {
    color: var(--primary-color);
}

.team-member {
    display: flex;
    min-height: 500px;
    max-width: 100%;
    margin: 2rem auto;
    overflow: hidden;
}

.member-content {
    flex: 1;
    display: flex;
    align-items: flex-start; 
    padding: 3rem;
    position: relative;
    overflow: visible; 
    height: auto; 
}

.member-text {
    width: 100%;
    margin: 0 auto;
    overflow: visible; 
    height: auto; 
}

.white-section {
   color: #333;
}

.blue-section {
    color: #333;
}

.member-content h2 {
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.white-section h2 span {
    color: var(--primary-color);
}

.blue-section h2 span {
    color: white;
}

.member-content h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
}

.blue-section h3 {
    color: rgba(255, 255, 255, 0.9);
}

.member-email {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    font-weight: 400;
    display: flex;
    align-items: center;
}

.member-email i {
    margin-right: 10px;
}

.primary-email {
    color: var(--primary-color);
}

.white-email {
    color: white;
}

.member-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: justify;
    margin-bottom: 1rem;
    max-width: 100%;
    word-wrap: break-word; 
}

.member-image {
    flex: 0 0 45%;
    position: relative;
    overflow: hidden;
    align-self: stretch; 
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
}

.member-image img {
    width: auto;
    height: 100%;
    max-width: 65%; 
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
    margin: 0 auto;
    display: block;
    max-height: 90%;
    border-radius: 30px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.5);
}

.member-image img:hover {
    filter: grayscale(100%);
}

@media (max-width: 768px) {
    .team-member {
        flex-direction: column;
    }

    .team-member:nth-child(2) {
        flex-direction: column-reverse;
    }

    .member-image img {
        max-width: 80%;
    }

    .member-content p {
        font-size: 1rem;
        line-height: 1.5;
    }
}

/* Clients Section */
#clientes {
    min-height: 70vh;
    background-color: #F5F8FF;
    width: 100%;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#clientes h1 {
    margin-bottom: 2rem;
    font-size: 2rem;
    text-align: center;
    margin-top: 0;
    color: var(--primary-color);
}

#clientes h1 span {
    color: var(--primary-color);
}

.clients-subtitle {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 1.5rem;

}

.clients-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.client-logo {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.client-logo img {
    max-width: 160px;
    max-height: 160px;
    height: auto;
    filter: grayscale(100%);
    transition: filter 0.3s ease, transform 0.3s ease;
}

.client-logo:hover img {
    filter: grayscale(0%);
    transform: translateY(-5px);
}

.typed-text-clients {
    display: inline-block;
}


.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary-color);
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    display: none;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.scroll-top-btn:hover {
    transform: translateY(-5px);
    background-color: var(--secondary-color);
}

.scroll-top-btn.visible {
    display: block;
    animation: fadeIn 0.3s ease-in-out;
}

.scroll-top-btn img {
    width: 80%;
    height: 80%;
    object-fit: contain;
    border-radius: 50%;
    display: block;
    margin: auto;
    padding: 6px;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.copyright {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 1.5rem 0;
    margin-top: 4rem;
}

.copyright p {
    margin: 0.3rem 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.copyright a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.copyright a:hover {
    color: white;
}

.contact-info li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.contact-info li i {
    margin-right: 10px;
    color: var(--primary-color);
    width: 20px;
    text-align: center;
}

.social-icons {
    display: flex;
    gap: 1.2rem;
    margin-top: 1rem;
}

.social-icon i {
    font-size: 1.5rem;
    color: white;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-icon:hover i {
    color: var(--primary-color);
    transform: translateY(-3px);
}


.social-icon {
    color: var(--secondary-color);
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: var(--primary-color);
}

/* Section Novedades */

.novedad-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    height: 100%;
}

.novedad-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.novedad-content {
    padding: 1.5rem;
}

.novedad-content h3 {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.novedad-content h4 {
    color: var(--text-color);
    font-size: 1rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.novedad-content p {
    margin-bottom: 1.5rem;
}

.novedad-content .btn {
    background-color: var(--primary-color);
    border: none;
    padding: 0.5rem 1.5rem;
    transition: all 0.3s ease;
}

.novedad-content .btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

#novedades h1{
    text-align: center;
    font-size: 2rem;
    margin: 1rem 0;
    color: var(--primary-color);
}

.novedades-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 2rem;
}

.medium-link {
    text-align: center;
    margin: 2rem 0;
}

.medium-link img {
    width: 80px;
    height: auto;
    transition: transform 0.3s ease;
}

.medium-link i {
    font-size: 2.5rem;
    background-color: black;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    transition: transform 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.medium-link i:hover {
    transform: scale(1.1);
}

.footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 4rem 0 0 0;
}

.footer .row {
    min-height: 250px;
}

.footer-logo {
    height: 80px;
    width: auto;
    margin-bottom: 2rem;
}

.footer a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--primary-color);
}

.footer h5 {
    /* color: var(--primary-color); Para mejorar Accesibilidad*/
    color: white;
    text-transform: uppercase;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer ul li {
    margin-bottom: 0.8rem;
}

.footer .list-unstyled li i {
    color: var(--primary-color);
    margin-right: 10px;
    width: 20px;
}

.navbar-nav {
    display: flex;
    align-items: center;
}

.lang-selector {
    display: flex;
    flex-direction: row;
    margin-left: auto;
    padding-left: 20px;
    border-left: 1px solid rgba(255, 255, 255, 0.3);
}

.lang-selector .nav-link {
    padding: 0.3rem 0.5rem !important;
    margin: 0 3px;
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 0.9rem;
}

.lang-selector .nav-link.active {
    color: white !important;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

@media (max-width: 768px) {
    .lang-selector {
        justify-content: center;
        margin: 0;
        padding: 10px 0;
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.3);
    }

    .clients-grid {
        flex-direction: column;
        gap: 2rem;
        padding: 2rem;
    }
    #clientes h1 {
        margin-top: 3rem;
    }

    .col-md-6.col-lg {
        height: auto; /* ajuste de distancia entre tarjetas de servicios*/
    }
}

/* Datos Evidencia Section */
#datos-evidencia {
    padding: 6rem 0;
    background-color: #eff1f4;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.datos-title {
    text-align: center;
}

.datos-title h1 {
    font-size: 6rem;
    line-height: 1.2;
    margin: 0;
    font-weight: 600;
    color: var(--secondary-color);
}

.datos-title h1 span {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .datos-title h1 {
        font-size: 3rem;
    }
}