* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Playfair Display", serif;
  background-color: #fefefe;
  color: #333;
  line-height: 1.6;
  scroll-behavior: smooth;
}
/* Header */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  padding: 1.5rem 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
}
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.logo {
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 3px;
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}
.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 300;
  transition: color 0.3s ease;
}
.nav-links a:hover {
  color: #8b7355;
}
/* Hero con Carousel */
.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero-carousel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}
.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.carousel-slide.active {
  opacity: 1;
}
.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}
.hero-content {
  max-width: 800px;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}
/* Controles del Carousel */
.carousel-controls {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 2rem;
  transform: translateY(-50%);
  z-index: 1;
}
.carousel-prev,
.carousel-next {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  font-size: 2rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}
.carousel-prev:hover,
.carousel-next:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}
/* Puntos indicadores */
.carousel-dots {
  position: absolute;
  bottom: 100px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 1;
}
.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.carousel-dot.active {
  background: white;
  transform: scale(1.2);
}
/* Contenido del Hero */
.hero h1 {
  font-size: 4rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
  letter-spacing: 2px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.hero-subtitle {
  font-size: 1.3rem;
  font-weight: 300;
  margin-bottom: 3rem;
  line-height: 1.6;
  opacity: 0.9;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin: 3rem 0;
  flex-wrap: wrap;
}
.stat {
  text-align: center;
}
.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 0.5rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
.stat-label {
  font-size: 0.9rem;
  opacity: 0.8;
  font-weight: 300;
}
.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-primary,
.btn-secondary {
  padding: 1rem 2.5rem;
  text-decoration: none;
  border-radius: 50px;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: 2px solid white;
  font-weight: 500;
}
.btn-primary {
  background: white;
  color: #333;
}
.btn-primary:hover {
  background: transparent;
  color: white;
  transform: translateY(-2px);
}
.btn-secondary {
  background: transparent;
  color: white;
}
.btn-secondary:hover {
  background: white;
  color: #333;
  transform: translateY(-2px);
}
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  text-align: center;
  opacity: 0.7;
  animation: bounce 2s infinite;
  z-index: 1;
}
.scroll-arrow {
  font-size: 1.5rem;
  margin-top: 0.5rem;
}
@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}
/* Galería */
.gallery {
  padding: 8rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}
.gallery h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 4rem;
  letter-spacing: 2px;
}
/* Filtros */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.filter-btn {
  background: transparent;
  border: 1px solid #ddd;
  padding: 0.8rem 1.5rem;
  font-family: inherit;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 1px;
}
.filter-btn.active,
.filter-btn:hover {
  background: #8b7355;
  color: white;
  border-color: #8b7355;
}
/* Grid de galería */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  padding: 2rem 0;
}
.gallery-item {
  background: white;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}
.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}
.image-container {
  height: 300px;
  overflow: hidden;
}
.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover .image-container img {
  transform: scale(1.05);
}
.item-info {
  padding: 1.5rem;
  background: white;
  text-align: center;
}
.item-title {
  font-size: 1.1rem;
  font-weight: 400;
  color: #333;
  margin-bottom: 0.8rem;
  line-height: 1.3;
}
.item-price {
  font-size: 1.3rem;
  font-weight: 300;
  color: #8b7355;
  margin: 0;
  letter-spacing: 1px;
}
/* Parallax */
.parallax-section {
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("img/parallax-bg.jpg");
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: white;
  text-align: center;
}
.parallax-content h3 {
  font-size: 2rem;
  font-weight: 300;
  font-style: italic;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.4;
}
/* Sección del Artista con Video */
.artist {
  padding: 6rem 2rem;
  background: #fafafa;
}
.artist-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
/* Contenedor del Video */
.artist-video {
  position: relative;
}
.video-container {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  background: #000;
}
.video-container video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}
/* Overlay del Video */
.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  opacity: 1;
  transition: opacity 0.3s ease;
  border-radius: 10px;
}
.video-container.playing .video-overlay {
  opacity: 0;
  pointer-events: none;
}
.play-btn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  font-size: 2rem;
  color: #8b7355;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.play-btn:hover {
  background: white;
  transform: scale(1.1);
}
.video-overlay p {
  font-size: 1.1rem;
  font-weight: 300;
  text-align: center;
  margin: 0;
}
/* Biografía del Artista */
.artist-bio h2 {
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 3px;
  color: #8b7355;
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.artist-bio h3 {
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 2rem;
  color: #333;
}
.bio-text {
  margin-bottom: 2.5rem;
}
.bio-text p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
  font-weight: 300;
  color: #555;
}
/* Detalles del Artista */
.artist-details {
  margin-bottom: 2.5rem;
  padding: 1.5rem 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}
.detail {
  display: flex;
  margin-bottom: 1rem;
  align-items: flex-start;
}
.detail:last-child {
  margin-bottom: 0;
}
.detail-label {
  font-weight: 600;
  color: #333;
  min-width: 120px;
  margin-right: 1rem;
}
.detail-value {
  color: #555;
  flex: 1;
}
.artist-signature {
  margin-top: 2rem;
}
.artist-signature img {
  height: 60px;
  opacity: 0.8;
}
/* Contacto */
.contact {
  padding: 6rem 2rem;
  background: white;
}
.contact-container {
  max-width: 1000px;
  margin: 0 auto;
}
.contact-header {
  text-align: center;
  margin-bottom: 4rem;
}
.contact-header h2 {
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 1rem;
  color: #333;
}
.contact-header p {
  font-size: 1.1rem;
  color: #666;
  font-weight: 300;
}
.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
/* Información de Contacto */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}
.contact-item:hover {
  transform: translateY(-3px);
}
.contact-icon {
  font-size: 1.8rem;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f8f8;
  border-radius: 50%;
  flex-shrink: 0;
}
.contact-detail h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #333;
}
.contact-detail p {
  color: #555;
  margin-bottom: 0.3rem;
  line-height: 1.5;
}
.contact-detail small {
  color: #888;
  font-size: 0.85rem;
}
/* Redes Sociales */
.social-section {
  background: white;
  padding: 2.5rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}
.social-section h3 {
  text-align: center;
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 2rem;
  color: #333;
}
.social-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.social-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem 1rem;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}
.social-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.social-link.instagram:hover {
  border-color: #e4405f;
  background: rgba(228, 64, 95, 0.05);
}
.social-link.facebook:hover {
  border-color: #1877f2;
  background: rgba(24, 119, 242, 0.05);
}
.social-link.tiktok:hover {
  border-color: #000000;
  background: rgba(0, 0, 0, 0.05);
}
.social-link.whatsapp:hover {
  border-color: #25d366;
  background: rgba(37, 211, 102, 0.05);
}
.social-icon {
  width: 40px;
  height: 40px;
  display: block;
}
.social-link span {
  color: #333;
  font-weight: 500;
  font-size: 0.9rem;
}
/* Footer */
.footer {
  background: #1a1a1a;
  color: white;
  padding: 3rem 2rem;
  text-align: center;
}
.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-logo {
  font-size: 1.5rem;
  letter-spacing: 3px;
  margin-bottom: 1.5rem;
}
.footer-links {
  margin-bottom: 1.5rem;
}
.footer-links a {
  color: white;
  text-decoration: none;
  margin: 0 1rem;
  transition: color 0.3s ease;
}
.footer-links a:hover {
  color: #8b7355;
}
.footer p {
  font-size: 0.9rem;
  opacity: 0.7;
}
/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  padding: 2rem;
}
.modal-container {
  background: white;
  max-width: 1000px;
  margin: 0 auto;
  height: 90vh;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.close-modal {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  color: #333;
  font-size: 2.5rem;
  cursor: pointer;
  z-index: 10;
  background: rgba(255, 255, 255, 0.9);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}
.close-modal:hover {
  background: white;
}
.modal-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100%;
}
.modal-image {
  background: #f8f8f8;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.modal-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.modal-info {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: white;
}
.modal-info h2 {
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 1rem;
  color: #333;
}
.modal-technique {
  font-size: 1.1rem;
  color: #8b7355;
  margin-bottom: 1.5rem;
  font-weight: 400;
}
.modal-description {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: #666;
}
.modal-details {
  margin-bottom: 2rem;
  padding: 1.5rem 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}
.detail-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.8rem;
}
.detail-item:last-child {
  margin-bottom: 0;
}
.detail-label {
  font-weight: 600;
  color: #333;
}
.modal-price {
  margin-bottom: 2rem;
}
.price {
  font-size: 1.8rem;
  font-weight: 300;
  color: #8b7355;
}
.contact-btn {
  background: #8b7355;
  color: white;
  border: none;
  padding: 1rem 2rem;
  font-family: inherit;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
  width: 100%;
}
.contact-btn:hover {
  background: #756046;
}
/* Responsive */
@media (max-width: 968px) {
  .artist-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .artist-video {
    order: 2;
  }

  .artist-bio {
    order: 1;
  }

  .modal-content {
    grid-template-columns: 1fr;
    overflow-y: auto;
  }

  .modal-image {
    height: 300px;
    padding: 1rem;
  }

  .modal-info {
    padding: 2rem;
  }
}
@media (max-width: 768px) {
  .nav {
    flex-direction: column;
    gap: 1rem;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-stats {
    gap: 1.5rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .carousel-controls {
    padding: 0 1rem;
  }

  .carousel-prev,
  .carousel-next {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }

  .artist {
    padding: 4rem 1.5rem;
  }

  .artist-bio h3 {
    font-size: 2rem;
  }

  .detail {
    flex-direction: column;
  }

  .detail-label {
    min-width: auto;
    margin-bottom: 0.3rem;
  }

  .play-btn {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .social-grid {
    grid-template-columns: 1fr;
  }

  .contact-item {
    padding: 1rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }
}
