@view-transition{
    navigation: auto;
}

::view-transition-group(*){
    animation-duration: 0.5s;
}

::view-transition-old(root){
    animation: slide-out-to-left 0.5s forwards;
}
::view-transition-new(root){
    animation: slide-in-from-right 0.5s forwards;
}


@keyframes slide-out-to-left {
   from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}

@keyframes slide-in-from-right {
   from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(0);
    }
}


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

body{
    overflow-y: scroll;
    overflow-x: hidden;
    background-color: #262627;
}

p{
    text-wrap: pretty;
}

a{
    text-decoration: none;
    color: inherit;
    background-color: rgba(0, 0, 0, 0.0);
}

.contMaster{
    width: 100vw;
    height: fit-content;
    display: grid;
    place-items: center;
}

.contMasterProyect{
    width: 100vw;
    height: fit-content;
    display: grid;
    place-items: center;
    background-image: url(icons/bg_icons_x.svg);
    background-size: 400px 400px;
    background-repeat: repeat;
 }
 
.contBackground{
    position: absolute;
    left: 0px;
    top: 0px;
    z-index: -1;
    width: 100%;
    height: 100%;
    mask-image: linear-gradient(black 35%, transparent 55%);
    background: url(/icons/bg_icons_x.svg);
    background-size: 400px 400px;
    background-repeat: repeat;
}

header{
    width: 100%;
    max-width: 1200px;
    height: 120px;
    margin-top: 3rem;
    margin-bottom: 2rem;
    padding: 0rem 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    -background-color: rgba(0, 0, 0, 0.3);
}

.logoUp{
    height: 80px;
    width: 159px;
    background-image: url(icons/goLogoWhite.svg);
    background-position: left center;
    background-size: contain;
    background-repeat: no-repeat;
    cursor: pointer;
    -background-color: blue;
}

.botomContacto{
    height: 45px;
    width: 45px;
    border-radius: 0.5rem;
    background-image: url(icons/iconMail.svg);
    background-position: center;
    background-size: 60% 60%;
    background-repeat: no-repeat;
    /* background-color: rgb(247, 162, 35); */
    background-color: rgb(61, 59, 59);
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    cursor: pointer;
    transition: all ease-out 0.15s;
    transform: scale(1);
}

.botomContacto:hover{
    transform: scale(1.05);
}

.contResponsive{
    width: calc(100% - 2rem);
    max-width: 1200px;
    height: fit-content;
    -background-color: rgba(255, 255, 255,0.03)
}

footer{
    width: 100%;
    max-width: 1200px;
    height: fit-content;
    margin-top: 4rem;
    margin-bottom: 4rem;
    padding: 1rem 0rem;
    -background-color: rgba(255, 0, 0, 0.15);
}

.fooSeparador{
    width: 100%;
    height: 60px;
    display: grid;
    grid-template-columns: 1fr 200px 1fr;
    place-content: center;
    align-items: center;
    gap: 1rem;
    -background-color: rgba(255, 255, 255, 0.06);
}

.lineFooter{
    background-color: rgba(255, 255, 255, 0.2);
    height: 1px;
    border-width: 0px;
}

.footerInfo{
    width: 100%;
    height: 200px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
    -background-color: rgba(255, 255, 255, 0.06);
}

.footerMarca{
    width: 100%;
    height: 100%;
    padding: 1rem 0rem;
    display: grid;
    place-items: start;
    -background-color: rgba(255, 255, 255, 0.3);
}

.footerLogo{
    width: 100px;
    height: 76px;
    background: url(icons/goLogo_color.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    -background-color: whitesmoke;
}

.footerUbicacion{
    width: 100%;
    height: 100%;
    padding: 1rem 0rem;
    display: grid;
    place-content: center center;
    -background-color: rgba(255, 255, 255, 0.3);
}

.chileFlag{
    width: 15px;
    height: 15px;
}

.textoFooter{
    font-size: 0.8rem;
    font-weight: 100;
    letter-spacing: 0.05px;
    color: rgba(255,255,255,0.7);
}

.textoFooterDos{
    font-size: 0.8rem;
    font-weight: 100;
    letter-spacing: 0.05px;
    margin-top: 4rem;
    color: rgba(255,255,255,0.7);
}

.iconosContainer{
    width: 100%;
    height: 45px;
    background: url(icons/subMarcasWhite.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    -background-color: rgb(11, 75, 75);
}

.contFilter{
    width: 100%;
    height: 80px;
    position: relative;
    display: grid;
    place-items: center;
    -background-color: rgba(255, 255, 255,0.03);
}

.barraContain{
    width: 96%;
    height: 80px;
    display: grid;
    place-items: center;
    align-items: center;
}

.contCategory{
    width: fit-content;
    height: 46px;
    padding-left: 1rem;
    padding-right: 1rem;
    border-radius: 4rem;
    -background-color: rgb(54, 53, 52);
}

.botomContain{
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: auto auto auto auto;
    gap: 0.6rem;
    place-items: center;
}

ul.botomContain li {
  display: inline;
  cursor: pointer;
}

.filtertext{ 
    /* color: rgb(97, 96, 96); */
    color: rgb(179, 173, 173);
}

.active{
    /* color: rgb(158, 155, 155); */
    color: rgb(61, 61, 61);
    background-color: rgb(247, 162, 35);
    padding: 0.4rem 0.8rem;
    border-radius: 2rem;
    /* background-color: rgb(39, 38, 38); */
}

.containerBento{
    width: 100%;
    max-width: 1200px;
    height: 2750px;
    position: relative;
    display: grid;
    grid-gap: 1rem;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(9, 1fr);
    -background-color: red;
    transition: 500ms;
    will-change: transform;
}

.boxBento{
    display: grid;
    place-content: end;  
    justify-content: center;
    padding: 1.3rem 1rem;
    border-radius: 1rem;
    background: rgb(255, 255, 255);
    box-shadow: transparent 0px 0px 0px 2px inset;
    transform: scale(1);
    transition: 0.15s ease-out all;
}

.boxBento:hover{
    transform: scale(1.02);
}

.boxBento.inactive {
    opacity: 0.05;
    pointer-events: none;
}

.boxUno{
    place-content: normal;
    grid-column: 1 ;
    grid-row: 1/3;
    background: url(/icons/bg_black_icons_x.svg);
    background-size: 200px 200px;
    background-repeat: repeat;
    background-color: rgb(247, 162, 35);
}

.boxDos{
    grid-column: 2/4;
    grid-row: 1/3;
    background-color: black;
}

.boxTres{
    width: 100%;
    height: 100%;
    display: grid;
    place-content: center;
    grid-column: 4/5;
    grid-row: 7/8;
    background: #0073FF;
    background: linear-gradient(0deg,rgba(0, 115, 255, 1) 0%, rgba(32, 156, 239, 1) 37%);
    cursor: pointer;
}

.formIcono{
    width: 150px;
    height: 150px;
    margin-left: 0.6rem;
    background: url(icons/iconForm.svg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation-name: bounce;
    animation-duration: 5s;  
    animation-timing-function: ease-out;
    animation-delay: 3.1s; 
    animation-iteration-count: infinite;
    animation-direction: normal;
    animation-fill-mode: forwards;
}

@keyframes bounce {

    0% { transform: translateY(0); }
    4%  { transform: translateY(0); }
    8%  { transform: translateY(-30px); }
    10% { transform: translateY(0); }
    12% { transform: translateY(-15px); }
    16% { transform: translateY(0); }
    20% { transform: translateY(0); }
    100% { transform: translateY(0); }
}


.boxCuatro{
    place-content: normal;
    grid-column: 2/4;
    grid-row: 3/4;
    padding: 0px 0px;   
    overflow: hidden;
    /* border: 4px solid rgb(255, 61, 6);
    background-color: rgb(255, 61, 6); */
    border: 4px solid rgb(225, 0, 0);
    background-color:rgb(225, 0, 0);
}

.boxCuatro {
  transition: background-color 0.8s ease, border-color 0.8s ease;
}

.boxCuatro.enviado {
  background-color: rgb(60, 179, 113); /* Verde éxito */
  border-color: rgb(60, 179, 113);
}

.boxCinco{
    grid-column: 4/5;
    grid-row: 1/3;
    background: url(images/Home_AhorroEnergia.jpg);
    background-position: center left -4rem;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: black;
}

.boxSeis{
    grid-column: 1/2;
    grid-row: 3/5;
    background: url(images/Home_concentracion.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: black;
}

.boxSiete{
    grid-column: 4/5;
    grid-row: 3/4;
    cursor: pointer;
    place-content: normal;
    background: #833ab4;
    background: linear-gradient(-45deg,#fcb045,#fd1d1d, #833ab4);
}

.boxOcho{
    grid-column: 2/4;
    grid-row: 8/9;
    background: url(icons/memorias.svg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: black;
}

.boxNueve{
    grid-column: 1/3;
    grid-row: 5/7;
    background: url(images/Home_Analisis.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: black;
}

.boxDiez{
    grid-column: 3/5;
    grid-row: 6/7;
    background: url(images/Home_Barberia.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: black;
}

.boxOnce{
    place-content: normal;
    grid-template-rows: 4rem 11rem 1fr;
    padding: 0rem 0rem;
    grid-column: 3/4;
    grid-row: 5/6;
    background-color: white;
}

.boxDoce{
    grid-column: 4/5;
    grid-row: 4/6;
    background: url(images/Home_banos.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: black;
}

.boxTrece{
    place-content: normal;
    padding: 0rem 0rem;
    grid-column: 1/5;
    grid-row: 9/10;
    background-color: rgba(0, 0, 0, 0.15);
}

.boxCatorce{
    grid-column: 2/4;
    grid-row: 4/5;
    background: url(images/Home_Enologo.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: black;
}

.boxQuince{
    grid-column: 1/2;
    grid-row: 7/9;
    background: url(images/Home_Fri.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: black;
}

.boxDieciseis{
    grid-column: 2/4;
    grid-row: 7/8;
    background: url(images/Home_Senaletica.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: black;
}

.boxDieciocho{
    grid-column: 4/5;
    grid-row: 8/9;
    border: solid 1px #fcb045d0;
    background: url(images/Home_Nosotros.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: black;
    box-shadow: rgba(255, 153, 0, 0.55) 0px 5px 15px;
}

.contInfo{
    width: 100%;
    height: fit-content;
    display: grid;
    grid-template-columns: 1fr 180px;
    place-content: center;
    justify-content: start;
    gap: 1rem;
    -background-color: red;
}

h3{
    color: white;
    font-size: 0.8rem;
    font-weight: 400;
    margin-bottom: 0.2rem;
    width: fit-content;
}

.ubicacionTag{
    padding: 0.3rem 0.6rem;
    border-radius: 1rem;
    background-color: rgba(0, 0, 0, 0.8);
}

h2{
    color: white;
    font-size: 1.4rem;
    font-weight: 600;
    font-style: italic;
    line-height: 1.4rem;
    letter-spacing: 0.25px;
    padding: 0.2rem 0.4rem;
    border-radius: 0rem 0rem 1.5rem 0rem;
    text-shadow: 3px 2px 6px #000000;
}

.instaTitulo{
    color: white;
    font-size: 1.4rem;
    font-weight: 600;
    font-style: italic;
    line-height: 1.4rem;
    letter-spacing: 0.25px;
    padding: 0.2rem 0.4rem;
    border-radius: 0rem 0rem 1.5rem 0rem;
    text-shadow: 0px 0px 0px #00000000;
}

.spacingHdos{
    margin-bottom: 1rem;
}

.botomEntry{
    width: 170px;
    height: 40px;
    border-radius: 2rem;
    border: solid 2px white;
    display: grid;
    place-content: center;
    justify-content: end;
    padding-right: 0.7rem;
    background-image: url(icons/eyeBotom.svg);
    background-repeat: no-repeat;
    background-position: 0.3rem center;
    background-size: 30px 30px;
    cursor: pointer;
    transform: scale(1);
    transition: all ease-out 0.15s;
    background-color: rgba(255, 255, 255, 0.84);
    box-shadow: -1px 6px 21px 0px rgba(0,0,0,0.5);
    -webkit-box-shadow: -1px 6px 21px 0px rgba(0,0,0,0.5);
    -moz-box-shadow: -1px 6px 21px 0px rgba(0,0,0,0.5);
}

.botomEntry:hover{
    transform: scale(1.03);
     box-shadow: -1px 6px 21px 0px rgba(0,0,0,1);
    -webkit-box-shadow: -1px 6px 21px 0px rgba(0,0,0,1);
    -moz-box-shadow: -1px 6px 21px 0px rgba(0,0,0,1);
}

.botomText{
    font-size: 1.2rem;
    font-weight: 800;
    font-style: italic;
    letter-spacing: -0.9px;
    color: rgb(61, 61, 61);
}

.saludo{
    width: 100%;
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: -2.5px;
    font-style: italic;
    color: rgb(51, 51, 51)
}

.contSaludo{
    width: 100%;
    height: 100%;
    display: grid;
    place-content: center;
    align-items: center;
    grid-template-rows: 5rem  1fr 70px;
}

.textSaludo{
    height: fit-content;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5rem;
    color: rgb(61, 61, 61);
}

.logoSaludo{
    display: initial;
    width: 100%;
    height: 70px;
    background-position: right;
    background-size: contain;
    background-repeat: no-repeat;
}

.iconosGo{
    width: 170px;
    height: 30px;
    background-image: url(icons/subMarcas.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    -background-color: red;
}

.contInvitacion{
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-rows: 2.2fr 7.8fr;
    gap: 0.4rem;
}

.invitacionTitulo{
    width: 100%;
    height: 100%;
    display: grid;
    align-items: center;
    padding-left: 1rem;
    background: url(icons/invitacionIcono.svg);
    background-size: contain;
    background-position: right 1rem center;
    background-repeat: no-repeat;
}

.tituloInvitacion{
    font-size: 1.5rem;
    font-weight: 700;
    font-style: italic;
    color: white;
    letter-spacing: -0.5px;
}

.invitacionMensaje{
    width: 100%;
    height: 100%;
    display: grid;
    align-content: space-evenly;
    padding: 0rem 1.5rem;
    background-color: white;
}

.textoInvitacion{
   font-size: 1rem;
   font-weight: 500;    
   line-height: 1.1rem;
   color: rgb(71, 71, 71);
}

.formInvitacion{
    width: 100%;
    text-align: center;
    display: grid;
    grid-template-columns: 1fr 160px;
    gap: 1rem;
    background-color: rgba(255, 255, 255,0.03);
}

.emailInvitacion{
    width: 100%;
    height: 50px;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
    outline: none;
    font-size: 1rem;
    -webkit-appearance: none;
}

.botomInvitacion{
    width: 160px;
    height: 40px;
    border: solid 2px rgba(255, 0, 0, 0.15);
    border-radius: 2rem;    
    text-align: right;
    padding-right: 1rem;
    color: rgb(61, 61, 61);
    background: url(icons/invitacionBotom.svg);
    background-size: contain;
    background-position: left 0.5rem center;
    background-repeat: no-repeat;
    background-color:white;
    cursor: pointer;
}

.textBotomInvitacion{
    font-size: 1rem;
    font-weight: 800;
    font-style: italic;
    letter-spacing: -0.9px;
    color: rgb(61, 61, 61);
}

.intagramCont{
    width: 100%;
    height: 100%;
    display: grid;
    place-content: end;
    justify-content: start;
    background: url(icons/instagramLogo.svg);
    background-position: top 4rem center;
    background-size: 35% 35%;
    background-repeat: no-repeat;
}

.textoNoticia{
   font-size: 0.8rem;
   font-weight: 400;    
   line-height: 1rem;
   color: white;
}

.spacingHtres{
    margin-bottom: 0.5rem;
}

.mesTitulo{
    width: 100%;
    height: 100%;
    display: grid;
    place-content: center;
    border-radius: 1rem 1rem 0rem 0rem;
    background-color: rgb(41, 171, 226);
}

.tituloCumple{
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -1.5px;
    color: white;
}

.numeroMes{
    width: 100%;
    height: 100%;
    display: grid;
    place-content: center;
    border-bottom: solid 1px rgba(0, 0, 0, 0.1);
    background-color: white;
}

.numeroCumple{
    font-size: 8rem;
    font-weight: 700;
    letter-spacing: -1.5px;
    color: rgb(61, 61, 61);
}

.infoCumple{
    width: 100%;
    height: 100%;
    display: grid;
    place-content: center;
    padding: 0.6rem 1rem 0.5rem 1rem;
    border-radius: 0rem 0rem 1rem 1rem;
    background-color: rgba(0, 0, 0, 0.04);
}

.cumpleText{
    text-align: center;
    font-size: 1.05rem;
    font-weight: 700;
    font-style: italic;   
    line-height: 1rem;
    color: rgb(71, 71, 71);
}

.contSlider{
    width: 100%;
    height: 100%;
    display: grid;
    place-content: center;
    border-radius: 1rem;
    padding: 1rem 0;
    -background-color: yellowgreen;
}

.slider_inner div{
  width: 400px;
  height: 200px;
  -background-color: red;
}

.slider{ 
    display:flex; 
    width: 100%; 
    overflow: hidden;
    -background-color: red;
}

.slider_inner{ 
    min-width:1000px; 
    display:flex;
    opacity: 0.9; 
    gap: 0.5rem;
}

.r_to_l .slider_inner:first-of-type{ animation: reverse-loop 24s -12s linear infinite; }
.r_to_l .slider_inner:last-of-type{ animation: reverse-loop2 24s linear infinite; }

@keyframes reverse-loop {
    0% { transform: translateX(1000px); }
    to { transform: translateX(-1000px); }
}
@keyframes reverse-loop2 {
    0% { transform: translateX(0px); }
    to { transform: translateX(-2000px); }
}

.marcaSliderUno{
    background: url(icons/UAB_logo.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.marcaSliderDos{
    background: url(icons/Enex_logo_02.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.marcaSliderTres{
    background: url(icons/Inspexiona_logo_03.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.marcaSliderCuatro{
    background: url(icons/Google_logo_04.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.marcaSliderCinco{
    background: url(icons/Fri_logo_05.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.marcaSliderSeis{
    background: url(icons/End_logo_06.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.marcaSliderSiete{
    background: url(icons/Uvm_logo_07.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.marcaSliderOcho{
    background: url(icons/Coca_logo_08.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.marcaSliderNueve{
    background: url(icons/Bago_logo_09.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.marcaSliderDiez{
    background: url(icons/Aiep_logo_10.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.marcaSliderOnce{
    background: url(icons/Udla_logo_11.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.marcaSliderDoce{
    background: url(icons/Abastible_logo_12.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.contInfoMarcas{
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 2;
    display: grid;
    place-content: end;  
    justify-content: start;
    border-radius: 1rem;
    padding: 1.3rem 1rem;
    -background-color: rgba(250, 128, 114, 0.158); 
}

.marcaTitulo{
    font-size: 1.4rem;
}

.videoBg{
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -1;
    border-radius: 1rem;
    overflow: hidden;
    -background-color: red;
}

.videoBg video {
  min-width: 100%;
  min-height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}

.contMasterForm{
    width: 100vw;
    height: 100%;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    z-index: 10;
    display: grid;
    place-items: center;
    align-content: center;
    background-color: rgba(28, 28, 29, 0.96);
    display: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.contResponsiveForm{
    width: 100%;
    max-width: 1200px;
    position: relative;
    height: 100%;
    display: grid;
    place-items: center;
    align-content: center;
    -background-color: rgba(0, 0, 0, 0.5);
}

.formularioPrincipal{
    width: 100%;
    max-width: 600px;
    height: 600px;
    border-radius: 1rem;
    display: grid;
    grid-template-rows: 100px 1fr;
    border: solid 3px rgb(247, 162, 35);
    background-color:rgb(247, 162, 35);
}

.formularioBarra{
    width: 100%;
    height: 100%;
    display: grid;
    border-radius: 1rem 1rem 0rem 0rem;
    place-items: center start;
    padding: 0rem 1rem;
    background: url(icons/formOreja.svg);
    background-position: right 1rem center;
    background-size: 70px 70px;
    background-repeat: no-repeat;
    background-color: rgb(247, 162, 35);
}

.tituloFormulario{
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -1.1px;
    line-height: 1.9rem;
    font-style: italic;
    color: rgb(61, 61, 61);
}

.contenedorFormulario{
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    border-radius: 0rem 0rem 1rem 1rem;
    background-color: white;
}

.formContain{
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    padding: 0rem 0rem;
    grid-template-rows: 1fr 1fr 1fr 2fr 1fr;
    gap: 1rem;
}

.inputFormPrinc{
    width: calc(100% - 2rem);
    height: 100%;
    border: none;
    padding-left: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.textAreaForm{
    width: calc(100% - 2rem);
    height: 100%;
    border: none;
    resize: none;
    padding: 1rem;
    background-color: rgba(0, 0, 0, 0.04);
}

.botonFormularioPrinc {
  width: 100%;
  height: 100%;
  border-radius: 0rem 0rem 0.5rem 0.5rem;
  border: none;
  background-color: rgba(252, 160, 21, 0.9); /* Amarillo marca */
  box-shadow: rgba(0, 0, 0, 0.1) 0px -23px 25px 0px inset,
              rgba(0, 0, 0, 0.1) 0px -36px 30px 0px inset,
              rgba(0, 0, 0, 0.1) 0px -79px 40px 0px inset,
              rgba(0, 0, 0, 0.03) 0px 2px 1px,
              rgba(0, 0, 0, 0.06) 0px 4px 2px,
              rgba(0, 0, 0, 0.06) 0px 8px 4px,
              rgba(0, 0, 0, 0.06) 0px 16px 8px,
              rgba(0, 0, 0, 0.06) 0px 32px 16px;
  cursor: pointer;
  transition: background-color 0.6s ease, transform 0.3s ease, box-shadow 0.4s ease;
}

.botonFormularioPrinc:hover {
  transform: translateY(-1px);
  box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset,
              rgba(0, 0, 0, 0.3) 0px 18px 36px -18px inset;
}

/* --- Estado de envío exitoso --- */
.botonFormularioPrinc.enviado {
  background-color: rgba(37, 194, 45, 0.9);
  transform: scale(1.01);
}

.textBotonForm.fade-out {
  opacity: 0;
}


.textBotonForm{
    font-size: 1.4rem;
    font-style: italic;
    font-weight: 700;
    letter-spacing: -1.1px;
    opacity: 1;
    transition: all ease-out 0.3s;
    color:rgba(255, 255, 255, 0.9);
}

.cerrarForm:hover{
    transform: scale(1.1);
}

.hidden-field {
    position: absolute;
    left: -9999px;
    top: -9999px;
    height: 0;
    width: 0;
    opacity: 0;
}

.cerrarForm{
    width: 3rem;
    height: 3rem;
    position: absolute;
    right: 2rem;
    top: 2rem;
    z-index: 20;
    background: url(icons/closeIcon.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    cursor: pointer;
    transform: scale(1);
    transition: all ease-out 0.15s;
}


@media only screen and (max-width: 1200px) {

    header{
    max-width: 800px;
    }

    footer{
        width: 100%;
        max-width: 800px;
        height: fit-content;
        margin-top: 2rem;
        margin-bottom: 4rem;
        padding: 1rem 0rem;
        -background-color: rgba(255, 0, 0, 0.15);
    }

    .contResponsive{
    width: calc(100% - 2rem);
    max-width: 800px;
    height: fit-content;
    -background-color: rgba(255, 255, 255,0.03)
    }

    .containerBento{
    width: 100%;
    max-width: 800px;
    height: 3250px;
    position: relative;
    display: grid;
    grid-gap: 0.8rem;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(12, 1fr);
    -background-color:red;
    transition: 500ms;
    will-change: transform;
    }

    .boxUno{
    grid-column: 1/2 ;
    grid-row: 1/3;
    }

    .boxDos{
        grid-column: 2/4;
        grid-row: 1/3;
    }

    .boxTres{
        grid-column: 3/4;
        grid-row: 9/10;
    }

    .boxCuatro{
        grid-column: 2/4;
        grid-row: 3/4;
    }

    .boxCinco{
        grid-column: 1/2;
        grid-row: 3/5;
    }

    .boxSeis{
        grid-column: 3/4;
        grid-row: 6/8;
    }

    .boxSiete{
        grid-column: 3/4;
        grid-row: 5/6;
    }

    .boxOcho{
        grid-column: 2/4;
        grid-row: 10/11;
    }

    .boxNueve{
        grid-column: 1/3;
        grid-row: 5/7;
    }

    .boxDiez{
        grid-column: 2/4;
        grid-row: 8/9;
    }

    .boxOnce{
        grid-column: 2/3;
        grid-row: 9/10;
    }

    .boxDoce{
        grid-column: 1/2;
        grid-row: 8/10;
    }

    .boxTrece{
        grid-column: 1/4;
        grid-row: 12/13;
    }

    .boxCatorce{
        grid-column: 2/4;
        grid-row: 4/5;
    }

    .boxQuince{
        grid-column: 1/2;
        grid-row: 10/12;
    }

    .boxDieciseis{
        grid-column: 1/3;
        grid-row: 7/8;
    }

    .boxDieciocho{
        grid-column: 2/4;
        grid-row: 11/12;
        justify-content: left;
    }

    .boxDieciocho .spacingHdos {
        margin-bottom: 0.5rem;
    }

    h3{
    font-size: 0.8rem;
    font-weight: 400;
    margin-bottom: 0.2rem;
    }

    h2{
        font-size: 1.3rem;
        font-weight: 600;
        line-height: 1.5rem;
        letter-spacing: 0.25px;
    }

    .contInfo{
    grid-template-columns: 1fr 140px;
    }

    .botomEntry{
    width: 140px;
    height: 40px;
    border-radius: 2rem;
    border: solid 2px white;
    display: grid;
    place-content: center;
    justify-content: end;
    padding-right: 0.7rem;
    background-position: 0.3rem center;
    background-size: 25px 25px;
    }

    .botomText{
    font-size: 1rem;
    font-weight: 800;
    font-style: italic;
     letter-spacing: -0.9px;
    color: rgb(61, 61, 61);
    }

    .textoInvitacion{
    font-size: 0.85rem;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    color: rgb(71, 71, 71);
    }

    .emailInvitacion{
    width: 100%;
    height: 40px;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
    outline: none;
    margin-bottom: 1rem;
    font-size: 1rem;
    -webkit-appearance: none;
    }

    .botomInvitacion{
        width: 160px;
        height: 40px;
        border: solid 1px rgba(0, 0, 0, 0.15);
        border-radius: 2rem;    
        text-align: right;
        padding-right: 1rem;
        color: rgb(61, 61, 61);
        background: url(icons/invitacionBotom.svg);
        background-size: contain;
        background-position: left 0.5rem center;
        background-repeat: no-repeat;
        background-color:white;
    }

    .textBotomInvitacion{
        font-size: 1rem;
        font-weight: 800;
        font-style: italic;
        letter-spacing: -0.9px;
        color: rgb(61, 61, 61);
    }

    .boxOnce{
        place-content: normal;
        grid-template-rows: 3.5rem 9.5rem 1fr;
        padding: 0rem 0rem;
        background-color: white;
    }

    .cumpleText{
        text-align: center;
        font-size: 1.0rem;
        font-weight: 700;
        font-style: italic;   
        line-height: 1rem;
        color: rgb(71, 71, 71);
}

    .contSlider{
        width: 100%;
        height: 100%;
        display: grid;
        border-radius: 1rem;
        padding: 0.5rem 0;
        -background-color: yellowgreen;
    }
}

@media only screen and (max-width: 800px) {

    header{
        max-width: 375px;
    }

     footer{
        width: 100%;
        max-width: 375px;
        height: fit-content;
        margin-top: 2rem;
        margin-bottom: 2rem;
        padding: 1rem 0rem;
        -background-color: rgba(255, 0, 0, 0.15);
    }

    .fooSeparador{
        width: 100%;
        height: 60px;
        display: grid;
        grid-template-columns: 1fr 200px 1fr;
        place-content: center;
        align-items: center;
        gap: 1rem;
        -background-color: rgba(255, 255, 255, 0.06);
    }

    .lineFooter{
        background-color: rgba(255, 255, 255, 0.2);
        height: 1px;
        border-width: 0px;
    }

    .footerInfo{
        width: 100%;
        height: 200px;
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 1fr 1fr;
        gap: 1rem;
        -background-color: rgba(255, 255, 255, 0.06);
    }

    .footerMarca{
        width: 100%;
        height: 100%;
        padding: 1rem 0rem;
        display: grid;
        place-items: center;
        -background-color: rgba(255, 255, 255, 0.3);
    }

    .footerLogo{
        width: 100px;
        height: 76px;
        background: url(icons/goLogo_color.svg);
        background-position: center;
        background-size: contain;
        background-repeat: no-repeat;
        -background-color: whitesmoke;
    }

    .footerUbicacion{
        width: 100%;
        height: 100%;
        padding: 1rem 0rem;
        display: grid;
        place-content: center center;
        -background-color: rgba(255, 255, 255, 0.3);
    }

    .chileFlag{
        width: 15px;
        height: 15px;
    }

    .textoFooter{
        text-align: center;
        font-size: 0.95rem;
        font-weight: 100;
        letter-spacing: 0.05px;
        color: rgba(255,255,255,0.9);
    }

    .textoFooterDos{
        font-size: 0.95rem;
        font-weight: 100;
        letter-spacing: 0.05px;
        margin-top: 0rem;
        text-align: center;
        color: rgba(255,255,255,0.7);
    }

    .logoUp{
        height: 70px;
        width: 160px;
        margin-left: 20px;
    }

    .botomContacto{
        height: 45px;
        width: 45px;
        border-radius: 0.4rem;
        background-image: url(icons/iconMail.svg);
        background-position: center;
        background-size: 60% 60%;
        cursor: pointer;
    }

    .contResponsive{
        width: calc(100% - 2rem);
        max-width: 375px;
        height: fit-content;
        -background-color: rgba(255, 255, 255,0.03)
    }

    .containerBento{
        width: 100%;
        max-width: 375px;
        height: 3300px;
        position: relative;
        display: grid;
        grid-gap: 0.8rem;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(17, 1fr);
        transition: 500ms;
        will-change: transform;
    }

    .boxBento{
        padding: 1rem 0.5rem;
    }

    .boxUno{
        grid-column: 1/3 ;
        grid-row: 1/2;
    }

    .boxDos{
        grid-column: 1/3;
        grid-row: 2/4;
    }

    .boxTres{
        grid-column: 1/2;
        grid-row: 13/14;
    }

    .formIcono{
        width: 94px;
        height: 94px;
    }

    .boxCuatro{
        grid-column: 1/3;
        grid-row: 4/5;
        place-content: normal;
        padding: 0px 0px;
        overflow: hidden;
    }

    .boxCinco{
        grid-column: 2/3;
        grid-row: 7/9;
    }

    .boxSeis{
        grid-column: 1/2;
        grid-row: 8/10;
    }

    .boxSiete{
        grid-column: 2/3;
        grid-row: 9/10;
    }

    .boxOcho{
        grid-column: 1/3;
        grid-row: 16/17;
    }

    .boxNueve{
        grid-column: 1/3;
        grid-row: 10/12;
    }

    .boxDiez{
        grid-column: 1/3;
        grid-row: 6/7;
    }

    .boxOnce{
        grid-column: 1/2;
        grid-row: 7/8;
    }

    .boxDoce{
        grid-column: 2/3;
        grid-row: 13/15;
    }

    .boxTrece{
        grid-column: 1/3;
        grid-row: 17/18;
    }

    .boxCatorce{
        grid-column: 1/3;
        grid-row: 5/6;
    }

    .boxQuince{
        grid-column: 1/2;
        grid-row: 14/16;
    }

    .boxDieciseis{
        grid-column: 1/3;
        grid-row: 12/13;
    }

    .boxDieciocho{
        grid-column: 2/3;
        grid-row: 15/16;
    }

    h3{
        font-size: 0.6rem;
        font-weight: 600;
        margin-bottom: 0rem;
    }

    .ubicacionTag{
        padding: 0.2rem 0.6rem;
        border-radius: 1rem;
        background-color: rgba(0, 0, 0, 0.8);
    }

    h2{
        font-size: 1rem;
        font-weight: 700;
        line-height: 1rem;
        letter-spacing: -1px;
    }

    .instaTitulo{
        color: white;
        font-size: 1rem;
        font-weight: 700;
        font-style: italic;
        line-height: 1.4rem;
        letter-spacing: -1px;
        padding: 0rem 0.1rem;
        border-radius: 0rem 0rem 0rem 0rem;
        text-shadow: 0px 0px 0px #00000000;
    }

    .spacingHdos{
        margin-bottom: 0.5rem;
    }

    .contInfo{
        grid-template-columns: 1fr 100px;
        gap: 0.8rem;
    }

    .botomEntry{
        width: 100px;
        height: 36px;
        border-radius: 2rem;
        border: solid 2px white;
        display: grid;
        place-content: center;
        justify-content: end;
        padding-right: 0.7rem;
        background: none;
        background-position: 0.3rem center;
        background-size: 25px 25px;
        background-color: rgba(255, 255, 255, 0.8);
    }

    .botomText{
        font-size: 0.85rem;
        font-weight: 800;
        font-style: italic;
        letter-spacing: -0.9px;
        color: rgb(61, 61, 61);
        }

    .contSaludo{
        width: 100%;
        height: 100%;
        display: grid;
        place-content: center;
        align-items: center;
        grid-template-rows: 3.8rem 1fr;
        gap: 0.6rem;
    }

    .saludo{
        width: 100%;
        font-size: 3.3rem;
        font-weight: 800;
        letter-spacing: -2.5px;
        font-style: italic;
        color: rgb(51, 51, 51)
    }

    .textSaludo{
        height: fit-content;
        font-size: 0.75rem;
        font-weight: 600;
        line-height: 1rem;
        padding: 0rem 0.3rem;
        color: rgba(0, 0, 0, 0.6);
    }

    .logoSaludo{
        display: none;    
        width: 100%;
        height: 35px;
        background-image: url(icons/goLogo.svg);
        background-position: right;
        background-size: contain;
        background-repeat: no-repeat;
    }

    .iconosGo{
        position: absolute;
        right: 1rem;
        top: 2rem;
        width: 120px;
        height: 40px;
        background-image: url(icons/subMarcas.svg);
        background-position: center;
        background-size: contain;
        background-repeat: no-repeat;
        -background-color: red;
    }

    .contInvitacion{
        width: 100%;
        height: 100%;
        display: grid;
        grid-template-rows: 2.5fr 7.5fr;
        gap: 0.3rem;
    }

    .invitacionTitulo{
        width: 100%;
        height: 100%;
        display: grid;
        align-items: center;
        padding-left: 1.1rem;
        background: url(icons/invitacionIcono.svg);
        background-size: contain;
        background-position: right 0.5rem center;
        background-repeat: no-repeat;
        }

    .tituloInvitacion{
        font-size: 1.15rem;
        font-weight: 700;
        font-style: italic;
        color: white;
        letter-spacing: -0.5px;
    }

    .invitacionMensaje{
        width: 100%;
        height: 100%;
        padding: 0rem 1rem;
        background-color: white;
    }

    .textoInvitacion{
        font-size:0.75rem;
        font-weight: 500;    
        line-height: 0.85rem;
        margin-top: 0.8rem;
        margin-bottom: 1.2rem;
        color: rgb(71, 71, 71);
    }

    .formInvitacion{
        width: 100%;
        text-align: center;
        display: grid;
        grid-template-columns: 1fr 130px;
        gap: 1rem;
        -background-color: rgba(255, 255, 255,0.03);
    }

    .emailInvitacion{
        width: 100%;
        height: 30px;
        border: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.3);
        outline: none;
        margin-bottom: 0.8rem;
        font-size: 0.8rem;
        font-weight: 500;
        color: rgb(71, 71, 71);
        -webkit-appearance: none;
    }

    .botomInvitacion{
    width: 120px;
    height: 30px;
    border: solid 1px rgba(237, 47, 47, 0.65);
    border-radius: 2rem;    
    text-align: right;
    padding-right: 0.7rem;
    color: white;
    background: url(icons/invitacionBotomWhite.svg);
    background-size: contain;
    background-position: left 0.5rem center;
    background-repeat: no-repeat;
    background-color:rgba(237, 47, 47, 0);
    }

    .textBotomInvitacion{
    font-size: 0.8rem;
    font-weight: 800;
    font-style: italic;
    letter-spacing: -0.9px;
    color: rgb(95, 90, 89);
    }

    .intagramCont{
    width: 100%;
    height: 100%;
    display: grid;
    place-content: end;
    justify-content: start;
    background: url(icons/instagramLogo.svg);
    background-position: top 1.8rem center;
    background-size: 45% 45%;
    background-repeat: no-repeat;
    }

    .textoNoticia{
    font-size:0.7rem;
    font-weight: 500; 
    line-height: 0.85rem;
    color: rgb(255, 255, 255);
    }

    .spacingHtres{
    margin-bottom: 0.5rem;
    }

    .boxOnce{
        place-content: normal;
        grid-template-rows: 2.5rem 6.2rem 1fr;
        padding: 0rem 0rem;
        background-color: white;
    }

    .tituloCumple{
        font-size: 1.5rem;
        font-weight: 700;
        letter-spacing: -1.5px;
        color: white;
    }

    .numeroCumple{
        font-size: 5.5rem;
        font-weight: 700;
        letter-spacing: -1.5px;
        color: rgb(61, 61, 61);
    }

    .infoCumple{
        width: 100%;
        height: 100%;
        display: grid;
        place-content: center;
        padding: 0.5rem 0.6rem 0.5rem 0.6rem;
        border-radius: 0rem 0rem 1rem 1rem;
        background-color: rgba(0, 0, 0, 0.0);
    }

    .cumpleText{
        font-size: 0.68rem;
        text-align: center;
        font-weight: 700;    
        line-height: 0.7rem;
        color: rgb(71, 71, 71);
    }

    .marcaTitulo{
    font-size: 0.8rem;
    }

    .contSlider{
    width: 100%;
    height: 100%;
    display: grid;
    border-radius: 1rem;
    padding: 0rem 0;
    -background-color: yellowgreen;
    }

    .slider_inner div{
        width: 130px;
        height: 130px;
        -background-color: red;
    }

    .slider{ 
        display:flex; 
        width: 100%; 
        overflow: hidden;
        -background-color: red;
    }

    .slider_inner{ 
        min-width:650px; 
        display:flex; 
    }

    .r_to_l .slider_inner:first-of-type{ animation: reverse-loop 24s -12s linear infinite; }
    .r_to_l .slider_inner:last-of-type{ animation: reverse-loop2 24s linear infinite; }

    @keyframes reverse-loop {
        0% { transform: translateX(650px); }
        to { transform: translateX(-650px); }
    }
    @keyframes reverse-loop2 {
        0% { transform: translateX(0px); }
        to { transform: translateX(-1300px); }
    }

    .marcaSliderUno{
        background: url(icons/UAB_logo.svg);
        background-position: center;
        background-size: contain;
        background-repeat: no-repeat;
    }

    .contInfoMarcas{
        width: 100%;
        height: 100%;
        position: absolute;
        z-index: 2;
        display: grid;
        place-content: end;  
        justify-content: start;
        border-radius: 1rem;
        padding: 1.3rem 1rem;
        -background-color: rgba(250, 128, 114, 0.158); 
    }

    .formularioPrincipal{
        width: calc(100% - 2rem);
        max-width: 375px;
        height: 600px;
        border-radius: 1rem;
        display: grid;
        grid-template-rows: 100px 1fr;
        margin-top: 4rem;
        border: solid 3px rgb(247, 162, 35);
        background-color:rgb(247, 162, 35);
    }

    .cerrarForm{
        width: 3rem;
        height: 3rem;
        position: absolute;
        right: 1rem;
        top: 1rem;
        z-index: 20;
        background: url(icons/closeIcon.svg);
        background-position: center;
        background-size: contain;
        background-repeat: no-repeat;
        cursor: pointer;
        transform: scale(1);
        transition: all ease-out 0.15s;
    }
}


/*  --------------------------------------------------------------- */
/*  --------------------------------------------------------------- */
/*  ----------------------HOJA DE PROYECTOS BASE ------------------ */
/*  --------------------------------------------------------------- */
/*  --------------------------------------------------------------- */
/*  --------------------------------------------------------------- */


p{
    text-wrap: pretty;
}

.contPrinc{
    height: fit-content;
    width: 100%;
    max-width: calc(1200px - 2rem);
    display: grid;
    grid-template-rows: 150px 1fr auto;
    gap: 2rem;
    place-items: center;
}

.volverCont{
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    -background-color: rgba(255, 255, 255, 0.1);
}

.backIcon{
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    cursor: pointer;
    transform: scale(1);
    transition: all 0.15s ease-out;
    background-image: url("icons/backArrow.svg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
}

.backIcon:hover{
    transform: scale(1.05);
}

.contProyectInfo{
    width: 100%;
    height: 1750px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr;
    gap: 1rem;
}

.textoInicial{
    grid-column: 2/3;
    grid-row: 1/2;
    padding: 1rem 1rem;
    display: grid;
    grid-template-rows: auto auto auto;
    align-items: center;
    border-radius: 1rem;
    position:relative; 
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.06);
}

.circuloNoticia{
    width: 100%;
    height: 0.5rem;
    position: absolute;
    z-index: -1;
    top: 0px;
    left: 0px;
    background-color: rgba(245, 142, 7, 0.9);
}

.ubicacionText{
    font-size: 0.8rem;
    text-align: right;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 1px;
    font-weight: 100;
    margin-top: 0.5rem;
    margin-bottom: 0.3rem;
}

.tituloProject{
    text-align: right;
    font-size: 3rem;
    line-height: 2.8rem;
    color: white;
    font-weight: 300;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: solid 1px rgba(255, 255, 255, 0.2);
}

.bajadaProject{
    text-align: right;
    font-size: 1.2rem;
    font-weight: 100;
    line-height: 1.4rem;
    letter-spacing: 0.25px;
    padding-bottom: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.quoteProyect{
    grid-column: 1/2;
    grid-row: 4/5;
    display: grid;
    place-content: center;
    padding: 0rem 1rem;
    
}

.comentProject{
    font-size: 2.6rem;
    line-height: 3rem;
    letter-spacing: -0.25px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 100;
    font-style: italic;
    padding: 2rem 1rem;
    border-radius: 1rem;
    border: solid 1px rgba(255, 255, 255, 0.15);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.textoXLProyect{
    display: grid;
    place-content: center;
    grid-column: 1/2;
    grid-row: 3/4;
    padding: 1rem 1rem;
    -background-color: red
}

.textoProject{
    font-size: 1rem;
    line-height: 30px;
    letter-spacing: 0.5px;
    font-weight: 300;
    text-indent: 2rem;
    color: rgba(255, 255, 255, 0.7);
}

.projectFooter{
    height: 70px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 1rem;
    place-content: center;
    align-items: center;
    margin-bottom: 30px;
    -background-color: red;
}

.lineaInfo{
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.25);
}

.footerIcon{
    width: 250px;
    height: 75px;
    background: url(icons/subMarcasLogo.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    -background-color: rgb(189, 189, 255);
}

.imgBase{
    border-radius: 1rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    overflow: hidden;
}

.imgBase img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.imgPA01 {
     width: 100%;
     height: 100%;
     grid-column: 1/2;
     grid-row: 1/3;
     -background-color: whitesmoke;
}

.imgPA02 {
     width: 100%;
     height: 100%;
     grid-column: 2/3;
     grid-row: 3/5;
     background-color: whitesmoke;
}

.imgPA03 {
     width: 100%;
     height: 100%;
     grid-column: 2/3;
     grid-row: 2/3;
     background-color: whitesmoke;
}

.imgPA04 {
     width: 100%;
     height: 100%;
     grid-column: 1/2;
     grid-row: 5/7;
     background-color: whitesmoke;
}

.imgPA05 {
     width: 100%;
     height: 100%;
     grid-column: 2/3;
     grid-row: 5/7;
     background-color: whitesmoke;
}






.masterProyectMemorias{
    width: 100%;
    height: fit-content;
    position: relative;
}

.contProymemorias{
    position: relative;
    width: 100%;
    height: 580px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1rem;
}

.frameMemorias{
     position: relative;
     width: 100%;
     height: 100%;
     border-radius: 1rem;
     gap: 1rem;
     background-color: black;
}

.lineaMemorias{
    width: 100%;
    height: 1px;
    margin-top: 2rem;
    margin-bottom: 2rem;
    background-color: rgba(255, 255, 255, 0.15);
}

.memoriasTextosCont{
    width: 100%;
    height: fit-content;
    position: absolute;
    bottom: 3rem;
    left: 0px;
    z-index: 5;
    padding: 0.5rem 1rem;
    background-color: rgba(0, 0, 0, 0.6);
}

.textoMemorias {
    text-align: left;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.4rem;
    letter-spacing: 0.25px;
    color: rgba(255, 255, 255, 0.9);
}

.imgBaseMemo{
    width: 100%;
    height: 100%;
    border-radius: 1rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    overflow: hidden;
    background-color: black;
}

.imgBaseMemo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.proyMemo02{
    grid-column: 1/2;
    grid-row: 1/3;
}

.memoProy01-01{
    grid-column: 2/3;
    grid-row: 1/2;
}

.memoProy01-02{
    grid-column: 2/3;
    grid-row: 2/3;
}


@media only screen and (max-width: 800px) {

    .contProymemorias{
        position: relative;
        width: 100%;
        height: 580px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr 1fr;
        gap: 0.5rem;
    }

    .proyMemo02{
        grid-column: 1/3;
        grid-row: 1/3;
    }

    .memoProy01-01{
        grid-column: 1/2;
        grid-row: 3/4;
    }

    .memoProy01-02{
        grid-column: 2/3;
        grid-row: 3/4;
    }

    .lineaMemorias{
        width: 100%;
        height: 1px;
        margin-top: 2rem;
        margin-bottom: 2rem;
        background-color: rgba(255, 255, 255, 0.3);
    }

    .memoriasTextosCont{
        width: 100%;
        height: fit-content;
        position: absolute;
        bottom: 1rem;
        left: 0px;
        z-index: 5;
        padding: 0.5rem 1rem;
        background-color: rgba(0, 0, 0, 0.6);
    }

}









@media only screen and (max-width: 1200px) {

    .contPrinc{
        width: 100%;
        max-width: 800px;
        grid-template-rows: 150px 1fr auto;
    }

    .contProyectInfo{
        width: 100%;
        height: 1360px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
        gap: 1rem;
    }

    .textoXLProyect{
        grid-column: 1/2;
        grid-row: 3/5;
    }

    .quoteProyect{
        grid-column: 1/2;
        grid-row: 5/6;
    }

    .imgPA01{
        width: 100%;
        height: 100%;
    }

    .imgPA02{
        width: 100%;
        height: 100%;
    }

    .imgPA03{
        width: 100%;
        height: 100%;
    }

    .imgPA04{
        width: 100%;
        height: 100%;
        grid-column: 1/2;
        grid-row: 6/8;
    }

    .imgPA05{
        width: 100%;
        height: 100%;
        grid-column: 2/3;
        grid-row: 5/8;
    }

    .circuloNoticia{
        width: 100%;
        height: 0.5rem;
    }

    .ubicacionText{
        font-size: 0.8rem;
        text-align: right;
        color: rgba(255, 255, 255, 0.8);
        letter-spacing: 1px;
        font-weight: 100;
        margin-top: 0.5rem;
        margin-bottom: 0.3rem;
    }

    .tituloProject{
        text-align: right;
        font-size: 2.1rem;
        line-height: 2.2rem;
        color: white;
        font-weight: 300;
        padding-bottom: 0.6rem;
        margin-bottom: 0.6rem;
        border-bottom: solid 1px rgba(255, 255, 255, 0.2);
    }

    .bajadaProject{
        text-align: right;
        font-size: 0.8rem;
        font-weight: 100;
        line-height: 1rem;
        letter-spacing: 0.25px;
        padding-bottom: 1rem;
        color: rgba(255, 255, 255, 0.7);
    }

    .comentProject{
        font-size: 1.8rem;
        line-height: 2.2rem;
        letter-spacing: -0.25px;
        color: rgba(255, 255, 255, 1);
        font-weight: 100;
        font-style: italic;
    }

    .textoProject{
        font-size: 1rem;
        line-height: 1.5rem;
        letter-spacing: 0.5px;
        font-weight: 100;
        columns: 1;
        column-gap: 2rem;
        text-indent: 2rem;
        color: rgba(255, 255, 255, 0.7);
    }

    .imgBase img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

}

@media only screen and (max-width: 800px) {

     .contPrinc{
        width: 100%;
        max-width: 375px;
        grid-template-rows: 80px 1fr auto;
    }

    .contProyectInfo{
        width: 100%;
        height: 2300px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr auto auto 1fr 1fr 1fr auto 1fr 1fr;
        gap: 1rem;
    }

    .textoInicial{
        grid-column: 1/3;
        grid-row: 3/4;
        padding: 0rem 0.6rem;
        display: grid;
        grid-template-rows: auto auto auto;
        align-items: self-start;
        border-radius: 1rem;
        position:relative; 
        overflow: hidden;
        background-color: rgba(255, 255, 255, 0);
    }

    .textoXLProyect{
        grid-column: 1/3;
        grid-row: 4/5;
        place-content: start center;
        padding: 0rem 0.6rem;
    }

    .quoteProyect{
        grid-column: 1/3;
        grid-row: 8/9;
        display: grid;
        place-content: center;
        padding: 0rem 0rem;
    }

    .imgPA01{
        width: 100%;
        height: 100%;
        grid-column: 1/3;
        grid-row: 1/3;
    }

    .imgPA02{
        width: 100%;
        height: 100%;
        grid-column: 1/3;
        grid-row: 9/11;
    }

    .imgPA03{
        width: 100%;
        height: 100%;
        grid-column: 1/3;
        grid-row: 7/8;
    }

    .imgPA04{
        width: 100%;
        height: 100%;
        grid-column: 1/2;
        grid-row: 5/7;
    }

    .imgPA05{
        width: 100%;
        height: 100%;
        grid-column: 2/3;
        grid-row: 5/7;
    }

    .circuloNoticia{
        width: 100%;
        height: 0.5rem;
    }

    .ubicacionText{
        font-size: 0.9rem;
        text-align: initial;
        color: rgba(255, 255, 255, 0.8);
        letter-spacing: 1px;
        font-weight: 100;
        margin-top: 2rem;
        margin-bottom: 0.6rem;
    }

    .tituloProject{
        text-align: initial;
        font-size: 2.4rem;
        line-height: 2.6rem;
        color: white;
        font-weight: 700;
        padding-bottom: 2rem;
        margin-bottom: 1rem;
        border-bottom: solid 1px rgba(255, 255, 255, 0.3);
    }

    .bajadaProject{
        text-align: initial;
        font-size: 1.4rem;
        font-weight: 200;
        line-height: 2rem;
        letter-spacing: -0.25px;
        padding-bottom: 1rem;
        color: rgba(255, 255, 255, 0.9);
    }

    .comentProject{
        font-size: 2.2rem;
        line-height: 2.4rem;
        letter-spacing: 0.15px;
        color: rgba(255, 255, 255, 0.9);
        font-weight: 300;
        font-style: italic;
        text-align: center;
        margin-top: 1rem;
        margin-bottom: 1rem;
        padding: 1.4rem 1rem;
        border-radius: 1rem;
        text-shadow: #000000f1 1px 0 10px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        background-color: rgba(255, 255, 255, 0);
    }

    .textoProject{
        font-size: 1.05rem;
        line-height: 1.6rem;
        letter-spacing: 0.5px;
        font-weight: 100;
        text-indent: 1rem;
        margin-bottom: 2rem;
        color: rgba(255, 255, 255, 0.8);
    }
}