/* RESET */

*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:'Inter',sans-serif;
color:#111;
background: radial-gradient(circle at 20% 20%, #111827, #05070c);
line-height:1.6;
}

/* CONTAINER */

.container{
width:90%;
max-width:1200px;
margin:auto;
}

/* HEADER BASE */

.header{
position:fixed;
top:0;
left:0;
width:100%;
z-index:1000;
transition:0.4s;

}

/* HEADER SCROLL */

.header.scrolled{
background: radial-gradient(circle at 20% 20%, #111827, #05070c);
border-bottom:1px solid #000000;
color: white;
}

.header.scrolled a{
color: white;

}




.header.scrolled span{
background: linear-gradient(135deg, #ffffff, #ffffff);
border-bottom:1px solid #ffffff;
}






/* NAV */

.nav{
    
display:flex;
align-items:center;
justify-content:space-between;
height:80px;
}

/* LOGO */

/* CONTENEDOR LOGO */
.logo {
  display: flex;
  align-items: center;
  height: 100%;
}

/* LINK */
.logo a {
  display: flex;
  align-items: center;
}

/* IMAGEN */
.logo img {
  max-height: 100px;   /* CLAVE: limita altura */
  width: auto;
  max-width: 100%;    /* evita overflow */
  object-fit: contain;
  display: block;
}

/* MENU */

.menu{
display:flex;
gap:40px;
list-style:none;
}

.menu a{
text-decoration:none;
font-size:14px;
letter-spacing:1px;
color:white;
position:relative;
transition:0.3s;
}

.header.scrolled .menu a{
color:#ffffff;
}

/* HOVER */

.menu a::after{
content:"";
position:absolute;
left:0;
bottom:-6px;
width:0;
height:1px;
background:currentColor;
transition:0.3s;
}

.menu a:hover::after{
width:100%;
}

/* REDES */

.socials{
display:flex;
gap:15px;
}



.linkedin-icon {
  width: 20px;
  height: 20px;
  fill: #ffffff;
  opacity: 0.8;
  transition: all 0.3s ease;
}

/* hover elegante */
.linkedin-icon:hover {
  opacity: 1;
  transform: scale(1.1);
}



.fab{
    color: white;
    margin-bottom: px;
}


.socials svg{
fill:white;
transition:0.3s;
}

.header.scrolled .socials svg{
fill:#ffffff;
}

.socials svg:hover{
opacity:0.6;
}

/* HAMBURGUESA */

.menu-toggle{
display:none;
flex-direction:column;
cursor:pointer;
gap:5px;
}

.menu-toggle span{
width:25px;
height:2px;
background:white;
transition:0.3s;
}

.header.scrolled .menu-toggle span{
background:#111;
}

/* MOBILE */

@media(max-width:900px){

.menu{
position:fixed;
top:0;
right:-100%;
width:260px;
height:100vh;
background: radial-gradient(circle at 20% 20%, #111827, #05070c);
flex-direction:column;
justify-content:center;
align-items:center;
gap:30px;
transition:0.4s ease;
}

.menu.active{
right:0;
}

.menu a{
color:#ffffff;
font-size:16px;
}

.socials{
display:none;
}

.menu-toggle{
display:flex;
}

}

/* ANIMACION HAMBURGUESA A X */

.menu-toggle.open span:nth-child(1){
transform:rotate(45deg) translate(5px,5px);
}

.menu-toggle.open span:nth-child(2){
opacity:0;
}

.menu-toggle.open span:nth-child(3){
transform:rotate(-45deg) translate(6px,-6px);
}




/* ========================= */
/* HERO SECTION */
/* ========================= */

.hero{
height:100vh;
position:relative;
display:flex;
align-items:center;
overflow:hidden;
}

/* ========================= */
/* SLIDER DE IMÁGENES */
/* ========================= */

.hero-slider{
position:absolute;
width:100%;
height:100%;
top:0;
left:0;
}

.slide{
position:absolute;
width:100%;
height:100%;
background-size:cover;
background-position:center;
opacity:0;
transform:scale(1.06);
transition:opacity 1.8s ease, transform 6s ease;
}

.slide.active{
opacity:1;
transform:scale(1);
}

/* ========================= */
/* OVERLAY OSCURO */
/* ========================= */

.hero-overlay{
position:absolute;
width:100%;
height:100%;
background:rgba(0,0,0,0.45);
}

/* ========================= */
/* CONTENIDO */
/* ========================= */

.hero-content{
position:relative;
color:white;
max-width:720px;
z-index:2;

/* lo empuja a la izquierda */
margin-left:6vw;

animation:fadeUp 1.5s ease;
}

/* ========================= */
/* TITULO */
/* ========================= */

.hero-content h1{
font-family:'Playfair Display', serif;
font-size:82px;
font-weight:500;
line-height:1.05;
margin-bottom:28px;
letter-spacing:0.5px;
}

/* línea arquitectónica */

.hero-content h1::after{
content:"";
display:block;
width:60px;
height:2px;
background: radial-gradient(circle at 20% 20%, #5a0f1f, #1a0509);
margin-top:22px;
margin-bottom:22px;
opacity:0.85;
}

/* ========================= */
/* TEXTO */
/* ========================= */

.hero-content p{
font-size:19px;
font-weight:300;
margin-bottom:38px;
max-width:520px;
opacity:0.9;
line-height:1.7;
}

/* ========================= */
/* BOTON */
/* ========================= */

.hero-btn{
display:inline-block;
border:1px solid white;
padding:16px 40px;
text-decoration:none;
color:white;
font-size:13px;
letter-spacing:1.5px;
transition:0.35s;
}

.hero-btn:hover{
background: radial-gradient(circle at 20% 20%, #5a0f1f, #1a0509);
color:rgb(255, 255, 255);
transform:translateY(-2px);
border: none;
}

/* ========================= */
/* SCROLL INDICATOR */
/* ========================= */

.scroll-indicator{
position:absolute;
bottom:40px;
left:50%;
transform:translateX(-50%);
z-index:3;
}

.scroll-indicator span{
display:block;
width:2px;
height:35px;
background: radial-gradient(circle at 20% 20%, #5a0f1f, #1a0509);
animation:scrollAnim 2s infinite;
}

@keyframes scrollAnim{

0%{
opacity:0;
transform:translateY(-10px);
}

50%{
opacity:1;
}

100%{
opacity:0;
transform:translateY(10px);
}

}

/* ========================= */
/* ANIMACION TEXTO */
/* ========================= */

@keyframes fadeUp{

from{
opacity:0;
transform:translateY(40px);
}

to{
opacity:1;
transform:translateY(0);
}

}

/* ========================= */
/* PANTALLAS GRANDES */
/* ========================= */

@media(min-width:1400px){

.hero-content{
margin-left:6vw;
}

.hero-content h1{
font-size:50px;
}

}

/* ========================= */
/* TABLET */
/* ========================= */

@media(max-width:1024px){

.hero-content h1{
font-size:34px;
}

}

@media(max-width:1400px){

.hero-content h1{
font-size:34px;
}

}

/* ========================= */
/* MOBILE */
/* ========================= */

@media(max-width:768px){

.hero-content{
margin-left:0;
padding:0 20px;
max-width:100%;
}

.hero-content h1{
font-size:32px;
}

.hero-content p{
font-size:16px;
}

.scroll-indicator{
bottom:25px;
}

}



@media(max-width:425px){

.hero-content{
margin-left:0;
padding:0 20px;
max-width:100%;
}

.hero-content h1{
font-size:20px;
}

.hero-content p{
font-size:12px;
}

.scroll-indicator{
bottom:25px;
}

}




































.quick-services {
  margin-top: 25px;
  display: flex;
  gap: 25px;
  justify-content: flex-start; /* alineado a la izquierda como tu hero */
  flex-wrap: wrap;
}

.qs-btn {
  position: relative;
  font-size: 14px;
  text-decoration: none;
  color: #ffffff;
  padding-bottom: 4px;
  transition: all 0.3s ease;
  opacity: 0.85;
}

/* línea animada */
.qs-btn::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 1px;
background: radial-gradient(circle at 20% 20%, #5a0f1f, #1a0509);
  transition: width 0.3s ease;
}

.qs-btn:hover {
  opacity: 1;
}

.qs-btn:hover::after {
  width: 100%;
}


@media (max-width: 768px) {

  .quick-services {
    flex-direction: column;
    align-items: flex-start; /* mantiene coherencia con el texto */
    gap: 12px;
    margin-top: 20px;
  }

  .qs-btn {
    font-size: 15px;
  }

}












.youtube-icon {
  width: 20px;
  height: 20px;
  fill: #ffffff;
  opacity: 0.8;
  transition: all 0.3s ease;
}

/* hover elegante */
.youtube-icon:hover {
  opacity: 1;
  transform: scale(1.1);
}








/* ========================= */
/* OBRAS */
/* ========================= */

.featured-projects{
padding:140px 0;
background: radial-gradient(circle at 20% 20%, #111827, #05070c);
;
}

/* TITULO */

.section-header{
max-width:700px;
margin-bottom:90px;
}

.section-header h2{
font-family:'Playfair Display',serif;
font-size:42px;
font-weight:500;
margin-bottom:20px;
color: white;
}

.section-header p{
font-size:18px;
color:#ffffff;
line-height:1.7;
}

/* ========================= */
/* SLIDER */
/* ========================= */

.projects-slider{

display:flex;
gap:60px;

overflow-x:auto;
scroll-snap-type:x mandatory;

scroll-behavior:smooth;

padding-bottom:20px;
}

/* ocultar scrollbar */

.projects-slider::-webkit-scrollbar{
display:none;
}

/* SLIDE */

.project-slide{

flex:0 0 100%;
scroll-snap-align:start;

text-decoration:none;
color:inherit;
}

/* ========================= */
/* PROYECTO */
/* ========================= */

.project{

display:grid;
grid-template-columns:1.3fr 1fr;
gap:80px;
align-items:center;

}

/* IMAGEN */

.project-image{
overflow:hidden;
}

.project-image img{

width:100%;
height:520px;
object-fit:cover;

transition:transform 1.2s ease;

}

.project-slide:hover img{
transform:scale(1.05);
}




/* INFO */

.project{
    text-decoration: none;
}

.project-info{
max-width:420px;
}

.project-info h3{
font-family:'Playfair Display',serif;
font-size:36px;
margin-bottom:10px;
color: #ffffff;
}

.project-location{

font-size:13px;
letter-spacing:2px;
color:#d2d2d2;

display:block;
margin-bottom:25px;

text-transform:uppercase;

}







.project-info p{

font-size:17px;
line-height:1.7;
color:#e9e9e9;

margin-bottom:30px;

}

/* LINK */

.project-link{

font-size:13px;
letter-spacing:1.5px;
position:relative;
display:inline-block;
color: #ffffff;

}

.project-link::after{

content:"";
position:absolute;

left:0;
bottom:-6px;

width:100%;
height:1px;

background:#ffffff;

transition:0.3s;

}

.project-slide:hover .project-link::after{
width:60%;
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */

@media(max-width:1024px){

.project{
grid-template-columns:1fr;
gap:40px;
}

.project-image img{
height:360px;
}

}

@media(max-width:768px){

.featured-projects{
padding:100px 0;
}

.section-header h2{
font-size:32px;
}

.project-info{
max-width:100%;
}

.project-image img{
height:280px;
}

}



.projects-navigation{
display:flex;
justify-content:center;
gap:30px;
margin-top:50px;
}

.project-arrow{
width:50px;
height:50px;
border-radius:50%;
border:1px solid #000000;
background: radial-gradient(circle at 20% 20%, #3e0c18, #240a10);  border:none;
color: rgba(255, 255, 255, 0.609);
font-size:20px;
cursor:pointer;
transition:all .3s ease;
}

.project-arrow:hover{
background:#000000;
color:rgb(255, 255, 255);
border-color:#000000;
}












/* ============================= */
/* STUDIO SECTION */
/* ============================= */

.studio-section{
padding:140px 0;
background: radial-gradient(circle at 20% 20%, #111827, #05070c);

}

.studio-grid{
display:grid;
grid-template-columns:1.1fr 1fr;
gap:100px;
align-items:center;
}

/* ============================= */
/* IMAGEN */
/* ============================= */

/* ============================= */
/* MAPA (ANTES IMAGEN) */
/* ============================= */

.studio-image {
  position: relative;
  overflow: hidden;
  height: 620px;
}

/* iframe ocupa todo */
.studio-image iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  transition: transform 0.7s ease;
}

/* efecto hover elegante */
.studio-image:hover iframe {
  transform: scale(1.03);
}


@media (max-width: 768px) {
  .studio-image {
    height: 400px;
  }
}


.studio-image iframe {
  filter: grayscale(100%) contrast(1.1) brightness(0.85);
}

/* ============================= */
/* CONTENIDO */
/* ============================= */

.studio-content{
max-width:520px;
}

/* etiqueta */

.studio-label{
display:inline-block;
font-size:13px;
letter-spacing:2px;
text-transform:uppercase;
color:#505050;
margin-bottom:18px;
}

/* titulo */

.studio-content h2{
font-family:'Playfair Display',serif;
font-size:42px;
line-height:1.2;
font-weight:500;
color:#ffffff;
margin-bottom:28px;
}

/* texto */

.studio-content p{
font-size:16px;
line-height:1.8;
color:#cecece;
margin-bottom:22px;
}

/* ============================= */
/* STATS */
/* ============================= */

.studio-stats{
display:flex;
gap:50px;
margin-top:35px;
margin-bottom:40px;
}

.stat{
display:flex;
flex-direction:column;
}

.stat-number{
font-family:'Playfair Display',serif;
font-size:36px;
color:#ffffff;
margin-bottom:5px;
}

.stat-label{
font-size:13px;
color:#ffffff;
text-transform:uppercase;
letter-spacing:1px;
}

/* ============================= */
/* BOTON */
/* ============================= */

.studio-btn{
display:inline-block;
padding:14px 30px;

text-decoration:none;
font-size:14px;
letter-spacing:1px;
transition:all .35s ease;
background: radial-gradient(circle at 20% 20%, #5a0f1f, #1a0509);
  border:none;
color: rgba(255, 255, 255, 0.609);}

.studio-btn:hover{
background:#000000;
color:#ffffff;
}

/* ============================= */
/* ANIMACION SCROLL */
/* ============================= */

.studio-section{
opacity:0;
transform:translateY(60px);
transition:all .9s ease;
}

.studio-section.visible{
opacity:1;
transform:translateY(0);
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media (max-width:1000px){

.studio-grid{
grid-template-columns:1fr;
gap:60px;
}

.studio-content{
max-width:100%;
}

.studio-image img{
height:420px;
}

.studio-content h2{
font-size:34px;
}

}

/* ============================= */
/* MOBILE */
/* ============================= */

@media (max-width:600px){

.studio-section{
padding:90px 0;
}

.studio-content h2{
font-size:28px;
}

.studio-content p{
font-size:15px;
}

.studio-stats{
gap:30px;
flex-wrap:wrap;
}

.stat-number{
font-size:28px;
}

}
/* ============================= */
/* LINEA ARQUITECTONICA */
/* ============================= */

.studio-line{
width:70px;
height:2px;
background: radial-gradient(circle at 20% 20%, #5a0f1f, #1a0509);
margin-bottom:30px;
color:radial-gradient(circle at 20% 20%, #5a0f1f, #1a0509);

position:relative;
overflow:hidden;
}

.studio-line::after{
content:"";
position:absolute;
left:0;
top:0;
width:100%;
height:100%;
background: radial-gradient(circle at 20% 20%, #5a0f1f, #1a0509);
transform:scaleX(0);
transform-origin:left;
transition:transform 1.2s ease;
}

/* animacion cuando aparece */

.studio-section.visible .studio-line::after{
transform:scaleX(1);
}








.stat-number{
font-family:'Playfair Display',serif;
font-size:38px;
color:#000000;
margin-bottom:6px;
letter-spacing:1px;
}





:root{
  --bg-dark:#0f0f0f;
  --card:#05070c
  --border:rgba(255,255,255,0.08);
  --text:#fff;
  --muted:rgba(255,255,255,0.7);
  --accent:#ffffff;
}

.testimonials{
 
 background: radial-gradient(circle at 20% 20%, #111827, #05070c);
 
  color:var(--text);
  font-family:'Playfair Display',serif;
 
  
}

.test-label{
display:inline-block;
font-size:13px;
letter-spacing:2px;
text-transform:uppercase;
color:#505050;
margin-top: 50px;

}


/* HEADER */
.testimonials__header{
  text-align:center;
  margin-bottom:60px;
  
 
}

.testimonials__title{
  font-size:clamp(28px,4vw,44px);
  font-weight:600;
}

.testimonials__title::after{
  content:"";
  display:block;
  width:60px;
  height:2px;
  margin:12px auto 0;
  background: radial-gradient(circle at 20% 20%, #5a0f1f, #1a0509);

}

/* SLIDER */
.testimonials__wrapper{
  position:relative;
  max-width:1200px;
  
  margin:auto;
}

.testimonials__viewport{
  overflow:hidden;
}

.testimonials__track{
  display:flex;
  gap:20px;
  transition:transform .4s ease;
   align-items: flex-start; /* 👈 ESTO SOLUCIONA TODO */
}

.testimonial{
  flex:0 0 calc(33.333% - 14px);
  background:var(--card);
  border:1px solid var(--border);
  border-radius:16px;
  padding:28px;
  transition:.3s;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}

.testimonial:hover{

  border-color:var(--accent);
}

.testimonial__text{
  color:var(--muted);
  margin-bottom:15px;
  flex-grow:1;
}

.testimonial__author{
  font-size:14px;
}

/* FLECHAS PRO */
.testimonials__arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:46px;
  height:46px;
  border-radius:50%;
background: radial-gradient(circle at 20% 20%, #5a0f1f, #1a0509);
  border:1px solid var(--border);
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  z-index:10;
  transition:.3s;
}

.testimonials__arrow svg{
  width:18px;
  height:18px;
  fill:white;
}

.testimonials__arrow:hover{
  background:var(--accent);
}

.testimonials__arrow:hover svg{
  fill:black;
}

.testimonials__arrow--left{ left:-25px; }
.testimonials__arrow--right{ right:-25px; }

/* CTA */
.testimonials__cta{
  text-align:center;
  margin-bottom: 50px;
  
}

.testimonials__btn{
  padding:14px 30px;
background: radial-gradient(circle at 20% 20%, #5a0f1f, #1a0509); border:none;
color: rgb(255, 255, 255);
  cursor:pointer;
  
  font-weight:600;
}


.testimonials__btn:hover{
  
  background: rgb(0, 0, 0);
  border: 2px solid rgb(0, 0, 0);
  color: rgb(255, 255, 255);
 
  transform:translateY(-4px);
}


/* MODAL */
.testimonials-modal{
  position:fixed;
  inset:0;
  display:none;
  justify-content:center;
  align-items:center;
  background:rgba(0,0,0,.6);
}

.testimonials-modal__content{
  background:#1c1c1c;
  padding:30px;
  border-radius:16px;
  width:90%;
  max-width:500px;
  position:relative;
}

.testimonials-modal__close{
  position:absolute;
  right:15px;
  top:15px;
  cursor:pointer;
}

/* RESPONSIVE */
@media(max-width:900px){
  .testimonial{ flex:0 0 calc(50% - 10px);
  height: auto; }
}

@media(max-width:600px){
  .testimonial{ flex:0 0 100%; }
  .testimonials__arrow{ display:none; }
}











/* ===== FORM BASE ===== */
.testimonials-form{
  margin-top:20px;
  
}

/* Grupo */
.testimonials-form .form-group{
  position:relative;
  margin-bottom:22px;
  
}

/* INPUTS */
.testimonials-form input,
.testimonials-form textarea{
  width:100%;
  padding:16px 14px;
  border-radius:10px;
  border:1px solid rgba(255,255,255,0.08);
background: radial-gradient(circle at 20% 20%, #111827, #05070c);
  color:#fff;
  font-size:14px;
  font-family:inherit;
  outline:none;
  transition:border .25s ease, box-shadow .25s ease, background .25s ease;
}

/* Hover sutil */
.testimonials-form input:hover,
.testimonials-form textarea:hover{
  border-color:rgba(255,255,255,0.18);
}

/* Focus PRO */
.testimonials-form input:focus,
.testimonials-form textarea:focus{
  border-color:#c7a26a;
  box-shadow:0 0 0 3px rgba(199,162,106,0.15);
  background:#101010;
}

/* LABEL FLOATING */
.testimonials-form label{
  position:absolute;
  top:50%;
  left:14px;
  transform:translateY(-50%);
  font-size:13px;
  color:rgba(255, 255, 255, 0.5);
  pointer-events:none;
  transition:all .2s ease;
  background:#171717;
  padding:0 6px;
  letter-spacing:.2px;
}

/* Estado activo */
.testimonials-form input:focus + label,
.testimonials-form input:not(:placeholder-shown) + label,
.testimonials-form textarea:focus + label,
.testimonials-form textarea:not(:placeholder-shown) + label{
  top:-9px;
  font-size:11px;
  color:#ffffff;
}

/* ERROR STATE (listo para validar después con JS) */
.testimonials-form .error input,
.testimonials-form .error textarea{
  border-color:#ff4d4d;
  box-shadow:0 0 0 3px rgba(255,77,77,0.15);
}

.testimonials-form .error label{
  color:#ff4d4d;
}

/* BOTÓN */
.form-submit{
  width:100%;
  padding:15px;
  border:none;

  background: radial-gradient(circle at 20% 20%, #5a0f1f, #1a0509);
  color:#ffffff;
  font-weight:600;
  font-size:14px;
  cursor:pointer;
  transition:all .25s ease;
}

/* Hover */
.form-submit:hover{
  transform:translateY(-1px);
  box-shadow:0 6px 20px rgba(79, 79, 79, 0.25);
  background-color: #000;
  color: white;
}

/* Active click */
.form-submit:active{
  transform:scale(.98);
}

/* Disabled */
.form-submit:disabled{
  opacity:.5;
  cursor:not-allowed;
  box-shadow:none;
}

/* Placeholder invisible (necesario para floating) */
.testimonials-form input::placeholder,
.testimonials-form textarea::placeholder{
  color:transparent;
}







/* WRAPPER */
.testimonials-form-wrapper{
  max-height:0;
  overflow:hidden;
  opacity:0;
  transform:translateY(-10px);
  transition:all .4s ease;
  

  /* 👇 clave */
  display:flex;
  justify-content:center;
}

/* ACTIVO */
.testimonials-form-wrapper.active{
  max-height:500px;
  opacity:1;
  transform:translateY(0);
  margin-top:30px;
}

/* FORM CARD */
.testimonials-form{
  width:100%;
  max-width:420px; /* 👈 controla el ancho */
  background:#1c1c1c;
  padding:28px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,0.08);
  box-shadow:0 10px 40px rgba(0,0,0,0.4);
}






/* ============================= */
/* SECCIÓN TRABAJOS */
/* ============================= */

.trabajos-section {
  padding: 100px 0;
 background: radial-gradient(circle at 20% 20%, #111827, #05070c);
  color: #fff;
 
}


/* HEADER */

.section-header {
  max-width: 600px;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 42px;
  margin-bottom: 15px;
}

.section-header p {
  color: #aaa;
  line-height: 1.6;
}

/* DESTACADO */

.trabajo-destacado {
  display: flex;
  gap: 50px;
  align-items: center;
  margin-bottom: 80px;
}

.trabajo-img {
  flex: 1;
  overflow: hidden;
}

.trabajo-img img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.trabajo-img:hover img {
  transform: scale(1.05);
}

.trabajo-info {
  flex: 1;
}

.trabajo-info h3 {
  font-size: 28px;
  margin-bottom: 15px;
}

.trabajo-info p {
  color: #bbb;
  margin-bottom: 20px;
}

.trabajo-info ul {
  list-style: none;
  padding: 0;
}

.trabajo-info li {
  margin-bottom: 8px;
  color: #ddd;
  position: relative;
  padding-left: 15px;
}

.trabajo-info li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  background: #fff;
}

/* GRID */

.trabajos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.trabajo-item {
  position: relative;
  overflow: hidden;
}

.trabajo-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.trabajo-item:hover img {
  transform: scale(1.08);
}

/* overlay elegante */



.trabajo-item:hover .overlay {
  opacity: 1;
}


/* ANIMACIÓN SUAVE AL SCROLL */

.trabajo-destacado,
.trabajo-item {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1s ease forwards;
}

.trabajo-item:nth-child(1) { animation-delay: 0.2s; }
.trabajo-item:nth-child(2) { animation-delay: 0.4s; }
.trabajo-item:nth-child(3) { animation-delay: 0.6s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media (max-width: 992px) {

  .trabajo-destacado {
    flex-direction: column;
  }

  .trabajo-img img {
    height: 350px;
  }

  .trabajos-grid {
    grid-template-columns: 1fr 1fr;
  }

}

@media (max-width: 600px) {

  .section-header h2 {
    font-size: 32px;
  }

  .trabajos-grid {
    grid-template-columns: 1fr;
  }

  .trabajo-img img {
    height: 250px;
  }

}

























/* ============================= */
/* PROCESS SECTION */
/* ============================= */

.process-section{
padding:140px 0;
background: radial-gradient(circle at 20% 20%, #111827, #05070c);
}

.process-header{
max-width:600px;
margin-bottom:80px;
}

.process-label{
font-size:13px;
letter-spacing:2px;
text-transform:uppercase;
color:#939393;
display:block;
margin-bottom:15px;
}

.process-header h2{
font-family:'Playfair Display',serif;
font-size:40px;
font-weight:500;
color:#ffffff;
margin-bottom:25px;
}

/* linea */

.process-line{
width:80px;
height:2px;
background: radial-gradient(circle at 20% 20%, #5a0f1f, #1a0509);

}

/* ============================= */
/* GRID */
/* ============================= */

.process-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:60px;
position:relative;
}

/* linea horizontal */

.process-grid::before{
content:"";
position:absolute;
top:25px;
left:0;
right:0;
height:1px;
background:#141414;
}

/* ============================= */
/* STEP */
/* ============================= */

.process-step{
position:relative;
}

.step-number{
font-family:'Playfair Display',serif;
font-size:26px;
color:#ffffff;
margin-bottom:20px;
position:relative;
}

/* punto sobre la linea */

.step-number::after{
content:"";
position:absolute;
top:12px;
left:50px;
width:10px;
height:10px;
background:#111;
border-radius:50%;
}

.process-step h3{
font-size:18px;
margin-bottom:10px;
color:#d2d2d2;
}

.process-step p{
font-size:15px;
line-height:1.7;
color:#efefef;
}

/* ============================= */
/* HOVER */
/* ============================= */

.process-step:hover .step-number{
transform:translateY(-3px);
transition:.3s;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media(max-width:900px){

.process-grid{
grid-template-columns:1fr;
gap:50px;
}

.process-grid::before{
display:none;
}

.step-number::after{
display:none;
}

}

















/* =========================
CTA
========================= */

.cta{

padding:160px 0;
background:#000000;
text-align:center;

}

.cta-content{

max-width:700px;
margin:auto;

}

.cta h2{

color: #fff;
font-size:48px;
font-weight:500;
line-height:1.2;
margin-bottom:25px;

}

.cta p{

font-size:18px;
color:#a8a8a8;
line-height:1.7;
margin-bottom:45px;

}

/* BOTON */

.cta-button{

display:inline-block;
padding:16px 40px;
border:2px solid #252424;
text-decoration:none;
background: radial-gradient(circle at 20% 20%, #5a0f1f, #1a0509);
  border:none;
color: rgba(255, 255, 255, 0.609);font-size:14px;
letter-spacing:1px;
transition:.35s;

}

.cta-button:hover{

background:#ffffff;
color:#000000;

}












/* ============================= */
/* FOOTER PRO */
/* ============================= */

.footer-pro {
 background: radial-gradient(circle at 20% 20%, #111827, #05070c);
 color: #fff;
  padding: 80px 0 40px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-container {
  width: 85%;
  margin: auto;
}

/* TOP */

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 60px;
}

/* BRAND */

.footer-brand h2 {
  font-size: 28px;
  margin-bottom: 15px;
  font-family: 'Cinzel', serif;
  letter-spacing: 1px;
}



.footer-brand p {
  color: #aaa;
  max-width: 350px;
  line-height: 1.6;
}

/* LINKS */

.footer-links h4,
.footer-contact h4 {
  margin-bottom: 15px;
  font-size: 14px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links a {
  display: block;
  color: #ddd;
  text-decoration: none;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #fff;
  transform: translateX(5px);
}

/* CONTACTO */

.footer-contact p {
  margin-bottom: 8px;
  color: #bbb;
}

/* FRASE DESTACADA */

.footer-highlight {
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 40px 0;
  text-align: center;
  margin-bottom: 40px;
}

.footer-highlight p {
  font-size: 22px;
  max-width: 600px;
  margin: auto;
  line-height: 1.4;
  color: #eee;
}

/* BOTTOM */

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  color: #777;
  font-size: 14px;
}

/* SOCIALS */

.footer-socials a {
  margin-left: 20px;
  color: #aaa;
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
}

.footer-socials a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0%;
  height: 1px;
  background: #fff;
  transition: width 0.3s ease;
}

.footer-socials a:hover {
  color: #fff;
}

.footer-socials a:hover::after {
  width: 100%;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media (max-width: 900px) {

  .footer-top {
    flex-direction: column;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

}


.linkedin-icon {
  width: 20px;
  height: 20px;
  fill: #ffffff;
  opacity: 0.8;
  transition: all 0.3s ease;
}

/* hover elegante */
.linkedin-icon:hover {
  opacity: 1;
  transform: scale(1.1);
}


@media (max-width: 768px) {
  .linkedin-icon {
    width: 22px;
    height: 22px;
  }
}





/* FOTO CLIENTE */
.footer-avatar {
  width: 140px;
  height: 140px;
  object-fit: cover;
   object-position: top; /* 👈 CLAVE */
  margin: 20px 0 10px;

}

/* TEXTO PERSONA */

.footer-person {
  font-size: 14px;
  color: #aaa;
  line-height: 1.4;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}





/* ============================= */
/* BOTÓN WHATSAPP */
/* ============================= */

.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 55px;
  height: 55px;
  background: #111; /* oscuro elegante */
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* icono */
.whatsapp-float svg {
  width: 26px;
  height: 26px;
  fill: #25D366; /* verde WhatsApp pero sutil */
  transition: all 0.3s ease;
}

/* hover elegante */
.whatsapp-float:hover {
  transform: scale(1.1);
  background: #1a1a1a;
}

.whatsapp-float:hover svg {
  transform: scale(1.1);
}

/* animación de entrada */
.whatsapp-float {
  animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* efecto pulso sutil */
.whatsapp-float::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.2);
  animation: pulse 2s infinite;
  z-index: -1;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  70% {
    transform: scale(1.6);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
























/* ============================= */
/* BASE */
/* ============================= */

.roof-section {
background: radial-gradient(circle at 20% 20%, #111827, #05070c);
  color: #fff;
  padding: 120px 0;
}

.roof-container {
  width: 85%;
  margin: auto;
}

/* ============================= */
/* HEADER */
/* ============================= */

.roof-header {
  margin-bottom: 80px;
}
.roof-header {
  position: relative;
  padding: 140px 0;
  background-image: url('img/techos-madera.jpg'); /* cambiá la imagen */
  background-size: cover;
  background-position: center;
  overflow: hidden;
 
}

/* overlay premium */
.roof- {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.75) 20%,
    rgba(0,0,0,0.5) 50%,
    rgba(0,0,0,0.2) 100%
  );
}

/* contenido arriba */
.roof-content {
  position: relative;
  z-index: 2;
  width: 85%;
  margin: auto;
  color: white;
}

/* tipografía */
.imp-container h1 {
  font-size: clamp(32px, 6vw, 60px);
  margin-bottom: 20px;
  text-shadow: 0 5px 20px rgba(0,0,0,0.7);
  color: white;
}

.roof-content p {
  max-width: 600px;
  font-size: 18px;
  line-height: 1.7;
  color: #ddd;
  text-shadow: 0 3px 10px rgba(0,0,0,0.6);
}
.roof-header h1 {
  font-size: clamp(32px, 6vw, 64px);
  font-family: 'Playfair Display', serif;
  margin-bottom: 20px;
}

.roof-header p {
  max-width: 600px;
  color: #bbb;
  line-height: 1.7;
}

/* ============================= */
/* BLOQUE */
/* ============================= */

.roof-block {
  margin-bottom: 100px;
}

.roof-block-header {
  margin-bottom: 40px;
}

.roof-block-header h2 {
  font-size: 32px;
  font-family: 'Playfair Display', serif;
}

.roof-block-header span {
  color: #888;
  font-size: 14px;
}

/* ============================= */
/* GRID */
/* ============================= */

.roof-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* ============================= */
/* CARD */
/* ============================= */

.roof-card {
  background: #111;
  border: 1px solid rgba(255,255,255,0.05);
  overflow: hidden;
  transition: 0.4s;
}

.roof-card:hover {
  transform: translateY(-8px);
}

.roof-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.roof-card-content {
  padding: 25px;
}

.roof-card-content h3 {
  font-size: 22px;
  margin-bottom: 10px;
  font-family: 'Playfair Display', serif;
}

.roof-card-content p {
  color: #bbb;
  font-size: 14px;
  margin-bottom: 15px;
}

.roof-price {
  font-size: 39px;
  font-weight: 700;
color: #ffffff;


  padding: 6px 14px;
  border-radius: 8px;
  display: inline-block;
  letter-spacing: 1px;
}
/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media (max-width: 768px) {

  .roof-grid {
    grid-template-columns: 1fr;
  }

}

/* ============================= */
/* SINGLE SLIDER PRO */
/* ============================= */

.roof-single-slider {
  position: relative;
  overflow: hidden;
}

.roof-single-track {
  display: flex;
  transition: transform 0.6s ease;
}

/* ITEM */

.roof-single-item {
  min-width: 100%;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
}

/* IMAGEN */

.roof-single-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: 0.8s;
}

/* INFO */

.roof-single-info h3 {
  font-size: 30px;
  margin-bottom: 15px;
  font-family: 'Playfair Display', serif;
}

.roof-single-info p {
  color: #bbb;
  margin-bottom: 20px;
  line-height: 1.6;
}

.roof-price {
  display: block;
  font-size: 20px;
  margin-bottom: 20px;
}

/* BOTÓN */

.roof-btn {
  display: inline-block;
  padding: 10px 24px;
  color: #fff;
  text-decoration: none;
  background: radial-gradient(circle at 20% 20%, #5a0f1f, #1a0509);

  transition: 0.3s;
}

.roof-btn:hover {
  background: #fff;
  color: #000;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media (max-width: 992px) {

  .roof-single-item {
    grid-template-columns: 1fr;
  }

  .roof-single-img img {
    height: 280px;
  }

}












/* ============================= */
/* FIX DEFINITIVO FLECHAS */
/* ============================= */

.roof-arrow {
  position: static !important;
  transform: none !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
}

/* CONTROLES */

.roof-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-top: 15px;
}

/* ESTILO */

.roof-arrow {
background: radial-gradient(circle at 20% 20%, #5a0f1f, #1a0509);
  color: #ffffff;
  border: none;
  width: 40px;
  height: 40px;
  cursor: pointer;
  border-radius: 50%;
  transition: 0.3s;
}

.roof-arrow:hover {
  background: #ffffff;
  color: #000;
}

















/* ============================= */
/* SLIDER PRO */
/* ============================= */

.roof-single-slider {
  position: relative;
}

.roof-single-track {
  position: relative;
}

/* ITEMS */

.roof-single-item {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;

  opacity: 0;
  transform: translateX(40px) scale(0.98);
  transition: all 0.6s cubic-bezier(0.77, 0, 0.18, 1);
  pointer-events: none;
}

.roof-single-item.active {
  opacity: 1;
  transform: translateX(0) scale(1);
  pointer-events: auto;
  position: relative;
}

/* IMAGEN */

.roof-single-img img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  transition: transform 1s ease;
}

.roof-single-item.active img {
  transform: scale(1.03);
}

/* INFO */

.roof-single-info h3 {
  font-size: 30px;
  margin-bottom: 15px;
  margin-top: 30px;
  font-family: 'Playfair Display', serif;
}

.roof-price {
  display: block;
  margin: 20px 0;
  font-size: 20px;
}


/* ============================= */
/* MOBILE */
/* ============================= */

@media (max-width: 992px) {

  .roof-single-item {
    grid-template-columns: 1fr;
  }

  .roof-single-img img {
    height: 260px;
  }

}



/* ============================= */
/* BASE */
/* ============================= */

.imp-section {
background: radial-gradient(circle at 20% 20%, #111827, #05070c);
  color: #fff;
}

.imp-container {
  width: 85%;
  margin: auto;
}

/* ============================= */
/* HERO */
/* ============================= */

.imp-hero {
  position: relative;
  padding: 140px 0;
  background-image: url(img/herotecho.jfif);
  background-position: center;
  background-size: cover;
  overflow: hidden;
}

/* overlay degradado */
.imp-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.75) 20%,
    rgba(0,0,0,0.5) 50%,
    rgba(0,0,0,0.2) 100%
  );
}

/* leve sombra superior (detalle pro) */
.imp-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top,
    rgba(0,0,0,0.4),
    transparent 60%
  );
}

/* contenido arriba */
.imp-hero .imp-container {
  position: relative;
  z-index: 2;
}

.imp-hero h1 {
  font-size: clamp(32px, 6vw, 60px);
  margin-bottom: 20px;
   font-family: 'Playfair Display', serif;
  
}

.imp-hero p {
  max-width: 500px;
  color: #bbb;
   font-family: 'Playfair Display', serif;
}

.imp-btn {
  display: inline-block;
  margin-top: 25px;
  padding: 12px 28px;
  border: 1px solid #fff;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
   font-family: 'Playfair Display', serif;
   
}

.imp-btn:hover {
background: radial-gradient(circle at 20% 20%, #5a0f1f, #1a0509);
  color: #ffffff;
  border: none;
}

/* ============================= */
/* INTRO */
/* ============================= */

.imp-intro {
  padding: 80px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.imp-intro p {
  max-width: 700px;
  color: #ccc;
   font-family: 'Playfair Display', serif;
  line-height: 1.7;
}

/* ============================= */
/* SERVICES */
/* ============================= */

.imp-services {
  padding: 100px 0;
}

.imp-services h2 {
  margin-bottom: 80px;
   font-family: 'Playfair Display', serif;
  font-size: 32px;
}

.imp-item {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 120px;
}

.imp-item.reverse {
  direction: rtl;
}

.imp-item.reverse * {
  direction: ltr;
}

/* ============================= */
/* GALERIA BASE */
/* ============================= */

.imp-gallery {
  position: relative;
}

/* IMPORTANTE: sacamos altura fija global */
.imp-gallery img {
  width: 100%;
  object-fit: cover;
  transition: 0.4s;

}

.imp-gallery img:hover {
  transform: scale(1.05);
}

/* ============================= */
/* SLIDER */
/* ============================= */

.imp-gallery.slider {
  overflow: hidden;
}

.imp-track {
  display: flex;
  transition: transform 0.4s ease;
}

/* FLECHAS */

.imp-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
background: radial-gradient(circle at 20% 20%, #5a0f1f, #1a0509);
  border: none;
  color: white;
  font-size: 22px;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
}

.imp-arrow.left {
  left: 10px;
}

.imp-arrow.right {
  right: 10px;
}

/* ============================= */
/* CONTENT */
/* ============================= */

.imp-content h3 {
  font-size: 26px;
  margin-bottom: 15px;
   font-family: 'Playfair Display', serif;
}

.imp-content p {
  color: #bbb;
  margin-bottom: 20px;
   font-family: 'Playfair Display', serif;
}

/* TAGS */

.imp-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
   font-family: 'Playfair Display', serif;
  margin-bottom: 20px;
}

.imp-tags span {
  border: 1px solid rgba(255,255,255,0.1);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 13px;

}

/* PRECIO */

.imp-price {
  font-weight: bold;
  font-size: 29px;
   font-family: 'Playfair Display', serif;
  color: #ffffff;
}

/* ============================= */
/* CTA */
/* ============================= */

.imp-cta {
  padding: 120px 0;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.imp-cta h2 {
  margin-bottom: 20px;
   font-family: 'Playfair Display', serif;
}

/* ============================= */
/* TABLET */
/* ============================= */

@media (max-width: 992px) {

  .imp-item {
    grid-template-columns: 1fr;
  }

  .imp-item.reverse {
    direction: ltr;
  }

}

/* ============================= */
/* MOBILE */
/* ============================= */

@media (max-width: 600px) {

  .imp-container {
    width: 90%;
  }

  .imp-hero {
    padding: 100px 0;
  }

  .imp-item {
    margin-bottom: 80px;
  }

  .imp-track img {
    min-width: 100%;
    height: 220px;
  }

}

/* ============================= */
/* DESKTOP */
/* ============================= */
@media (min-width: 601px) {

  .imp-track {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: repeat(2, 1fr);
    gap: 15px;
    height: 520px;
  }

  .imp-track img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    transition: 0.4s;
  }

  .imp-track img:hover {
    transform: scale(1.05);
  }

  /* IMAGEN GRANDE */
  .imp-track img:nth-child(1) {
    grid-row: 1 / 3;
    grid-column: 1 / 2;
  }

  /* IMÁGENES CHICAS */
  .imp-track img:nth-child(2) {
    grid-row: 1 / 2;
    grid-column: 2 / 3;
  }

  .imp-track img:nth-child(3) {
    grid-row: 2 / 3;
    grid-column: 2 / 3;
  }

  .imp-arrow {
    display: none;
  }

}

/* ============================= */
/* 4K GRANDES (TV / MONITORES PRO) */
/* ============================= */

@media (min-width: 2440px) {

  .imp-container {
    width: 60%;
    max-width: 1800px;
  }

  .imp-track {
    height: clamp(450px, 28vw, 600px);
  }

  .imp-services h2 {
    font-size: 48px;
  }

  .imp-content h3 {
    font-size: 36px;
  }

  .imp-content p {
    font-size: 20px;
  }

  .imp-price {
    font-size: 24px;
  }

}

























.vh2-section {
background: radial-gradient(circle at 20% 20%, #111827, #05070c);
  color: #fff;
  font-family: sans-serif;
}
/* HERO con background real */
.vh2-hero {
  height: 85vh;
  background: url('img/casa5.avif') center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 8%;
  

}

/* overlay oscuro pro */
.vh2-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.95) 0%,
    rgba(0, 0, 0, 0.85) 25%,
    rgba(0, 0, 0, 0.55) 55%,
    rgba(0, 0, 0, 0.15) 100%
  );
}

/* CONTADOR */
.vh2-counter {
  margin-top: 20px;
  font-size: 14px;
  color: #aaa;
}

.vh2-counter span {
  color: #fff;
  font-size: 18px;
}

/* FLECHA CENTRADA */
.vh2-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
}

/* GRID transición */
.vh2-card {
  transition: 
    opacity 0.4s ease,
    transform 0.4s ease;
}


/* PRECIO */
.vh2-card-price {
  position: absolute;
  bottom: 16px;
  right: 16px;
  color: #fff;
  font-size: 19px;
  font-weight: 600;
  background: transparent;
  padding: 6px 10px;
  border-radius: 8px;
}


/* estado oculto suave */
.vh2-card.hide {
  opacity: 0;
  transform: scale(0.95);
  pointer-events: none;
  position: absolute;
}

/* estado visible */
.vh2-card.show {
  opacity: 1;
  transform: scale(1);
  position: relative;
}

.vh2-hero-content {
  position: relative;
  max-width: 600px;
  text-align: left;
  animation: fadeUp 1s ease;
  font-family:'Playfair Display', serif;
}



.vivienda-link{
  text-decoration: none;
  color: rgb(255, 255, 255);
  border-bottom: 1px solid rgb(255, 255, 255);
}


.vh2-tag {
  font-size: 12px;
  letter-spacing: 2px;
  color: #aaa;
}

.vh2-hero-content h1 {
  font-size: 56px;
  line-height: 1.1;
  margin: 15px 0;
}

.vh2-hero-content p {
  color: #bbb;
  font-size: 18px;
}

/* FLECHA */
.vh2-scroll {
  position: absolute;
  bottom: 30px;
  left: 8%;

}

.vh2-scroll span {
  display: block;
  width: 20px;
  height: 20px;
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  animation: bounce 1.5s infinite;

}

/* FILTROS */
.vh2-filtros {
  padding: 60px 8%;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.vh2-filtro-grupo p {
  font-size: 12px;
  color: #888;
  margin-bottom: 10px;
}

.vh2-btn {
  margin: 5px;
  padding: 8px 16px;
  border-radius: 20px;
  border: 1px solid #333;
  background: transparent;
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
}

.vh2-btn.active,
.vh2-btn:hover {
  background: #fff;
  color: #000;
}

/* GRID */
.vh2-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 0 8% 80px;
}

/* CARD */
.vh2-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  transform: translateY(40px);
  opacity: 0;
  transition: all 0.6s ease;
}

.vh2-card.show {
  transform: translateY(0);
  opacity: 1;
}

.vh2-card img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  transition: 0.5s;
}

.vh2-card:hover img {
  transform: scale(1.08);
}

.vh2-card-info {
  position: absolute;
  bottom: 0;
  padding: 25px;
  width: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .vh2-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .vh2-hero-content h1 {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .vh2-grid {
    display: flex;
    overflow-x: auto;
  }

  .vh2-card {
    min-width: 280px;
  }

  .vh2-hero {
    height: 70vh;
  }
}

/* ANIMACIONES */
@keyframes fadeUp {
  from {opacity:0; transform:translateY(30px);}
  to {opacity:1; transform:translateY(0);}
}

@keyframes bounce {
  0%,100% {transform: translateY(0) rotate(45deg);}
  50% {transform: translateY(10px) rotate(45deg);}
}






.vhx-page {
  background: #0a0a0a;
  color: #fff;
  font-family: sans-serif;
}

.vhx-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 8%;
}

/* HERO */
.vhx-hero {
  height: 95vh;
  position: relative;
  display: flex;
  align-items: center;
}

.vhx-hero-bg {
  position: absolute;
  inset: 0;
  background: url('img/casa1.jpg') center/cover no-repeat;
}

.vhx-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.85), transparent);
}

.vhx-hero-content {
  position: relative;
  z-index: 2;
  padding-left: 8%;
  max-width: 600px;
}

.vhx-tag {
  font-size: 12px;
  color: #aaa;
  letter-spacing: 2px;
}

.vhx-hero-content h1 {
  font-size: 64px;
  margin: 15px 0;
}

.vhx-stats {
  display: flex;
  gap: 30px;
  margin-top: 20px;
}

.vhx-stats strong {
  font-size: 22px;
}

/* TARJETA FLOTANTE */
.vhx-floating-card {
  position: absolute;
  right: 8%;
  bottom: 60px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: 16px;
}

.vhx-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background: white;
  color: black;
  border-radius: 25px;
  text-decoration: none;
}

/* GALERÍA */
.vhx-gallery {
  padding: 80px 0;
}

.vhx-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.vhx-gallery-grid img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: 0.4s;
}

.vhx-gallery-grid img:hover {
  transform: scale(1.05);
}

/* PLAN */
.vhx-plan-box {
  position: relative;
  overflow: hidden;
}

.vhx-plan-box img {
  width: 100%;
}

.vhx-plan-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  transition: 0.3s;
}

.vhx-plan-box:hover .vhx-plan-overlay {
  opacity: 1;
}

/* FEATURES */
.vhx-features-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
}

.vhx-feature {
  background: #111;
  padding: 25px;
  border-radius: 12px;
}

/* CTA */
.vhx-cta {
  text-align: center;
  padding: 100px 20px;
  background: #111;
}










































 
    /* ─── RESET Y BASE ─────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --bg-deep:    #05070c;
      --bg-mid:     #0d1117;
      --bg-card:    #111827;
      --border:     rgba(255,255,255,0.07);
      --accent:    radial-gradient(circle at 20% 20%, #5a0f1f, #5c0011);
      --accent-dim: rgba(200,169,110,0.15);
      --text:       #ffffff;
      --text-muted: rgb(255, 255, 255);

    }

 
    .logo sup {
      font-size: 0.5em;
      vertical-align: super;
    }

    .back-btn {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.8rem;
      letter-spacing: 0.08em;
      color: var(--text-muted);
      text-decoration: none;
      transition: color 0.2s;
    }

    .back-btn:hover { color: white; }

    .back-btn svg {
      width: 16px;
      height: 16px;
      fill: currentColor;
    }

    /* ─── HERO ─────────────────────────────────────── */
    .vx-hero {
      position: relative;
      height: 100vh;
      min-height: 600px;
      display: flex;
      align-items: flex-end;
      padding-bottom: 80px;
      overflow: hidden;
      font-family:'Playfair Display', serif;

    }

    .vx-hero__bg {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      transform: scale(1.05);
      transition: transform 8s ease;
      font-family:'Playfair Display', serif;

    }

    .vx-hero__bg.loaded { transform: scale(1); }

   .vx-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
  to right,
  rgba(0, 0, 0, 0.92) 0%,
  rgba(0, 0, 0, 0.75) 30%,
  rgba(0, 0, 0, 0.45) 60%,
  rgba(0, 0, 0, 0.2) 100%
);
}

    .vx-hero__content {
      position: relative;
      z-index: 2;
      width: 90%;
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 40px;
      font-family:'Playfair Display', serif;

      align-items: flex-end;
    }

    .vx-hero__tag {
      display: inline-block;
      font-size: 0.7rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color:white;
      border: 1px solid rgba(200,169,110,0.3);
      padding: 4px 12px;
      border-radius: 2px;
      margin-bottom: 16px;
    }

    .vx-hero__title {
      font-family: var(--font-serif);
      font-size: clamp(2.4rem, 5vw, 4rem);
      font-weight: 400;
      line-height: 1.05;
      letter-spacing: -0.01em;
      margin-bottom: 20px;
      color: white;
      font-family:'Playfair Display', serif;

    }

    .vx-hero__meta {
      display: flex;
      gap: 28px;
      flex-wrap: wrap;
    }

    .vx-hero__meta-item {
      display: flex;
      flex-direction: column;
      gap: 2px;
    }

    .vx-hero__meta-label {
      font-size: 0.65rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--text-muted);
    }

    .vx-hero__meta-value {
      font-family: var(--font-serif);
      font-size: 1.05rem;
      font-weight: 500;
      color: var(--text);
    }

    /* PRECIO PROTAGONISTA */
    .vx-hero__price-block {
      text-align: right;
      flex-shrink: 0;
    }

    .vx-hero__price-label {
      font-size: 0.65rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--text-muted);
      display: block;
      margin-bottom: 4px;
    }

    .vx-hero__price {
font-family:'Playfair Display', serif;
      font-size: clamp(2.4rem, 4.5vw, 3.8rem);
      font-weight: 300;
      color: white;
      line-height: 1;
      letter-spacing: -0.02em;
    }

    .vx-hero__price-sub {
      font-size: 0.75rem;
      color: var(--text-muted);
      margin-top: 6px;
    }

    .vx-hero__cta {
      margin-top: 28px;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 14px 30px;
      transition:all .35s ease;
background: radial-gradient(circle at 20% 20%, #5a0f1f, #1a0509);
  border:none;
color: rgba(255, 255, 255, 0.609);
      font-size: 0.82rem;
      font-weight: 500;
      letter-spacing: 0.06em;
      text-decoration: none;
      transition: opacity 0.2s, transform 0.2s;
    }



.vx-hero__cta:hover{
background:#000000;
color:#ffffff;
}




    .vx-hero__cta:hover { opacity: 0.5; transform: translateY(-2px); }

    /* ─── GALERÍA ──────────────────────────────────── */
    .vx-section {
      padding: 90px 0;
    }

    .vx-section--dark {
      background: var(--bg-mid);
    }

    .vx-container {
      width: 90%;
      max-width: 1200px;
      margin: 0 auto;
    }

    .vx-section-head {
      margin-bottom: 48px;
    }

    .vx-section-head h2 {
      font-family: var(--font-serif);
      font-size: clamp(1.8rem, 3vw, 2.6rem);
      font-weight: 400;
      font-family:'Playfair Display', serif;

      margin-bottom: 8px;
      color: white;
    }

    .vx-section-head p {
      color: var(--text-muted);
      font-family:'Playfair Display', serif;

      font-size: 0.9rem;
    }

    .vx-divider {
      width: 40px;
      height: 1px;
      background: var(--accent);
      margin: 14px 0;
    }

    /* GALERÍA GRID */
    .vx-gallery {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 10px;
    }

    .vx-gallery.gallery-1 { grid-template-columns: 1fr; }
    .vx-gallery.gallery-2 { grid-template-columns: repeat(2, 1fr); }
    .vx-gallery.gallery-3 { grid-template-columns: repeat(3, 1fr); }

    .vx-gallery__item {
      position: relative;
      overflow: hidden;
      cursor: pointer;
      background: var(--bg-card);
    }

    .vx-gallery__item::after {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(200,169,110,0);
      transition: background 0.3s;
    }

    .vx-gallery__item:hover::after {
      background: rgba(200,169,110,0.08);
    }

    .vx-gallery__item img {
      width: 100%;
      height: 260px;
      object-fit: cover;
      display: block;
      transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .vx-gallery__item:hover img { transform: scale(1.04); }

    .vx-gallery__item .expand-icon {
      position: absolute;
      bottom: 14px;
      right: 14px;
      z-index: 2;
      width: 32px;
      height: 32px;
      background: rgba(200,169,110,0.9);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transform: translateY(4px);
      transition: opacity 0.2s, transform 0.2s;
    }

    .vx-gallery__item:hover .expand-icon {
      opacity: 1;
      transform: translateY(0);
    }

    .vx-gallery__item .expand-icon svg {
      width: 14px;
      height: 14px;
      fill: #0a0a0a;
    }

    /* ─── LIGHTBOX ─────────────────────────────────── */
    .vx-lightbox {
      position: fixed;
      inset: 0;
      z-index: 9999;
      display: none;
      align-items: center;
      justify-content: center;
    }

    .vx-lightbox.open { display: flex; }

    .vx-lightbox__backdrop {
      position: absolute;
      inset: 0;
      background: rgba(5,7,12,0.97);
      cursor: pointer;
    }

    .vx-lightbox__inner {
      position: relative;
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      max-width: 92vw;
      max-height: 92vh;
    }

    .vx-lightbox__img-wrap {
      position: relative;
      max-width: 90vw;
      max-height: 80vh;
    }

    .vx-lightbox__img-wrap img {
      max-width: 100%;
      max-height: 80vh;
      object-fit: contain;
      display: block;
    }

    .vx-lightbox__close {
      position: fixed;
      top: 28px;
      right: 36px;
      background: none;
      border: 1px solid var(--border);
      color: var(--text);
      width: 42px;
      height: 42px;
      font-size: 1.4rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: border-color 0.2s, color 0.2s;
      z-index: 10;
    }

    .vx-lightbox__close:hover { border-color: var(--accent); color: var(--accent); }

    .vx-lightbox__nav {
      position: fixed;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(255,255,255,0.06);
      border: 1px solid var(--border);
      color: var(--text);
      width: 50px;
      height: 50px;
      font-size: 1.3rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.2s, border-color 0.2s;
      z-index: 10;
    }

    .vx-lightbox__nav:hover { background: var(--accent-dim); border-color: var(--accent); }
    .vx-lightbox__prev { left: 20px; }
    .vx-lightbox__next { right: 20px; }

    .vx-lightbox__counter {
      margin-top: 16px;
      font-size: 0.75rem;
      letter-spacing: 0.12em;
      color: var(--text-muted);
    }

    /* ─── DETALLES ─────────────────────────────────── */
    .vx-details {
      display: grid;
      grid-template-columns: 1.5fr 1fr;
      gap: 70px;
      align-items: start;
    }

    .vx-details__main h2 {
      font-family: var(--font-serif);
      font-size: clamp(1.7rem, 2.8vw, 2.4rem);
      font-weight: 400;
      margin-bottom: 18px;
      line-height: 1.15;
      font-family:'Playfair Display', serif;

      color: white;
    }

    .vx-details__main p {
      color: var(--text-muted);
      font-size: 0.95rem;
      line-height: 1.75;
      font-family:'Playfair Display', serif;

      margin-bottom: 30px;
    }

    /* STATS */
    .vx-stats {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1px;
      background: var(--border);
      font-family:'Playfair Display', serif;

      border: 1px solid var(--border);
      margin-top: 30px;
    }

    .vx-stat {
      padding: 20px 22px;
      background: var(--bg-deep);
    }

    .vx-stat__label {
      font-size: 0.68rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--text-muted);
      font-family:'Playfair Display', serif;

      display: block;
      margin-bottom: 4px;
    }

    .vx-stat__value {
      font-family: var(--font-serif);
      font-size: 1.2rem;
      font-family:'Playfair Display', serif;

      font-weight: 500;
      color: var(--text);
    }

    /* SIDE BOXES */
    .vx-details__side {
      display: flex;
      flex-direction: column;
      gap: 16px;
      color: white;
    }

    .vx-box {
      padding: 26px;
      background: var(--bg-card);
      border: 1px solid var(--border);
    }

    .vx-box h3 {
      font-family: var(--font-serif);
      font-family:'Playfair Display', serif;

      font-size: 0.85rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 16px;
    }

    .vx-box ul {
      list-style: none;
      font-family:'Playfair Display', serif;

    }

    .vx-box ul li {
      font-size: 0.88rem;
      padding: 7px 0;
      border-bottom: 1px solid var(--border);
      color: var(--text-muted);
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .vx-box ul li:last-child { border-bottom: none; }

    .vx-box ul li::before {
      content: '';
      width: 4px;
      height: 4px;
      background: var(--accent);
      flex-shrink: 0;
    }

    .vx-box p {
      font-size: 0.88rem;
      color: var(--text-muted);
      font-family:'Playfair Display', serif;

      line-height: 1.7;
    }

    /* ─── PLANO ────────────────────────────────────── */
    .vx-plano-wrap {
      position: relative;
      overflow: hidden;
      cursor: pointer;
      border: 1px solid var(--border);
      background: var(--bg-card);
    }

    .vx-plano-wrap img {
      width: 100%;
      display: block;
      transition: transform 0.5s ease;
    }

    .vx-plano-wrap:hover img { transform: scale(1.03); }

    .vx-plano-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(transparent, rgba(5,7,12,0.75));
      display: flex;
      align-items: flex-end;
      font-family:'Playfair Display', serif;

      justify-content: flex-start;
      padding: 22px 26px;
      opacity: 0;
      transition: opacity 0.3s;
    }

    .vx-plano-wrap:hover .vx-plano-overlay { opacity: 1; }

    .vx-plano-overlay span {
      font-size: 0.78rem;
      letter-spacing: 0.1em;
      color: var(--text-muted);
    }

    /* ─── CTA FOOTER ───────────────────────────────── */
    .vx-cta-section {
      background: black;
      border-top: 1px solid var(--border);
      padding: 80px 0;
      text-align: center;
    }

    .vx-cta-section h2 {
font-family:'Playfair Display', serif;
      font-size: clamp(1.8rem, 3vw, 2.8rem);
      font-weight: 400;
      margin-bottom: 12px;
      color: white;
    }

    .vx-cta-section p {
      color: var(--text-muted);
      margin-bottom: 36px;
      font-size: 0.9rem;
      font-family:'Playfair Display', serif;

    }

    .vx-btn-group {
      display: flex;
      gap: 14px;
      justify-content: center;
      flex-wrap: wrap;
      
    }

    .vx-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 14px 32px;
      font-family: var(--font-sans);
      font-size: 0.82rem;
      font-weight: 500;
      letter-spacing: 0.06em;
      text-decoration: none;
      transition: opacity 0.2s, transform 0.2s;
      cursor: pointer;
      
    }

    .vx-btn:hover { opacity: 0.85; transform: translateY(-2px); }

    .vx-btn--primary {
      transition:all .35s ease;
background: radial-gradient(circle at 20% 20%, #5a0f1f, #1a0509);
  border:none;
color: rgba(255, 255, 255, 0.609);
      border: 1px solid var(--accent);
    }

    .vx-btn--ghost {
      background: transparent;
      color: var(--text);
      border: 1px solid var(--border);
    }

    .vx-btn--ghost:hover { background-color: white; color: var(--accent); }

    /* ─── ERROR STATE ──────────────────────────────── */
    .vx-error {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 40px;
    }

    .vx-error h1 {
font-family:'Playfair Display', serif;
      font-size: 5rem;
      color: var(--accent);
      line-height: 1;
    }

    .vx-error p {
      color: var(--text-muted);
      margin: 16px 0 32px;
      font-family:'Playfair Display', serif;

    }

    /* ─── FOOTER ───────────────────────────────────── */
    .footer-pro {
background: linear-gradient(transparent, rgba(5,7,12,0.75));      border-top: 1px solid var(--border);
      font-family:'Playfair Display', serif;

      padding: 60px 0 30px;
    }

    .footer-container {
      width: 90%;
      max-width: 1200px;
      margin: 0 auto;
    }

    .footer-top {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      gap: 40px;
      padding-bottom: 40px;
      border-bottom: 1px solid var(--border);
      margin-bottom: 24px;
    }

    .footer-brand h2 {
      font-family: var(--font-serif);
      font-size: 1.1rem;
      letter-spacing: 0.1em;
      margin-bottom: 12px;
    }

    .footer-brand p,
    .footer-contact p {
      font-size: 0.83rem;
      color: var(--text-muted);
      line-height: 1.7;
    }

    .footer-links h4,
    .footer-contact h4 {
      font-size: 0.68rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 14px;
    }

    .footer-links a {
      display: block;
      font-size: 0.83rem;
      color: var(--text-muted);
      text-decoration: none;
      padding: 4px 0;
      transition: color 0.2s;
    }

    .footer-links a:hover { color: var(--text); }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
    }

    .footer-bottom p {
      font-size: 0.75rem;
      color: var(--text-muted);
    }

    .footer-socials {
      display: flex;
      gap: 20px;
    }

    .footer-socials a {
      font-size: 0.75rem;
      color: var(--text-muted);
      text-decoration: none;
      transition: color 0.2s;
    }

    .footer-socials a:hover { color: var(--accent); }

    /* ─── WHATSAPP FLOAT ──────────────────────────── */
    .whatsapp-float {
      position: fixed;
      bottom: 28px;
      right: 28px;
      z-index: 200;
      width: 52px;
      height: 52px;
      background: #25d366;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 20px rgba(37,211,102,0.35);
      transition: transform 0.2s;
    }

    .whatsapp-float:hover { transform: scale(1.08); }

    .whatsapp-float svg {
      width: 26px;
      height: 26px;
      fill: white;
    }

    /* ─── ANIMACIONES ──────────────────────────────── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(24px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    .anim-fade-up {
      animation: fadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
    }

    .anim-delay-1 { animation-delay: 0.1s; }
    .anim-delay-2 { animation-delay: 0.22s; }
    .anim-delay-3 { animation-delay: 0.36s; }

    /* ─── RESPONSIVE ───────────────────────────────── */
    @media (max-width: 900px) {
      .vx-hero__content {
        grid-template-columns: 1fr;
      }

      .vx-hero__price-block {
        text-align: left;
      }

      .vx-gallery {
        grid-template-columns: repeat(2, 1fr) !important;
      }

      .vx-details {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .footer-top {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 600px) {
      .vx-hero {
        padding-bottom: 60px;
      }

      .vx-hero__title {
        font-size: 2rem;
      }

      .vx-hero__price {
        font-size: 2.2rem;
      }

      .vx-gallery {
        grid-template-columns: 1fr !important;
      }

      .vx-gallery__item img {
        height: 220px;
      }

      .vx-stats {
        grid-template-columns: 1fr 1fr;
      }

      .vx-lightbox__nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
      }

      .vx-lightbox__prev { left: 8px; }
      .vx-lightbox__next { right: 8px; }
    }
