@font-face {
  font-family: "Hammersmith One";
  src: url("../assets/fonts/HammersmithOne-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* 2. HK Grotesk - REGULAR (Texto normal) */
@font-face {
  font-family: "HK Grotesk";
  src: url("../assets/fonts/HankenGrotesk-VariableFont_wght.ttf")
    format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* 3. HK Grotesk - BOLD (Negritas) */
@font-face {
  font-family: "HK Grotesk";
  src: url("../assets/fonts/HankenGrotesk-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --primary: #8d2c7b;
  --light: #fdfeff;
  --dark: #1a1a1a;
  --bg-cream: #f6f6f4;

  --font-title: "Hammersmith One", sans-serif;
  --font-body: "HK Grotesk", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  height: 100%;
  margin: 0;
  scroll-behavior: smooth;
}

body {
  background-color: var(--light);
  font-family: var(--font-body);
  color: var(--dark);
  margin: 0;
  line-height: 1.6;
}

h1,
h2,
h3 {
  font-family: var(--font-title);
  text-transform: uppercase;
  color: var(--primary);
  letter-spacing: 0.04em;
}

h1 {
  font-size: 2rem;
}

h2 {
  font-size: 1.5rem;
}

p {
  font-size: 0.95rem;
}

.hero {
  height: 100vh;
  min-height: 500px;
  background-image: url("../assets/babyshower3.webp");
  background-size: cover;
  background-position: center;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero-btn-container {
  margin-top: 2.5rem;
}

.btn-catalog {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: white;
  color: var(--primary);
  border: 2px solid white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-catalog:hover {
  background-color: var(--primary);
  color: white;
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.nav {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  z-index: 100;
  padding: 1.5rem;
  display: flex;
  justify-content: flex-end;
}

.nav-toggle {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 101;
  display: block;
}

.nav-toggle img {
  width: 35px;
  height: auto;
  display: block;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}

.nav-open .nav-toggle img {
  transform: rotate(90deg);
}

.nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;

  position: fixed;
  inset: 0;
  background-color: var(--primary);

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;

  transform: translateX(100%);
  transition: transform 0.4s ease-in-out;
  z-index: 99;
}

.nav-open .nav-menu {
  transform: translateX(0);
}

.nav-menu li a {
  color: white;
  text-decoration: none;
  font-family: var(--font-title);
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 1rem;
  width: 100%;
}

.hero h1 {
  color: white;
  font-family: var(--font-title);
  text-transform: uppercase;
  margin: 0;
  line-height: 1.1;

  font-size: 2.5rem;
  letter-spacing: 2px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero p {
  color: #f0f0f0;
  font-style: italic;
  font-size: 1rem;
  margin-top: 1rem;
  font-weight: 300;
}

.packages-section {
  background-color: var(--light);
  padding: 4rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.wave-decoration {
  position: absolute;
  top: 10%;
  bottom: 10%;
  width: 60px;
  z-index: 0;
  opacity: 0.6;
  pointer-events: none;
}

.wave-left {
  left: 0;
}

.wave-right {
  right: 0;
}

.wave-decoration svg {
  height: 100%;
  width: 100%;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 3rem;
}

.section-header h2 {
  color: var(--primary);
  text-transform: uppercase;
  max-width: 70%;
  line-height: 1.1;
  margin-bottom: 3rem;
}

.crown-icon-small {
  width: 30px;
  height: 30px;
}

.packages-grid {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.package-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.img-wrapper {
  width: 100%;
  max-width: 280px;
  aspect-ratio: 1 / 1;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.package-card:hover .img-wrapper {
  transform: translateY(-5px);
}

.img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.package-card h3 {
  font-family: var(--font-title);
  color: var(--primary);
  font-size: 1.2rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

.package-card p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: #4a4a4a;
  max-width: 300px;
  margin: 0 auto;
  line-height: 1.5;
}

.about {
  padding: 4rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.crown-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  opacity: 0.8;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.about-images {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  min-height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
  will-change: opacity, transform;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease-out;
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s ease-out;
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

.blob {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(235, 180, 227, 0.8) 0%,
    rgba(235, 180, 227, 0) 70%
  );
  filter: blur(40px);
  z-index: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: pulse-blob 6s infinite ease-in-out;
}

.delay-100 {
  transition-delay: 0.1s;
}

.delay-200 {
  transition-delay: 0.2s;
}

.delay-300 {
  transition-delay: 0.3s;
}

.about-images img {
  position: absolute;
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  z-index: 1;
}

.img-1 {
  top: 0;
  left: 10%;
}

.img-2 {
  bottom: 0;
  right: 10%;
}

.about-content {
  text-align: center;
  z-index: 2;
}

.about-content h2 {
  color: var(--primary);
  font-size: 2rem;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}

.about-content p {
  margin-bottom: 2rem;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-dark);
}

.btn-primary {
  display: inline-block;
  background-color: #9d3b88;
  color: white;
  padding: 1rem 2.5rem;
  text-decoration: none;
  font-weight: 600;
  border-radius: 2px;
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--primary);
}

.contact-section {
  background-color: var(--light);
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 0;
}

.contact-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.contact-content {
  padding: 3rem 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--light);
}

.contact-wrapper {
  width: 100%;
  max-width: 450px;
}

.contact-content h2 {
  color: var(--primary);
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
}

.contact-subtitle {
  text-align: center;
  margin-bottom: 2rem;
  color: #666;
  font-size: 1rem;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-card {
  display: flex;
  align-items: center;
  background-color: white;
  padding: 1rem;
  border-radius: 16px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(141, 44, 123, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid transparent;
}

.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(141, 44, 123, 0.15);
  border-color: rgba(141, 44, 123, 0.2);
}

.icon-circle {
  width: 50px;
  height: 50px;
  background-color: #fbf0f9;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
  flex-shrink: 0;
  transition: background-color 0.3s ease;
}

.contact-card:hover .icon-circle {
  background-color: var(--primary);
}

.icon-circle svg {
  width: 24px;
  height: 24px;
  stroke: var(--primary);
  transition: stroke 0.3s ease;
}

.contact-card:hover .icon-circle svg {
  stroke: white;
}

.contact-info {
  display: flex;
  flex-direction: column;
}

.contact-info .label {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: #888;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.contact-info .value {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
}

.site-footer {
  background-color: var(--primary);
  color: white;
  padding: 3rem 1.5rem;
  margin-top: auto;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
}

.footer-brand h3 {
  font-family: var(--font-title);
  font-size: 1.5rem;
  margin: 0 0 0.5rem 0;
  color: white;
  letter-spacing: 0.05em;
}

.footer-brand p {
  font-size: 0.9rem;
  margin: 0;
  opacity: 0.8;
}

.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-nav a {
  color: white;
  text-decoration: none;
  font-size: 0.95rem;
  transition: opacity 0.3s ease;
}

.footer-nav a:hover {
  opacity: 0.7;
}

.footer-copy p {
  margin: 0.2rem 0;
  font-size: 0.8rem;
  opacity: 0.6;
}

@media (min-width: 768px) {
  .nav {
    padding: 2rem 3rem;
  }

  .nav-toggle {
    display: none;
  }

  .nav-menu {
    position: static;
    transform: none;
    background-color: transparent;
    flex-direction: row;
    justify-content: flex-end;
    height: auto;
    padding: 0;
    gap: 40px;
  }

  .nav-menu li a {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.05em;
  }

  .hero h1 {
    font-size: 5rem;
    letter-spacing: 0.2em;
    margin-bottom: 0.5rem;
  }

  .hero p {
    font-size: 1.2rem;
  }

  .btn-catalog {
    width: auto;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }

  .footer-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    text-align: left;
  }

  .footer-nav ul {
    flex-direction: row;
    gap: 2rem;
  }

  .footer-copy {
    text-align: right;
  }
}

@media (min-width: 1024px) {
  html {
    font-size: 110%;
  }

  p,
  li {
    font-size: 1.15rem;
    line-height: 1.8;
  }

  h2 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
  }

  h3 {
    font-size: 1.6rem;
  }

  .nav-menu li a {
    font-size: 1.1rem;
  }

  .contact-info .value {
    font-size: 1.25rem;
  }

  .contact-info .label {
    font-size: 0.85rem;
  }

  .btn-primary {
    font-size: 1.1rem;
    padding: 1rem 2rem;
  }

  .about {
    padding: 6rem 4rem;
  }

  .hero h1 {
    font-size: 6rem;
  }

  .about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
  }

  .about-images {
    max-width: none;
    height: 500px;
    margin: 0;
  }

  .blob {
    width: 800px;
    height: 800px;
    filter: blur(60px);
  }

  .about-images img {
    width: 280px;
    height: 320px;
  }

  .img-1 {
    top: 20px;
    left: 20px;
  }

  .img-2 {
    bottom: 20px;
    right: 60px;
    top: auto;
    left: auto;
  }

  .about-content {
    text-align: left;
    padding-left: 2rem;
  }

  .about-content h2 {
    font-size: 2.5rem;
    letter-spacing: 0.1em;
  }

  .packages-section {
    padding: 6rem 4rem;
  }

  .wave-decoration {
    width: 150px;
  }

  .packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    align-items: start;
  }

  .section-header h2 {
    line-height: 1.2;
  }

  .crown-icon-small {
    width: 50px;
    height: 50px;
  }

  .img-wrapper {
    max-width: 100%;
  }

  .gender-reveal {
    position: relative;
  }

  .gender-reveal::before {
    content: "";
    position: absolute;
    top: 140px;
    left: 140px;
    right: 140px;
    height: 3px;
    background-color: var(--primary);
    z-index: 0;
  }

  .package-card {
    position: relative;
    z-index: 1;
    background-color: transparent;
  }

  .img-wrapper {
    background-color: var(--light);
    position: relative;
    z-index: 2;
  }

  .contact-section {
    flex-direction: column;
    align-items: center;
    padding: 4rem 0;
  }

  .contact-image {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    margin-bottom: 2rem;
  }

  .contact-content {
    width: 100%;
    justify-content: center;
    padding: 2rem;
  }

  .contact-wrapper {
    max-width: 500px;
    text-align: center;
  }

  .contact-card {
    justify-content: flex-start;
    padding: 1rem 2rem;
  }

  .packages-grid.grid-centered {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .grid-centered .package-card {
    max-width: 350px;
  }
}

@keyframes pulse-blob {
  0% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
  }
}
