/*
Theme Name: Hello Elementor Child
Template: hello-elementor
Author: Elementor Team
Description: Child theme para personalizaciones de Grupo Tesela.
Version: 1.0
*/

/* ===================== SINGLE PROYECTO – CABECERA FULL WIDTH ===================== */

.single-proyecto {
  background: #ffffff;
  color: #111;
  font-family: "Montserrat", -apple-system, system-ui, sans-serif;
}

/* -------- CONTENEDOR GENERAL -------- */
.proyecto-shell {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px;
}

/* -------- CABECERA COMPLETA -------- */
.proyecto-header {
  width: 100%;
  padding-top: 20px;
  border-bottom: 1px solid #e4e4e4;
}

.proyecto-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 32px;
}

.proyecto-label {
  letter-spacing: .2em;
  text-transform: uppercase;
  font-size: .7rem;
  color: #999;
  margin: 0 0 10px;
}

.proyecto-title-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 2px solid #111;
  padding-bottom: 14px;
  margin-bottom: 18px;
}

.proyecto-title {
  font-size: clamp(2.2rem, 3.4vw, 3.2rem);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin: 0;
}

/* -------- BOTÓN VER PROYECTOS -------- */
.proyecto-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .55rem 1.7rem;
  border-radius: 999px;
  border: 1px solid #111;
  font-size: .8rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .16em;
  background: transparent;
  color: #111;
  transition: all .25s ease;
  white-space: nowrap;
}

.proyecto-back:hover {
  background: #111;
  color: #fff;
}

/* -------- META DATA -------- */
.proyecto-meta-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 56px;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .12em;
	margin-bottom: 30px;
  margin-top: 12px;

}

.meta-item {
  min-width: 120px;
}

.meta-label {
  display: block;
  color: #b0b0b0;
  margin-bottom: 4px;
}

.meta-value {
  display: block;
  font-weight: 500;
  color: #111;
}

/* ===================== BLOQUES DE CONTENIDO ===================== */

.proyecto-intro {
  padding: 100px 0 80px;
  text-align: center;
}

.proyecto-intro-inner {
  max-width: 800px;
  margin: 0 auto;
}

.proyecto-intro-title {
  font-size: 2.2rem;
  letter-spacing: -0.03em;
  margin-bottom: 2rem;
}

.texto-intro {
  font-size: 1.4rem;
  font-weight: 600;
  color: #000;
  text-transform: uppercase;
  line-height: 1.5;
  margin-bottom: 2rem;
}

.texto-intro2 {
  font-size: 1rem;
  font-weight: 400;
  color: #444;
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
}

/* ===================== IMÁGENES ===================== */

.proyecto-hero-image {
  margin: 0;
  width: 100vw;
  max-width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.proyecto-hero-image img {
  width: 100%;
  height: 60vh;
  max-height: 80vh;
  object-fit: cover;
  display: block;
}

.proyecto-imagen-central img,
.proyecto-bloque-imagen img,
.proyecto-dos-imagenes img,
.proyecto-imagen-full-inner img {
  width: 100%;
  display: block;
  border-radius: 0;
}

/* ===================== CARRUSEL ===================== */

.proyecto-carrusel {
  padding: 60px 0 80px;
}

.proyecto-carrusel-wrapper {
  position: relative;
  overflow: hidden;
  width: 100vw;
  max-width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.proyecto-carrusel-track {
  overflow: hidden;
}

.proyecto-carrusel-inner {
  display: flex;
  transition: transform .6s ease;
}

.proyecto-carrusel-item {
  flex: 0 0 50%;
  padding: 0 10px;
}

.proyecto-carrusel-item img {
  width: 100%;
  display: block;
}

/* FLECHAS */
.carrusel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}

.carrusel-arrow::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-top: 2px solid #111;
  border-right: 2px solid #111;
  transform: rotate(45deg);
  transition: all 0.3s ease;
}

.carrusel-prev::before { transform: rotate(-135deg); }
.carrusel-next::before { transform: rotate(45deg); }

.carrusel-prev { left: 20px; }
.carrusel-next { right: 20px; }

/* ===================== RESPONSIVE (MÓVIL) ===================== */

.proyecto-back--mobile {
  display: none;
}

@media (max-width: 900px) {

  /* Quitar línea del título */
  .proyecto-title-row {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 12px;
    flex-direction: column;
    align-items: flex-start;
  }

  /* Cabecera como columna */
  .proyecto-header-inner {
    display: flex;
    flex-direction: column;
  }

  /* ORDEN PERSONALIZADO EN MÓVIL */
  .proyecto-label { order: 0; }
  .proyecto-title-row { order: 1; }
  .proyecto-hero-image { order: 2; }
  .proyecto-meta-bar { order: 3; }
  .proyecto-back--mobile {
    order: 4;
    display: inline-flex;
    margin-top: 24px;
  }
  .proyecto-back--desktop { display: none; }

  /* Carrusel 1 imagen */
  .proyecto-carrusel-item { flex: 0 0 100%; }
  .carrusel-prev { left: 8px; }
  .carrusel-next { right: 8px; }
}

/* ===================== TEXTO + FOTO LATERAL (COMO ANTES) ===================== */

.proyecto-bloque-lateral {
  padding: 40px 0 60px;
}

.proyecto-bloque-lateral-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr); /* texto / foto */
  gap: 40px;
  align-items: flex-start;
}

.proyecto-bloque-texto p {
  font-size: 1rem;
  line-height: 1.7;
  margin: 0 0 1.3rem;
}

.proyecto-bloque-imagen img {
  width: 100%;
  display: block;
}

/* ===================== DOS IMÁGENES VERTICALES (COMO ANTES) ===================== */

.proyecto-dos-imagenes {
  padding: 20px 0 60px;
}

.proyecto-dos-imagenes-inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)); /* 2 columnas */
  gap: 30px;
}

.proyecto-dos-imagenes img {
  width: 100%;
  display: block;
}

/* ===================== AJUSTE MÓVIL TEXTO + FOTO / DOS FOTOS ===================== */
@media (max-width: 900px) {

  /* Texto + foto lateral en 1 columna */
  .proyecto-bloque-lateral {
    padding: 30px 0 40px;
  }

  .proyecto-bloque-lateral-inner {
    grid-template-columns: 1fr;   /* una sola columna */
    gap: 24px;
  }

  /* Dos imágenes verticales una debajo de la otra */
  .proyecto-dos-imagenes {
    padding: 20px 0 40px;
  }

  .proyecto-dos-imagenes-inner {
    grid-template-columns: 1fr;   /* una sola columna */
    gap: 24px;
  }
}