* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
 
html {
    height: 100%;
}

.grid-body {
    background: #18181c ;
    background-image: url(../img/pubg-2.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    
    color: #ffffff;
    font-family: 'roboto', sans-serif;
    font-size: 1rem;
    min-height: 100%;
}



.cHeader {
    grid-area: cHeader;

    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    padding: 8px 12px;
    z-index: 1;
    background-color: #00000010;
    backdrop-filter: blur(0.4rem);
}

.pTitulo {
    grid-area: pTitulo;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60vh;
    background-color: transparent;
    backdrop-filter: blur(0.0rem);
    color: #fff;
    text-align: center;
    padding: 0 1rem;
}

h1 {
    font-size: 3rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.title h2 {
    color: #ffffff;
    margin: 0;
}

.logosA {
    display: flex;
    gap: 20px;
}

.logosA a img {
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: transform 0.3s;
}

.logosA a img:hover {
    transform: scale(1.1);
}


h3 {
    width: 90%;
    max-width: 1200px;
    margin: 12px auto 20px auto;
    padding: 40px 0 0 0;
    position: static;
}

.cVideo {
    grid-area: cVideo;
    
    margin: 20px;
    position: relative;
    height: 100%;
    overflow: hidden;
    transition: transform 0.3s;
    background: no-repeat center;
    padding: 1rem;
    border-radius: 18px ;
}

.cVideo:hover {
    transform: scale(1.03);
    box-shadow: 0px 0px 28px #ffffff25;
}

video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
    transform: translate(-50%, -50%);
}



.conDes, .conRol, .conHerr {
    width: 220px;
    border-radius: 16px;
	min-height: 200px;
	font-weight: 500;
	padding: 20px;
	position: relative;
	overflow: hidden;
	background-position: center center;

    /*Efecto Glass*/
    border: 2px solid #fafafa10;
    margin: 10px;
    background: #fafafa10;
    backdrop-filter: blur(0.4rem);
    
}


.texto {
    height: 100%;
       
    /*Flexbox*/
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}



.contenedor {
    grid-area: contenedor;
    
    margin: auto;
    padding: 20px;
}

.pieFooter {
    grid-area: pieFooter;
    
    display: flex;
    background: #000000;
}

.textoFooter {
    margin: auto;
}



.img-p1 {
    border-radius: 15px 15px 0 0;
    width: 400px;
    height: 220px;
    transition: transform 0.3s;
    
}

.img-p1:hover {
    transform: scale(1.03);
}

.parrafoP1 {
    grid-area: parrafoP1;

    margin: auto;
    background: #1313136f;
    border-radius: 15px;
    width: 400px;
    backdrop-filter: blur(0.4rem);
}

.p1 {
    padding: 10px;
    width: 100%;
    height: auto;
}

.parrafoH1 {
    gap: 10px;
    display: flex;
    flex-direction: column;
}

.img-p2 {
    border-radius: 15px 15px 0 0;
    width: 400px;
    height: 220px;
    transition: transform 0.3s;
    
}

.img-p2:hover {
    transform: scale(1.03);
}

.parrafoP2 {
    grid-area: parrafoP2;

    margin: auto;
    background: #1313136f ;
    border-radius: 15px;
    width: 400px;
    backdrop-filter: blur(0.4rem);
}

.p2 {
    padding: 10px;
    width: 100%;
    height: auto;
}

.parrafoH2 {
    gap: 10px;
    display: flex;
    flex-direction: column;
}


.contenedorDesarrollo, .contenedorRolHab, .contenedorHerr {
    width: 100%;
    position: relative;
    background-size: cover;


    /*Grid*/
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    
}

.contenedorDesarrollo {
    /*background-image: url();*/
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 8px;
}

.contenedorRolHab {
    /*background-image: url();*/
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 8px;
}

.contenedorHerr {
    background-image: url(../img/kingdom.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 8px;
}



.grid-body {
    display: grid;
    gap: 20px;
    grid-template: 
        " cHeader    "       70px
        " pTitulo    "       400px
        " parrafoP1  "       auto
        " parrafoP2  "       auto
        "  cVideo   "        350px
        " contenedor  "      auto
        " pieFooter"         30px  ;
}

@media (min-width: 700px) {
    .grid-body {
        gap: 20px;
        grid-template: 
        "cHeader            cHeader             cHeader"             70px
        "pTitulo            pTitulo             pTitulo"             450px
        "   .              parrafoP1              .  "               400px
        "   .              parrafoP2              .  "               400px
        " cVideo           cVideo               cVideo "             400px
        "contenedor       contenedor           contenedor"           auto
        "pieFooter         pieFooter           pieFooter"            30px /
           20px              auto                 20px  ;
    }

    .contenedorDesarrollo, .contenedorRolHab, .contenedorHerr {
        width: 100%;
        position: relative;
        background-size: cover;

        /*Grid*/
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    
    

}

@media (min-width: 900px) {
    .grid-body {
        gap: 20px;
        grid-template: 
        
          " cHeader             cHeader     "   70px
          " pTitulo             pTitulo     "   550px
          " parrafoP1          parrafoP1    "   auto
          " parrafoP2          parrafoP2    "   auto
          " cVideo             cVideo       "   400px
          " contenedor         contenedor   "   auto
          " contenedor         contenedor   "   auto
          " pieFooter          pieFooter    "   30px /
             1fr                  1fr ;
    }

    .contenedorDesarrollo, .contenedorRolHab, .contenedorHerr {
        width: 100%;
        position: relative;
        background-size: cover;


        /*Grid*/
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;  
    }

    .img-p1 {
        border-radius: 15px 0 0 15px;
        width: 460px;
        height: 253px; 
    }

    .parrafoP1 {
        background: #1313136f;
        margin: auto 20px auto 20px;
        margin: auto;
        width: 800px;
        height: 253px;
    }

    .parrafoH1 {
        gap: 20px;
        display: flex;
        flex-direction: initial;
    }

    .img-p2 {
        border-radius: 15px 0 0 15px;
        width: 460px;
        height: 253px; 
    }

    .parrafoP2 {
        background: #1313136f;
        margin: auto 20px auto 20px;
        margin: auto;
        width: 800px;
        height: 253px;
    }

    .parrafoH2 {
        gap: 10px;
        display: flex;
        flex-direction: initial;
    }

    
}

@media (min-width: 1400px) {
    .grid-body {
        gap: 20px;
        grid-template: 
        
          " cHeader             cHeader       cHeader    "   70px
          " pTitulo             pTitulo       pTitulo    "   600px
          " parrafoP1           cVideo        cVideo     "   auto
          " parrafoP2           cVideo        cVideo     "   auto
          " contenedor         contenedor    contenedor  "   auto
          " contenedor         contenedor    contenedor  "   auto
          "  pieFooter          pieFooter     pieFooter  "   30px /
                1fr              1fr             1fr     ;
    }

    .parrafoP1 {
        background: #1313136f;
        margin: auto 20px auto 20px;
        margin: auto 0 0 20px;
        width: 800px;
        height: 253px;
    }

    .parrafoP2 {
        background: #1313136f;
        margin: auto 20px auto 20px;
        margin: auto 0 0 20px;
        width: 800px;
        height: 253px;
    }

}


