@charset "UTF-8";
/* CSS Document */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
}


h1,h2,h3,h4,h5,h6,p{
	font-family:-apple-system,BlinkMacSystemFont,'Roboto', sans-serif;
	font-style:normal;
}

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: visible;
  min-height: 100vh;
}


/* Contenedor superior izquierdo */

/* Logo superior - Corona */
.hero-left-logo {
  height: 30px;
  width: auto;
  position: absolute;
  top: 24px;
  left: 100px;
  z-index: 20; /* por sobre slider y overlay */
  display: flex;
  align-items: center;
}
.hero-top-wrapper {
  position: absolute;
  top: 30px;
  right: 100px;
  z-index: 25;
  display: flex;
  align-items: center;
  gap: 24px;
  pointer-events: auto;
}

.hero-top {
  display: flex;
  align-items: center;
}


.hero-top a {
  color: #fff;
  margin-left: 20px;
  font-size: 14px;
  text-decoration: none;
  opacity: 0.8;
}

.hero-top a:hover {
  opacity: 1;
}

/* Slider */
.hero-slider,
.swiper-slide {
  width: 100%;
  height: 100%;
}
.hero-slider{
	position: relative;
	z-index: 1;
}

.swiper-slide {
  background-size: cover;
  background-position: center;
}

/* Overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 2;
  pointer-events: none;
}

/* Contenido */
.hero-content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  padding: 20px;
  pointer-events: auto;
}

.hero-logo {
  max-width: 220px;
  margin-bottom: 0px;
}

.hero-content h1 {
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 20px;
  margin-top: 0px;
  padding-top: 0px;
}

.hero-content p {
  font-size: 18px;
  color: #509FCA;
  font-family: 'Roboto', sans-serif;
}

/* Flechas */
.swiper-button-prev,
.swiper-button-next {
position: absolute;
top: 50%;
transform: translateY(-50%);
z-index: 9999;
width: 50px;
height: 50px;
pointer-events: auto;
color: #fff;
}
.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 32px;
}
.swiper-button-prev {
  left: 30px;   /* antes suele ser 10px */
}

.swiper-button-next {
  right: 30px;  /* antes suele ser 10px */
}


/* Responsive */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 32px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .hero-top {
    right: 20px;
    top: 15px;
  }

  .hero-top a {
    margin-left: 10px;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 26px;
  }

  .hero-logo {
    max-width: 160px;
  }
}
	
@media (max-width: 768px) {
  .swiper-button-prev {
    left: 20px;
  }

  .swiper-button-next {
    right: 20px;
  }
}

@media (max-width: 768px) {
  .hero-left-top {
    top: 16px;
    left: 16px;
  }

  .hero-left-logo {
    height: 32px;
  }
}

/* =========================
   SELECTOR DE IDIOMA
========================= */

.lang-selector {
 position: relative;
  margin-left: 20px; 
 z-index: 9999;
}

.lang-toggle {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.6);
  color: #fff;
  font-size: 13px;
  padding: 10px 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  opacity: 0.85;
}

.lang-toggle:hover {
  opacity: 1;
}

/* Dropdown */
.lang-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background: rgba(0,0,0,0.9);
  list-style: none;
  padding: 6px 0;
  margin: 0;
  min-width: 130px;
  display: none;
  z-index: 10000;
}

.lang-dropdown li a {
  display: block;
  padding: 8px 14px;
  font-size: 13px;
  color: #fff;
  text-decoration: none;
  opacity: 0.8;
}

.lang-dropdown li a:hover {
  opacity: 1;
  background: rgba(255,255,255,0.1);
}

/* Mostrar dropdown en desktop */
.lang-selector:hover .lang-dropdown {
  display: block;
}

/* =========================
   IDIOMA DENTRO DEL MENÚ MÓVIL
========================= */

@media (max-width: 768px) {
	 .lang-dropdown {
    min-width: auto;
    background: transparent;
    text-align: center;  
  }

  .lang-dropdown li a {
    font-size: 16px;
    padding: 10px 0;
    text-align: center; 
  }
	 .lang-toggle {
    font-size: 18px;
    padding: 12px 20px;
    border: none;          
    opacity: 1;
    justify-content: center;
    margin: 0 auto;
    text-align: center;
  }

}



/* =========================
   BOTÓN HAMBURGUESA
========================= */
.menu-toggle {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 30;
  width: 32px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
  display: none;
}

.menu-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: #fff;
  margin: 5px 0;
  transition: all 0.3s ease;
}

/* =========================
   MOBILE MENU
========================= */
@media (max-width: 768px) {
  /* Mostrar botón */
  .menu-toggle {
    display: block;
  }

  /* Menú oculto por defecto */
  .hero-top {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    transform: translateY(-100%);
    transition: transform 0.4s ease;
	font-family: 'Roboto', sans-serif;
  }

  .hero-top a {
    font-size: 18px;
    margin: 0;
  }

  /* Menú activo */
  .hero-top.active {
    transform: translateY(0);
  }
}

/* =========================
   ANIMACIÓN HAMBURGUESA → X
========================= */
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}



/******* Intro de BIM ********/

.bim-intro {
	padding-bottom: 0px;
	padding-left: 0px;
	padding-right: 0px;
	padding-top: 120px;
  background: #ffffff;
}

.bim-container {
  max-width: 1300px;
  margin: 0 auto;
  padding-left: 40px;
  padding-right: 40px;
  padding-top: 0px;
  padding-bottom: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
}

/* Imagen */
.bim-image {
  width: 100%;
  height: 100%;
  min-height: 600px;
  background-image: url("../img/edificio-intro.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left center; 
}
.bim-image img {
  width: 100%;
  height: auto;
}

/* Texto */
.bim-label {
  display: inline-block;
  font-size: 14px;
  color: #509FCA;
  margin-bottom: 16px;
  font-weight: 600;
}

.bim-content h2 {
  font-size: 48px;
  color: #00254B;
  margin-bottom: 20px;
  font-family: 'Roboto', sans-serif;
}

.bim-content h3 {
  font-size: 20px;
  color: #00254B;
  font-weight: 500;
  margin-bottom: 24px;
  font-family: 'Roboto', sans-serif;
}

.bim-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #3C3C3B;
  margin-bottom: 20px;
  font-weight: lighter;
  font-family: 'Roboto', sans-serif;
}

.bim-content .bim-link {
  color: #509FCA;
  font-size: 16px;
  font-weight: normal;
}
.bim-content .bim-link a {
  color: #00254B;
  font-size: 16px;
  font-weight: normal;
  text-decoration: none;
}
.bim-content .bim-link a:hover {
  color: #509FCA;
}

/* Responsive */
@media (max-width: 1024px) {
  .bim-container {
    gap: 50px;
  }

  .bim-content h2 {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .bim-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .bim-image {
    order: 2;
  }

  .bim-content {
    order: 1;
  }

  .bim-content h2 {
    font-size: 34px;
  }
}

@media (max-width: 480px) {
  .bim-intro {
    padding: 80px 0;
  }

  .bim-content h2 {
    font-size: 28px;
  }
}

/******* 50+ soluciones *******/

.bim-solutions {
  padding: 120px 0;
  background: radial-gradient(circle at center, #eeeeee 0%, #dcdcdc 100%);
}

.solutions-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 150px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  align-items: center;
  gap: 40px;
}

/* Texto */
.solutions-content h2 {
  font-size: 68px;
  font-weight: 300;
  line-height: 1.1;
  color: #686A6B;
  margin-bottom: 24px;
  font-family: 'Roboto', sans-serif;
}

.solutions-number {
  font-size: 98px;
  font-weight: 400;
  letter-spacing: 5px;
}

.solutions-number2 {
  font-size: 50px;
  font-weight: 400;
  letter-spacing: 10px; 
  margin-top: 0px;
}

.solutions-subtitle {
  font-size: 22px;
  color: #509FCA;
  margin-bottom: 24px;
  letter-spacing: 5px;
}

.solutions-note {
  font-size: 15px;
  color: #509FCA;
  max-width: 420px;
  font-weight: normal;

}
.solutions-note a {
  font-size: 15px;
  color: #00254B;
  max-width: 420px;
  text-decoration: none;
  font-weight: normal;
}
.solutions-note a:hover{
  color: #509FCA;
	
}


/* Imagen */
.solutions-image {
  width: 100%;
  min-height: 480px;
  background-image: url("../img/perfil01.png");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: 100% center;
}

/* Responsive */
@media (max-width: 1024px) {
  .solutions-container {
    padding: 0 40px;
    gap: 50px;
  }

  .solutions-image {
    background-size: contain;
    background-position: center;
    min-height: 360px;
  }

  .solutions-number {
    font-size: 68px;
  }
  .solutions-number2 {
    font-size: 30px;
  }
}

@media (max-width: 768px) {
  .solutions-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .solutions-image {
    order: 2;
    min-height: 280px;
  }

  .solutions-note {
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .bim-solutions {
    padding: 80px 0;
  }

  .solutions-content h2 {
    font-size: 40px;
  }

  .solutions-number {
    font-size: 52px;
  }
	.solutions-number2 {
    font-size: 20px;
  }
}


/****** BIM REGISTRO ******/
/* ===== Sección BIM Deceuninck ===== */

.dc-bim-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  background-color: #3C3C3B;
  overflow: hidden;
}

/* Imagen */
.dc-bim-visual {
  background-image: url("../img/edificio-registro.png"); /* ajusta ruta */
  background-repeat: no-repeat;
  background-size: auto 80%;
  background-position: left bottom;
}

/* Contenido */
.dc-bim-content {
  padding: 80px 150px 80px 60px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: right;
  align-items: flex-end;
}

.dc-bim-eyebrow {
  color: #509FCA;
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 16px;

}

.dc-bim-title {
  font-size: 56px;
  font-weight: 400;
  margin-bottom: 24px;

}

.dc-bim-text {
  font-size: 18px;
  line-height: 1.6;
  max-width: 480px;
  margin-bottom: 20px;
  font-weight: 300;

}

.dc-bim-text--bold {
  font-weight: 600;
  font-weight: bold;
}

/* Link */
.dc-bim-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 14px 32px;
  margin-top: 32px;

  font-size: 15px;
  font-weight: 600;
  color: #509FCA;

  border: 1px solid #509FCA;
  background-color: transparent;
  text-decoration: none;
  transition: all 0.3s ease;
}

.dc-bim-btn:hover {
  background-color: #509FCA;
  color: #3C3C3B;
}
@media (max-width: 1024px) {
  .dc-bim-section {
    grid-template-columns: 1fr;
  }

  .dc-bim-visual {
    min-height: 50vh;
    background-size: cover;
    background-position: center;
  }

  .dc-bim-content {
    padding: 60px 40px;
  }

  .dc-bim-title {
    font-size: 42px;
  }
}

@media (max-width: 1024px) {
.dc-bim-content {
text-align: center; /* centra textos */
align-items: center; /* centra el botón */
padding: 60px 24px; /* padding más mobile */
}


.dc-bim-text {
max-width: 100%; /* evita bloque angosto */
}


.dc-bim-btn {
margin-left: auto;
margin-right: auto; /* asegura centrado */
}
}
@media (max-width: 480px) {
.dc-bim-title {
font-size: 32px;
}


.dc-bim-text {
font-size: 15px;
}
}

@media (max-width: 1024px) {
.dc-bim-title {
font-size: 48px; /* antes 42px */
}


.dc-bim-text {
font-size: 18px; /* antes 16px */
line-height: 1.7;
}


.dc-bim-btn {
font-size: 16px; /* antes 15px */
padding: 16px 36px;
}
}
@media (max-width: 480px) {
.dc-bim-title {
font-size: 36px;
}


.dc-bim-text {
font-size: 17px;
}


.dc-bim-btn {
font-size: 16px;
padding: 14px 32px;
}
}




/* ===== GRID DE 4 IMAGENES ===== */

.dc-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  min-height: 100vh;
}

/* BLOQUE BASE */

.dc-feature {
  position: relative;
  overflow: hidden;
  min-height: 100%;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #ffffff;
  text-align: center;
}


/* Fondo + overlay */
.dc-feature::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
  z-index: 1;
}

.dc-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.35),
    rgba(0,0,0,0.75)
  );
  transition: background 0.4s ease;
  z-index: 2;
}

/* Contenido */
.dc-feature-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  transition: transform 0.4s ease;
  width: 100%;
  padding: 0 32px;
}

.dc-feature-icon {
  width: 56px;
  height: auto;
}

.dc-feature-text {
  font-size: 10px;
  max-width: 240px;
  font-weight:300;
}
.dc-feature-title {
  font-size: 12px;
  font-weight: bold;
  margin: 0;
}

/* HOVER EFFECT */

.dc-feature:hover::before {
  transform: scale(1.1);
}

.dc-feature:hover::after {
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.2),
    rgba(0,0,0,0.6)
  );
}

.dc-feature:hover .dc-feature-content {
  transform: translateY(-8px);
}

/* VARIANTES (fondos + degradés distintos)  */

.dc-feature--one::before {
  background-image: url("../img/img01.jpg");
}

.dc-feature--two::before {
  background-image: url("../img/img02.jpg");
}

.dc-feature--three::before {
  background-image: url("../img/img03.jpg");
}

.dc-feature--four::before {
  background-image: url("../img/img04.jpg");
}

/* Opcional: degradé por color */
.dc-feature--one::after {
  background: rgba(69, 69, 69, 0.6);
}

.dc-feature--two::after {
  background: rgba(55, 64, 72, 0.6);
}

.dc-feature--three::after {
  background: rgba(0, 37, 75, 0.6);
}

.dc-feature--four::after {
  background: rgba(0, 93, 165, 0.6);
}
.dc-feature--one .dc-feature-content,
.dc-feature--three .dc-feature-content{
  align-items: flex-end;
  text-align: right;
  padding-right: 24px;  /* lado angosto */
  padding-left: 64px;   /* lado amplio */
}
.dc-feature--two .dc-feature-content,
.dc-feature--four .dc-feature-content{
  align-items: flex-start;
  text-align: left;
  padding-right: 24px;  /* lado angosto */
  padding-left: 64px;   /* lado amplio */  
}

/* RESPONSIVE */
@media (max-width: 1920px){
	.dc-feature-text{
		font-size: 20px;
	}
	.dc-feature-title{
		font-size: 22px;
	}
    h1,h2,h3,h4,h5,h6{
	font-size: 22px;
	}
	p{
		font-size: 20px;
	}
}


@media (max-width: 768px) {
   .dc-features-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    min-height: auto;
  }

  .dc-feature {
    min-height: 240px;
  }

  .dc-feature-text {
    font-size: 16px;
  }
	.dc-feature-title {
    font-size: 18px;
  }
	.dc-feature-content {
    align-items: center !important;
    text-align: center !important;
    padding: 0 24px;
  }
}



/* ===== BANNER de LOGO ===== */

.logo-banner {
  height: 300px;
  background: #FFFFFF; /* color con opacidad */
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-slider {
  position: relative;
  width: 450px;
  height: 220px;
}

.logo {
  position: absolute;
  inset: 0;
  margin: auto;
  max-width: 100%;
  max-height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.logo.active {
  opacity: 1;
}


/* ===== GALERIA DE IMAGENES ===== */
.image-gallery {
  max-width: 100%;
  min-height: 100vh; 
  margin: 0 auto;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gallery-row {
  display: grid;
  gap: 20px;
}

/* Fila de 3 */
.row-3 {
  grid-template-columns: repeat(3, 1fr);
}

/* Fila de 4 */
.row-4 {
  grid-template-columns: repeat(4, 1fr);
}

.gallery-item {
  overflow: hidden;
  border-radius: 0px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.4s ease;
}

/* Hover */
.gallery-item:hover img {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .row-3,
  .row-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .row-3,
  .row-4 {
    grid-template-columns: 1fr;
  }
}



/* ===== CERTIFICACION ===== */

.cert-banner {
  background-image: url("../img/fondo-certificado.jpg");
  background-size: cover;
  background-position: center;
  min-height: 100vh; 
  position: relative;
  display: flex;
}

/* Overlay */
.cert-overlay {
  background: rgba(0, 37, 75, 0.65);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Contenido */
.cert-content {
  color: #fff;
  padding: 0 24px;
  max-width: 900px;
}

/* Logo */
.cert-logo {
  max-width: 160px;
  margin-bottom: 0px;
}

/* Título */
.cert-title {
  font-size: 30px;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 36px;
}

/* Certificaciones */
.cert-icons {
  display: flex;
  gap: 32px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap; /* 🔥 mobile */
}

.cert-icons img {
  height: 64px;
  opacity: 0.95;
}

/* RESPONSIVE */

@media (max-width: 768px) {
  .cert-banner {
    min-height: 70vh;
  }

  .cert-title {
    font-size: 22px;
    margin-bottom: 28px;
  }

  .cert-icons img {
    height: 52px;
  }
}/* BOTON ACCEDER DEL HEADER*/

.hero-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 32px;
  background-color: #005baa; /* azul corporativo */
  color: #fff;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 30px;
  transition: all 0.3s ease;
  position: relative;
 z-index: 20;
}

.hero-btn:hover {
  background-color: #003f7f;
  transform: translateY(-2px);
}
@media (max-width: 768px) {
  .hero-btn {
    padding: 12px 26px;
    font-size: 15px;
  }
}