@import url('https://fonts.googleapis.com/css2?family=Tinos:ital,wght@0,400;0,700;1,400;1,700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: -apple-system, 'Tinos', 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', 'EB Garamond', sans-serif;
    line-height: 1.6;
    color: #DBD8F2;
    background-color:  #635D8C ;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Utilidades */
.text-center {
    text-align: center;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    background-color: #DBD8F2;
    border-bottom: 1px solid #DBD8F2;
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    font-size: 2rem;
    font-weight: 500;
    color: #635D8C;
}

.nav {
    display: none;
    gap: 2rem;
}

.nav-link {
    color: ##635D8C;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #635D8C;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.icon {
    width: 24px;
    height: 24px;
    color: #374151;
    cursor: pointer;
}

.icon-small {
    width: 20px;
    height: 20px;
}

.menu-icon {
    display: block;
}

@media (min-width: 768px) {
    .nav {
        display: flex;
    }
    .menu-icon {
        display: none;
    }
}

/* Hero Section */
.hero {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;      /* centra verticalmente */
  justify-content: center;  /* lo dejamos igual */
  overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background-color: #635D8C;
}

.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;              /* ocupa todo el ancho del hero */
  max-width: 1200px;        /* opcional: limita el ancho máximo */
  text-align: left;
  padding-left: 40px;       /* margen izquierdo que pediste */
  padding-right: 1rem;
  box-sizing: border-box;
}


.hero-title {
    font-family: "Tinos", serif;
    font-weight: 700;
    font-style: normal;
    font-size: 4rem;
    text-align: left;

}

}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

/* Featured Section */
.featured-card {
  background-color: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
  overflow: hidden;
  transition: box-shadow 0.3s;
  cursor: pointer;

  /* LAYOUT: imagen a la izquierda, contenido a la derecha */
  display: flex;
  flex-direction: row;      /* fila en desktop */
  align-items: stretch;     /* que ambos hijos llenen la altura */
}

/* Imagen (lado izquierdo) */
.featured-image {
  flex: 0 0 50%;            /* ocupa la mitad izquierda; ajusta si quieres otro ancho */
  height: auto;
  min-height: 300px;        /* garantiza una altura mínima; ajusta según diseño */
  overflow: hidden;
  margin: 0;                /* sin margen */
  padding: 0;
}

.featured-image img {
  display: block;           /* elimina gaps inline */
  width: 100%;
  height: 100%;
  object-fit: cover;        /* rellena sin deformar */
  border-top-left-radius: 1rem;
  border-bottom-left-radius: 1rem;
}

/* Contenido (lado derecho) */
.featured-content {
  flex: 1 1 50%;
  padding: 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;  /* centra verticalmente el texto */
  text-align: left;
}

/* Mantener estilos existentes */
.category {
  color: #ec4899;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.featured-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1rem;
}

.link-button {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: #ec4899;
  font-weight: 600;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.3s;
  padding: 0;
}

.link-button:hover {
  color: #db2777;
}

/* Hover shadow (opcional) */
.featured-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
}

/* RESPONSIVE: en pantallas pequeñas apilar verticalmente */
@media (max-width: 768px) {
  .featured-card {
    flex-direction: column;
  }
  .featured-image {
    flex: 0 0 auto;
    min-height: 200px;
  }
  .featured-image img {
    border-top-left-radius: 1rem;
    border-bottom-left-radius: 0;
    border-top-right-radius: 1rem;
    border-bottom-right-radius: 0;
  }
  .featured-content {
    padding: 1.5rem;
    text-align: left;
  }
}

@media (min-width: 768px) {
    .featured-card {
        flex-direction: row;
    }
    .featured-image {
        width: 50%;
        height: auto;
        text-align: left;
    }
    .featured-content {
        width: 50%;
    }
}

/* Welcome Section */
.welcome-section {
    padding: 4rem 0;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #DBD8F2;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3rem;
    }
}

.welcome-text {
    font-size: 1.25rem;
    color: #DBD8F2;
    max-width: 48rem;
    margin: 0 auto 1.5rem;
    line-height: 1.75;
}

.welcome-subtext {
    font-size: 1.125rem;
    color: #DBD8F2;
    max-width: 42rem;
    margin: 0 auto;
}

/* Product Guides Section */
.product-guides-section {
    background-color: #635D8C;
    padding: 5rem 0;
}

.section-header {
    margin-bottom: 3rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #635D8C;
    margin-top: 1rem;
}

.grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.card {
    background-color: #ffffff;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: box-shadow 0.3s;
    cursor: pointer;
}

.card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.card-image {
    height: 500px;
    background: linear-gradient(to bottom right, #ddd6fe, #fbb6ce);
}
.card-image img {
    width: 100%;      
    height: 500px;   
    object-fit: cover;  
    border-radius: 0.5rem 0.5rem 0 0;
}


.card-content {
    padding: 1.5rem;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

/* Shop Section */
.shop-section {
    padding: 5rem 0;
}

.shop-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.product-card {
    cursor: pointer;
}

.product-image {
    aspect-ratio: 1;
    background: linear-gradient(to bottom right, #fce7f3, #f3e8ff);
    border-radius: 0.5rem;
    margin-bottom: 0.75rem;
    transition: transform 0.3s;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.product-name {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.product-brand {
    font-size: 0.875rem;
    color: #4b5563;
    margin-bottom: 0.5rem;
}

.product-price {
    font-weight: 700;
    color: #1f2937;
}

/* Registry Section */
.registry-section {
    background: linear-gradient(to bottom right, #f472b6, #c084fc);
    padding: 5rem 0;
}

.heart-icon {
    width: 64px;
    height: 64px;
    color: #ffffff;
    margin: 0 auto 1.5rem;
}

.registry-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .registry-title {
        font-size: 3rem;
    }
}

.registry-text {
    font-size: 1.25rem;
    color: #ffffff;
    max-width: 42rem;
    margin: 0 auto 2rem;
}

.cta-button {
    background-color: #ffffff;
    color: #ec4899;
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 1.125rem;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #f9fafb;
}

/* Trust Section */
.trust-section {
    background-color: #635D8C;
    padding: 5rem 0;
}

.trust-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
    max-width: 56rem;
    margin-left: auto;
    margin-right: auto;
}

.trust-text {
    font-size: 1.125rem;
    color: #4b5563;
    line-height: 1.75;
    max-width: 56rem;
    margin: 0 auto;
}

/* Footer */
.footer {
    background-color: #635D8C;
    color: #ffffff;
    padding: 3rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: #f9a8d4;
    margin-bottom: 1rem;
}

.footer-tagline {
    color: #9ca3af;
    font-size: 0.875rem;
}

.footer-title {
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: #9ca3af;
    font-size: 0.875rem;
}

