
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

body {
  background-color: #f5f5f5;
  color: #222;
  line-height: 1.6;
}

header {
  background-color: #222;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  flex-wrap: wrap;
}

.img-logo {
  height: 60px;
  width: auto;
}

nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

nav a:hover {
  color: #b5b5b5;
}

.contenedor-buscador {
  flex: 1;
  display: flex;
  justify-content: center;
  margin-top: 0.5rem;
}

.buscador {
  background: #333;
  padding: 0.4rem 0.8rem;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  width: 250px;
}

.buscador input {
  border: none;
  background: transparent;
  color: #fff;
  outline: none;
  width: 100%;
  padding: 8px 35px 8px 10px;
}

.buscador button {
  background: #555;
  color: #fff;
  border: none;
  border-radius: 20px;
  padding: 0.3rem 0.8rem;
  cursor: pointer;
  transition: background-color 0.3s;
}

.buscador button:hover {
  background: #777;
}

.buscador i {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #666;
  font-size: 16px;
  cursor: pointer;
}

.main-title-section {
  text-align: center;
  background: #fff;
  padding: 0;
}

.hero-fondo {
  background-image: url("../imagenes/fondo-portada.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
  text-align: center;
  padding: 8rem 2rem;
  border-radius: 0; 
  position: relative;
  overflow: hidden;
}

.main-title-section h1 {
  color: white;                   
  text-transform: uppercase;       
  text-align: center;             
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5); 
  font-size: 2.5rem;              
  line-height: 1.3;
  margin-bottom: 1rem;
}

.main-title-section h1 span {
  display: block;                  
  font-size: 3rem;                
  margin-top: 0.3em;
}

.hero-fondo ::after {
  content: "";
  position: absolute;
    inset: 0;
    background: #00000050;
}

.hero-fondo .botones-intro {
  position: relative;
  z-index: 2;
}

.hero-fondo p {
  margin-top: 1rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

.hero-fondo .btn-intro {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid #fff;
  color: #fff;
  transition: all 0.3s;
}

.hero-fondo .btn-intro:hover {
  background-color: #fff;
  color: #222;
}

.main-title-section p {
  margin-top: 1rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  color: #444;
  font-size: 1.1rem;
}

.botones-intro {
  margin-top: 2rem;
}

.btn-intro {
  background-color: #222;
  color: #fff;
  border: none;
  border-radius: 25px;
  padding: 0.8rem 1.8rem;
  margin: 0.5rem;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-intro:hover {
  background-color: #555;
  transform: scale(1.05);
}

.proyectos {
  background-color: #fff;
  padding: 60px 20px;
}

.titulo-seccion {
  display: flex;
  align-items: center;
  border-left: 5px solid black; 
  padding-left: 10px;
  margin-bottom: 25px;
}

.section-title {
  font-size: 1.8rem;
  color: black;
  margin: 0;
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.section-title a {
  color: #000000;
  font-size: 1rem;
  text-decoration: none;
  font-weight: normal;
}

.section-title a:hover {
  text-decoration: underline;
}

.contenedor-proyecto {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

.proyecto {
  width: 300px;
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  background-color: #fafafa;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.proyecto img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  border-radius: 15px 15px 0 0;
}

.desc-info {
  bottom: 10px;
  left: 15px;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
  font-size: 0.9rem;
  display: flex;
  flex-direction: column;
}

.desc-info .descripcion {
  font-weight: bold;
  font-size: 1rem;
}

.proyecto-descripcion {
  font-size: 0.9rem;
  color: #444;
  padding: 15px;
  line-height: 1.4;
}

.dots-container {
  display: flex;
  justify-content: center;
  margin-top: 25px;
}

.dot {
  height: 10px;
  width: 10px;
  margin: 0 5px;
  background-color: #ccc;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.3s;
}

.dot.active,
.dot:hover {
  background-color: black;
}

.desc-info {
  text-align: center;
  font-size: 0.9rem;
  color: #444;
}

.spacing-lg {
  padding: 60px 40px;
  background-color: #fff;
}

.artistas-scroll {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 10px;
}

.artistas-scroll::-webkit-scrollbar {
  display: none;
}

.artist-home {
  flex: 0 0 auto;
  width: 220px;
  border-radius: 20px;
  overflow: hidden;
  background-color: #f5f5f5;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  scroll-snap-align: start;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.artist-home:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.artist-home img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.artist-home:hover img {
  filter: grayscale(0%);
  transform: scale(1.05);
}

.artist-name {
  font-weight: 700;
  text-transform: uppercase;
  color: #333;
  margin: 15px 0 5px;
  font-size: 1.1rem;
}

.artist-desc {
  font-size: 0.9rem;
  color: #666;
  padding: 0 15px 20px;
  line-height: 1.4;
}

.nosotros {
  background-color: #e1e1e1;
  padding: 3rem 2rem;
  text-align: center;
}

.nosotros h2 {
  color: #111;
  margin-bottom: 1rem;
}

.nosotros p {
  color: #444;
  max-width: 600px;
  margin: 0 auto 2rem auto;
}

.form-container {
  max-width: 420px;
  background: #fff;
  margin: 5rem auto;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.12);
}

.form-container h2 {
  text-align: center;
  margin-bottom: 1.5rem;
  font-weight: 700;
  color: #111;
}

.form-box {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-box label {
  font-weight: 600;
  font-size: 0.95rem;
  color: #333;
}

.form-box input {
  border: 1px solid #ccc;
  padding: 0.8rem;
  border-radius: 10px;
  font-size: 1rem;
  outline: none;
  transition: all .25s;
}

.form-box input:focus {
  border-color: #000;
  box-shadow: 0 0 4px rgba(0,0,0,0.2);
}

.alt-link {
  text-align: center;
  margin-top: 0.8rem;
  font-size: 0.9rem;
}

.alt-link a {
  color: #000;
  font-weight: 600;
  text-decoration: none;
}

.alt-link a:hover {
  text-decoration: underline;
}

.notificaciones .contenido {
  max-width: 650px;
  margin: 4rem auto;
  background: #fff;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.notificaciones h2 {
  margin-bottom: 1.5rem;
  text-align: center;
  font-weight: 700;
}

.notificacion-item {
  background: #f8f8f8;
  padding: 1rem 1.2rem;
  border-radius: 12px;
  margin-bottom: 1rem;
  border-left: 4px solid black;
}

.notificacion-item span {
  font-size: 0.85rem;
  color: #666;
}

.perfil-box {
  max-width: 900px;
  margin: 4rem auto;
  background: #fff;
  padding: 2rem;
  border-radius: 25px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.12);
}

.perfil-info {
  text-align: center;
  margin-bottom: 2rem;
}

.foto-perfil {
  width: 140px;
  height: 140px;
  border-radius: 100px;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 3px solid #222;
}

.perfil-info h3 {
  font-size: 1.4rem;
  font-weight: 700;
}

.perfil-seccion {
  margin-top: 2rem;
}

.perfil-seccion h3 {
  margin-bottom: 0.7rem;
  font-size: 1.2rem;
  font-weight: 700;
  border-bottom: 2px solid #000;
  display: inline-block;
  padding-bottom: 4px;
}

.perfil-seccion ul {
  margin-top: .5rem;
  padding-left: 1.2rem;
  color: #444;
}

.footer {
  background-color: #222;
  color: #ccc;
  padding: 2rem;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-logo-img {
  width: 100px;
  margin-bottom: 1rem;
}

.footer-column {
  flex: 1 1 300px;
  margin: 1rem;
}

.footer-links-2col {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}

.footer-links-2col a {
  color: #bbb;
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-links-2col a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid #444;
  margin-top: 2rem;
  padding-top: 1rem;
  text-align: center;
  font-size: 0.8rem;
}

.footer-bottom a {
  color: #999;
  text-decoration: none;
}

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