/* ==== LETRA ONLINE ==== */
@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@600;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inconsolata:wght@400;500;600;700;800;900&display=swap');

:root {
    /* COLORES */
    --c-body: #3D5872;
    --c-brand: #029791;
    --c-darck: #17273D;
    --c-gris: #696E79;
    --c-negro: black;
    --c-blanco: white;
    /* FUENTES */
    --rubick: 'Rubik', sans-serif;
    --inconsolata: 'Inconsolata', monospace;
    /* BORDES */
    --radio: 1em;
    --btnRadio: .5em;
}
/* ==== BASE ==== */
* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
html {
    scroll-behavior: smooth;
}
body{
    font-family: var(--inconsolata);
    background: var(--c-body);
    color: var(--c-blanco);
}
section{
    padding: 2em 0;
}
a {
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
}
ul,
li {
    list-style: none;
}
li::marker {
    color: var(--c-brand);
}
h1,h2,h3,h4,h5,h6 {
    font-family: var(--rubick);
}
h1{
    width: 100%;
    text-align: center;
    margin: 2em 0;
}
/* ==== BOX ==== */
.centrado {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}
/* ==== REUTILIZABLES ==== */
.flex {
    display: flex;
}
.flex-col {
    display: flex;
    flex-direction: column;
}
.flex-wrap {
    flex-wrap: wrap;
    justify-content: center;
    gap: 2em;
}
.div50 {
    width: 50%;
}
/* ==== HEADER ==== */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--c-darck);
    padding: 1em;
    height: 60px;
}
.hero{
    height: 60%;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.hero .div50{
    padding: 2em;
}
.hero p{ 
    font-size: 1.3em;
    margin-top: 1em;
}
.divHeader {
    height: 100vh;
}
/* === LOGO EMPRESA === */
.logoICI {
    width: 110px;
    height: auto;
    margin-left: 2em;
}
/* ==== NAV ==== */
.navUno ul {
    width: 100%;
    text-align: center;
}
.navUno ul li {
    display: inline-block;
    margin: 0 1em;
}
.navUno ul li a {
    display: block;
    width: 150px;
    color: var(--c-blanco);
    font-family: var(--rubick);
    font-weight: bold;
    font-size: .8em;
    text-align: center;
    text-transform: uppercase;
    padding: .63em 0;
}
.navUno ul li a:hover {
    background-color: var(--c-brand);
    border-radius: 1em;
    color: var(--c-negro);
}
.activoNav {
    border: solid 1px var(--c-brand);
    border-radius: 1em;
}
/* CARD EFECTO S1GA */
.cardEfect {
    display: flex;
    align-items: center;
    gap: 1em;
}
.cardEfect div:nth-child(1) {
    width: 140px;
    height: 310px;
    border: solid var(--c-gris) 2px;
    border-radius: var(--radio);
    animation-delay: 0.7s;
    background-image: url(img/SIGAlOGO.png);
    background-repeat: no-repeat;
    background-size: cover;
}
.cardEfect div:nth-child(2) {
    width: 140px;
    height: 360px;
    border: solid var(--c-gris) 2px;
    border-radius: var(--radio);
    animation-delay: 0.9s;
    background-image: url(img/SIGAlOGO.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position-x: center;
}
.cardEfect div:nth-child(3) {
    width: 140px;
    height: 320px;
    border: solid var(--c-gris) 2px;
    border-radius: var(--radio);
    animation-delay: 0.5s;
    background-image: url(img/SIGAlOGO.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position-x: right;
}
.cardEfect div {
    animation: moveUpDown 3s ease-in-out infinite;
    background: rgba(255, 255, 255, 0.5);
}
/* ---------------------------------------------------- */
/* CONTENIDO WEB MAIN */
/* INDEX */
/* SECTION DE NUESTROS SERVICIOS */
#nuestrosServicios{
    background: var(--c-gris);
    height: 100vh;
}
#nuestrosServicios h2{
    text-align: center;
    width: 100%;
    margin-bottom: 1.3em;
    text-transform: uppercase;
}
/* CARD SERVICE */
.divCard{
    flex-wrap: wrap;
    gap: 1em;
    justify-content: center;
}
.cardSRV {
    background: white;
    border-radius: var(--radio);
    position: relative;
    text-align: center;
    box-shadow: -1px 15px 30px -12px white;
    z-index: 10;
    overflow: hidden;
    width: 30%;
}
.headSRV {
    background: var(--c-brand);
    height: 80px;
    justify-content: center;
    align-items: center;
}
.headSRV h3 {
    padding-left: 2.5em;
}
.infoSRV {
    padding: 2.5em 1.4em 2em 1.4em;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 90%;
    color: var(--c-negro);
    text-align: left;
    font-size: 1.3em;
}
.iconSrv {
    position: absolute;
    width: 60px;
    height: 60px;
    z-index: 20;
    background: var(--c-darck);
    top: 50px;
    left: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radio);
    overflow: hidden;
    box-shadow: -1px 15px 30px -12px black;
}
/* DIV TECNOLOGIAS */
.tecnologias {
    display: grid;
    grid-template-columns: repeat(6, 200px);
    grid-template-rows: repeat(1, 100px);
    grid-column-gap: 5em;
    grid-row-gap: 0px;
    margin: 1em 0;
}
.tecnologias img {
    display: block;
    object-fit: cover;
    width: 100%;
    height: 100%;
    border-radius: var(--radio);
}
.grid1 {grid-area: 1 / 1 / 2 / 2;}
.grid2 {grid-area: 1 / 2 / 2 / 3;}
.grid3 {grid-area: 1 / 3 / 2 / 4;}
.grid4 {grid-area: 1 / 4 / 2 / 5;}
.grid5 {grid-area: 1 / 5 / 2 / 6;}
.grid6 {grid-area: 1 / 6 / 2 / 7;}
.marquee {
    --gap: 1rem;
    --duration: 20s;
    display: flex;
    gap: var(--gap);
    overflow: hidden;
    white-space: nowrap;
    margin: 0 auto;
    width: 80%;
    border-radius: 2em;
    margin-top: 2em;
}
.marquee:hover .marquee__wrapper {
    animation-play-state: paused;
}
.marquee__wrapper {
    animation: var(--duration) slide-1 infinite linear;
    display: flex;
    flex-shrink: 0;
    min-width: 100%;
}
.marquee__wrapper--a {
    animation:
        var(--duration) slide-1 1 linear,
        calc(var(--duration) * 2) slide-2 var(--duration) infinite linear;
    padding: 0 3em;
}
.marquee__wrapper--b {
    animation: calc(var(--duration) * 2) slide-3 infinite linear;
    padding: 0 3em;
}
/* SECTION INFORMACION DE EMPRESA */
#empresa{
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.divEmpresa{
    flex-wrap: wrap;
}
.divEmpresa img {
    display: inline-block;
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.divEmpresa div:nth-of-type(1) {
    border: solid 3px var(--c-brand);
    border-radius: var(--radio);
    overflow: hidden;
    height: 750px;
}
.divEmpresa div:nth-of-type(2) {
    display: flex;
    flex-direction: column;
    gap: 2em;
    align-items: center;
    justify-content: center;
    font-size: 1.1em;
    padding: 1em;
}
.divEmpresa p {
    line-height: 1.1em;
    letter-spacing: .06em;
}
/* SECTION DE CONTACTO */
#contacto{
    display: flex;
    text-align: justify;
    padding-bottom: 0;
}
#contacto .div50:nth-of-type(1){
    background: var(--c-darck);
    height: 350px;
    padding: 2em;
}
#contacto article div{
    width: 50%;
    margin-top: 1em;
}
#contacto article div p{
    margin-top: 1em;
}
#contacto .div50:nth-of-type(2) {
    background: var(--c-brand);
    height: 350px;
    padding: 2em;
}
#contacto h2 {
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 1em;
}
.mapa{
    height: 100%;
    width: 100%;
}
iframe {
    border-radius: var(--radio);
}
/* SECTION - NUESTRO STAFF */
#nuestroStaff .centrado {
    color: var(--c-blanco);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.areaServicio {
    border-bottom: solid 3px var(--c-brand);
    padding-bottom: .2em;
    font-size: 1.3rem;
    margin-top: 2em;
    text-align: center;
}
#nuestroStaff p {
    padding: 1em 0;
    font-size: 1.2em;
}
#nuestroStaff article {
    display: flex;
    justify-content: center;
    gap: 2em;
    margin: 1em 0;
}
#nuestroStaff .centrado article h3 {
    padding-top: .6em;
    letter-spacing: .12em;
    text-transform: uppercase;
    position: relative;
}
#nuestroStaff .centrado article h3::before,
#caracteristicas article li h4::before {
    content: "";
    position: absolute;
    left: -15px;
    top: 40%;
    border-width: 7px;
    border-style: solid;
    border-color: transparent transparent transparent var(--c-brand);
}
#nuestroStaff .centrado article img {
    border-left: solid 8px var(--c-brand);
    border-radius: var(--radio);
    width: 400px;
}
.fotoStaff {
    border: solid 3px var(--c-brand);
    border-radius: var(--radio);
    margin: 2em 0 0 0;
}
/* HTML INDUSTRIA */
#nuestrosProd {
    display: flex;
    flex-direction: column;
    align-items: center;
}
/* NAV DOS ANIMADO CON HOVER */
.navDos {
    color: var(--c-blanco);
    gap: 2em;
    flex-wrap: wrap;
    justify-content: center;
    width: 80%;
}
.navDos h3 {
    text-align: center;
    font-size: 1em;
}
.navDos h4 {
    text-align: center;
    font-size: 1.1em;
    padding-top: .4em;
}
.iconServicio {
    width: 32px;
}
.navDos div span {
    display: flex;
    align-items: end;
}
.navDos div {
    background: #27375E;
    padding: 1em;
    margin: 1em 0 0;
    border-radius: var(--radio);
    width: 260px;
    height: 85px;
    overflow: hidden;
    transition: all 1.8s ease;
    box-shadow: 0 2px 0.5em var(--c-brand);
}
.navDos div article p {
    padding: 0 0 .8em 0;
}
.navDos div article {
    height: 100%;
    padding: 1em .3em 0 .3em;
    display: none;
    position: relative;
}
.navDos div span {
    display: flex;
    align-items: center;
    justify-content: center;
}
.navDos div span img {
    margin-right: 1em;
}
.navDos div:hover {
    height: 360px;
    position: relative;
    z-index: 9999;
}
.navDos div.divHeig:hover {
    height: 455px;
    position: relative;
    z-index: 9999;
}
.navDos div:nth-of-type(1):hover article {display: block;}
.navDos div:nth-of-type(2):hover article {display: block;}
.navDos div:nth-of-type(3):hover article {display: block;}
.navDos div:nth-of-type(4):hover article {display: block;}
.navDos div:nth-of-type(5):hover article {display: block;}
.navDos div:nth-of-type(6):hover article {display: block;}
.navDos div:nth-of-type(7):hover article {display: block;}
.navDos div:nth-of-type(8):hover article {display: block;}
.navDos div:nth-of-type(9):hover article {display: block;}

/* WEB - CARACTERISTICA PRODUCTOS */
#caracteristicas .boxCabazal {
    color: var(--c-blanco);
    display: flex;
    flex-direction: column;
    align-items: center;
}
#caracteristicas h2 {
    text-align: center;
    text-transform: uppercase;
    padding-bottom: .2em;
    border-bottom: solid 3px var(--c-brand);
    width: 1260px;
}
#caracteristicas h3 {
    color: var(--c-brand);
    font-size: 1.3em;
    letter-spacing: .2em;
    margin-top: 1em;
}
#caracteristicas p {
    padding: .5em 0 1em;
    font-size: 1.2em;
}
#caracteristicas li {
    padding-top: .7em;
}
#caracteristicas article {
    margin: 0 auto;
    width: 85%;
}
#caracteristicas article li h4 {
    position: relative;
    text-transform: uppercase;
    letter-spacing: .15em;
}
/* EJEMPLO DE TRABAJOS ICITELCO */
.trabajosICI {
    display: flex;
    flex-direction: column;
    gap: 2em;
}
.ejemplosICI {
    margin: 0 auto;
    width: 65%;
    display: flex;
}
.ejemplosICI figure {
    width: 100%;
    border-radius: var(--radio);
    overflow: hidden;
}
.ejemplosICI img {
    width: 100%;
}
/* ESTILO HTML SERVICIOS S1GA */
#producto {
    color: var(--c-blanco);
    display: flex;
    flex-direction: column;
    align-items: center;
}
#producto h2 {
    width: 100%;
    margin-bottom: 2em;
    letter-spacing: .07em;
}
#producto article:nth-of-type(1) {
    display: flex;
}
#producto article:nth-of-type(1) figure {
    width: 50%;
    padding: 0em 4em 1em 3em;
    display: flex;
}
#producto article:nth-of-type(1) img {
    border: solid 3px var(--c-brand);
    border-radius: var(--radio);
}
#producto article:nth-of-type(1) p {
    width: 50%;
    padding: 1em;
    line-height: 1.5em;
}
#producto article:nth-of-type(2) {
    display: flex;
}
#producto article:nth-of-type(2) ul {
    padding: 1em 2em;
}
#producto article:nth-of-type(2) h3 {
    padding: 0 0 .5em 0;
    letter-spacing: .08em;
    font-size: 1.1em;
    position: relative;
}
#producto article:nth-of-type(2) h3::before {
    content: "";
    position: absolute;
    left: -15px;
    top: 0%;
    border-width: 7px;
    border-style: solid;
    border-color: transparent transparent transparent var(--c-brand);
}
#producto article:nth-of-type(2) p {
    padding: 0 0 1em 0;
}
#producto article:nth-of-type(3) {
    padding: 1em 5em;
}

/* BOTONES */
.btnStaf {
    font-family: var(--rubick);
    font-size: .8em;
    display: inline-block;
    text-align: center;
    color: var(--c-negro);
    background: var(--c-brand);
    width: 200px;
    padding: .4em;
    border-radius: var(--btnRadio);
    cursor: pointer;
    margin-top: 1em;
}
.btnStaf:hover {
    background: var(--c-darck);
    color: var(--c-blanco);
}
.btnServ {
    font-family: var(--rubick);
    font-size: 1em;
    display: inline-block;
    text-align: center;
    color: var(--c-blanco);
    width: 100px;
    padding: .25em;
    border: solid 1px var(--c-blanco);
    border-radius: var(--btnRadio);
    cursor: pointer;
    position: absolute;
    left: calc(50% - 50px);
}
.btnServ:hover {
    border: var(--c-brand);
    background: var(--c-brand);
    color: var(--c-negro);
}
/* FOOTER SIMPLE */
footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 3em 0 1.2em 0;
    gap: 1em;
    border-top: solid 3px var(--c-brand);
}
/* ==== ANIMACIONES CSS ==== */
/* MOVIMIENTO S1GA */
@keyframes moveUpDown {
    0% {transform: translateY(0);}
    50% {transform: translateY(-20px);}
    100% {transform: translateY(0);}
}
@keyframes slide-1 {
    from {transform: translateX(0);}
    to {transform: translateX(-100%);}
}
@keyframes slide-2 {
    0% {transform: translateX(100%);}
    100% {transform: translateX(-100%);}
}
@keyframes slide-3 {
    0% {transform: translateX(0);}
    100% {transform: translateX(-200%);}
}
/* ==== SCROLL BAR ==== */
::-webkit-scrollbar {
    width: 0.7rem;
    background: #444466;
}
::-webkit-scrollbar-thumb {
    background: #272525;
    border-radius: .5rem;
}
::-webkit-scrollbar-thumb:hover {
    background: #0F172A;
}