/* FONTS */

/* Bold */
@font-face {
  font-family: 'ABCWhyte-Bold';
  src: url('../assets/fonts/ABCWHYTE-BOLD-TRIAL.woff2') format('woff2');
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: 'ABCWhyteINKTRAP-Bold';
  src: url('../assets/fonts/ABCWHYTEINKTRAP-BOLD-TRIAL.woff2') format('woff2');
  font-weight: 700;
  font-display: swap;
}

/* Book */
@font-face {
  font-family: 'ABCWhyte-Book';
  src: url('../assets/fonts/ABCWHYTE-BOOK-TRIAL.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
}

/* Light */
@font-face {
  font-family: 'ABCWhyte-Light';
  src: url('../assets/fonts/ABCWHYTE-LIGHT-TRIAL.woff2') format('woff2');
  font-weight: 300;
  font-display: swap;
}

/* Medium */
@font-face {
  font-family: 'ABCWhyte-Medium';
  src: url('../assets/fonts/ABCWHYTE-MEDIUM-TRIAL.woff2') format('woff2');
  font-weight: 500;
  font-display: swap;
}

/* Regular */
@font-face {
  font-family: 'ABCWhyte-Regular';
  src: url('../assets/fonts/ABCWHYTE-REGULAR-TRIAL.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
}

/* Thin */
@font-face {
  font-family: 'ABCWhyte-Thin';
  src: url('../assets/fonts/ABCWHYTE-THIN-TRIAL.woff2') format('woff2');
  font-weight: 100;
  font-display: swap;
}

/* WEBSITE GLOBAL SETTINGS */

p {
    font-family: 'ABCWhyte-Light';
    font-weight: 300;
    font-size: 24px;
    font-style: normal;
    font-weight: 300;
    line-height: 36px;
}

h1 {
    font-family: 'ABCWhyteINKTRAP-Bold';
    font-weight: 700;
    font-size: 45px;
    font-weight: 700;
    line-height: 48px;
    color: #1b2429;
}

h2 {
    font-family: 'ABCWhyteINKTRAP-Bold'; 
    font-size: 28px;
    font-weight: 400;
    line-height: 36px;
}

h3 {
    font-family: 'ABCWhyteINKTRAP-Bold';
    font-weight: 700;
    font-size: 24px;
    font-weight: 600;
    line-height: 36px;
    color: white;
}

h4 {
    font-family: 'ABCWhyteINKTRAP-Bold';
    font-weight: 300;
    font-size: 24px;
    font-weight: 300;
    line-height: 36px;
}

a{
    font-family: 'ABCWhyte-Light';
    font-weight: 300;
    font-size: 24px;
    font-style: normal;
    font-weight: 300;
    line-height: 36px;
}

body, html {
    height: 100%;
    margin: 0;
    padding: 0;
    background-color: #192125;
}

ul, li {
    margin: 0;
    padding: 0;
    list-style: none;
}

video::-webkit-media-controls-picture-in-picture-button {
    display: none;
}
  
video::-webkit-media-controls-enclosure {
    overflow: hidden !important;
}


/* NAVIGATION MENU STYLES */

a {
    text-decoration: none;
}

.menu-container {
    position: fixed;
    overflow: hidden;
    background-color: #192125;
    display: flex;
    justify-content: space-between;
    width: 100%;
    z-index: 100;
}

.menu-container-home {
    position: fixed;
    overflow: hidden;
    background: linear-gradient(
    to bottom,
    #192125 15%,
    rgba(25, 33, 37, 0.8) 35%,
    rgba(25, 33, 37, 0.4) 55%,
    rgba(25, 33, 37, 0) 100%
    );
    color: white;
    display: flex;
    justify-content: space-between;
    width: 100%;
    z-index: 100;
    padding-bottom: 10px;
}

.menu-container-packages{
    position: fixed;
    overflow: hidden;
    background: linear-gradient(
    to bottom,
    #192125 15%,
    rgba(25, 33, 37, 0.8) 35%,
    rgba(25, 33, 37, 0.4) 55%,
    rgba(25, 33, 37, 0) 100%
    );
    color: white;
    display: flex;
    justify-content: space-between;
    width: 100%;
    z-index: 100;
    padding-bottom: 10px;
}

.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}

.navbar{
    padding: 20px;
}

.navbar a{
    font-size: 20px;
    margin-left: 35px;
    text-decoration: none;
    color: white;
    transition: color 0.4s ease;
}

.navbar a:hover{
    color:#C8FF00;
}

.header-logo {
    padding: 5px;
}

.header-logo a img {
    width: 150px;
    padding-top: 5px;
}

/* MENU MOBILE */

.menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  z-index: 20;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #192125;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  z-index: 15;
}

.mobile-menu.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu ul {
  list-style: none;
  text-align: center;
  padding: 0;
}

.mobile-menu ul li {
  margin: 20px 0;
}

.mobile-menu ul li a {
  color: white;
  text-decoration: none;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.mobile-menu ul li a:hover {
  color: #e6ff00;
}

.close-menu {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  nav.navbar {
    display: none;
  }
}

/* LOADER STYLES */

#loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000; /* podés usar otro fondo */
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease;
}

/* Spinner simple */
#loader {
  border: 8px solid #f3f3f3;
  border-top: 8px solid #C8FF00; /* color primario */
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 1s linear infinite;
}

/* Animación */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* HOME SECTION STYLES */

#home { margin: 0; padding: 0; }

.home{
  position: relative;
  width: 100%;
  height: 100dvh;         /* altura real del viewport (mejor que 100vh en navegadores modernos) */
  display: block;         /* no necesitamos flex para el video; tu .home-text es absolute */
  overflow: hidden;
}

@supports not (height: 100dvh) {
  .home { height: 100vh; } /* fallback */
}

:root{ --header-h: 80px; }

.video-home{
  position: absolute;     /* hace que el video “llene” el contenedor sin influir el layout */
  inset: 0;               /* top/right/bottom/left = 0 */
  width: 100%;
  height: 100%;
  object-fit: cover;      /* mismo efecto: ocupa toda la pantalla */
  object-position: 50% calc(50% - (var(--header-h) / 2));
  display: block;         /* evita comportamientos raros por inline video */
  pointer-events: none;   /* opcional: que el video no intercepte el mouse */
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

/* Tu título sigue igual: está por encima del video */
.home-text {
  position: absolute;
  top: 75%;
  left: 0%;
  margin-left: 25px;
  display: flex;
}

.home-text h1{
  color: white;
  font-size: 85px;
  line-height: 80px;
}

/* Limpieza: estas reglas no se usan con tu HTML actual */
.video-wrapper-home,
.video-wrapper-home iframe { /* clase no presente en tu HTML */
  all: unset;
}

@media (max-width: 1500px) {
  :root { --header-h: 0px; } /* notebooks 15" */
}

@media (max-width: 1279px) {
  :root { --header-h: 20px; } /* notebooks 13"-14" */
}

@media (max-width: 1023px) {
  :root { --header-h: 20px; } /* notebooks 11" / tablets landscape */
}

@media (max-width: 850px){
    .home-text{
        top: 65%;
    }
}

/* Mobile (tu bloque queda igual, solo ajusté indentación) */
@media (max-width: 768px) {
    .home{
        height: 50dvh;
    }
  .home-text{
    /*top: 88%; */
    top: 78%;
    margin-left: 10px;
  }
  .home-text h1{
    font-size: 29px;
    line-height: 30px;
  }
  :root{ --header-h: 0px; }
}

@media screen and (max-width: 770px){
    .menu-container-packages{
        background-color: #192125;
    }
}


/* INTRODUCTION HOME STYLES */

.introduction-container {
    padding: 125px 45px;
    display: flex;
    justify-content: center;
    width: 100%;
}

.introduction-container-home{
    padding: 55px 0px;
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.introduction-home-video{
    flex-basis: 60%;
}

.introduction-home-video video{
    width: 100%;
}

.introduction2{
    padding: 0px 0px 45px 0px;
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.introduction-container2 {
    flex-basis: 35%;
}

.introduction-container-img2{
    flex-basis: 60%;
}

.introduction-container h1{
    margin-bottom: 50px;
}

.introduction-text {
    flex-basis: 40%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.introduction-text2 {
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin-left: 35px;
}

.introduction-text p{
    color: white;
    font-size: 25px;
    line-height: 45px;
}

.introduction-text2 h2{
    color: #C8FF00;
    font-size: 35px;
    line-height: 48px;
    margin-bottom: 45px;
}

.introduction-text2 p{
    color: white;
    font-size: 18px;
    line-height: 35px;
    text-align: start;
}

.introduction-rectangle{
    width: 65%;
    display: flex;
    justify-content: end;
}

.rectangle {
    background-color: #C8FF00;
    width: 60px;
    height: 15px;
}

.img-introduction-container{
    display: flex;
    width: 100%;
    
}

#packs{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.introduction-container-img{
    display: flex;
    justify-content: space-between;
    width: 80%;
}

.introduction-img {
    width: 24.3%;
}

.introduction3-container{
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: end;
}

.introduction-text3{
    width: 100%;
}

.introduction-text3 h2{
    color: #C8FF00;
    font-size: 35px;
    line-height: 48px;
    margin-bottom: 45px;
}

.introduction-text3 p{
    color: white;
    font-size: 18px;
    line-height: 35px;
    margin-bottom: 0px;
}

.btn-home {
    background-color: #C8FF00;
    font-family: 'ABCWhyte-book';
    font-size: 18px;
    padding: 5px 20px;
    border: none;
    border-radius: 24px;
    color: #192125;
    transition: opacity 0.3s ease;
    max-height: 45px;
}

.btn-home:hover{
    opacity: 0.8;
}

.introduction-img-full{
    width: 100vw;
}

.introduction-text-p{
    margin-bottom: 25px !important;
}

.carousel-fade {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.slides-container {
  position: relative;
  width: 100%;
}

.slide {
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 1;
}

.slide.active {
  opacity: 1;
  z-index: 2;
  position: relative;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 5rem;
    padding: 0 15px;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s ease, color 0.3s ease;
    z-index: 10;
    pointer-events: none;
}

.carousel-fade:hover .carousel-btn {
    opacity: 1;
    pointer-events: all;
}

.carousel-btn:hover {
    color: rgba(255, 255, 255, 0.9);
}

.carousel-btn.prev {
    left: 20px;
}

.carousel-btn.next {
    right: 20px;
}

.container-packs-img{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-left: 45px;
    padding-right: 45px;
}

.container-packs-img img{
    width: 49.7%;
    margin-bottom: 10px;
    height: auto; /* Mantiene proporción original */
    object-fit: cover;
}

.container-packs-img2{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-left: 45px;
    padding-right: 45px;
}

.container-packs-img2 img{
    width: 33%;
    margin-bottom: 10px;
    height: auto; /* Mantiene proporción original */
    object-fit: cover;
}

@media screen and (min-width: 1250px) and (max-width: 1400px){
    .img-show2{
        width: 65% !important;
    }
    .content-show-vr{
        flex-basis: 40%;
        height: 300px;
        position: relative;
        width: 100%;
        display: block;
        margin: 0 auto;
        overflow: hidden;
    }
    .content-show-vr-2{
        flex-basis: 40%;
        height: 300px;
        position: relative;
        width: 100%;
        display: block;
        margin-left: 0;
        overflow: hidden;
    }
    .content-show-vr-3{
        flex-basis: 40%;
        height: 300px;
        position: relative;
        width: 100%;
        display: block;
        margin: 0 auto;
        overflow: hidden;
    }
    .content-show-vr-4{
        flex-basis: 40%;
        height: 300px;
        position: relative;
        width: 100%;
        display: block;
        margin-left: 0;
        overflow: hidden;
    }
    .content-show-vr-5{
        flex-basis: 40%;
        height: 300px;
        position: relative;
        width: 100%;
        display: block;
        margin-left: 0;
        overflow: hidden;
    }
    .introduction-container2{
        flex-basis: 38%;
    }

}

@media screen and (min-width: 771px) and (max-width: 1400px){
    .introduction-text p{
        font-size: 20px;
    }
    .introduction-rectangle {
        width: 80%;
    }
}

@media screen and (min-width: 1051px) and (max-width: 1249px){
    .vr360-image{
        width: 100%;
        object-fit: contain;
    }
}

@media screen and (max-width: 770px){
    .introduction-container-home{
        padding: 35px 15px 0px 15px;
        flex-direction: column-reverse;
        width: 100%;
    }
    .introduction-home-video{
        margin-top: 35px;
    }
    .introduction2{
        padding: 15px 15px 0px 15px;
        flex-direction: column;
        width: 100%;
    }
    .introduction-text2{
        margin-left: 0px;
    }
    .introduction-text2 h2{
        font-size: 25px;
        line-height: 32px;
        margin-bottom: 25px;
    }
    .introduction-button-home{
        margin-bottom: 35px;
    }
    .introduction-container-img {
        display: grid;
        grid-template-columns: repeat(2, 1fr); 
        gap: 12px;
        width: 100%;
    }
    .introduction-container-img img{
        margin-bottom: 0px !important;
    }
    .introduction-container{
        padding: 45px 15px;
        flex-direction: column;
        justify-content: center;
    }
    .introduction-text{
        width: 100%;
    }
    .introduction-text2 {
        width: 100%;
    }
    .introduction-text h1{
        font-size: 35px;
        line-height: 40px;
        margin-bottom: 25px;
    }
    .introduction-text p{
        font-size: 17px;
        line-height: 30px;
    }
    .introduction-text2 p{
        font-size: 17px;
        line-height: 30px;
    }
    .introduction-text3 p{
        font-size: 17px;
        line-height: 30px;
    }
    .introduction-rectangle {
        width: 95%;
    }
    .btn-home{
        font-size: 18px;
        margin-top: 20px;
    }
    .introduction-img{
        width: 100%;
        margin-bottom: 0px;
    }
    .services-home{
        padding: 45px 15px;
    }
    .contTitle{
        flex-direction: column;
    }
    .title-services-home{
        margin-bottom: 5px;
    }
    .content-show{
        flex-direction: column;
        justify-content: center;
    }
    .content-show-text{
        flex-basis: 100%;
    }
    .contContents p{
        font-size: 18px;
        line-height: 30px;
    }
    .img-show{
        width: 75% !important;
    }
    .img-show2{
        width: 50% !important;
    }
    .content-show-vr{
        flex-basis: auto;
        height: 650px;
    }
    .content-show-vr-2{
        flex-basis: auto;
        height: 650px;
    }
    .content-show-vr-3{
        flex-basis: auto;
        height: 650px;
    }
    .content-show-vr-4{
        flex-basis: auto;
        height: 650px;
    }
    .content-show-vr-5{
        flex-basis: auto;
        height: 650px;
    }
    canvas{
        height: 650px;
    }
    .introduction3-container{
        flex-direction: column;
    }
    .introduction-container-img2{
        display: grid;
        grid-template-columns: repeat(2, 1fr); 
        gap: 12px;
        margin-bottom: 20px;
    }
    .container-packs-img{
    flex-direction: column;
    padding-left: 0px;
    padding-right: 0px;
    }

    .container-packs-img img{
        width: 100%;
        margin-bottom: 10px;
    }
    .container-packs-img2{
    flex-direction: column;
    padding-left: 0px;
    padding-right: 0px;
    }
    .container-packs-img2 img{
        width: 100%;
        margin-bottom: 10px;
    }
    }

@media screen and (min-width: 771px) and (max-width: 1050px){
    .introduction-container{
        flex-direction: column;
        justify-content: center;
    }
    .introduction-text{
        width: 100%;
    }
    .introduction-text p{
        margin-right: 0;
    }
    .btn-home{
        margin-bottom: 55px;
    }
    .introduction-img{
        width: 100%;
        margin-bottom: 55px;
    }
    .services-home{
        padding: 45px 15px;
    }
    .contTitle{
        flex-direction: column;
    }
    .title-services-home{
        margin-bottom: 5px;
    }
    .content-show{
        flex-direction: column;
        justify-content: center;
    }
    .content-show-text{
        flex-basis: 100%;
    }
    .btn-services{
        margin-top: 35px;
        margin-bottom: 35px;
    }
    .title-services-home{
        font-size: 24px;
        margin-bottom: 10px;
    }
}

/* PACKAGES SECTION STYLES */

.packages {
  position: relative;
  width: 100%;
  height: 100vh;        
  overflow: hidden;
}

.packages-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.packages-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;            
  object-position: center bottom; 
}

@media (max-width: 768px) {
  .packages {
    height: auto; 
    padding-top: 100px;
  }
  .packages-video {
    position: relative;
    height: auto;
  }
  .packages-video video {
    width: 100%;
    height: auto;
    object-fit: contain; 
    object-position: center center;
  }
}

.introduction-packs{
    display: flex;
    flex-direction: row;
    padding: 55px 45px;
    width: 100%;
    justify-content: space-between;
}

.introduction-packs-text{
    flex-basis: 55%;
}

.introduction-packs-text h2{
    color: #C8FF00;
    font-size: 35px;
    line-height: 48px;
    margin-bottom: 45px;
}

.introduction-packs-text p{
    color: white;
    font-size: 18px;
    line-height: 35px;
    width: 85%;
}

.text-packs{
    margin-bottom: 35px;
}

.introduction-packs-image{
    flex-basis: 40%;
}

.introduction-packs-image img{
    width: 100%;
}

.packs-container {
    padding: 0px 25px 0px 25px;
    display: flex;
    justify-content: center;
    width: 100%;
}

.packs-text {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.packs-text h2{
    color: #C8FF00;
    font-size: 35px;
    line-height: 48px;
    margin-bottom: 35px;
}

.packs-text-2 {
    padding: 25px 25px 45px 25px;
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.packs-text-2 h2{
    color: #C8FF00;
    font-size: 32px;
    line-height: 45px;
    margin-bottom: 0px;
}


.packs-text-2 h3 {
    color: white;
    font-size: 32px;
    line-height: 45px;
    margin-bottom: 25px;
}

@media screen and (max-width: 770px){
    .introduction-packs{
        padding: 25px 15px;
        flex-direction: column;
        justify-content: center
    }
    .introduction-packs h2{
        font-size: 23px;
        line-height: 30px;
        margin-bottom: 35px;
    }
    .introduction-packs-text p{
        font-size: 17px;
        line-height: 30px;
        margin-bottom: 35px;
        width: 100%;
    }
    .packs-text h2{
        font-size: 23px;
        line-height: 30px;
        margin-bottom: 0px;
        text-align: center;
    }
    .packs-text-2{
        padding: 15px 25px;
    }
    .packs-text-2 h2{
        font-size: 23px;
        line-height: 30px;
        margin-bottom: 0px;
        text-align: center;
    }
    .packs-text-2 h3{
        font-size: 23px;
        line-height: 30px;
        margin-bottom: 0px;
        text-align: center;
    }
    .introduction-packs-text p{
        margin-bottom: 15px;
    }
    .packs-container{
        padding: 0px 25px 25px 25px;
    }
}

@media screen and (min-width: 771px) and (max-width: 1400px){
    .packs-text h2{
        font-size: 30px;
        line-height: 42px;
        margin-bottom: 25px;
    }
    .packs-text-2 h2{
        font-size: 30px;
        line-height: 42px;
        margin-bottom: 0px;
        text-align: center;
    }
    .packs-text-2 h3{
        font-size: 30px;
        line-height: 42px;
        margin-bottom: 15px;
        text-align: center;
    }
}

/* ABOUT US SECTION STYLES */

.about-us {
    padding: 125px 45px 50px 45px;
}

.container-about {
    display: flex;
    justify-content: space-between;
}

.container-about-2 {
    display: flex;
    justify-content: space-between;
    margin-top: 45px;
    align-items: stretch;
}

.about-introduction-container{
    flex-basis: 45%;
}

.about-introduction-container h2{
    color: #C8FF00;
    font-size: 35px;
    line-height: 48px;
    margin-bottom: 45px;
}

.about-introduction-container p{
    color: white;
    font-size: 18px;
    line-height: 35px;
    margin-bottom: 40px;
}

.about-introduction-container-2 {
    flex-basis: 57%;
}

.about-introduction-container-2 h2{
    color: #C8FF00;
    font-size: 35px;
    line-height: 48px;
    margin-bottom: 45px;
}

.about-introduction-container-2 p{
    color: white;
    font-size: 18px;
    line-height: 35px;
    width: 65%;
}

.about-images-container2{
    display: flex;
    width: 100%;
    align-items: end;
    justify-content: space-between;
    margin-top: 35px;
}

.about-img1{
    flex-basis: 42%;
}

.about-img1 img{
    width: 100%;
}

.about-img2{
    flex-basis: 55%;
}

.about-img2 img{
    width: 100%;
}



.about-video-container {
    flex-basis: 40%;
}

.about-video-container video{
    width: 100%;
    height: 800px;
}

.about-rectangle{
    width: 95%;
    display: flex;
    justify-content: end;
}

.about-img-container{
    flex-basis: 45%;
    padding-top: 100px;
}

.about-img-container img{
    width: 100%;
}

.about-img-container-2{
    flex-basis: 40%;
    display: flex;
    flex-direction: column;
}

.about-img-container-2 img{
    width: 100%;
    margin-bottom:0 !important;
}

.introduction-studio-about{
    padding: 25px 45px;
}

.container-about-studio{
    display: flex;
    justify-content: space-between;
}

.container-about-studio1{
    flex-basis: 50%;
}

.container-about-studio1 img{
    width: 90%;
}

.container-about-studio2{
    flex-basis: 50%;
}

.container-about-studio2 h2{
    color: #C8FF00;
    font-size: 35px;
    line-height: 48px;
    margin-bottom: 45px;
}

.container-about-studio2 p{
    color: white;
    font-size: 18px;
    line-height: 35px;
}

.container-about-button{
    margin-top: auto;
    display: flex;
    justify-content: end;
}

.introduction2-about{
    padding: 45px;
}

.container-about2{
    display: flex;
    justify-content: space-between;
}

.container-about-box1{
    display: flex;
    flex-direction: column;
    align-items: end;
    flex-basis: 60%;
}

.container-about-box1 img{
    width: 100%;
    margin-bottom: 45px;
}

.container-about-box2{
    display: flex;
    align-items: end;
    flex-basis: 35%;
}

.container-about-box2 img{
    width: 90%;
}

.about-text {
    display: flex;
    flex-basis: 60%;
    flex-direction: column;
    margin-right: 15px;
    padding-right: 50px;
}

.about-text p{
    font-family: 'ABCWhyte-Light';
    font-weight: 300;
    font-size: 20px;
    color: white;
    font-weight: 300;
    line-height: 36px;
}

.about-img {
    display: flex;
    justify-content: space-between;
    flex-basis: 40%;
}

.about-images {
    width: 100%;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.about-images:hover {
    filter: none;
}

.img-about-container {
    display: flex;
    flex-direction: column;
}
 
.img-about-container span {
    font-size: 14px;
    color: white;
    font-family: 'ABCWhyte-Light';
    font-weight: 300;
    line-height: 23px;
}

.about-team {
    padding-top: 80px;
    padding-bottom: 60px;
}

.container-img-team {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.img-team {
    display: flex;
    width: 20%;
    height: 100%;
    margin-right: 5px;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.img-team-final {
    display: flex;
    width: 20%;
    height: 100%;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.img-team:hover {
    filter: none;
}

.img-team-final:hover {
    filter: none;
}

.join-us {
    display: flex;
    flex-direction: column;
    padding-top: 60px;
}

.container-about-btn{
    margin-top: 50px;
}

.about-img-none{
    display: none;
}

@media screen and (min-width: 771px) and (max-width: 1200px){
    .about-text p{
        font-size: 18px;
        line-height: 30px;
    }
}

@media screen and (max-width: 770px){
    .introduction-studio-about {
        padding: 25px 15px;
    }
    .container-about-studio{
        flex-direction: column;
    }
    .container-about-studio1{
        order: 2;
        margin-top: 35px;
    }
    .container-about-studio1 img{
        width: 100%;
    }
    .about-video-container video{
        width: 95%;
        margin-top: 35px;
    }
    .about-img-container{
        padding-top: 35px;
    }
    .about-us {
        padding: 105px 15px 0px 15px;
    }
    .container-about{
        flex-direction: column;
        justify-content: flex-start;
    }
    .about-text{
        flex-basis: 100%;
        margin-right: 0;
        padding-right: 0;
        margin-bottom: 25px;
    }
    .about-text p{
        font-size: 18px;
        line-height: 30px;
    }
    .about-img {
        flex-basis: 100%;
    }
    .img-about-container span{
        font-size: 13px;
        white-space: nowrap;
        line-height: 20px;
    }
    .about-team{
        padding-bottom: 20px;
    }
    .container-img-team{
        flex-direction: column;
    }
    .img-team{
        width: 100%;
        margin-bottom: 15px;
        margin-right: 0;
    }
    .img-team-final{
        width: 100%;
        margin-bottom: 15px;
        margin-right: 0;
    }
    .join-us{
        padding-top: 40px;
    }
    .join-us p, span{
        font-size: 18px;
        line-height: 30px;
    }
    .about-video-container video{
        width: 100%;
        margin-top: 35px;
        height: auto;
    }
    .about-introduction-container h2{
        margin-bottom: 25px;
    }
    .about-introduction-container p{
        font-size: 17px;
        line-height: 30px;
        margin-bottom: 20px;
    }
    .container-about-2{
        flex-direction: column-reverse;
    }
    .about-introduction-container-2 h2{
        margin-bottom: 25px;
    }
    .about-introduction-container-2 p{
        font-size: 17px;
        line-height: 30px;
        margin-bottom: 20px;
        width: 100%;
    }
    .about-images-container2{
        margin-bottom: 0px;
    }
    .about-img1{
        display: none;
    }
    .about-img-none{
        display: flex;
    }
    .about-img2{
        flex-basis: 100%;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: stretch;
    }
    .about-img2 img{
        width: 49%;
        height: auto;
        object-fit: cover;
    }
    .about-img-container-2 img{
        display: none;
    }
}

@media screen and (min-width: 771px) and (max-width: 1050px){
    .container-about{
        flex-direction: column;
        justify-content: flex-start;
    }
    .about-text{
        flex-basis: 100%;
        margin-right: 0;
        padding-right: 0;
        margin-bottom: 25px;
    }
}

@media screen and (min-width: 771px) and (max-width: 1400px){
    .container-about-2{
        margin-top: 0px;
    }
    .about-introduction-container-2 h2{
        margin-bottom: 25px;
    }
    .about-introduction-container-2 p{
        width: 75%;
    }
    .about-img-container-2 img{
        margin-bottom: 155px;
    }
}




/* WORKS SECTION STYLES */


.container-introduction-works {
    padding: 125px 45px 35px 45px;
    justify-content: space-between;
    align-items: start;
    width: 40%;
}

.container-introduction-works h2{
    color: #C8FF00;
    font-size: 35px;
    line-height: 48px;
}

.container-introduction-works p{
    color: white;
    font-size: 18px;
    line-height: 35px;
}

.container-works {
    width: 100%;
    text-align: center;
    padding: 0px 15px 0px 15px;
}

.container-works-360 {
    width: 100%;
    text-align: center;
    padding: 0 15px;
}

.container-visible {
    display: flex;
    width: 100%;
}

.container-hidden {
    display: none;
}

.image-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.image-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  cursor: pointer;
  content-visibility: auto
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
  transition: transform 0.8s ease;
  margin-bottom: 0px !important;
}

.overlay, .overlay-text, .hover-video { will-change: opacity, transform; }

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.4s ease;
}

.overlay-text {
  color: white;
  font-size: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  text-align: center;
  padding: 1rem;
}

.image-container:hover img {
  transform: scale(1.05);
}

.image-container:hover .overlay {
  background-color: rgba(0, 0, 0, 0.4);
}

.image-container:hover .overlay-text {
  opacity: 1;
  transform: translateY(0);
}

.aspect-ratio-3-2 {
  position: relative;
  width: 100%;
  padding-top: 56%;
}

.aspect-ratio-3-2 > * {
  position: absolute !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hover-video {
  z-index: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.4s ease;
}

.cover-img {
  z-index: 1;
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.4s ease;
}

.overlay {
  z-index: 2; /* Este valor es clave */
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.4s ease;
}

.overlay-text {
  color: white;
  font-size: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  text-align: center;
  padding: 1rem;
  z-index: 3;
}

.image-container.video-hover:hover .hover-video {
  opacity: 1;
}

.image-container.video-hover:hover .cover-img {
  opacity: 0;
}

.image-container.video-hover:hover .overlay {
  background-color: rgba(0, 0, 0, 0.4);
}

.image-container.video-hover:hover .overlay-text {
  opacity: 1;
  transform: translateY(0);
}

.works-box1 {
    flex-basis: 50%;
    margin-right: 5px;
}

.works-box1 img {
    width: 100%;
    margin-bottom: 15px;
    cursor: pointer;
}

.works-box1 video{
    width: 100%;
    margin-bottom: 15px;
    cursor: pointer;
}

.video-container-works {
    position: relative;
    overflow: hidden;
    padding-bottom: 56.25%;
    width: 100%;
    height: 0;
    margin-bottom: 15px;
}

.video-container-works iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-container-works-360 {
    position: relative;
    overflow: hidden;
    padding-bottom: 56.25%;
    width: 100%;
    height: 0;
    margin-bottom: 15px;
}

.video-container-works-360 iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-container-works-360-iframe {
    position: relative;
    overflow: hidden;
    padding-bottom: 56.25%;
    width: 100%;
    height: 650px;
    margin-bottom: 15px;
}

.video-container-works-360-iframe iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.works-box2 {
    flex-basis: 50%;
    margin-left: 5px;
}

.works-box2 img {
    width: 100%;
    margin-bottom: 15px;
    cursor: pointer;
}

.works-box2 video{
    width: 100%;
    margin-bottom: 15px;
    cursor: pointer;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
}

#modal-image {
    max-width: 80%;
    max-height: 80%;
}

.close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 40px;
    color: white;
    cursor: pointer;
}

.modal-prev, .modal-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 80px;
    color: white;
    cursor: pointer;
    user-select: none;
}

.modal-prev {
    left: 15px;
}

.modal-next {
    right: 15px;
}

.btn-works {
    background-color: #C8FF00;
    font-family: 'ABCWhyte-book';
    font-size: 18px;
    padding: 5px 20px;
    border: none;
    border-radius: 24px;
    color: #192125;
    transition: opacity 0.3s ease;
    max-height: 45px;
    margin-top: 25px;
}

.btn-works:hover{
    opacity: 0.8;
}

/* Filtros Works */
.works-filters{
  display:flex;
  gap:10px;
  padding:10px 0 0;
  flex-wrap:wrap;
}

.filter-btn{
    background-color: #C8FF00;
    font-family: 'ABCWhyte-book';
    font-size: 18px;
    padding: 5px 20px;
    border: none;
    border-radius: 24px;
    color: #192125;
    transition: opacity 0.3s ease;
    max-height: 45px;
}

.filter-btn:hover{ transform: translateY(-1px); }
.filter-btn.active{
    opacity: 0.8;
}

/* Animación de mostrar/ocultar items */
.image-link{
  transition: opacity .28s ease, transform .28s ease;
  will-change: opacity, transform;
}
.image-link.is-hiding{ opacity:0; transform:scale(.98); }
.image-link.is-hidden{ display:none !important; }
.image-link.is-showing{
  display:block;
  opacity:0;
  transform:scale(.98);
  /* truco para que la transición ocurra después de reinsertar */
}
.image-link.is-showing.show{
  opacity:1;
  transform:scale(1);
}

#container-visible{
  display: grid;
  grid-auto-flow: row dense;       /* rellena huecos al ocultar items */
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 12px;                       /* controla el espacio entre cards */
}

/* 2) Los dos “column wrappers” dejan de estorbar (sin tocar HTML) */
.works-box1,
.works-box2{
  display: contents;  /* sus hijos (<a.image-link>) pasan a ser items del grid */
  margin: 0 !important;
}

/* 3) Cada item ocupa 6 columnas (dos por fila en desktop) */
.container-works .image-link{
  grid-column: span 6;
  margin: 0 !important;
  order: 0;
}

.container-projects{
    overflow-x: clip;
}

.container-projects #container-visible{
  display: block !important;     /* neutraliza tu grid/flex global */
  column-count: 2;
  column-gap: 12px;
}

.container-projects .works-box1,
.container-projects .works-box2{ display: contents !important; }

.container-projects .gallery-img{
  display: block;
  width: 100%;
  height: auto;
  margin: 0 0 12px 0 !important;
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  /* por si te queda algún estilo global pegado: */
  grid-column: auto !important;
}

/* 4) Responsive */
@media (max-width: 770px){
  .container-projects .gallery-img{
    grid-column: span 12;   /* 1 por fila */
    aspect-ratio: auto;     /* en mobile no forzamos alto */
  }
}

@media (min-width: 771px){
  /* 1) Todas las cards comparten la misma proporción */
  .container-works .image-container{
    position: relative;   /* ya lo tenés, lo reitero por si acaso */
    overflow: hidden;
    aspect-ratio: 16 / 9;  /* >>> clave: alto uniforme según ancho del grid */
  }

  /* 2) Contenido fill absoluto para que cover funcione igual con img/video/overlay */
  .container-works .image-container > *{
    position: absolute !important;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  /* 3) Neutralizar el helper antiguo en items que lo usaban */
  .container-works .aspect-ratio-3-2{
    padding-top: 0 !important;
  }
}

/* 4) Opciones de responsive para que se vea prolijo */
@media (max-width: 1050px){
  .container-works .image-link{ grid-column: span 6; } /* 2 por fila */
}
@media (max-width: 770px){
  .container-works .image-link{ grid-column: span 12; } /* 1 por fila en mobile */
  #container-visible{ gap: 10px; }
}

@media (max-width: 767px){
  .container-projects #container-visible{ column-count: 1; }
}


@media screen and (max-width: 770px){
    .container-introduction-works {
        padding: 20px 15px 25px 15px;
        width: 100%;
    }
    .container-works {
        padding: 0px;
    }
    .works{
        padding: 95px 0px 25px 0px;
    }
    .container-visible{
        flex-direction: column;
    }
    .container-hidden{
        flex-direction: column;
    }
    .works-box1 {
        flex-basis: 100%;
        margin-right: 0;
    }
    .works-box2 {
        flex-basis: 100%;
        margin-left: 0;
    }
    .modal-prev, .modal-next{
        font-size: 40px;
    }
    #modal-image {
        max-width: 85%;
        max-height: 85%;
    }
    .btn-works{
        font-size: 18px;
        margin-bottom: 45px;
    }
    .video-container-works-360{
        height: 650px;
    }
    .filter-btn{
        margin-top: 0px;
    }
}

@media screen and (min-width: 771px) and (max-width: 1050px){
    .btn-works{
        font-size: 18px;
        margin-bottom: 55px;
    }
}

@media screen and (min-width: 771px) and (max-width: 1400px){
    .container-introduction-works{
        width: 50%;
    }
}

/* PROJECTS SECTION STYLES */

.container-introduction-projects{
    padding: 125px 45px 15px 45px;
    align-items: start;
}

.container-introduction-projects h2{
    color: white;
    font-size: 35px;
    line-height: 48px;
    margin-bottom: 0px;
}

.container-introduction-projects h3{
    color: white;
    font-family: 'ABCWhyte-Light';
    font-size: 20px;
    line-height: 38px;
    margin-bottom: 30px;
}

.container-introduction-projects p{
    color: white;
    font-size: 18px;
    line-height: 35px;
    margin-bottom: 45px;
    width: 60%;
}

.container-project1{
    padding: 0px 15px 5px 15px;
}

.container-project-video{
    padding: 0px 15px 5px 15px;
}

.project-video-container iframe{
    height: 100dvh !important;
}

.video-wrapper {
  position: relative;
  width: 100%;            /* antes 100vw -> causa overflow */
  aspect-ratio: 16 / 9;   /* o 3/2 si querés igual al resto */
  height: auto;           /* QUITA 100dvh */
  overflow: hidden;
  margin-bottom: 10px;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /*pointer-events: none;
  z-index: 1; */
}

@media (min-aspect-ratio: 16/9) {
  .video-wrapper iframe {
    height: auto;
    width: 100%;
  }
}

@media (max-aspect-ratio: 16/9) {
  .video-wrapper iframe {
    width: auto;
    height: 100%;
  }
}

@media (max-width: 768px) {
  .video-wrapper {
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .video-wrapper iframe {
    width: 100%;
    height: 100%;
  }

  .project-video-container iframe{
    height: 600px;
    }
}

.container-project2{
    display: flex;
    justify-content: space-between;
    padding-bottom: 10px;
}

.container-project-used {
    display: flex;
    justify-content: space-between;
    padding-bottom: 10px;
}

.container-project-used img{
    width: 49.5%;
}

.container-project2 img{
    width: 49.5%;
}

.container-project3{
    padding: 0px 15px 5px 15px;
}

.container-project4{
    display: flex;
    justify-content: space-between;
    padding: 0px 0px 45px 0px;
}

.container-project4 img{
    width: 49%;
}

.project-buttons{
    display: flex;
    justify-content: space-between;
    padding: 25px 45px 25px 45px;
}

.btn-project{
    background-color: #C8FF00;
    font-family: 'ABCWhyte-book';
    font-size: 18px;
    padding: 5px 20px;
    border: none;
    border-radius: 24px;
    color: #192125;
    transition: opacity 0.3s ease;
}

.btn-project:hover{
    opacity: 0.8;
}

.span-projects-services{
    font-size: 12px !important;
    line-height: 16px !important;
    margin-bottom: 0px !important;
}

@media screen and (max-width: 770px){
    .container-project-video{
    padding: 0px 0px 5px 0px;
    }
    .container-project-used {
        flex-direction: column;
        padding-bottom: 0px;
    }
    .container-project-used img{
        width: 100%;
        margin-bottom: 10px;
    }
    .container-introduction-projects {
        padding: 20px 15px 25px 15px;
    }
    .container-introduction-projects p{
        width: 100%;
    }
    .project-buttons {
        padding: 25px 15px 25px 15px;
    }
    .span-projects-services {
        font-size: 12px !important;
        line-height: 18px !important;
    }
}

/* LINK FOR BUILDERS STYLES */

.builders{
    padding: 45px 45px 15px 45px;
}

.container-builders{
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    margin-top: -105px;
}

.container-builders img{
    width: 100%;
}

/* Tu título sigue igual: está por encima del video */
.home-builder-text {
  position: absolute;
  top: 88%;
  left: 0%;
  margin-left: 25px;
  display: flex;
}

.home-builder-text h1{
  color: white;
  font-size: 55px;
  line-height: 50px;
}

.builders-span{
    width: 100%;
    display: flex;
    justify-content: center;
}

.span-builders-services{
    font-size: 25px !important;
    line-height: 32px !important;
    color: #C8FF00;
    margin-top: 55px;
    margin-bottom: 55px;
}

.introduction-builders{
    display: flex;
    width: 100%;
    align-items: center;
}

.introduction-video-builders{
    flex-basis: 50%;
}

.introduction-video-builders video{
    width: 100%;
}

.introduction-text-builders{
    flex-basis: 50%;
    padding-left: 45px;
}

.introduction-text-builders p{
    font-size: 20px;
    line-height: 32px;
    color: white;
}

.introduction-text-builders h3{
    font-size: 25px;
    line-height: 36px;
    color: #C8FF00;
    font-weight: 400;
    margin-bottom: 35px;
}

.image-builders-container{
    display: flex;
    width: 100%;
    justify-content: space-between;
    padding-top: 55px;
    padding-bottom: 55px;
}

.image-builders-container img{
    width: 49.8%;
}

.container-360-builders{
    width: 100%;
    justify-content: center;
    display: flex;
}

.project-360-container{
    width: 70%;
}
.project-360-container iframe{
    height: 800px;
}

.builders-prices{
    padding-top: 55px;
    padding-bottom: 35px;
}

.builders-prices h2{
    text-align: center;
    color: #C8FF00;
}

.builders-packs{
    display: flex;
    justify-content: space-between;
    padding: 35px 45px 45px 45px;
    margin-bottom: 35px;
}

.pack-1{
    width: 30%;
    padding: 20px;
    background-color: #212a2f;
}

.pack-1 h4{
    color: white;
}

.pack-1 p{
    color: white;
    font-size: 18px;
    line-height: 27px;
}

.pack-2{
    width: 30%;
    padding: 20px;
    background-color: #313f48;
}

.pack-2 h4{
    color: white;
}

.pack-2 p{
    color: white;
    font-size: 18px;
    line-height: 27px;
}

.pack-3{
    width: 30%;
    padding: 20px;
    background-color: #485e6b;
}

.pack-3 h4{
    color: white;
}

.pack-3 p{
    color: white;
    font-size: 18px;
    line-height: 27px;
}

.builders-title{
    font-size: 32px;
    line-height: 45px;
    color: white;
    text-align: center;
    margin-bottom: 45px;
}

.pricing-wrap{
  padding: 32px 24px;
}

.pricing-table{
  max-width: 1100px;
  margin: 0 auto;
  color: white;
  display: grid;
}

/* Cada fila usa grid de 4 columnas (1ª más ancha) */
.pricing-table .row{
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 0.6fr);
  align-items: center;
}

/* Header */
.pricing-table .head{
  margin-bottom: 6px;
  font-weight: 600;
  letter-spacing: .02em;
  text-transform: uppercase;
  opacity: .95;
    border-bottom: 1px solid; /* 👈 línea divisoria */
  padding-bottom: 12px;

}

/* Celdas */
.cell{
  white-space: nowrap;
}
.cell.left{
  text-align: left;
  white-space: normal;     /* permite varias líneas en la 1ª col */
  color: var(--muted);
}
.cell.right{
  text-align: right;
}

/* Separador entre filas (sutil, como la imagen) */
.pricing-table .row:not(.head){
  padding-block: 16px;
  border-top: 1px solid var(--divider);
}
.pricing-table .row.head{ border-top: none; }

.contact-image{
    flex-basis: 16%;
    margin-right: 75px;
}

.contact-image img{
    width: 100%;
}

.contact-image h4{
    color: white;
    font-size: 20px;
    line-height: 32px;
}

.contact-image p{
    color: white;
    font-size: 15px;
    line-height: 23px;
    margin-bottom: 0px;
}

.contact-image a{
    text-decoration: none;
    color: white;
    font-size: 15px;
    line-height: 23px;
    font-weight: 600;
    transition: 0.4s ease;
}

.contact-image a:hover{
    color: #C8FF00;
}

/* ====== Responsive ====== */
@media (max-width: 880px){
  :root{ --col-gap: 28px; }
  .cell{ font-size: 15px; }
}

@media (max-width: 640px){
  .pricing-table{
    gap: 18px;
    padding: 20px 18px 22px;
  }
  /* En mobile, cada fila se apila y muestra labels */
  .pricing-table .row{
    grid-template-columns: 1fr;
    row-gap: 10px;
    align-items: start;
  }
  .pricing-table .head{
    display: none; /* ocultamos encabezado de columnas */
  }
  .pricing-table .row:not(.head){
    padding-block: 14px;
  }
  .cell{
    display: flex;
    justify-content: space-between;
    gap: 16px;
    white-space: normal;
  }
  .cell.right::before{
    content: attr(data-label);
    color: var(--muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .02em;
  }
  .cell.left{
    order: -1; /* la descripción arriba */
    display: block;
    color: var(--text);
    font-weight: 600;
    margin-bottom: 6px;
  }
}

.builders-notes{
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 55px;
    margin-top: 45px;
}

.builders-notes-container{
    background-color: #212a2f;
    padding: 30px;
    width: 60%;
}

.builders-notes-container p{
    color: white;
    text-align: center;
    font-size: 18px;
    margin-bottom: 3px;
}

/* ==== BUILDERS “SEE MORE” ==== */
.builders-gallery .gallery-img {
  opacity: 1;
  transition: opacity 0.4s ease, transform 0.3s ease;
}

/* imágenes ocultas inicialmente */
.builders-gallery .gallery-img.hidden {
  display: none;
  opacity: 0;
}

/* botón centrado */
.builders-see-more {
  text-align: center;
  margin-top: 25px;
}

.builders-see-more .btn-project {
  background-color: #C8FF00;
  color: #192125;
  font-family: 'ABCWhyte-book';
  border-radius: 24px;
  font-size: 18px;
  padding: 6px 25px;
  border: none;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.builders-see-more .btn-project:hover {
  opacity: 0.8;
}

.builders-gallery .gallery-img {
  opacity: 1;
  transition: opacity 0.4s ease;
}

.builders-gallery .gallery-img.hidden {
  opacity: 0;
  display: none;
}

.builders-gallery .gallery-img.revealed {
  animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}


@media screen and (max-width: 770px){
    .builders{
        padding: 45px 0px 15px 0px;
    }
    .container-builders{
        margin-top: 0px;
    }
    .home-builder-text{
        top: 80%;
        margin-left: 10px;
    }
    .home-builder-text h1{
        font-size: 15px;
        line-height: 20px;
    }
    .span-builders-services{
        font-size: 14px !important;
        line-height: 20px !important;
        text-align: center !important;
        margin-top: 25px;
        margin-bottom: 25px;
    }
    .introduction-builders{
        flex-direction: column;
    }
    .introduction-text-builders{
        padding: 10px 15px 10px 15px;
    }
    .introduction-text-builders h3{
        margin-bottom: 15px;
    }
    .image-builders-container{
        flex-direction: column;
        padding-top: 25px;
        padding-bottom: 25px;
    }
    .image-builders-container img{
        width: 100%;
        margin-bottom: 10px;
    }
    .project-360-container{
        width: 100%;
    }
    .project-360-container iframe{
        height: 350px;
    }
    .builders-prices h2{
        font-size: 25px;
        line-height: 32px;
    }
    .builders-packs{
        flex-direction: column;
        padding: 25px 25px 0px 25px;;
    }
    .pack-1{
        width: 100%;
        margin-bottom: 15px;
    }
    .pack-2{
        width: 100%;
        margin-bottom: 15px;
    }
    .pack-3{
        width: 100%;
        margin-bottom: 15px;
    }
    .pricing-wrap{
        padding: 10px 25px;
    }
    .builders-notes{
        padding: 0px 25px 0px 25px;
        margin-bottom: 15px;
    }
    .builders-notes-container{
        width: 100%;
    }
    .builders-title{
        margin-top: -35px;
        font-size: 25px;
        line-height: 32px;
        padding: 0px 25px 0px 25px;
    }
    .contact-image{
        margin-right: 0px;
        margin-top: 35px;
    }
    .contact-image-text{
        margin-top: 15px;
    }
}

@media screen and (min-width: 771px) and (max-width: 1400px){
    .container-builders{
        margin-top: 0px;
    }
    .home-builder-text{
        top: 85%;
        margin-left: 20px;
    }
    .home-builder-text h1{
        font-size: 35px;
        line-height: 40px;
    }
    .span-builders-services{
        font-size: 22px !important;
        line-height: 28px !important;
    }
    .project-360-container iframe{
        height: 500px;
    }
    .pack-1{
        width: 31%;
    }
    .pack-2{
        width: 31%;
    }
    .pack-3{
        width: 31%;
    }
    .builders-notes-container{
        width: 75%;
    }
    .contact-image{
        flex-basis: 20%;
    }
}

/* ===== BUILDERS: grid fijo, sin masonry ===== */
.builders-gallery #container-visible{
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(0,1fr);
  grid-auto-flow: row !important; /* pisa el dense global */
  gap: 12px;
  align-items: start;
}

/* Los wrappers no alteran el flujo */
.builders-gallery .works-box1,
.builders-gallery .works-box2{
  display: contents;
}

/* Enviar a columna 1/2 tanto imágenes como anchors (si existen) */
.builders-gallery .works-box1 .gallery-img,
.builders-gallery .works-box1 .image-link{ 
  grid-column: 1 !important; 
}
.builders-gallery .works-box2 .gallery-img,
.builders-gallery .works-box2 .image-link{ 
  grid-column: 2 !important; 
}

/* Neutralizar cualquier span/order/transform global */
.builders-gallery .gallery-img,
.builders-gallery .image-link{
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  order: initial !important;
  grid-row: auto !important;
}

/* Mobile: 1 columna manteniendo orden del DOM */
@media (max-width: 770px){
  .builders-gallery #container-visible{
    grid-template-columns: 1fr;
  }
  .builders-gallery .works-box1 .gallery-img,
  .builders-gallery .works-box1 .image-link,
  .builders-gallery .works-box2 .gallery-img,
  .builders-gallery .works-box2 .image-link{
    grid-column: auto !important;
  }
}

/* ORBITAL STYLES */

.container-orbital {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin-bottom: 15px;
    position: relative;
}

#orbital-viewer {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    cursor: grab;
    position: relative;
    user-select: none;
    -webkit-user-drag: none;
    -webkit-touch-callout: none;
}

#orbital-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    image-rendering: auto;
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
    -webkit-touch-callout: none;
}

#side-arrows {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    width: 100%;
    height: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    pointer-events: none;
    z-index: 10;
}

#side-arrows .arrow {
    font-size: 250px;
    font-weight: 100;
    color: white;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
    user-select: none;
}

#drag-hint {
    position: absolute;
    bottom: 50%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.8;
    pointer-events: none;
    animation: float-horizontal 3s ease-in-out infinite;
    transition: opacity 0.5s;
}

.mouse-icon {
    width: 48px;
    height: 72px;
    border: 3px solid white;
    border-radius: 24px;
    position: relative;
}

.mouse-icon .wheel {
    width: 4px;
    height: 8px;
    background: white;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.arrows {
    font-size: 35px;
    color: white;
    display: flex;
    gap: 5px;
    animation: blink 1.2s infinite;
}

@keyframes float-horizontal {
    0%   { transform: translateX(-50%) translateY(0); }
    25%  { transform: translateX(-55%) translateY(0); }
    50%  { transform: translateX(-50%) translateY(0); }
    75%  { transform: translateX(-45%) translateY(0); }
    100% { transform: translateX(-50%) translateY(0); }
}

@keyframes blink {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

@media screen and (max-width: 770px) {
    #side-arrows .arrow{
        font-size: 150px;
    }
}


/* CONTACT SECTION STYLES */

.contact {
    background-color: #1b2429;
    padding: 105px 45px;
}

.scroll-container {
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    background: #192125;
    font-family: 'ABCWhyteINKTRAP-Bold' !important;
    font-weight: 500 !important;
    color: white;
    font-size: 105px;
    font-weight: 700;
    padding: 2rem 0;
    position: relative;
    padding-top: 105px;
}

.scroll-text {
    display: inline-block;
    animation: scrollText 20s linear infinite;
}

@keyframes scrollText {
    from { transform: translateX(0%); }
    to   { transform: translateX(-50%); }
}

.container-contact {
    display: flex;
    margin-bottom: 105px;
    padding: 55px 45px;
}

.contact-info {
    margin-right: 250px;
}

.contact-info img {
    width: 450px;
}

.contact-title {
    color: white;
    font-family: 'ABCWhyte-Bold';
    font-size: 64px;
    line-height: 70px;
    margin-bottom: 50px;
    margin-top: 105px;
}

.contact-form {
    flex-basis: 65%;
}

.contact-tittle {
    color: #C8FF00;
    font-size: 35px;
    line-height: 48px;
}

form {
    display: flex;
    flex-direction: column;
}

form input, form textarea {
    width: 100%;
    outline: none;
    border: none;
    background-color: transparent;
    margin: 15px 0;
    font-size: 16px;
    color: white;
    font-family: 'ABCWhyte-Light';
}

textarea{
    height: 100px;
}

form input::placeholder,
form textarea::placeholder {
    font-size: 16px;
    color: white;
    font-family: 'ABCWhyte-Light';
    font-weight: 500;
}

form hr {
    color: white;
    margin: 0 0 15px 0;
}

.container-button-form {
    display: flex;
    justify-content: end;
}

.btn-contact {
    background-color: #C8FF00;
    font-family: 'ABCWhyte-Book';
    font-size: 18px;
    padding: 5px 50px;
    border: none;
    border-radius: 24px;
    color: #192125;
    transition: opacity 0.3s ease;
    max-height: 45px;
    max-width: 200px;
    margin-top: 50px;
}

.btn-contact:hover {
    opacity: 0.8;
}

.form-status {
    font-family: 'ABCWhyte-Book';
    margin-top: 15px;
    color: #C8FF00;
    font-weight: 700;
    text-align: center;
}

.spinner {
    margin: 10px auto;
    border: 4px solid rgba(255, 255, 255, 0.2);
    border-top: 4px solid #C8FF00;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    animation: spin 1s linear infinite;
}

.g-recaptcha { display: block; min-height: 78px; }

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@media screen and (min-width: 771px) and (max-width: 1400px){
    .contact-info { margin-right: 95px; }
}

@media screen and (max-width: 770px){
    .scroll-container { padding-top: 35px; }
    .scroll-text span { font-size: 38px !important; }
    .contact { padding: 105px 15px; }
    .container-contact {
        flex-direction: column-reverse;
        margin: 0 0 45px 0;
        padding: 35px 15px;
    }
    .contact-info { margin-right: 0; }
    .contact-title {
        font-size: 45px;
        line-height: 50px;
        margin: 0 0 35px 0;
    }
    .icons-brands { margin-top: 55px; }
    form { margin-top: 55px; }
    .btn-contact {
        font-size: 18px;
        width: 150px;
    }
}



/* THANK YOU STYLES */

.thankyou {
    padding: 200px 45px;
    text-align: center;
}

.container-thankyou {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.container-thankyou h1{
    color: #C8FF00;
    margin-bottom: 45px;
}

.container-thankyou h2{
    color: white;
    margin-bottom: 75px;
}

.btn-thankyou {
    background-color: #C8FF00;
    font-family: 'ABCWhyte-book';
    font-size: 18px;
    padding: 5px 20px;
    border: none;
    border-radius: 24px;
    color: #192125;
    transition: opacity 0.3s ease;
    max-height: 45px;
}

.btn-thankyou:hover{
    opacity: 0.8;
}

@media screen and (max-width: 770px){
    .thankyou{
        padding: 200px 45px;
    }
    .container-thankyou{
        margin-top: 0px;
    }
}

/* FOOTER STYLES */

.footer{
    background-color: #192125;
    padding: 45px 55px;
}

.footer-logo {
    padding-bottom: 35px;
}

.footer-logo img{
    width: 150px;
}

.footer-container {
    display: flex;
    justify-content: space-between;

}

.footer-info {
    display: flex;
}

.footer-info h3{
    color: #C8FF00 !important;
    font-size: 35px;
    line-height: 48px;
}

.footer-brands {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: flex-end;
}

.footer-brands p{
    color: white;
    margin-top: 35px;
    font-size: 18px;
}

.link-footer {
    font-family: 'ABCWhyte-Book';
    font-style: normal;
    color: white;
    text-decoration: underline;
    text-underline-position: under;
    font-size: 18px;
    cursor: default;
}

.info-tel {
    font-family: 'ABCWhyte-Book';
    font-style: normal;
    color: white;
    font-size: 18px;
    margin-bottom: 5px;
}

.info-tel-2 {
    font-family: 'ABCWhyte-Book';
    font-style: normal;
    color: white;
    font-size: 18px;
    margin-bottom: 5px;
}

.footer-brands a{
    transition: opacity 0.3s ease;
    font-size: 25px !important;
}

.footer-brands a:hover{
    opacity: 0.8;
}

.logo-footer-works {
    width: 150px;
}

@media screen and (max-width: 770px){
    .footer {
        padding: 35px 25px;
    }
    .footer-container {
        flex-direction: column;
    }
    .footer-info h3{
        font-size: 30px;
        line-height: 40px;
    }
    .footer-brands {
        align-items: flex-start;
        margin-top: 35px;
    }
    .footer-brands p{
        font-size: 15px;
    }
    .footer-logo {
        padding: 30px 30px;
        justify-content: center;
        display: flex;
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    .footer-logo img{
        width: 150px;
        display: flex;
    }
    .footer-info{
        width: 100%;
        flex-direction: column;
        justify-content: center;
    }
    .footer-info h4{
        font-size: 20px;
    }
    .footer-info p{
        font-size: 16px;
        margin-bottom: 0;
    }
    .link-footer{
        font-size: 16px;
    }
    .final-footer{
        margin-top: 25px;
    }
    .img-certificate{
        display: flex;
        justify-content: center;
    }
}