:root {
    --color-primario: #00A7FD;
    --color-secundario: #2A5586;
    --color-enfasis: #00C58F;
    --color-texto: #495057;
    --color-white: #ffffff;
    /* --color-background: #EFF1F9; */
    --color-background: #F5F8FF;
    --color-border: #DDE2E5;
    --color-span: #999999;
    --color-hover-button: #00a9fdb9;
    --color-background-blue-0: #F2F8FF;
    --slide-width: calc(100% / 3);
}

* {
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
    box-sizing: border-box;
    outline: none;
}

html {
    font-size: 62.5%;
}

h1 {
    font-size: 4rem;
    font-weight: 700;
}

h2 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--color-secundario);
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.3;
}

h3 {
    font-size: 2.4rem;
}

h4 {
    font-size: 2rem;
}

h5 {
    font-size: 1.6rem;
}

h6 {
    font-size: 1.4rem;
}

p {
    font-size: 1.6rem;
    color: var(--color-texto);
}

input:focus {
    border: 1px solid var(--color-primario) !important;
}

textarea:focus {
    border: 1px solid var(--color-primario) !important;
}

.g-recaptcha {
    padding-bottom: 2rem;
}

body {
    font-family: 'Nunito', sans-serif !important;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    display: block;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

body::-webkit-scrollbar {
    width: 8px;
}

body::-webkit-scrollbar-track {
    background: var(--color-background);
    border-radius: 4px;
}

body::-webkit-scrollbar-thumb {
    background: var(--color-secundario);
    border-radius: 4px;
}

body::-webkit-scrollbar-thumb:hover {
    background: var(--color-primario);
}

@font-face {
    font-family: 'Nunito';
    src: url('../fonts/Nunito-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Nunito';
    src: url('../fonts/Nunito-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Nunito';
    src: url('../fonts/Nunito-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Nunito';
    src: url('../fonts/Nunito-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Nunito';
    src: url('../fonts/Nunito-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Nunito';
    src: url('../fonts/Nunito-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    background-color: #25D366;
    border-radius: 50%;
    padding: 16px 18px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.whatsapp-float i {
    font-size: 4rem;
    color: var(--color-white);
    transition: transform 0.5s ease;
}

.whatsapp-float i:hover {
    transform: scale(1.1);
}

.top-header {
    background-color: var(--color-background-blue-0);
}

/* **** ESTILOS GENERALES **** */
.section {
    padding: 120px 16px;
    background-color: var(--color-background);
}

.section-bg-white {
    background-color: var(--color-white);
}

.container {
    max-width: 1300px;
    margin: auto;
}

.min-height {
    min-height: 90vh;
    align-content: center;
}

.desktop-none {
    display: none !important;
}

.mt-20 {
    margin-top: 2rem;
}

.mb-0 {
    margin-bottom: 0 !important;
}

/* *** ESTILOS HEADER *** */

.top-header-content {
    display: flex;
    justify-content: space-between;
    padding: 10px 16px;
}

.top-header p {
    display: flex;
    gap: 20px;
}

.top-header i {
    padding-right: 8px;
    color: var(--color-secundario);
}

.top-header a {
    color: var(--color-secundario);
    font-size: 1.3rem;
}

.main-header-content {
    display: flex;
    justify-content: space-between;
    padding: 10px 16px;
}

.main-header-logo-nav {
    display: flex;
}

.logo {
    margin-right: 20px;
}

.logo a {
    height: 47px;
    display: block;
}

.main-nav ul {
    display: flex;
    height: 100%;
    align-items: center;
}

.main-nav ul li a {
    padding: 0 10px;
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--color-secundario);
}

.main-nav ul li a:hover {
    color: var(--color-primario);
}

.header-buttons {
    display: flex;
    gap: 20px;
}

/* Mostrar y ocultar por tamaño */
.hamburger-menu-mobile {
    display: none !important;
}

/* Botón hamburguesa */
.hamburger {
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger {
    align-self: center;
    width: 40px;
    background-color: var(--color-white);
    border-radius: 4px;
}

.hamburger i {
    color: var(--color-secundario);
    font-size: 2.8rem;
    transition: 0.3s;
}

/* Menú móvil */
.main-nav-mobile {
    position: absolute;
    top: 109px;
    left: 0;
    right: 0;
    background: var(--color-white);
    display: none;
    padding-top: 1rem;
    z-index: 1000;
    width: 100%;
}

.main-nav-mobile ul {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.main-nav-mobile ul li {
    width: 100%;
    border-bottom: 1px solid var(--color-border);
}

.main-nav-mobile ul li a {
    color: var(--color-secundario);
    text-align: center;
    text-decoration: none;
    font-size: 1.6rem;
    justify-content: space-between;
    width: 100%;
    display: flex;
    padding: 2rem;

}

.hamburger-btn-login {
    padding: 2rem;
}

.btn-hamburger {
    justify-content: center !important;
    display: flex;
    gap: 0.5rem;
    align-self: center;
    padding: 1.4rem 3rem !important;
    width: fit-content !important;
}

.btn-hamburger i {
    padding-top: 3px;
}

/* Mostrar cuando está activo */
.main-nav-mobile.active {
    display: block;
}


.btn {
    display: block;
    margin: 0 auto;
    width: fit-content;
    padding: 12px 30px;
    background-color: var(--color-secundario);
    border-radius: 100px;
    align-content: center;
    color: var(--color-white);
    text-decoration: none;
    font-size: 1.6rem;
    font-weight: 600;
    border: 1px solid var(--color-secundario);
    transition: transform 0.5s ease;
}

.btn:hover {
    background-color: transparent;
    border: 1px solid var(--color-secundario);
    color: var(--color-secundario);
    transform: scale(1.02);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn i {
    font-size: 1.4rem;
    padding-right: 4px;
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--color-secundario);
    color: var(--color-secundario);
}

.btn-outline:hover {
    background-color: var(--color-secundario);
    border: 1px solid var(--color-secundario);
    color: var(--color-white);
}

.btn-primary {
    padding: 12px 24px;
    border: 1px solid var(--color-primario);
    background-color: var(--color-primario);
}

.btn-primary:hover {
    background-color: transparent;
    border: 1px solid var(--color-primario);
    color: var(--color-primario);
}


.big-menu-content {
    background-color: var(--color-white);
    padding: 2rem;
    padding-bottom: 0;
    border-radius: 2rem;
    box-shadow: 0px 8px 12px rgba(212, 221, 243, 0.5);
}

.big-menu-content h2 {
    margin-bottom: 1rem;
}

.big-menu-table {
    width: 100%;
    border-spacing: 2rem;
}

.big-menu-table thead tr th {
    flex: 1;
}

.big-menu-table tbody tr td {
    text-align: center;
    font-size: 1.8rem;
}

.big-menu-table tbody tr td i {
    font-size: 2.4rem;
}

.big-menu__category {
    background-color: var(--color-secundario);
    padding: 1.6rem;
    font-size: 1.8rem;
    border-radius: 100rem;
    color: var(--color-white);
}

.big-menu__service {
    display: block;
    color: var(--color-secundario);
    background-color: var(--color-white);
    border: 1px solid var(--color-secundario);
    padding: 1.6rem;
    border-radius: 100rem;
    font-size: 1.8rem;
    font-weight: bold;
}

.big-menu--width {
    min-width: 300px;
}

.big-menu__url {
    display: block;
    padding: 1.6rem;
    transition: transform 0.5s ease-in-out;
}

.big-menu__url:hover {
    background-color: var(--color-background);
    box-shadow: 0px 8px 12px rgba(212, 221, 243, 0.5);
    border-radius: 100px;
    transform: scale(1.02);
}

.big-menu__url:hover .big-menu__icon-yes {
    color: var(--color-enfasis);
    cursor: pointer;
}

.big-menu__icon-yes {
    color: var(--color-primario);
}

.big-menu__icon-not {
    color: red;
}

/* ESTILOS PARA CARRUSEL DE IMAGENES */
.carrusel {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.carousel-wrapper {
    position: relative;
    max-width: 100vw;
    height: 500px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
}

.slide {
    display: flex;
    width: 100vw;
    height: 500px;
    flex-shrink: 0;
}

.slide-left,
.slide-right {
    width: 50%;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* .slide-left {
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
} */

.slide-left h2 {
    font-size: 4.8rem;
    margin-bottom: 20px;
}

.slide-left p {
    font-size: 20px;
    margin-bottom: 30px;
}


.bg1 {
    background: url('../img/web/geosatelital-particular.webp') center/cover no-repeat;
}

.bg2 {
    background: url('../img/web/geosatelital-gobierno.webp') center/cover no-repeat;
}

.bg3 {
    background: url('../img/web/geosatelital-flotas.webp') center/cover no-repeat;
}

.bg4 {
    background: url('../img/web/geosatelital-grua-gratis.webp') center/cover no-repeat;
}


.nav-slide {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 40px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    z-index: 10;
    padding: 0 20px;
    opacity: 0.6;
}

.nav-slide:hover {
    opacity: 1;
}

.prev {
    left: 0;
}

.next {
    right: 0;
}


/* ******************************** */
/* ESTILO PARA SECCION DE SERVICIOS */

/* Accesibilidad */
.visually-hidden {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}


/* ******************************** */
/* ESTILO PARA SECCION DE SERVICIOS */

.galeria-empresas {
    padding: 0 16px 120px;
    text-align: center;
    background-color: var(--color-background);
}

.galeria-empresas-title span {
    font-weight: normal;
}

.slider-infinito {
    overflow: hidden;
    position: relative;
    width: 100%;
    margin-bottom: 40px;
}

.slider-track {
    display: flex;
    width: calc(200%);
    /* el doble por los clones */
    animation: scrollSlider 50s linear infinite;
}

.galery {
    flex: 0 0 auto;
    width: 180px;
    margin: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.galery img {
    max-height: 60px;
    max-width: 100%;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: filter 0.3s, opacity 0.3s;
}

.galery img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

@keyframes scrollSlider {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.galeria-btn-container {
    margin-top: 20px;
}

.galeria-btn-container a i {
    padding-left: 8px;
    font-size: 1.6rem;
}

/* ********************************** */
/* ESTILOS DE DATOS SOBRE NOSOTROS */

.beneficios-section {
    background-image: url('../img/web/blue-pin-marker-3d-model-gps-navigation-location-point_2.webp');
    background-size: cover;
    background-position: center;
    padding: 100px 16px 0;
    color: #1c1c1c;
}

.beneficios-container {
    display: flex;
    gap: 40px;
    align-items: end;
}

.beneficios-left {
    flex: 1 1 50%;
    padding: 0 100px 100px;
}

.beneficios-left h2 {
    margin-bottom: 30px;
    padding: 0 30px;
    color: var(--color-white);
}

.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.beneficio-card {
    background-color: var(--color-white);
    border-radius: 20px;
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease;
}

.beneficio-card:hover {
    transform: translateY(-5px);
}

.beneficio-card img {
    height: 50px;
    margin-bottom: 15px;
}

.beneficio-card h3 {
    color: var(--color-secundario);
}

.beneficios-right {
    flex: 1 1 50%;
    height: 595.2px;
    background-image: url('../img/web/imagen-de-circulos-geosatelital.webp');
    background-size: auto;
    background-repeat: no-repeat;
    background-position: center top;
    animation: moverFondoMixto 10s ease-in-out infinite;
}

@keyframes moverFondoMixto {
    0% {
        background-position: center top;
    }

    25% {
        background-position: center bottom;
    }

    50% {
        background-position: right bottom;
    }

    75% {
        background-position: left bottom;
    }

    100% {
        background-position: center top;
    }
}


.beneficios-right-img {
    flex: 1 1 50%;
    height: 595.2px;
    background-image: url('../img/web/imagen-de-celular-gps-vehicular-geosatelital.webp');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-position-y: bottom;
}


/* ******************************** */
/* EFECTOS PARA EQUIPO */
.equipo-section {
    background-color: var(--color-background);
    padding: 100px 16px;
}

#titulo-equipo {
    width: 50%;
    margin: 0 auto 3rem;
}

.equipo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.equipo-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.fade-up {
    opacity: 0;
    transform: translateY(100px);
    transition: opacity 1.5s ease-out, transform 1.5s ease-out;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-right {
    opacity: 0;
    transform: translateX(100px);
    transition: opacity 1.5s ease-out, transform 1.5s ease-out;
}

.fade-right.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-left {
    opacity: 0;
    transform: translateX(-150px);
    transition: opacity 1.5s ease-out, transform 1.5s ease-out;
}

.fade-left.visible {
    opacity: 1;
    transform: translateY(0);
}

.equipo-card img {
    width: 100%;
    height: 400px;
    display: block;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.equipo-card figcaption {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    border-radius: 2rem;
    background-color: var(--color-background);
    padding: 16px;
    opacity: 1;
    text-align: center;
}

.footer-social-home {
    position: absolute;
    bottom: 10px;
    text-align: center;
    opacity: 0;
    width: 86%;
}

.footer-social-home i {
    background-color: var(--color-secundario) !important;
    color: var(--color-white) !important;
}

.footer-social-home i:hover {
    background-color: var(--color-white) !important;
    color: var(--color-secundario) !important;
    box-shadow: 0px 8px 12px rgba(212, 221, 243, 0.5);
}

.equipo-card-home:hover p {
    opacity: 0 !important;
}

.equipo-card:hover .footer-social-home {
    opacity: 1;
    transform: translateY(0);
}


.equipo-card:hover img {
    transform: scale(1.05);
}

.equipo-card h3 {
    font-size: 1.8rem;
    margin: 0 0 5px;
    font-weight: bold;
    color: var(--color-secundario);
}

.equipo-card p {
    color: var(--color-secundario);
}


/* ******************************** */
/* EFECTOS PARA SECCION DE CONTACTO */

.contacto-testimonios {
    padding: 100px 16px;
    background-color: #DEF1FB;
    background-image: url(../img/shared/fondo-gps-formulario-contacto.webp);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.container-2col {
    display: flex;
    gap: 40px;
}

.testimonios {
    flex: 1 1 60%;
    align-content: center;
}

.testimonios h2 {
    color: var(--color-white);
    margin-bottom: 20px;
}

.description-contacto {
    text-align: center;
    font-size: 1.8rem;
    width: 60%;
    margin: 0 auto;
    color: var(--color-white);
}

.slider-testimonios {
    position: relative;
    min-height: 160px;
    padding-top: 30px;
}

.testimonio {
    display: none;
    padding: 30px;
    border-radius: 20px;
    background-color: var(--color-white);
}

.testimonio p {
    text-align: center;
    font-size: 1.7rem;
    line-height: 1.6;
}

.testimonio.active {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

.testimonio-profile {
    display: flex;
    padding-top: 24px;
    justify-content: center;
    align-items: center;
}

.testimonio-photo {
    width: 100px;
    height: 100px;
    margin-right: 16px;
    border-radius: 100px;
    background-image: url(../img/shared/testimonios-gps-vehicular-01.webp);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Formulario */
.formulario-contacto {
    flex: 1 1 40%;
    background-color: var(--color-primario);
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    top: 20px;
    position: sticky;
    height: fit-content;
    align-self: flex-start;
}

.formulario-contacto-privacidad {
    text-align: center;
    font-size: 1.4rem;
}

.formulario-contacto-privacidad a {
    color: var(--color-primario);
}

.formulario-contacto-privacidad a:hover {
    color: var(--color-enfasis);
}

.formulario-header {
    display: flex;
    gap: 30px;
    padding: 20px 60px 0;
}

.formulario-photo {
    height: 130px;
    width: 120px;
    background-image: url(../img/shared/call-center-mujergps-vehicular.webp);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.testimonio-photo-xgreen {
    background-image: url(../img/shared/testimonios-gps-vehicular-02.webp);
}

.formulario-header div {
    text-align: center;
    align-content: center;
}

.formulario-header h3 {
    margin-bottom: 4px;
    color: var(--color-white);
}

.formulario-header p {
    color: var(--color-white);
    font-weight: 500;
}

.formulario-contacto form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    background-color: var(--color-white);
    padding: 30px;
    border-radius: 20px;
}

.formulario-contacto input,
.formulario-contacto textarea {
    padding: 10px 14px;
    border: 1px solid var(--color-primario);
    border-radius: 12px;
    font-size: 1.6rem;
    font-family: inherit;
    resize: vertical;
}

.btn-contacto {
    background-color: var(--color-primario);
    color: var(--color-white);
    border: 1px solid var(--color-primario);
    padding: 14px;
    font-weight: bold;
    border-radius: 100px;
    cursor: pointer;
    font-size: 1.6rem;
    transition: background 0.5s;
}

.btn-contacto:hover {
    color: var(--color-primario);
    background-color: transparent;
}


/* ******************************** */
/* ESTILOS PARA SECCION DE CONTACTO */

.contacto-llamadas {
    background-color: var(--color-white);
    padding: 100px 16px;
}

.contacto-llamadas h2 {
    margin-bottom: 10px;
}

.contacto-llamadas-description {
    width: 55%;
    margin: 0 auto;
    text-align: center;
}

.anexos-grid2 {
    display: flex;
    gap: 20px;
    padding-top: 30px;
    justify-content: center;
}

.anexos-grid3 {
    display: flex;
    gap: 20px;
    padding-top: 30px;
    justify-content: center;
}

.anexo-card {
    width: 33.33%;
    max-width: 250px;
    display: flex;
    border-radius: 20px;
    padding: 20px;
    align-items: center;
    justify-content: center;
    background-color: var(--color-background);
}

.anexo-img {
    width: 50px;
    height: 50px;
    margin-right: 10px;
    background-image: url(../img/shared/ROBO-geo.svg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.anexo-img-ventas {
    background-image: url(../img/shared/VENTAS-geo.svg);
}

.anexo-img-soporte {
    background-image: url(../img/shared/SOPORTE.svg);
}

.anexo-img-facturacion {
    background-image: url(../img/shared/FACTURACION.svg);
}

.anexo-img-atc {
    background-image: url(../img/shared/ATC.svg);
}

.anexo-title {
    font-weight: bold;
    font-size: 2.0rem !important;
    color: var(--color-secundario);
}

.anexo-information p {
    font-size: 1.6rem;
    margin-bottom: 4px;
}

.anexo-card-secundary {
    background-color: var(--color-secundario);
}

.anexo-card-secundary .anexo-title {
    color: var(--color-white);
}

.anexo-card-secundary p {
    color: var(--color-white);
}


/* ******************************** */
/* ESTILOS PARA SECCION DE FOOTER */
.footer-geosatelital {
    background-color: var(--color-secundario);
    color: var(--color-white);
    padding: 80px 16px 0;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.footer-col h3 {
    margin-bottom: 4px;
    font-size: 2rem !important;
}

.footer-col p,
.footer-col li,
.footer-col a {
    font-size: 1.4rem;
    line-height: 1.6;
    color: var(--color-white);
    text-decoration: none;
    transition: transform 0.5s;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col li {
    margin-bottom: 8px;
}

.footer-col a:hover {
    color: var(--color-enfasis);
    font-size: 1.6rem;
}

.footer-logo {
    width: 200px;
    margin-bottom: 15px;
}

.footer-social {
    padding-top: 20px;
}

.footer-social-nosotros {
    padding-top: 10px;
}

.footer-social a {
    margin-right: 10px;
}

.footer-social i {
    width: 30px;
    height: 30px;
    text-align: center;
    align-content: center;
    border-radius: 100px;
    background-color: var(--color-white);
    color: var(--color-secundario);
    transition: transform 0.5s;
}

.footer-social a:hover i {
    transform: scale(1.1);
}

.footer-apps img {
    width: 80%;
    margin-top: 10px;
    transition: transform 0.5s;
}

.footer-apps img:hover {
    transform: scale(1.05);
}

.footer-border {
    width: 50px;
    height: 2px;
    border-radius: 4px;
    margin-bottom: 16px;
    background-color: var(--color-primario);
}

.footer-img-book {
    margin-right: 8px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    font-size: 1.4rem;
    line-height: 1.6;
}

.footer-bottom p {
    color: var(--color-white);
}

.footer-links a {
    margin-left: 20px;
    color: var(--color-white);
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--color-enfasis);
}



/* ******************************** */
/* ESTILOS PARA EL HEADER DE LAS PAGINAS: NOSOTROS, EXPERIENCIAS, BLOG Y CONTACTO */
.page-header {
    background-image: url('../img/shared/rastreo-monitoreo-gps-vehicular-peru-geosatelital.webp');
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: var(--color-white);
}

.page-header-article {
    min-height: 250px;
}

.page-header-overlay {
    background: rgba(0, 0, 0, 0.24);
    /* mejora el contraste del texto */
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-header-content {
    text-align: center;
    padding: 16px;
    max-width: 1300px;
    margin: 0 auto;
}

.page-header-content--article {
    max-width: 1100px;
    padding: 50px 16px 60px;
}

.page-title {
    margin-bottom: 10px;
}

.breadcrumb {
    font-size: 1.6rem;
    color: var(--color-white);
}

.breadcrumb-link {
    color: var(--color-enfasis);
    text-decoration: none;
}

.breadcrumb-link:hover {
    font-weight: bold;
}

.breadcrumb span {
    margin: 0 6px;
}

/* ********************************** */
/* ESTILOS PARA LA PAGINA DE NOSOTROS */
.nosotros {
    padding: 100px 16px;
}

.nosotros-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

/* Fila 1: texto + video */
.nosotros-intro {
    margin-bottom: 20px;
}

.nosotros-intro>div {
    flex: 1 1 500px;
}

.nosotros-texto h2 {
    text-align: left;
}

.nosotros-texto p {
    margin-bottom: 10px;
    line-height: 1.6;
}

.nosotros-video video {
    border-radius: 20px;
}

/* Fila 2: Misión y Visión */
.nosotros-mision-vision {
    margin-bottom: 20px;
}

.nosotros-mision-vision .nosotros-card {
    flex: 1 1 300px;
    background: #f5f9ff;
    padding: 30px;
    border-radius: 20px;
    text-align: left;
    display: flex;
    align-items: center;
}

.nosotros-card img {
    width: 80px;
    height: 80px;
    margin-right: 10px;
}

.nosotros-card h3 {
    margin-bottom: 10px;
    color: var(--color-secundario);
    font-size: 2rem;
}


/* Fila 3: Métricas */
.nosotros-datos {
    background-color: var(--color-secundario);
    padding: 50px 30px;
    border-radius: 20px;
    justify-content: space-between;
    text-align: center;
}

.dato-item {
    flex: 1 1 200px;
    color: var(--color-white);
}

.dato-numero {
    font-size: 6.4rem;
    font-weight: bold;
    display: block;
    margin-bottom: 8px;
}

.dato-item p {
    color: var(--color-white);
    width: 80%;
    margin: 0 auto;
}

.galeria-homologados {
    background-color: var(--color-white);
}

.slider-track-homologados {
    animation: scrollSlider 20s linear infinite;
}


/* ***************************** */
/* ESTILOS PARA LA SECCION VALORES */
.valores {
    background: var(--color-background);
    padding: 100px 16px;
    text-align: center;
}

.valores h2 {
    margin-bottom: 1rem;
}

.valores .descripcion {
    max-width: 700px;
    margin: 0 auto 3rem;
}

.valores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.valor {
    padding: 2rem 1.5rem;
    transition: transform 0.3s ease;
}

.valor:hover {
    transform: translateY(-5px);
}

.valor figure {
    margin-bottom: 1rem;
}

.valor img {
    width: 150px;
    height: 150px;
    object-fit: contain;
}

.valor h3 {
    margin: 1rem 0 0.5rem;
    color: var(--color-secundario);
}


/* ***************************** */
/* ESTILOS PARA LA SECCION EQUIPO */

.equipo-section-bg {
    background: var(--color-white);
    text-align: center;
}

.equipo-grid-page {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.equipo-section .descripcion {
    max-width: 800px;
    margin: 0 auto 3rem;
}


/* ***************************** */
/* ESTILOS PARA LA PAGINA EXPERIENCIAS */
.experiencias-section {
    padding: 100px 16px;
    text-align: center;
    background-color: var(--color-background);
}

.experiencias-section h2 {
    margin-bottom: 10px;
}

.experiencias-section .experiencias-description {
    margin-bottom: 30px;
}

.experiencias-grid {
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    display: grid;
    gap: 30px;
}

.experiencia {
    background-color: var(--color-white);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    padding: 30px;
}

.experiencia img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 20px;
}

.experiencia video {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 20px;
}

.experiencia h3 {
    color: var(--color-secundario);
    margin-bottom: 10px;
}


/* ***************************** */
/* ESTILOS PARA LA PAGINA POLITICA PRIVACIDAD */
.privacidad-section {
    padding: 100px 16px;
    background-color: var(--color-background);
}

.privacidad-section h2 {
    text-align: left;
    margin-bottom: 16px;
}

.privacidad-section article {
    margin-bottom: 24px;
    font-size: 1.6rem;
}

.privacidad-section p {
    margin-bottom: 16px;
    color: var(--color-texto);
}

.privacidad-section ul {
    margin-bottom: 16px;
    color: var(--color-texto);
}

.privacidad-section a {
    color: var(--color-secundario);
    font-weight: bold;
}

.privacidad-section a:hover {
    color: var(--color-enfasis);
}


/* ***************************** */
/* ESTILOS PARA LA PAGINA NUMERO DE CUENTA */

.numero-cuenta-section figure {
    text-align: center;
}

.numero-cuenta-section figure img {
    border-radius: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}


/* ***************************** */
/* ESTILOS PARA LA PAGINA CONTACTO */
.sedes-section h2 {
    margin-bottom: 10px;
}

.sedes-description {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.sede {
    display: flex;
    gap: 40px;
    padding: 30px;
    margin-top: 30px;
    background-color: var(--color-white);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
}

.sede-left {
    flex: 1 1 50%;
}

.sede-left figure img {
    width: 100%;
    border-radius: 20px;
    margin-bottom: 20px;
}

.sede-border {
    width: 100px;
    border-radius: 10px;
    height: 8px;
    margin-bottom: 10px;
    background-color: var(--color-secundario);
}

.sede-right {
    flex: 1 1 50%;
}

.sede-right iframe {
    border-radius: 20px;
}

.sede-buttons {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.sede-buttons a {
    flex: 1;
    text-align: center;
    color: var(--color-secundario);
    font-size: 1.5rem;
    padding: 12px 30px;
    background-color: transparent;
    border: 1px solid var(--color-secundario);
    border-radius: 100px;
    transition: transform 0.5s;
}

.sede-buttons a:hover {
    background-color: var(--color-secundario);
    color: var(--color-white);
    transform: scale(1.03);
}


/* ***************************** */
/* ESTILOS PARA LA PAGINA SERVICIOS */

.servicios-nav {
    position: sticky;
    top: 0;
    z-index: 999;
    padding: 12px 16px;
    background-color: var(--color-secundario);
}

.servicios-nav ul {
    display: flex;
    gap: 20px;
}

.servicios-nav ul li {
    flex: 1;
}

.servicios-nav ul li a {
    display: block;
    border-radius: 100px;
    border: 1px solid var(--color-primario);
    color: var(--color-white);
    padding: 10px;
    text-align: center;
    font-size: 1.6rem;
    font-weight: 600;
    transition: transform 0.5s;
}

.servicios-nav ul li a:hover {
    background-color: var(--color-primario);
    transform: scale(1.02);
}

.servicios-nav ul li a.active {
    background-color: var(--color-primario);
    transition: background-color 0.3s;
}

.servicios-section {
    background-color: var(--color-white);
}

.servicios-service {
    margin: 40px 0 60px;
}

.servicios-border {
    justify-content: space-between;
    display: flex;
}

.servicios-border div {
    background-color: var(--color-primario);
    width: 4%;
    height: 4px;
}

.servicios-border hr {
    width: 95%;
}

.servicios-service h2 {
    text-align: left;
    margin-bottom: 10px;
}

.servicios-service-subcategory {
    font-size: 3.2rem !important;
}

.servicios-service-subcategory-description {
    font-size: 1.8rem;
    font-weight: 500;
}

.servicios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.servicios-grid figure {
    border-radius: 20px;
    background-color: var(--color-background);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0px 6px 8px rgba(42, 85, 134, 0.15);
    transition: transform 0.2s ease-in-out;
}

.servicios-grid figure:hover {
    transform: translateY(-5px);
}

.servicios-grid figure img {
    width: 100%;
    height: 250px;
    min-height: 250px;
    object-fit: cover;
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
}

.servicios-grid figure figcaption {
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.servicios-grid figure figcaption h3 {
    color: var(--color-secundario);
}

.servicios-grid figure figcaption p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: var(--color-secundario);
    text-overflow: ellipsis;
}

.servicios-grid figure figcaption a {
    width: 100%;
    margin-top: 20px;
    text-align: center;
}

/* ************************************* */
/* *** ESTILOS PARA EL BLOG PRINCIPAL*** */
.main-blog {
    background-color: var(--color-background);
}

.blog-section {
    display: flex;
    gap: 20px;
    padding: 50px 16px 100px;
}

.blog-left {
    width: 70%;
}

.blog-right {
    width: 30%;
}


.blog-article-left {
    width: 20%;
    top: 20px;
    position: sticky;
    height: fit-content;
    align-self: flex-start;
}

.blog-article-right {
    width: 20%;
    top: 20px;
    position: sticky;
    height: fit-content;
    align-self: flex-start;
}

.blog-article-midle {
    width: 60%;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.post {
    background: var(--color-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.5s ease-in-out;
}

.post:hover {
    transform: scale(1.02);
}

.post img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.post-content {
    padding: 1.6rem;
}

.post-content h2 {
    margin-bottom: 10px;
}

.post-content h2 a {
    text-align: left;
    font-size: 2.4rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: var(--color-secundario);
    text-overflow: ellipsis;
    margin-top: 8px;
}

.post-content .excerpt {
    font-size: 1.4rem;
    margin: 0 0 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.read-more {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--color-secundario);
}

time {
    font-size: 1.2rem;
    color: var(--color-texto);
}

time i {
    margin-right: 4px;
}

.pagination {
    width: 100%;
}

.pagination ul {
    list-style: none;
    padding: 4rem 0 0;
    display: flex;
    gap: 1.0rem;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
}

.pagination a {
    padding: 1.0rem 1.6rem;
    border-radius: 100px;
}

.pagination a.active,
.pagination a[aria-current="page"] {
    background: var(--color-secundario);
    color: var(--color-white);
    font-weight: bold;
    font-size: 1.6rem;
}

/* *** ESTILOS FORMULARIO BLOG *** */
.formulario-header-blog {
    display: block;
    gap: 0;
    padding: 16px 0;
    text-align: center;
}

.blog-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    background-color: var(--color-white);
    padding: 20px 16px !important;
    border-radius: 20px;
}

.blog-image {
    width: 100%;
    height: 500px;
    margin-bottom: 20px;
    border-radius: 20px;
    transition: transform 0.5s ease-in-out;
    background: url('../img/shared/servicio-de-gps-vehicular-geosatelital-ecuador-verti.webp') center/cover no-repeat;
}

.blog-image:hover {
    transform: scale(1.02);
}

.blog-image-article {
    width: 100%;
    height: 350px;
    margin-bottom: 20px;
    border-radius: 20px;
    transition: transform 0.5s ease-in-out;
    background: url('../img/shared/servicio-de-gps-vehicular-geosatelital-ecuador-verti.webp') center/cover no-repeat;
}

.blog-image-article:hover {
    transform: scale(1.02);
    opacity: 0.8;
}

.blog-recientes {
    margin-top: 30px;
}

.blog-recientes h2 {
    text-align: left;
}

.blog-table-content {
    position: sticky;
    background-color: var(--color-background-blue-0);
    padding: 1.5rem;
    border-left: 4px solid var(--color-secundario);
    margin-bottom: 2rem;

}

.blog-table-content h2 {
    text-align: left;
    font-size: 2.2rem;
    color: var(--color-secundario);
    margin-bottom: 1.5rem;
}

.blog-table-content a {
    font-size: 1.6rem;
    color: var(--color-secundario) !important;
}

.blog-table-content a:hover {
    text-decoration: underline;
}

.blog-table-content li {
    padding-bottom: 10px;
}

.blog-table-content ul {
    padding-left: 1rem;
}

.blog-contenido {
    width: 100%;
}

.blog-contenido img {
    width: 100%;
    border-radius: 20px;
}

.article-meta time {
    font-size: 1.4rem;
}

.article-meta span {
    font-size: 1.4rem;
    margin-left: 16px;
    color: var(--color-secundario);
}

.article-meta span i {
    color: var(--color-secundario);
}

.article-meta time i {
    color: var(--color-secundario);
}

.post-body {
    font-size: 1.6rem;
    margin-top: 20px;
}

.blog-image-post {
    margin-bottom: 20px;
}

.post-body h2 {
    font-size: 2.8rem;
    text-align: left;
    margin-bottom: 10px;
    padding-top: 10px;
}

.post-body h3 {
    color: var(--color-secundario);
    font-weight: 400;
    margin-bottom: 10px;
}

.post-body p {
    margin-bottom: 16px;
}

.post-body ul {
    margin-bottom: 16px;
    padding-left: 32px;
}

.post-body ul li {
    margin-bottom: 8px;
    list-style: initial !important;
}

.post-body ol {
    padding-left: 32px;
}

.post-body ol li {
    margin-bottom: 8px;
    list-style: decimal !important;
}

.post-body a {
    color: var(--color-secundario);
    font-weight: 600;
    text-decoration: underline !important;
}

.post-body a:hover {
    color: var(--color-enfasis);
}

.post-body img {
    margin: 20px 0;
}

.post-body-banner-ads {
    height: 120px;
}

.post-body-banner-ads img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease-in-out;
}

.post-body-banner-ads img:hover {
    transform: scale(1.01);
    opacity: 0.8;
}

.post-body-table {
    border-color: var(--color-border);
    border-spacing: 0;
}

.post-body-table th {
    padding: 12px;
}

.post-body-table td {
    padding: 12px;
}

.post-body-related {
    margin-top: 2rem;
    padding: 2rem;
    border-radius: 5px;
    background-color: var(--color-background);
    color: var(--color-primario);
    font-weight: bold;
}

.post-body-related h3 {
    margin-bottom: 0;
    margin-top: 1rem;
}

.post-body-related h3 a {
    color: var(--color-secundario);
    font-weight: bold;
    text-decoration: none !important;
}

.share-article {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #ddd;
}

.share-article--mobile {
    display: none;
    margin-bottom: 3rem;
}

.share-article h2 {
    text-align: left;
    font-size: 2.2rem;
    color: var(--color-secundario);
    margin-bottom: 1.5rem;
}

.share-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
}


.share-buttons a {
    color: var(--color-white);
    font-size: 1.4rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.2s;
}

.share-facebook {
    background-color: #3b5998;
}

.share-whatsapp {
    background-color: #25D366;
}

.share-linkedin {
    background-color: #0077B5;
}

.share-x {
    background-color: #000000;
}

.share-email {
    background-color: #df6057;
}

.share-buttons a:hover {
    background-color: var(--color-enfasis);
}

.share-buttons i {
    font-size: 1rem;
}

/* *************************************** */
/* *** ESTILOS PARA LA PAGINA DE DETALLE DE SERVICIOS *** */

.service-hero {
    align-content: center;
}

.service-hero-grid {
    display: flex;
    align-items: center;
    gap: 50px;
}

.service-hero-left {
    flex: 1 1 50%;
}

.service-hero-left h2 {
    text-align: left;
    font-size: 3.6rem;
    margin-bottom: 1rem;
}

.service-hero-left .subtitulo {
    font-size: 2.4rem;
    font-weight: normal;
    margin-bottom: 1rem;
    color: var(--color-secundario);
}

.service-hero-left .descripcion {
    margin-bottom: 2rem;
    line-height: 1.6;
    font-size: 1.8rem;
}

.service-hero-right {
    flex: 1 1 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.imagen-efecto {
    width: 100%;
    max-width: 100%;
    border-radius: 15px;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.imagen-efecto:hover {
    transform: scale(1.05) rotate(1deg);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.15);
}

.imagen-efecto-video:hover {
    transform: none;
}

.btn-service {
    height: 50px !important;
    padding: 0 32px;
    font-size: 1.8rem;
    font-weight: bold;
    margin-left: 0;
}

.btn-service i {
    font-size: 1.8rem;
}

.service-cta {
    /* background-image: url(../img/shared/servicios/mdvr/trucks-industry-warehouses3d-rendering-illustration.webp); */
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: sticky;
}

.service-cta-background {
    padding: 100px 0;
    background: linear-gradient(to right, #0c335fd7, #1e1d1dda);
}

.service-cta-content {
    text-align: center;
}

.service-cta-content h2 {
    color: var(--color-white);
    margin-bottom: 10px;
}

.service-cta-content p {
    color: var(--color-white);
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.service-cta-content a {
    margin: 0 auto;
    color: var(--color-white);
    background-color: var(--color-primario);
    border: 1px solid var(--color-primario);
}

.service-cta-content a i {
    margin-left: 8px;
}

.service-cta-content a:hover {
    background-color: transparent;
    border: 1px solid var(--color-primario);
}

.service-about {
    align-content: center;
}

.service-about-title span {
    color: var(--color-primario);
}

.service-benefits {
    width: 100%;
}

.service-benefits-row {
    display: flex;
    gap: 50px;
}

.service-benefits-item-left {
    width: 70%;
    display: grid;
    gap: 3rem;
    grid-template-columns: repeat(2, 1fr);
}

.service-benefits-item-right {
    width: 30%;
    padding-top: 0.5rem;
}

.service-benefits figure {
    width: 100%;
    background-color: var(--color-background);
    border-radius: 2rem;
    padding: 2.4rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-benefits figure:hover {
    transform: scale(1.02);
    box-shadow: 0px 0px 30px #2a558634;
}

.service-benefits figure img {
    width: 100%;
    border-radius: 2rem;
    margin-bottom: 1rem;
}

.service-benefits figure h3 {
    color: var(--color-secundario);
    margin-bottom: 1rem;
}

.service-benefits-content {
    width: 100%;
    top: 200px;
    position: sticky;
    height: fit-content;
    align-self: flex-start;
}

.service-benefits-content h2 {
    text-align: left;
    margin: 1rem 0;
}

.service-benefits-content p {
    margin-bottom: 2rem;
}

.service-get-access-row {
    display: flex;
    gap: 4rem;
}

.service-get-access-item {
    width: 50%;
    min-height: 400px;
    max-height: 520px;
}

.service-get-access-title {
    text-align: left;
}

.service-get-access-title span {
    color: var(--color-primario);
}

.service-get-access-item--figure {
    width: 100%;
    height: 100%;
}

.service-get-access-item--figure img {
    width: 100%;
    height: inherit;
    object-fit: cover;
    border-radius: 2rem;
}

.service-get-access-card {
    background-color: var(--color-white);
    box-shadow: 0px 8px 10px rgba(42, 85, 134, 0.05);
    border-radius: 2rem;
    padding: 2rem 2.4rem;
    display: flex;
    gap: 1rem;
    margin-bottom: 2.4rem;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-get-access-card:hover {
    transform: scale(1.02);
    box-shadow: 0px 6px 8px rgba(42, 85, 134, 0.15);
}

.service-get-access-card figure {
    display: flex;
    align-items: center;
}

.service-get-access-card figure img {
    width: 40px;
    border-radius: 0;
    margin-right: 1rem;
}

.service-get-access-card figure figcaption {
    font-size: 1.6rem;
    color: var(--color-secundario);
}

.banner-promocional {
    background-color: var(--color-background);
}

.banner-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 20px;
}

.banner-img:hover {
    opacity: 0.8;
}



.service-contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.service-contact-left figure {
    width: 100%;
    height: 100%;
}

.service-contact-image {
    height: inherit;
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.service-contact-image:hover {
    transform: scale(1.05) rotate(-1deg);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.15);
}

.service-contact-tag {
    background-color: var(--color-primario);
    color: var(--color-white);
    border-radius: 50px;
    padding: 4px 12px;
    font-size: 1.4rem;
}

.service-contact-right {
    width: 80%;
}

.service-contact-right h2 {
    text-align: left;
    margin: 20px 0;
}

.service-contact-right h2 span {
    color: var(--color-primario);
}

.service-contact-form input,
.service-contact-form textarea {
    padding: 10px 14px;
    border: 1px solid var(--color-primario);
    border-radius: 12px;
    font-size: 1.6rem;
    font-family: inherit;
    resize: vertical;
    width: 100%;
    margin-bottom: 20px;
}

.service-contact-form button {
    width: 100%;
}

.service-contact-form button i {
    margin-left: 8px;
}

.service-contact-form p {
    margin-top: 1.6rem;
}



/* ***************************************** */
/* *** ESTILOS PARA PREGUNTAS FRECUENTES *** */
.faq-page-content {
    width: 60%;
    margin: 0 auto;
}

.faq-group {
    margin-bottom: 40px;
}

.faq-category {
    margin-bottom: 20px;
}

details {
    margin-bottom: 16px;
    background: #fff;
    padding: 16px 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
}

details p {
    padding-top: 20px;
}

summary {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--color-secundario);
    cursor: pointer;
    position: relative;
    padding-right: 20px;
}

summary::after {
    content: '+';
    position: absolute;
    right: 0;
    font-size: 20px;
    transition: transform 0.3s ease;
}

details[open] summary::after {
    content: '−';
}

/* ******************************************* */
/* *** ESTILOS PARA LIBRO DE RECLAMACIONES *** */


.reclamos-form {
    background: white;
    padding: 30px;
    border-radius: 10px;
    margin-top: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.reclamos-form fieldset {
    border: none;
    margin-bottom: 30px;
}

.reclamos-form legend {
    font-weight: bold;
    color: var(--color-secundario);
    font-size: 2rem;
    margin-bottom: 10px;
}

.reclamos-form label {
    display: block;
    color: var(--color-secundario);
    margin: 10px 0 4px;
    font-weight: 500;
    font-size: 1.6rem;
}

.reclamos-form input,
.reclamos-form select,
.reclamos-form textarea {
    width: 100%;
    padding: 16px;
    font-size: 1.4rem;
    border-radius: 6px;
    border: 1px solid #ccc;
    margin-bottom: 10px;
}

.reclamo-row {
    display: flex;
    gap: 20px;
}

.reclamo-row div {
    flex: 1;
}

.reclamo-row-check {
    display: flex !important;
    justify-content: left;
    align-items: center;
    width: 100%;
}

.reclamo-row-check input {
    width: 30px;
    margin-bottom: 0;
}

.reclamo-row-check a {
    color: var(--color-secundario);
    font-weight: 600;
    margin-left: 6px;
}

.reclamo-row-check a:hover {
    color: var(--color-enfasis);
    text-decoration: underline;
}

.reclamo-btn {
    margin-top: 20px;
}

.registro-exitoso {
    width: 100%;
}

.registro-exitoso img {
    width: 100%;
    border-radius: 2rem;
}


/* *** SECCIÓN DE SERVICIOS HOME *** */
.big-menu-mobile {
    width: 100%;
}

.big-menu-mobile__item {
    background-color: var(--color-white);
    border-radius: 10px;
    margin-bottom: 2rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding: 0;
}

.big-menu-mobile__title {
    font-size: 2rem;
    font-weight: 600;
    padding: 1.2rem 2.4rem;
    cursor: pointer;
    position: relative;
    background-color: var(--color-secundario);
    color: var(--color-white);
}

.big-menu-mobile__answer {
    padding: 1.5rem;
    font-size: 1.6rem;
}

.big-menu-mobile__title::after {
    content: '➤';
    font-size: 1.4rem;
    position: absolute;
    right: 1.5rem;
    transition: transform 0.3s ease;
}

details[open] .big-menu-mobile__title::after {
    content: '➤';
    transform: rotate(90deg);
}

.big-menu-mobile__title:hover {
    background-color: var(--color-primario);
    color: var(--color-white);
}

.big-menu__url--border {
    border-radius: 100px;
    padding: 1.5rem 0;
    cursor: pointer;
    border: 1px solid var(--color-border);
}

.big-menu__url--border:hover {
    border: 1px solid var(--color-background);
}

.big-menu__url--cursor-none {
    border: 1px solid var(--color-border) !important;
    cursor: auto !important;
    background-color: white !important;
    box-shadow: none !important;
    transform: scale(1.00) !important;
}

.big-menu__category--bg {
    color: var(--color-secundario);
    font-weight: 600;
    border: 1px solid var(--color-background);
    background-color: var(--color-background);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.01);
}

.big-menu-table tr {
    display: flex;
    gap: 2rem;
}

.big-menu-table tr td {
    flex: 1;
    margin-bottom: 2rem;
}