/* assets/css/styles.css - VERSIÓN CORREGIDA */

.scroll-smooth-horizontal {
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.scroll-smooth-horizontal>div {
    scroll-snap-align: start;
}

.page {
    display: none;
}

.page.active {
    display: block;
}

.prose h2 {
    font-family: 'Playfair Display', serif;
    color: #3D4A3D;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.project-notice-banner {
    background-color: #FDFBF5;
    color: #3D4A3D;
    padding: 0.75rem 1rem;
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.project-notice-banner.hidden {
    transform: translateY(-100%);
}

.project-notice-banner .container-notice {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.project-notice-banner p {
    margin: 0;
    font-size: 0.9rem;
    text-align: center;
    flex-grow: 1;
}

.project-notice-banner button {
    background: none;
    border: none;
    color: #3D4A3D;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    padding: 0 0.5rem;
}

/* Hemos eliminado .btn-primary y .btn-primary:hover.
  Ahora debes aplicar sus estilos directamente en el HTML.
  Mira el Paso 2 para ver cómo.
*/

.product-card-image {
    transition: transform 0.3s ease-in-out;
}

.product-card:hover .product-card-image {
    transform: scale(1.05);
}

/* También hemos eliminado .blog-card:hover h2.
  Tu archivo blog.html ya lo maneja correctamente con `group-hover`.
*/