.elementor-405 .elementor-element.elementor-element-2aca3fe{--display:flex;}/* Start custom CSS for html, class: .elementor-element-114dcea */@import url('https://fonts.googleapis.com/css2?family=Urbanist:wght@400;600;700&display=swap');

:root {
  --primary: #f58220; /* Naranja Pluto */
  --primary-hover: #e07010;
  --bg-color: #111111; /* Fondo oscuro */
  --surface: #1e1e1e; /* Tarjetas o botones */
  --text-main: #ffffff; /* Texto principal */
  --text-muted: #a0a0a0;
  --border-radius: 12px;
  --transition: all 0.3s ease;
}

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

body {
  font-family: 'Urbanist', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ================================
   LINKTREE PAGE STYLES (index.html)
   ================================ */
.linktree-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 40px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.logo-container {
  margin-bottom: 20px;
}

.logo-container img {
  width: 150px;
  max-width: 100%;
  height: auto;
  border-radius: 10px; /* En caso de que pongan el logo cuadrado */
}

.brand-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--primary);
}

.brand-subtitle {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 30px;
}

.links-wrapper {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 40px;
}

.link-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--surface);
  color: var(--text-main);
  text-decoration: none;
  padding: 16px 20px;
  border-radius: var(--border-radius);
  font-weight: 600;
  font-size: 16px;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.link-btn:hover {
  background-color: var(--primary);
  color: #fff;
  transform: translateY(-2px);
  border-color: var(--primary);
}

.link-btn.btn-highlight {
  background-color: var(--primary);
  color: #000;
  border: none;
}

.link-btn.btn-highlight:hover {
  background-color: var(--primary-hover);
  color: #fff;
}

.link-btn i {
  margin-right: 10px;
  font-size: 20px;
}

.footer-social {
  margin-top: auto;
  padding-top: 20px;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: #25D366; /* WhatsApp color */
  color: white;
  border-radius: 50%;
  text-decoration: none;
  font-size: 24px;
  transition: var(--transition);
}

.social-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

/* ================================
   PROJECTS GALLERY (projects.html)
   ================================ */
.gallery-header {
  padding: 20px;
  text-align: center;
  position: sticky;
  top: 0;
  background-color: rgba(17, 17, 17, 0.95);
  backdrop-filter: blur(10px);
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.gallery-header h1 {
  font-size: 20px;
  color: var(--primary);
  margin-bottom: 15px;
}

.back-btn {
  position: absolute;
  left: 20px;
  top: 20px;
  color: var(--text-main);
  text-decoration: none;
  font-size: 24px;
}

.filters {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 10px;
  scrollbar-width: none; /* Firefox */
}
.filters::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.filter-btn {
  background: var(--surface);
  color: var(--text-muted);
  border: none;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition);
}

.filter-btn.active, .filter-btn:hover {
  background: var(--primary);
  color: #000;
}

/* Estilo Masonry (Pinterest) */
.gallery-container {
  padding: 20px;
  columns: 2; /* 2 columnas en movil */
  column-gap: 15px;
}

@media (min-width: 768px) {
  .gallery-container {
    columns: 3;
  }
}

@media (min-width: 1024px) {
  .gallery-container {
    columns: 4;
  }
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 15px;
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  cursor: pointer;
  background-color: var(--surface);
}

.gallery-item img {
  width: 100%;
  display: block;
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.03);
}

.gallery-item .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 15px;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: white;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .overlay {
  opacity: 1;
}

.gallery-item.hide {
  display: none;
}

/* Lightbox Modal */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox img {
  max-width: 90%;
  max-height: 90vh;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  color: white;
  font-size: 30px;
  cursor: pointer;
}/* End custom CSS */