@charset "utf-8";
/* CSS Document */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Helvetica", "OpenSans", sans-serif;
  color: #000;
  background-color: #fff;
}

/* ----- ELIMINA CUALQUIER LÍNEA BLANCA O FONDO ----- */
body, html {
  background-color: #fff;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255,255,255,0) 80%, #fff 100%);
  z-index: 1; /* crea una transición suave a blanco sin línea */
}
.hero-content, .breadcrumb {
  z-index: 2; /* se ven por encima del degradado */
  position: relative;
}

/* ----- HEADER ----- */
.header {
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 85px;
  padding: 0 4%;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  position: relative;
  z-index: 10;
}

.logo img {
  height: 70px;
  width: auto;
  cursor: pointer;
}

.nav ul {
  list-style: none;
  display: flex;
  gap: 40px;
}

.nav a {
  text-decoration: none;
  color: #000;
  font-weight: 600;
  position: relative;
}

.nav a:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -20px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: #aaa;
}

.nav a.active {
  font-weight: 700;
}

.nav a.active::after {
  content: "";
  display: block;
  height: 2px;
  width: 100%;
  background: #000;
  position: absolute;
  bottom: -5px;
  left: 0;
}

/* ----- MIGAS DE PAN ----- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-style: "Helvetica", "OpenSans", sans-serif;
  color: #000;
  background: transparent; /* fondo transparente */
  padding: 0;
  position: relative;
  z-index: 5;
}

.breadcrumb img {
  height: 20px;
  width: 20px;
}

.breadcrumb em {
  font-size: 14px;
  font-style: "Helvetica", "OpenSans", sans-serif;
  color: #333;
}

/* ----- HERO ----- */
.hero {
  background-image: url("imagenes/Nubes de fondo.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 800px;
  display: flex;
  flex-direction: column; /* ahora las migas arriba y texto abajo */
  justify-content: space-between;
  color: #000;
  position: relative;
  padding: 20px 8% 0 8%;
}

.hero2 {
  background-image: url("imagenes/Nubes de fondo.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 400px;
  display: flex;
  flex-direction: column; /* ahora las migas arriba y texto abajo */
  justify-content: space-between;
  color: #000;
  position: relative;
  padding: 20px 8% 0 8%;
}

.hero-content {
  max-width: 500px;
  padding: 150px 0px 300px;
}

.hero h1 {
  font-size: 50px;
  margin-bottom: 10px;
  line-height: 1.2;
}

.hero2 h1 {
  font-size: 50px;
  margin-bottom: 10px;
  line-height: 1.2;
}

.azul {
  color: #21b3f3;
}

.hero p {
  font-style: "Helvetica", "OpenSans", sans-serif;
  margin-bottom: 30px;
}

.botones {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
}

.btn {
  padding: 10px 25px;
  border-radius: 25px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-blanco {
  background-color: #fff;
  color: #000;
  border: 2px solid #000;
}

.btn-blanco:hover {
  background-color: #000;
  color: #fff;
}

.btn-negro {
  background-color: #000;
  color: #fff;
  border: 2px solid #000;
}

.btn-negro:hover {
  background-color: #21b3f3;
  border-color: #21b3f3;
  color: #fff;
}

/* ----- HERO CONTENT (alineado a la derecha) ----- */
.hero-content {
  align-self: flex-end;
  text-align: right;
  max-width: 550px;
  margin-bottom: 80px;
}

.hero h1 {
  font-size: 50px;
  margin-bottom: 10px;
  line-height: 1.2;
}

.azul {
  color: #21b3f3;
}

.hero p {
  font-style: "Helvetica", "OpenSans", sans-serif;
  margin-bottom: 30px;
}

.botones {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
}

/* ----- CABECERA AZUL ----- */

.rectangulo-azul {
  display: flex;
  justify-content: center; /* Centra horizontalmente */
  align-items: center;     /* Centra verticalmente */
  background-color: #21b3f3;
  padding: 40px;
}

.rectangulo-azul h2 {
  font-size: 35px;
  font-family: "Helvetica", "OpenSans", sans-serif;
  font-weight: 300; /* Hace la tipografía más delgada */
  color: #fff;
  margin: 0;
  padding: 0;
}

/* ----- CONTENIDO PAGINA INICIO ----- */

.contenido {
  background-color: #fff;
  padding: 60px 10%;
}

.contenido h2 {
  text-align: center;
  font-size: 40px;
  font-family: "Helvetica", "OpenSans", sans-serif;
  color: #000000;
  padding: 30px;
  margin-bottom: 40px;
}

.resumen {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

/*columnas pagina Inicio*/

.texto-resumen {
  flex: 1;
  min-width: 300px;
}

.texto-resumen h3 {
  font-size: 35px;
  font-family: "Helvetica", "OpenSans", sans-serif;
  color: #000000;
  margin-bottom: 15px;
}

.texto-resumen p {
  line-height: 1.6;
  font-size: 18px;
  font-family: "Helvetica", "OpenSans", sans-serif;
  color: #000000;
}

.imagen {
  flex: 1;
  min-width: 300px;
}

.imagen img {
  width: 560px;
  border-radius: 12px;
}

/* ----- CONTENIDO PAGINA CONTEXTO ----- */

.plan-de-proyecto {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

/*columna subtitulo pagina Contexto*/

.subtitulo-plan {
  display: flex;
  justify-content: space-between;
}

.subtitulo-plan h3 {
  font-size: 32px;
  font-family: "Helvetica", "OpenSans", sans-serif;
  color: #000000;
  margin: 15px 10px;
  witdh:50%;
  padding-bottom: 30px;
  border-bottom: solid 6px #21b3f3;
}

/* Columna subtítulo2 página Contexto */

.subtitulo2 {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  box-sizing: border-box;
  padding: 0 20px;
}

/* el propio subtítulo se muestra en línea y centrado */

.subtitulo2 h3 {
  display: inline-block;
  margin: 80px auto 0 auto;
  padding-bottom: 10px;
  font-size: 32px;
  font-family: "Helvetica", "Open Sans", sans-serif;
  color: #000000;
  border-bottom: none;
  position: relative;
}

/* línea azul debajo (más larga que el texto) */

.subtitulo2 h3::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -12px;
  width: 550px;
  height: 6px;
  background: #21b3f3;
}

/* alternativa: si quieres que la franja tenga exactamente el ancho del texto */

.subtitulo2 h3.inline-underline {
  border-bottom: 6px solid #21b3f3;
  padding-bottom: 10px;
}

	/*columnas pagina Contexto*/

	.texto-plan1 {
	  width: 40%;
	  min-width: 300px;
	}

	.texto-plan1 p {
	  line-height: 1.6;
	  font-size: 18px;
	  font-family: "Helvetica", "OpenSans", sans-serif;
	  color: #000000;
	}

	.texto-blanco p {
 	  line-height: 1.6;
	  margin: 10px 39px;
	  font-size: 18px;
	  font-family: "Helvetica", "OpenSans", sans-serif;
	  font-weight: lighter;
	  color: white;
	}

	/*Franja de imagen con texto*/

    .franja-imagen {
      width: 100%;
      height: 308px;
      background-image: url("imagenes/fotocharla.jpg");
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
    }

    /* Opcional: texto superpuesto */

    .franja-imagen .texto-blanco {
      color: white;
      text-align: left;
      font-size: 1.5em;
      font-weight: regular;
      position: relative;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(0, 0, 0, 0.4); /* fondo semitransparente */
      padding: 0px 20px;
      display: inline-block;
      border-radius: 5px;
    }

	/* Caja negra y contenidos dentro de esta */

	.caja-negra {
	  display: flex;
	  justify-content: space-between;
	  align-items: flex-start;
	  background-color: #000;
	  padding: 40px 60px;
	  border-top: 1px solid #ccc;
	  color: white;
	}

	/* Columna de la izquierda */

	.columna-izquierda {
 	 width: 55%;
 	 border-right: 2px solid white;
 	 padding-right: 50px;
	}

	.texto-blanco2 p {
 	  line-height: 1.6;
	  margin: 20px 50px;
	  font-size: 18px;
	  font-family: "Helvetica", "OpenSans", sans-serif;
	  font-weight: lighter;
	  color: white;
	}

	/* Columna de la derecha */

	.columna-derecha {
	  width: 52%;
	  padding-left: 60px;
	  display: flex;
	  flex-direction: column;
	  justify-content: center; /* centra verticalmente el contenido */
	  text-align: left;
	}

	.columna-derecha h2 {
	  font-size: 22px;
	  font-weight: bold;
	  color: #FFFFFF;
	  margin-bottom: 35px;
	}

	.columna-derecha p {
	  line-height: 1.6;
	  font-size: 18px;
	  font-weight: lighter;
	  margin-bottom: 50px;
	}

	/* Botón PDF */

	.boton-pdf {
	  display: inline-block;
	  background-color: white;
	  color: black;
	  font-weight: bold;
	  padding: 10px 25px;
	  border-radius: 20px;
	  text-decoration: none;
	  text-align: center;
	  width: auto;               /* evita que se estire */
	  align-self: center;        /* centra el botón dentro de la columna */
	  transition: 0.3s;
	}
	
	.boton-pdf:hover {
	  background-color: #ccc;
	}

/*Zona de actividades*/

.titular-centrado {
  font-weight: bold;
  font-size: 18px;
  color: #000000;
  text-transform: uppercase;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 15px;
}

/* Estructura general */

.texto-plan2 {
  width: 600px;
  min-width: 300px;
  margin-top: 50px;
  margin-left: 0px;
  margin-bottom: 40px;
  display: inline-block;
  vertical-align: top;
  padding-right: 0%;
}

.titulares {
  font-weight: 700;
  font-family: "Helvetica", "Open Sans", sans-serif;
  color: #000000;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.subtitulo {
  margin-top: 25px;
}

/* Texto general */

.texto-de-actividades {
  line-height: 1.6;
  font-size: 18px;
  font-family: "Helvetica", "Open Sans", sans-serif;
  color: #000;
  margin-bottom: 15px;
  margin-right: 20px;
}

.mediacion-artistica {
	margin-top: 20px;
	margin-bottom: 80px;
}

.texto-centrado-actividades {
  font-size: 16px;
  color: #000000;
  line-height: 1.6;
  text-align: center;
}

/*MAS ACTIVIDADES*/

.caja-negra2 {
  background-color: #000;
  color: #fff;
  text-align: center;
  padding: 60px 20px;
  font-family: "Helvetica", "Open Sans", sans-serif;
}

/* Contenedor interior */

.contenido-actividades {
  max-width: 800px;
  margin: 0 auto;
}

.contenido-actividades h2 {
  color: #FFFFFF;
}

/* Título principal */

.caja-negra2 h2 {
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 25px;
  line-height: 1.5;
}

/* Párrafos */

.caja-negra2 p {
  font-size: 15px;
  margin: 20px 0;
}

/* Botones blancos */

.boton-blanco {
  display: inline-block;
  background-color: #fff;
  color: #000;
  padding: 12px 35px;
  border-radius: 20px;
  font-weight: bold;
  text-decoration: none;
  margin: 15px 0 25px;
  line-height: 1.3;
  transition: background 0.3s, color 0.3s;
}

.boton-blanco span {
  font-weight: normal;
  font-size: 14px;
}

.boton-blanco:hover {
  background-color: #ddd;
  color: #000;
}

/*Pagina de Exposicion*/

.botonera {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 110px; /* Espacio entre columnas */
  justify-items: center;
  align-items: center;
  padding: 40px;
  background-color: #fff;
}

.boton {
  width: 300px; /* Ajusta al tamaño de tus imágenes */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.boton img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  cursor: pointer;
}

.boton:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}


/* ----- FOOTER ----- */
    footer {
      background-color: white;
      color: black;
    }

    .footer-top {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 40px;
      background-color: white;
    }

    .footer-top img {
      max-height: 80px;
      margin: 10px;
    }

	.logos {
	 display: flex;
     align-items: center;
     gap: 30px;
   }

    .contacto {
      text-align: left;
      color: black;
    }

    .contacto strong {
      display: block;
      margin-bottom: 5px;
    }
	
	.footer-bottom2 {
      display: flex;
      justify-content: space-between;
      align-items: center;
      background-color: #21b3f3;
      padding: 10px 40px;
      border-top: 1px solid #ccc;
    }
	
    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      background-color: black;
      padding: 15px 40px;
      border-top: 1px solid #ccc;
    }

    .footer-bottom span {
      margin-left: 30px;
      text-decoration: none;
      color: white;
    }

    .footer-bottom a {
      margin-left: 30px;
      text-decoration: none;
      color: white;
      font-weight: bold;
    }

    .footer-bottom a:hover {
      text-decoration: underline;
    }

/* SECCIÓN LOCALIZACIÓN */

body {
  background-color: #000;
  color: #fff;
  font-family: Arial, sans-serif;
}

.contenidoloca {
  background-color: #000;
  padding: 60px 10%;
}

.contenidoloca h2 {
  text-align: center;
  color: #fff;
  margin-bottom: 30px;
}

.textoloca {
  text-align: center;
  color: #fff;
  margin-bottom: 50px;
}

/* Bloque azul de localización */
.localizanos {
  background-color: #21B3F3;
  width: 80%;
  margin: 0 auto 60px;
  border-radius: 10px;
  padding: 40px 0;
}

.caja-info {
  display: flex;
  justify-content: space-around;
  text-align: center;
  color: #000;
}

.columna img {
  width: 60px;
  margin-bottom: 10px;
}

.columna p {
  font-size: 14px;
  line-height: 1.6;
}

/* --- CONTACTANOS --- */

.contactanos {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background-color: #000;
  padding: 60px 0 100px;
}

/* Línea blanca bajo el título */

.linea-blanca {
  width: 120px;
  height: 3px;
  background-color: #fff;
  border: none;
  margin: 0 auto 40px;
}

/* Recuadro blanco centrado */

.recuadro-blanco {
  background-color: #fff;
  width: 60%;
  max-width: 700px;
  border-radius: 10px;
  padding: 40px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Textos internos */

.textos-de-contacto {
  color: #000;
  font-size: 1.3em;
  font-weight: bold;
  margin: 25px 0 15px;
  letter-spacing: 0.5px;
}

/* Contenedor del mapa */

.mapa-container {
  width: 100%;
  max-width: 600px;
  height: 400px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
}

.mapa-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 10px;
}

/* Botón Enlace */

.btn {
  display: inline-block;
  text-align: center;
  padding: 10px 25px;
  border-radius: 25px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-blanco {
  background-color: #fff;
  color: #000;
  border: 2px solid #000;
}

.btn-blanco:hover {
  background-color: #000;
  color: #fff;
  border-color: #21B3F3;
}

/* Pagina de Galeria */

.contenedor-galeria {
  text-align: center;
  margin: 60px auto;
  max-width: 900px;
}

.subtitulo-galeria {
  font-size: 30px;
  font-weight: bold;
  color: #000000;
  margin-bottom: 80px;
}

.resaltado-galeria {
  border-bottom: 4px solid #00AEEF;
}

.contenedor-imagenes-galeria {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 40px;
}

.imagen-galeria {
  background-color: #3dc0f1;
  width: 400px;
  height: 300px;
  margin: 0 10px;
  transition: transform 0.3s;
}

.imagen-centro-galeria {
  width: 800px;
  height: 600px;
}

.boton-galeria {
  background-color: transparent;
  border: none;
  font-size: 40px;
  color: #3dc0f1;
  cursor: pointer;
  transition: 0.3s;
}

.boton-galeria:hover {
  color: #0090c9;
  transform: scale(1.1);
}

.boton-izquierda-galeria {
  position: absolute;
  left: -100px;
}

.boton-derecha-galeria {
  position: absolute;
  right: -100px;
}

.bloque-inferior-galeria {
  background-color: #3dc0f1;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.botonera-galeria {
  display: flex;
  gap: 15px;
}

.boton-inferior-galeria {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: none;
  background-color: #fff;
  cursor: pointer;
  transition: background-color 0.3s;
}

.boton-inferior-galeria:hover {
  background-color: #ddd;
}

.descripcion-galeria {
  background-color: #111;
  color: #fff;
  padding: 30px;
}

.titulo-descripcion-galeria {
  margin-bottom: 15px;
  font-weight: bold;
  text-transform: uppercase;
}

.texto-blanco-galeria {
  font-size: 14px;
  line-height: 1.6;
}

