@charset "UTF-8";
/* main.scss */
/* base/_reset.scss */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, sans-serif;
  line-height: 1.5;
}

/* base/_variables.scss */
:root {
  /* COLORS */
  --color-primary: #00aaff;
  --color-secondary: #ffffffaa;
  --color-accent: #3b82f6;
  --color-text: #e5e7eb;
  --color-light: #ffffff;
  --color-bg: #000;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 2rem;
  --radius: 0.75rem;
  /* WATER SYSTEN  */
  --water-highlight: rgba(255, 255, 255, 0.95);
  --water-highlight-soft: rgba(255, 255, 255, 0.4);
  --water-mid: rgba(0, 120, 255, 0.15);
  --water-deep: rgba(0, 80, 200, 0.2);
  --water-deep-mid: rgba(0, 150, 255, 0.1);
  --water-deep-soft: rgba(0, 0, 0, 0.15);
  --water-shadow: rgba(0, 0, 0, 0.2);
  /* SHADOWS */
  --shadow-highlight: rgba(255, 255, 255, 0.8);
  --shadow-mid: rgba(0, 0, 0, 0.25);
  --shadow-soft: rgba(0, 0, 0, 0.3);
  --shadow-light: rgba(100, 20, 0, 0.6);
  --shadow-blue: rgba(50, 70, 150, 0.7);
  /* SHAPE */
  --radius-round: 50%;
  /* FONT DIMENSIONS */
  --font-size-small: 14px;
  --font-size-medium: 16px;
  --font-size-large: 18px;
  /* FONT FAMILIES */
  --font-family-primary: 'Poppins', sans-serif;
  /* FONT WEIGHTS */
  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-bold: 600;
  /* FILTERS */
  --filter-soft-blur: blur(4px);
  --filter-blur: blur(12px);
}

/* layout/_header.scss */
#header {
  display: grid;
  position: relative;
  align-items: center;
  max-height: 10dvh;
  width: 100%;
}

.header-content {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  position: relative;
  z-index: 10;
  /* 🌊 Efecto agua */
  background: radial-gradient(circle at 20% 30%, var(--water-highlight-soft), transparent 40%), radial-gradient(circle at 80% 70%, var(--water-mid), transparent 50%), linear-gradient(135deg, rgba(0, 80, 200, 0.2), rgba(0, 150, 255, 0.15), rgba(0, 0, 0, 0.6));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

/* zona izquierda */
.header-left {
  display: flex;
  align-items: center;
  height: 100%;
}

/* logo */
.logo {
  display: block;
  width: auto;
  height: 70%;
  border-radius: var(--radius-round);
  object-fit: cover;
  transition: transform 0.3s ease;
}
.logo:hover {
  transform: scale(1.05);
}

/* título central */
.title {
  text-align: center;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.05em;
  transform: translateY(-10px);
}

/* menú */
#liquid-menu {
  display: flex;
  justify-content: flex-end;
}

/* layout/_sections.scss */
section {
  padding: var(--spacing-lg);
}

.section-title {
  font-size: 2rem;
  margin-bottom: var(--spacing-md);
}

.footer {
  margin-top: 4rem;
  padding: 3rem 2rem 1.5rem;
  position: relative;
  background: linear-gradient(180deg, #1a1a1a 0%, #111 100%);
  color: #ddd;
}
.footer__container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.footer__section h4 {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  color: #fff;
}
.footer__section p,
.footer__section li,
.footer__section a {
  font-size: 0.9rem;
  color: #aaa;
}
.footer__section ul {
  list-style: none;
  padding: 0;
}
.footer__section a {
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer__container {
  display: flex;
  justify-content: space-between;
  align-items: start;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer__section li {
  list-style: none;
}
.footer__section li svg {
  width: 1rem;
  height: 1rem;
  fill: #aaa;
  transition: transform 0.25s ease, filter 0.25s ease, fill 0.25s ease;
}
.footer__section li svg:hover {
  fill: #fff;
  transform: scale(1.2);
  filter: drop-shadow(0 0 4px rgba(77, 163, 255, 0.8));
}
.footer__section a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(28px, 2.5vw, 34px);
  height: clamp(28px, 2.5vw, 34px);
  transition: all 0.25s ease;
}
.footer__section svg {
  width: 60%;
  height: 60%;
  fill: #aaa;
  transition: fill 0.25s ease;
}

.footer__social ul {
  display: flex;
  gap: 1rem;
  padding: 0;
}
.footer__social li {
  list-style: none;
}
.footer__social img {
  width: 2.2rem;
  height: 2.2rem;
  transition: transform 0.25s ease, filter 0.25s ease;
}
.footer__social img:hover {
  transform: scale(1.2);
  filter: drop-shadow(0 0 4px rgba(77, 163, 255, 0.8));
}

.footer__bottom {
  margin-top: 2rem;
  padding-top: 1rem;
  text-align: center;
  font-size: 0.8rem;
  color: #999;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__contact p {
  color: #ddd;
  font-size: 0.95rem;
}

.footer__mail {
  color: #ddd;
  text-decoration: none;
  transition: color 0.25s ease, text-decoration 0.25s ease;
}
.footer__mail:hover {
  color: var(--color-primary);
  filter: drop-shadow(0 0 4px rgba(77, 163, 255, 0.6));
}

.back-to-top {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 16px rgba(77, 163, 255, 0.8);
}
.back-to-top {
  z-index: 10;
}

/* components/_buttons.scss */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.95rem;
  font-weight: var(--font-weight-bold);
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s ease;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn:active {
  transform: translateY(0);
}

/* VARIANTES (fuera del bloque .btn) */
.btn--primary {
  background: var(--color-accent);
  color: #fff;
}
.btn--primary:hover {
  opacity: 0.9;
}

.btn--secondary {
  background: transparent;
  border: 1px solid var(--color-accent);
  color: var(--color-accent);
}
.btn--secondary:hover {
  background: var(--color-accent);
  color: #fff;
}

/* components/_cards.scss */
.project-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: var(--spacing-md);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.02), rgba(0, 0, 0, 0.4));
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  transition: all 0.25s ease;
  /* hover */
}
.project-card:hover {
  transform: translateY(-6px);
  border-color: var(--color-accent);
}
.project-card h3 {
  margin-bottom: var(--spacing-sm);
  font-size: 1.2rem;
}
.project-card p {
  font-size: 0.95rem;
  opacity: 0.75;
  line-height: 1.4;
}
.project-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: var(--spacing-md);
}
.project-card__meta li {
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-bg);
  list-style: none;
}
.project-card a {
  margin-top: var(--spacing-md);
  font-size: 0.85rem;
  text-decoration: none;
  color: var(--color-accent);
  transition: opacity 0.2s ease;
}
.project-card a:hover {
  opacity: 0.7;
}

#liquid-menu {
  position: relative;
  width: 320px;
  height: 320px;
}

.drop {
  will-change: transform;
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-light);
  font-weight: var(--font-weight-bold);
  backdrop-filter: var(--filter-blur);
  border-radius: var(--radius-round);
  background: radial-gradient(circle at 30% 25%, var(--water-highlight), var(--water-highlight-soft) 15%, transparent 30%), radial-gradient(circle at 70% 75%, var(--water-deep-soft), transparent 40%), radial-gradient(circle at center, var(--water-deep), var(--water-mid));
  box-shadow: inset 0 10px 15px var(--water-highlight), inset 0 -10px 30px var(--shadow-soft), 0 8px 25px var(--shadow-mid);
  cursor: pointer;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.drop::before {
  content: "";
  position: absolute;
  top: 18%;
  left: 25%;
  width: 30%;
  height: 20%;
  background: var(--water-highlight);
  border-radius: var(--radius-round);
  filter: var(--filter-soft-blur);
}

.drop::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-round);
  box-shadow: inset var(--water-highlight), inset var(--shadow-soft);
}

.drop:hover {
  transform: scale(1.8);
}

.back-drop {
  background: radial-gradient(circle at 30% 30%, var(--water-highlight), var(--water-mid) 50%, var(--water-deep), var(--water-shadow) 80%);
  font-size: 18px;
  opacity: 0.9;
}

.back-to-top {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}
.back-to-top:hover {
  background: var(--color-primary-dark);
  transform: translateY(-5px);
}

.tech-section {
  padding: 4rem 2rem;
  text-align: center;
  cursor: pointer;
}
.tech-section__title h2 {
  background: var(--primary);
  border-radius: 0.75rem;
  padding: 1rem;
  box-shadow: inset -10px -10px 10px rgba(0, 0, 0, 0), inset 10px 10px 10px rgba(255, 255, 255, 0.7);
}
.tech-section__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 2rem;
  margin-top: 2rem;
}
.tech-section__group {
  flex: 1 1 300px;
  padding: 1.5rem;
  background: var(--primary);
  border-radius: 0.75rem;
  box-shadow: inset -10px -10px 10px rgba(0, 0, 0, 0.7), inset 10px 10px 10px rgba(255, 255, 255, 0.7);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.tech-section__group:hover {
  transform: translateY(-6px);
  box-shadow: inset -6px -6px 8px rgba(0, 0, 0, 0.6), inset 6px 6px 8px rgba(255, 255, 255, 0.6), 0 10px 20px rgba(0, 0, 0, 0.4);
}
.tech-section__group h4 {
  margin-bottom: 1rem;
  font-size: 1.3rem;
  letter-spacing: 1px;
}
.tech-section__group ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.tech-section__group li {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tech-section__group li img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.tech-section__group li img {
  transition: transform 0.2s ease;
}

.tech-section__group li:hover img {
  transform: scale(1.15);
}

/* pages/_home.scss */
#main-container {
  padding-top: 15dvh;
}

.hero {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: var(--spacing-lg);
  margin-top: 2rem;
}
.hero__content {
  max-width: 800px;
}
.hero__title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
}
.hero__subtitle {
  margin-top: var(--spacing-md);
  font-size: 1.25rem;
  opacity: 0.8;
  max-width: 600px;
}
.hero__actions {
  margin-top: var(--spacing-lg);
  display: flex;
  gap: var(--spacing-md);
}

.hero__content {
  text-align: center;
}

.projects {
  padding: var(--spacing-lg);
}
.projects__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-lg);
}

.about-preview {
  display: flex;
  flex-direction: column; /* 🔥 clave */
  align-items: center;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  gap: var(--spacing-md);
  scroll-margin-top: 100px;
}

.tech-block ul {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-md);
}

.tech-block img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

/*# sourceMappingURL=main.css.map */
