* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: Helvetica, Arial, sans-serif;
    color: #666;
    background: #f2f2f2;
    font-size: 1em;
    line-height: 1.5em;
    overflow-x: hidden;
    /* Prevent global horizontal scroll */
}

.centra_all {
    display: flex;
    justify-content: center;
    /* Centra horizontalmente */
    align-items: center;
}

/* Main Header Styles */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 20px 0;
    background: transparent;
}

.main-header.scrolled {
    background: rgba(5, 7, 32, 0.8);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    margin: 0 auto;
}

.logo-img {
    height: 50px;
    width: auto;
    transition: height 0.3s ease;
}

.scrolled .logo-img {
    height: 40px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-item {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 0.5px;
    position: relative;
    padding: 8px 0;
    transition: color 0.3s ease;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #2a95f3;
    transition: width 0.3s ease;
}

.nav-item:hover {
    color: #2a95f3;
}

.nav-item:hover::after {
    width: 100%;
}

/* Dropdown Styles */
/* Unified Tech Background for Services, Partners and Contact */
.bloque04,
.bloque06,
.redes-page,
.ciber-page,
.seguridad-page,
.sirvece-page,
.software-page,
#marcas,
#contactanos {
    background: linear-gradient(rgba(5, 7, 32, 0.8), rgba(5, 7, 32, 0.8)), url('../img/stars_bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    z-index: 1;
    padding: 100px 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tech-subtitle {
    color: #2a95f3;
    font-size: 1.2rem;
    font-weight: 500;
    margin-top: 10px;
    letter-spacing: 1px;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(5, 7, 32, 0.95);
    backdrop-filter: blur(15px);
    min-width: 200px;
    list-style: none;
    padding: 15px 0;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.dropdown:hover .dropdown-menu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateX(-50%) translateY(0) !important;
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 25px;
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.dropdown-menu li a:hover {
    background: rgba(42, 149, 243, 0.1);
    color: #2a95f3;
    padding-left: 30px;
}

.arrow {
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid white;
    margin-left: 5px;
    vertical-align: middle;
    transition: transform 0.3s ease;
}

.dropdown:hover .arrow {
    transform: rotate(180deg);
    border-top-color: #2a95f3;
}

/* Mobile Toggle */
.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
    padding: 5px;
}

.contInicio {
    width: 100%;
    margin: 0;
    padding: 0;
}

/***********VIDEO HERO SECTION****************/
.video-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

#hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    /* Forzar 100% ancho */
    height: 100%;
    /* Forzar 100% alto */
    transform: translate(-50%, -50%);
    object-fit: cover;
    /* Asegura que cubra sin deformar */
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 7, 32, 0.4);
    /* Overlay más ligero para resaltar el video */
    z-index: 1;
}

.hero-content {
    position: absolute;
    /* Usar absolute para centrado absoluto sobre el video */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    color: white;
    padding: 0 20px;
    width: 100%;
    max-width: 1200px;
}

.textVideo_01 {
    font-size: clamp(2rem, 5vw, 4.5rem);
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(42, 149, 243, 0.5);
    line-height: 1.1;
}

.textVideo_02 {
    font-size: clamp(1rem, 2.5vw, 1.8rem);
    font-weight: 300;
    opacity: 0.9;
}

/***********\VIDEO HERO SECTION****************/
/*********** FULL WIDTH SECTIONS ****************/
.full-width {
    width: 100% !important;
    margin: 0 !important;
    padding: 80px 5%;
    /* Restoring 5% horizontal padding for better alignment */
    overflow: hidden;
    /* Local overflow safety */
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: white;
    text-transform: uppercase;
    letter-spacing: 5px;
}

/* Contact Fluid Layout Redesign */
.contact-fluid-container {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1200px;
    gap: 30px;
    margin-top: 40px;
}

.contacto-info-full {
    flex: 1;
    min-width: 300px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 60px 5%;
    border-radius: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.contact-form-full {
    flex: 1.5;
    min-width: 350px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 60px 40px;
    border-radius: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.fluid-form {
    width: 100%;
}

.fluid-form .form-group {
    margin-bottom: 25px;
    width: 100%;
}

.fluid-form input,
.fluid-form textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 18px 25px;
    color: white;
    border-radius: 15px;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.captcha-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.captcha-label {
    color: #2a95f3;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary-full {
    width: 100%;
    padding: 22px;
    background: #2a95f3;
    color: white;
    border: none;
    border-radius: 15px;
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 3px;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 10px 20px rgba(42, 149, 243, 0.3);
}

.btn-primary-full:hover {
    background: #1a74c3;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(42, 149, 243, 0.3);
}

.list_contac_fluid {
    margin: 40px 0;
}

.cnt_item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
    text-decoration: none;
    margin-bottom: 20px;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.cnt_item:hover {
    color: #2a95f3;
}

.social-links-fluid {
    display: flex;
    gap: 20px;
}

.social-links-fluid a {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.social-links-fluid a:hover {
    background: #2a95f3;
    border-color: #2a95f3;
    transform: translateY(-5px);
}

/*********** TECH REDESIGN SECTION (BLOQUE 02) ****************/
.bloque_02 {
    background: linear-gradient(rgba(5, 7, 32, 0.9), rgba(5, 7, 32, 0.95)), url('../img/hero_tech.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 120px 0;
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.tech-container {
    width: 90%;
    max-width: 1400px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.tech-content-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 60px;
    border-radius: 40px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    position: relative;
}

.tech-label {
    color: #2a95f3;
    font-weight: 700;
    letter-spacing: 5px;
    font-size: 0.9rem;
    margin-bottom: 20px;
    display: inline-block;
    border-bottom: 2px solid #2a95f3;
    padding-bottom: 5px;
}

.tech-title {
    font-size: clamp(2rem, 3.5vw, 3rem);
    color: white;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
}

.tech-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

.tech-benefits {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 30px;
}

.tech-benefits li {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.tech-benefits span.material-symbols-outlined {
    background: rgba(42, 149, 243, 0.1);
    color: #2a95f3;
    padding: 12px;
    border-radius: 12px;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.tech-benefits li:hover span.material-symbols-outlined {
    background: #2a95f3;
    color: white;
    transform: scale(1.1) rotate(5deg);
}

.benefit-txt {
    display: flex;
    flex-direction: column;
}

.benefit-txt strong {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.benefit-txt span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
}

/* Futuristic Visual */
.tech-visual-wrapper {
    display: flex;
    justify-content: center;
    position: relative;
}

.tech-visual {
    width: 400px;
    height: 400px;
}

.tech-core {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.core-glow {
    position: absolute;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(42, 149, 243, 0.4) 0%, transparent 70%);
    filter: blur(20px);
    animation: corePulse 4s infinite ease-in-out;
}

.core-inner {
    width: 100px;
    height: 100px;
    background: rgba(5, 7, 32, 0.8);
    border: 2px solid #2a95f3;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 5;
    box-shadow: 0 0 30px rgba(42, 149, 243, 0.5);
}

.core-inner span {
    font-size: 50px;
    color: white;
    text-shadow: 0 0 10px #2a95f3;
    animation: iconRotation 10s infinite linear;
}

.orbit {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.orbit-1 {
    width: 250px;
    height: 250px;
    animation: rotate 15s infinite linear;
}

.orbit-2 {
    width: 350px;
    height: 350px;
    animation: rotate 25s infinite linear reverse;
}

.node {
    position: absolute;
    width: 12px;
    height: 12px;
    background: #2a95f3;
    border-radius: 50%;
    box-shadow: 0 0 15px #2a95f3;
}

.n1 {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.n2 {
    bottom: 20%;
    right: 5%;
}

.n3 {
    bottom: 20%;
    left: 5%;
}

@keyframes corePulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.4;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.8;
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes iconRotation {
    from {
        transform: rotateY(0deg);
    }

    to {
        transform: rotateY(360deg);
    }
}

/* FIN BLOQUE 2*/

/*********** SERVICES SECTION (BLOQUE 04) ****************/
.services-container {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    width: 100%;
    max-width: 1400px;
    margin-top: 60px;
    gap: 30px;
}

.service-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
    transition: all 0.4s ease;
    cursor: default;
}

.service-icon-wrapper {
    width: 140px;
    height: 140px;
    border: 2px solid rgba(42, 149, 243, 0.3);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
    position: relative;
    background: rgba(42, 149, 243, 0.05);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-icon-wrapper::after {
    content: '';
    position: absolute;
    width: 120%;
    height: 120%;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.5s ease;
}

.service-icon-wrapper span {
    font-size: 60px;
    color: #2a95f3;
    text-shadow: 0 0 15px rgba(42, 149, 243, 0.6);
    transition: all 0.4s ease;
}

.service-card-title {
    color: white;
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.service-card-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    line-height: 1.6;
}

.service-divider {
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(42, 149, 243, 0.5), transparent);
}

/* Hover Effects */
.service-card:hover .service-icon-wrapper {
    transform: scale(1.1);
    background: rgba(42, 149, 243, 0.15);
    border-color: #2a95f3;
    box-shadow: 0 0 30px rgba(42, 149, 243, 0.3);
}

.service-card:hover .service-icon-wrapper::after {
    opacity: 1;
    width: 105%;
    height: 105%;
}

.service-card:hover .service-icon-wrapper span {
    transform: rotateY(180deg);
}

.service-card:hover .service-card-title {
    color: #2a95f3;
}

/*BLOQUE 3*/
.bloque_03 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    background: linear-gradient(to right, #2a95f3, #2600ff);
}

.porqueelegir {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    width: 90%;
}

.subBloque_03 {
    display: grid;
    grid-template-columns: 1fr 3fr 1fr;
    margin-top: 10vh;
    margin-bottom: 10vh;
}

.img_porqueel {
    width: 4vw;
}

.textBl03_01 {
    font-size: 2.5vh;
    color: #fff;
}

.textBl03_02 {
    font-size: 2vh;
    color: #fff;
}

/*FIN BLOQUE 3*/
/*BLOQUE 4*/
.bloque_02 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    background: linear-gradient(rgba(5, 7, 32, 0.8), rgba(5, 7, 32, 0.8)), url('../img/hero_tech.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Parallax effect for premium feel */
    padding: 100px 0;
}

.bloque_04 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    background-color: #050720;
}

.subBloque_04 {
    display: grid;
    grid-template-columns: 1fr 4fr 10fr;
    width: 90%;
}

.secBloque04 {
    margin-top: 10vh;
    margin-bottom: 10vh;
}

.img_bl04 {
    width: 30vw;
    height: 54vh;
}

/* Brands Grid Implementation */
.brands-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 20px;
    width: 100%;
    max-width: 1400px;
    margin-top: 50px;
}

.brand-item {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 25px;
    height: 140px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.brand-item:hover {
    background: rgba(42, 149, 243, 0.1);
    border-color: #2a95f3;
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(42, 149, 243, 0.2);
}

.brand-item img {
    max-width: 100%;
    max-height: 65px;
    object-fit: contain;
    filter: grayscale(100%) brightness(1.5);
    opacity: 0.6;
    transition: all 0.5s ease;
}

.brand-item:hover img {
    filter: grayscale(0%) brightness(1.1);
    opacity: 1;
    transform: scale(1.1);
}

/* Animated Separator */
.animated-separator {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #2a95f3, transparent);
    margin: 20px auto;
    position: relative;
    border-radius: 2px;
    overflow: hidden;
}

.animated-separator::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    animation: separatorPulse 3s infinite;
}

@keyframes separatorPulse {
    0% {
        left: -100%;
    }

    50% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}

/* Logo Grid (Matrix 4x4) */
.logo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    width: 100%;
    max-width: 1200px;
    margin-top: 50px;
    justify-items: center;
    align-items: center;
}

.logo-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    border-radius: 12px;
    padding: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    height: 160px;
}

.logo-item:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(255, 255, 255, 0.1);
    border-color: #2a95f3;
    box-shadow: 0 15px 35px rgba(42, 149, 243, 0.2);
}

.logo-item img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.5s ease;
}

.logo-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

.slide {
    flex: 0 0 250px;
    /* Ancho fijo para cada slide */
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 30px;
}

.slide img {
    max-width: 100%;
    max-height: 60px;
    filter: grayscale(100%) brightness(200%);
    opacity: 0.5;
    transition: all 0.3s ease;
    object-fit: contain;
}

.slide img:hover {
    filter: grayscale(0%) brightness(100%);
    opacity: 1;
    transform: scale(1.1);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.textBl04_01 {
    font-size: 2.5vh;
    color: #fff;
    font-weight: normal;
}

.textBl04_02 {
    font-size: 3.5vh;
    color: #fff;
    font-weight: normal;
}

.textBl04_03 {
    font-size: 1.8vh;
    color: #fff;
    font-weight: normal;
}

/*FIN BLOQUE 4*/
/*BLOQUE 5*/
.bl_05_servi1 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

.bl_05_servi2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.imagenS {
    margin-top: 10%;
    width: 50%;
    height: auto;
    margin-bottom: 10%;
}

.contenidoT {
    position: relative;
    z-index: 1;
    text-align: left;
    padding: 20px;
    padding-left: 60px;
    width: 80%;

}

.contenidoT h3 {

    font-size: 24px;
    font-weight: normal;
    color: gray;
}

/*FIN BLOQUE 5*/
/*BLOQUE 6*/
/* Legacy bloque06 removed for full-width starry redesign */

.bloque-cuadricula {
    /*background-color:#f2f2f2;*/
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.bl_clie_01 {
    width: 90%;
    display: flex;
    justify-content: start;
    align-items: center;
    /*margin-top: 1vh;*/
    height: 6vh;
}

.bl_clie_01 h2 {
    margin: 1px;
    color: #ffffff;
}

.bl_clie_02 {
    width: 90%;
    display: flex;
    justify-content: start;
    /* Centra horizontalmente */
    align-items: center;
}

.bl_clie_02 h3 {
    margin: 1px;
    color: #2a95f3;
}

.carrucel {
    margin: 15px auto;
    width: 90%;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
    display: flex;
    overflow-x: auto;
}

.carrucel::-webkit-scrollbar {
    display: none;
}

.grupo {
    display: flex;
    align-items: center;
    justify-self: center;
    gap: 1em;
    animation: spin 25s infinite linear;
    padding-right: 1em;
}

.carta {
    flex: 0 0 5em;
    padding: 0.5em;
    /*background: cornflowerblue; height: 1em;*/
    font-size: 3rem;
    border-radius: .2em;
    text-align: center;
    align-content: center;
}

@keyframes spin {
    from {
        translate: 0;
    }

    to {
        translate: -100%;
    }
}

.tamImg_01 {
    width: 8vw;
    height: 6vh;
    filter: grayscale(0);
    transition-property: filter;
    transition-duration: 1s;
}

.tamImg_02 {
    width: 7vw;
    height: 8vh;
    filter: grayscale(0);
    transition-property: filter;
    transition-duration: 1s;
}

.tamImg_01:hover {
    filter: grayscale(0);
}

.tamImg_02:hover {
    filter: grayscale(0);
}

/*FIN BLOQUE 6*/
/*INI BLOQUE 7*/
#contactanos {
    background: linear-gradient(135deg, #050720 0%, #0a1145 100%);
    padding: 80px 0;
    color: white;
}

.contactanos {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    width: 90%;
    margin: 0 auto;
    align-items: start;
}

.contacto-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
    background-image: linear-gradient(rgba(5, 7, 32, 0.8), rgba(5, 7, 32, 0.8)), url('../img/contactanos.png');
    background-size: cover;
    background-position: center;
    padding: 40px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contacto-info h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    background: linear-gradient(to right, #fff, #2a95f3);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.img_contacto {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 20px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 15px rgba(42, 149, 243, 0.3));
}

.list_contac,
.list_contac2 {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cnt_txt01 {
    color: #fff;
    font-size: 1.1rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: transform 0.3s ease;
}

.cnt_txt01:hover {
    transform: translateX(10px);
    color: #2a95f3;
}

.cnt_txt01 .material-symbols-outlined {
    background: rgba(42, 149, 243, 0.1);
    padding: 10px;
    border-radius: 12px;
    color: #2a95f3;
}

.cnt_red_group {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.cnt_txt02 {
    color: #fff;
    font-size: 1.5rem;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.cnt_txt02:hover {
    background: #2a95f3;
    border-color: #2a95f3;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(42, 149, 243, 0.4);
}

.horario-box {
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: 15px;
    border-left: 4px solid #2a95f3;
}

.cnt_txt03 {
    display: block;
    font-weight: bold;
    margin-bottom: 10px;
    color: #2a95f3;
}

.cnt_txt04 {
    display: block;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Form Styles */
.contact-form-container {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 500;
    color: #ccc;
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: white;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2a95f3;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 4px rgba(42, 149, 243, 0.1);
}

.btn-submit {
    padding: 15px;
    background: linear-gradient(to right, #2a95f3, #2600ff);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(38, 0, 255, 0.4);
    filter: brightness(1.1);
}

.btn-submit:active {
    transform: translateY(0);
}

.captcha-group {
    background: rgba(42, 149, 243, 0.05);
    padding: 15px;
    border-radius: 12px;
    border: 1px dashed rgba(42, 149, 243, 0.3);
}

#captcha-question {
    font-weight: bold;
    color: #2a95f3;
}

/*FIN BLOQUE 7*/

.arb-footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 20px;
}

.arb-footer p {
    margin: 0;
}

.arb-footer a {
    color: white;
}

/***********************************REDES************************************************************************************/
.contRedes {
    display: grid;
    grid-template-rows: 1fr 3fr 6fr 5fr 0.5fr;
}

/* Old header2 removal */

.btnAjusSubmenu2 {
    background-color: #333;
    color: white;
    padding: 16px;
    font-size: 16px;
    border: none;
    cursor: pointer;
}

.ajusSubmenu2-content {
    display: none;
    position: absolute;
    background-color: #333;
    min-width: 20wv;
    z-index: 1;
    border-radius: 0px 0px 6px 6px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

.ajusSubmenu2-content a {
    color: #fff;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.ajusSubmenu2-content summary {
    color: #fff;
}

.ajusSubmenu2-content a:hover {
    color: #1f89a9;
}

.ajusSubmenu2-content summary:hover {
    color: #1f89a9;
    cursor: pointer;
}

.ajusSubmenu2:hover .ajusSubmenu2-content {
    display: block;
}

.subArb_submenu3 {
    list-style: none;
}

.subArb_submenu3>li>a {
    display: block;
    color: white;
    text-decoration: none;
    margin-left: -2vw;
}




.btnMenu_2 span {
    color: #fff;
}

.redes_blq01 {
    /*margin-top: 4.5%;*/
    height: 26vh;
    /*background-image: url(../img/ARB_fondo_01.jpg);*/
}

.contet_redes_blq01 {
    width: 90%;
    display: grid;
    grid-template-columns: 1fr 5fr;
    margin-left: 5%;
}

.imgredes_blq01 {
    margin-top: 4%;
    width: 10vw;
    height: auto;
    margin-bottom: 4%;
}

.redes_blq02 {
    margin-bottom: 2vh;
}

.contet_redes_blq02 {
    width: 90%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    margin-left: 5%;
}

.txtRedes_01 {
    /*font-size: 1vw;*/
    color: #000;
}

.txtRedes_02 {
    font-size: 1vw;
    color: #000;
    text-align: justify;
}

.rdsblq02_02_cnt {
    width: 80%;
}

.txtRedes_03 {
    font-size: 1.2vw;
    color: #121d89;
    font-weight: 600;
}

.txtRedes_04 {
    font-size: 1vw;
    color: #000;
    text-align: justify;
}

.divImgRedesDisenio {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.imgRedes_01 {
    width: 98%;
    height: 20vh;
    border: 2px solid #2a83f4;
}

.imginfra_blq01 {
    width: 10vw;
    height: auto;
}

#infraTabs {
    width: 100%;
    /* background: #f00;*/
}

.infratabs_conten {
    padding-left: 4%;
    padding-right: 4%;
    border-top: 1px solid #e1e1e1;
    margin-bottom: 5%;
}

.infratabs_btns {
    width: 50%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-left: 25%;
}

.btnTabsInfra {
    display: grid;
    grid-template-columns: 1fr 3fr;
    cursor: pointer;
    font-size: 1vw;
}

.textInfra_02 {
    font-size: 0.9vw;
    color: #151515;
    font-weight: 500;
}


.btnTabsInfra_slc {
    color: #1fabc8;
    font-weight: 600;
}

.btnTabsInfra:hover {
    color: #1fabc8;
}

.cntInfraOn {
    display: block;
}

.cntInfraOff {
    display: none;
}

.listImgsInfra1 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

.listImgsInfra1 div {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.imginfra_tabs {
    width: 96%;
    height: auto;
    border: 1px solid #19248d;
    border-radius: 4px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
    margin-left: 2%;
}

.imginfra_tabs:hover {
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
    border: 2px solid #1fadca;
    width: 99%;
    margin-left: 0px;
}

.listImgsInfra2 div {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}


/***********************************\INFRAESTRUCTURA************************************************************************************/

/* --- Service Detail Pages Styles --- */
.redes-page {
    padding-top: 120px;
    min-height: 100vh;
}

.service-hero {
    text-align: center;
    padding-bottom: 60px;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

.pillar-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(42, 149, 243, 0.2);
    border-radius: 30px;
    padding: 60px 40px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.pillar-card.highlight {
    background: rgba(42, 149, 243, 0.05);
    border-color: rgba(42, 149, 243, 0.4);
    transform: translateY(-10px);
}

.pillar-card:hover {
    transform: translateY(-15px);
    background: rgba(42, 149, 243, 0.08);
    border-color: #2a95f3;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(42, 149, 243, 0.2);
}

.pillar-icon {
    width: 80px;
    height: 80px;
    background: rgba(42, 149, 243, 0.1);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.pillar-icon span {
    font-size: 40px;
    color: #2a95f3;
    text-shadow: 0 0 10px rgba(42, 149, 243, 0.5);
}

.pillar-title {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-family: 'Outfit', sans-serif;
}

.pillar-list {
    list-style: none;
    padding: 0;
    width: 100%;
    text-align: left;
}

.pillar-list li {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    font-size: 1rem;
    line-height: 1.4;
}

.pillar-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2a95f3;
    font-weight: bold;
}

.service-footer {
    padding: 80px 5%;
    display: flex;
    justify-content: center;
}

.cta-box {
    background: linear-gradient(135deg, rgba(42, 149, 243, 0.05), rgba(5, 7, 32, 0.8));
    border: 1px solid rgba(42, 149, 243, 0.3);
    border-radius: 40px;
    padding: 60px;
    text-align: center;
    max-width: 800px;
    width: 100%;
    backdrop-filter: blur(10px);
}

.cta-box h3 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 30px;
}

.whatsapp-btn {
    background: #25d366 !important;
    border-color: #25d366 !important;
    display: inline-flex !important;
    align-items: center;
    gap: 10px;
    padding: 15px 30px !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
}

.whatsapp-btn:hover {
    background: #128c7e !important;
    border-color: #128c7e !important;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.4) !important;
    transform: translateY(-2px);
}

.whatsapp-btn i {
    font-size: 1.4rem;
}