/* Pastelería Arpa - Estilos comunes */
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Lato:wght@300;400;700&display=swap");


  :root {
    --chocolate: #2C1A0E;
    --chocolate-mid: #4A2C18;
    --caramel: #C8956A;
    --caramel-light: #E8C4A0;
    --cream: #FDF8F0;
    --cream-dark: #F2EAD8;
    --cream-darker: #E8D9C4;
    --white: #FFFFFF;
    --text: #3A2A1A;
    --text-light: #7A6A5A;
    --gold: #B8860B;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  
  html { scroll-behavior: smooth; }
  
  body {
    font-family: 'Lato', sans-serif;
    background: var(--cream);
    color: var(--text);
    overflow-x: hidden;
  }

  /* ========== NAVIGATION ========== */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 0 4rem;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.4s ease;
    background: transparent;
  }

  nav.scrolled {
    background: rgba(44, 26, 14, 0.97);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 30px rgba(0,0,0,0.2);
  }

  .nav-logo img {
    height: 68px;
    padding: 6px 0;
    filter: brightness(0) invert(1);
    transition: opacity 0.3s;
  }

  .nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
  }

  .nav-links a {
    color: rgba(255,255,255,0.88);
    text-decoration: none;
    font-family: 'Lato', sans-serif;
    font-size: 0.82rem;
    font-weight: 400;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    transition: color 0.3s;
    position: relative;
  }

  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 1px;
    background: var(--caramel);
    transition: width 0.3s;
  }

  .nav-links a:hover { color: var(--caramel-light); }
  .nav-links a:hover::after { width: 100%; }

  .nav-cta {
    background: var(--caramel) !important;
    color: white !important;
    padding: 0.6rem 1.4rem !important;
    border-radius: 2px !important;
    letter-spacing: 1.5px !important;
  }
  .nav-cta:hover { background: var(--chocolate-mid) !important; }
  .nav-cta::after { display: none !important; }

  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
  }
  .hamburger span {
    width: 26px; height: 2px;
    background: white;
    transition: all 0.3s;
    display: block;
  }

  /* ========== HERO ========== */
  #hero {
    height: 100vh;
    min-height: 700px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://pasteleriaarpa.com/wp-content/uploads/2024/04/chocolate-cake-served-with-chocolate-bar-1.jpg');
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    animation: heroZoom 12s ease-out forwards;
  }

  @keyframes heroZoom {
    from { transform: scale(1.05); }
    to { transform: scale(1); }
  }

  .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      180deg,
      rgba(20, 10, 5, 0.55) 0%,
      rgba(30, 15, 5, 0.65) 50%,
      rgba(20, 10, 5, 0.80) 100%
    );
  }

  .hero-content {
    position: relative;
    text-align: center;
    color: white;
    padding: 2rem;
    animation: heroFadeUp 1.2s ease-out 0.3s both;
  }

  @keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .hero-eyebrow {
    font-family: 'Lato', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--caramel-light);
    margin-bottom: 1.5rem;
    display: block;
  }

  .hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3.5rem, 8vw, 7rem);
    font-weight: 300;
    line-height: 1.0;
    letter-spacing: -1px;
    margin-bottom: 1rem;
  }

  .hero-title em {
    font-style: italic;
    color: var(--caramel-light);
  }

  .hero-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1rem, 2vw, 1.35rem);
    font-weight: 300;
    font-style: italic;
    color: rgba(255,255,255,0.8);
    margin-bottom: 3rem;
    letter-spacing: 1px;
  }

  .hero-badge {
    display: inline-block;
    border: 1px solid rgba(200, 149, 106, 0.6);
    padding: 0.8rem 2.5rem;
    font-family: 'Lato', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--caramel-light);
    transition: all 0.3s;
  }

  .hero-scroll {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.5);
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    animation: scrollBounce 2s ease-in-out infinite;
  }

  .hero-scroll::after {
    content: '';
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(200,149,106,0.8), transparent);
  }

  @keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
  }

  /* ========== SECTIONS GENERAL ========== */
  section { padding: 7rem 4rem; }

  .section-label {
    font-family: 'Lato', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--caramel);
    display: block;
    margin-bottom: 1rem;
  }

  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--chocolate);
  }

  .section-title em {
    font-style: italic;
    color: var(--caramel);
  }

  .divider {
    width: 60px;
    height: 1px;
    background: var(--caramel);
    margin: 1.5rem 0;
  }

  /* ========== QUIÉNES SOMOS ========== */
  #quienes {
    background: var(--cream);
    padding: 8rem 0 0;
  }

  .quienes-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
  }

  .quienes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-top: 5rem;
    align-items: stretch;
  }

  .quienes-text {
    padding: 5rem 5rem 5rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .quienes-text p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    line-height: 1.85;
    color: var(--text);
    font-weight: 400;
    margin-bottom: 1.5rem;
  }

  .quienes-text p.lead {
    font-size: 1.4rem;
    font-style: italic;
    color: var(--chocolate-mid);
  }

  .values-row {
    display: flex;
    gap: 2rem;
    margin-top: 2.5rem;
  }

  .value-item {
    flex: 1;
    border-top: 2px solid var(--caramel);
    padding-top: 1.2rem;
  }

  .value-item h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--chocolate);
    margin-bottom: 0.4rem;
  }

  .value-item p {
    font-family: 'Lato', sans-serif;
    font-size: 0.82rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
  }

  .quienes-image {
    position: relative;
    overflow: hidden;
  }

  .quienes-image img {
    width: 100%;
    height: 100%;
    min-height: 600px;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
  }

  .quienes-image:hover img { transform: scale(1.03); }

  .quienes-image-badge {
    position: absolute;
    bottom: 2.5rem;
    left: 2.5rem;
    background: var(--chocolate);
    color: white;
    padding: 1.2rem 1.8rem;
  }

  .quienes-image-badge .year {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    font-weight: 300;
    line-height: 1;
    display: block;
    color: var(--caramel-light);
  }

  .quienes-image-badge .since {
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    display: block;
    margin-top: 0.3rem;
  }

  .stats-row {
    background: var(--chocolate);
    padding: 3.5rem 4rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }

  .stat-item {
    text-align: center;
    color: white;
    padding: 1rem;
    border-right: 1px solid rgba(255,255,255,0.1);
  }
  .stat-item:last-child { border-right: none; }

  .stat-item .num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 300;
    color: var(--caramel-light);
    display: block;
    line-height: 1;
  }

  .stat-item .label {
    font-size: 0.72rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    margin-top: 0.5rem;
    display: block;
  }

  /* ========== PRODUCTOS ========== */
  #productos {
    background: var(--cream-dark);
    padding: 7rem 0;
  }

  .productos-header {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 3rem;
  }

  .productos-header-text {}
  
  /* Category tabs */
  .cat-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    max-width: 1400px;
    margin: 0 auto 3.5rem;
    padding: 0 4rem;
  }

  .cat-tab {
    background: transparent;
    border: 1px solid var(--caramel);
    color: var(--chocolate-mid);
    padding: 0.55rem 1.4rem;
    font-family: 'Lato', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.25s;
    border-radius: 1px;
  }

  .cat-tab:hover, .cat-tab.active {
    background: var(--chocolate);
    border-color: var(--chocolate);
    color: white;
  }

  /* Product grid */
  .products-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }

  .product-card {
    background: white;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.35s ease;
    box-shadow: 0 2px 15px rgba(44,26,14,0.06);
  }

  .product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(44,26,14,0.15);
  }

  .product-card.hidden { display: none; }

  .product-img {
    position: relative;
    overflow: hidden;
    padding-top: 75%;
  }

  .product-img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }

  .product-card:hover .product-img img { transform: scale(1.08); }

  .product-cat-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(44,26,14,0.85);
    color: var(--caramel-light);
    font-size: 0.6rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0.3rem 0.7rem;
    backdrop-filter: blur(4px);
  }

  .product-info {
    padding: 1.2rem 1.4rem 1.5rem;
    border-top: 2px solid var(--cream-dark);
  }

  .product-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--chocolate);
    margin-bottom: 0.3rem;
  }

  .product-cat-text {
    font-family: 'Lato', sans-serif;
    font-size: 0.72rem;
    color: var(--text-light);
    letter-spacing: 1.5px;
    text-transform: uppercase;
  }

  /* ========== CAMPAÑAS ========== */
  #campanas {
    background: var(--cream);
    padding: 7rem 0;
  }

  .campanas-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
  }

  .campanas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
  }

  .campana-card {
    position: relative;
    overflow: hidden;
    border-radius: 2px;
    cursor: pointer;
  }

  .campana-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
  }

  .campana-card:hover img { transform: scale(1.06); }

  .campana-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(20,10,5,0.75) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 1.8rem;
  }

  .campana-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: white;
    line-height: 1.2;
  }

  .campana-title em {
    display: block;
    font-size: 0.75rem;
    font-style: normal;
    font-family: 'Lato', sans-serif;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--caramel-light);
    margin-bottom: 0.3rem;
  }

  /* ========== CATÁLOGO ========== */
  #catalogo {
    background: var(--chocolate);
    padding: 8rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  #catalogo::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('https://pasteleriaarpa.com/wp-content/uploads/2024/04/cocoa-powder-texture.jpg');
    background-size: cover;
    opacity: 0.12;
  }

  .catalogo-inner {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
  }

  #catalogo .section-label { color: var(--caramel-light); justify-content: center; display: block; }

  .catalogo-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    color: white;
    margin: 1rem 0 1.5rem;
    font-style: italic;
    line-height: 1.2;
  }

  .catalogo-desc {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.8;
    margin-bottom: 3rem;
    font-style: italic;
  }

  .catalogo-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--caramel);
    color: white;
    text-decoration: none;
    padding: 1rem 2.8rem;
    font-family: 'Lato', sans-serif;
    font-size: 0.78rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: all 0.3s;
    border: 1px solid var(--caramel);
  }

  .catalogo-btn:hover {
    background: transparent;
    color: var(--caramel-light);
    border-color: var(--caramel);
  }

  .catalogo-btn svg {
    width: 16px; height: 16px;
    fill: currentColor;
    flex-shrink: 0;
  }

  /* ========== CONTACTO ========== */
  #contacto {
    background: var(--cream-dark);
    padding: 7rem 0;
  }

  .contacto-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
  }

  .sedes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 4rem 0;
  }

  .sede-card {
    background: white;
    padding: 2.5rem;
    border-top: 3px solid var(--caramel);
    box-shadow: 0 2px 15px rgba(44,26,14,0.06);
    transition: transform 0.3s, box-shadow 0.3s;
  }

  .sede-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(44,26,14,0.12);
  }

  .sede-city {
    font-family: 'Lato', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--caramel);
    display: block;
    margin-bottom: 0.8rem;
  }

  .sede-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--chocolate);
    margin-bottom: 1.5rem;
  }

  .sede-info {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
  }

  .sede-info li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.5;
  }

  .sede-info li .icon {
    width: 16px; height: 16px;
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--caramel);
  }

  .sede-info a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
  }
  .sede-info a:hover { color: var(--caramel); }

  .sede-divider {
    height: 1px;
    background: var(--cream-dark);
    margin: 1.2rem 0;
  }

  .sede-pedidos {
    margin-top: 1.2rem;
    padding-top: 1.2rem;
    border-top: 1px solid var(--cream-darker);
  }

  .sede-pedidos-label {
    font-size: 0.68rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-light);
    display: block;
    margin-bottom: 0.6rem;
  }

  .sede-pedidos a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--chocolate);
    font-size: 0.85rem;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.2s;
  }
  .sede-pedidos a:hover { color: var(--caramel); }

  /* Contact form */
  .contacto-form-section {
    margin-top: 4rem;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: start;
  }

  .contacto-form-text .section-title { font-size: 2.2rem; }
  .contacto-form-text p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-top: 1rem;
    font-style: italic;
  }

  .fabrica-box {
    background: var(--chocolate);
    color: white;
    padding: 2rem;
    margin-top: 2rem;
  }

  .fabrica-box h4 {
    font-family: 'Lato', sans-serif;
    font-size: 0.68rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--caramel-light);
    margin-bottom: 0.8rem;
  }

  .fabrica-box p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    font-style: normal !important;
    margin: 0;
  }

  .contact-form { display: flex; flex-direction: column; gap: 1.2rem; }

  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }

  .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
  }

  .form-group label {
    font-size: 0.68rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--text-light);
    font-family: 'Lato', sans-serif;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    border: 1px solid var(--cream-darker);
    background: white;
    padding: 0.85rem 1rem;
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
    color: var(--text);
    transition: border-color 0.25s;
    outline: none;
    -webkit-appearance: none;
  }

  .form-group input:focus,
  .form-group textarea:focus,
  .form-group select:focus {
    border-color: var(--caramel);
  }

  .form-group textarea { resize: vertical; min-height: 130px; }

  .form-check {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    font-size: 0.82rem;
    color: var(--text-light);
    cursor: pointer;
  }

  .form-check input[type="checkbox"] {
    width: 16px; height: 16px;
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: var(--caramel);
    cursor: pointer;
  }

  .form-check a { color: var(--caramel); text-decoration: none; }

  .btn-submit {
    background: var(--chocolate);
    color: white;
    border: 2px solid var(--chocolate);
    padding: 1rem 2.5rem;
    font-family: 'Lato', sans-serif;
    font-size: 0.78rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    align-self: flex-start;
  }

  .btn-submit:hover {
    background: transparent;
    color: var(--chocolate);
  }

  /* ========== FOOTER ========== */
  footer {
    background: var(--chocolate);
    color: rgba(255,255,255,0.55);
    padding: 4rem 4rem 2.5rem;
  }

  .footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 2.5rem;
  }

  .footer-brand img {
    height: 55px;
    filter: brightness(0) invert(1);
    opacity: 0.8;
    margin-bottom: 1.2rem;
    display: block;
  }

  .footer-brand p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    line-height: 1.7;
    font-style: italic;
    color: rgba(255,255,255,0.5);
  }

  .footer-col h5 {
    font-family: 'Lato', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--caramel-light);
    margin-bottom: 1.2rem;
  }

  .footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
  }

  .footer-col ul a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.25s;
  }
  .footer-col ul a:hover { color: var(--caramel-light); }

  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.3);
  }

  .footer-bottom a {
    color: rgba(255,255,255,0.3);
    text-decoration: none;
    margin-left: 1.5rem;
    transition: color 0.25s;
  }
  .footer-bottom a:hover { color: rgba(255,255,255,0.6); }

  /* ========== LIGHTBOX ========== */
  .lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(10,5,2,0.92);
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    padding: 2rem;
    animation: fadeIn 0.2s ease;
  }

  .lightbox.open { display: flex; }

  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  .lightbox-content {
    background: white;
    max-width: 500px;
    width: 100%;
    overflow: hidden;
    animation: slideUp 0.3s ease;
  }

  @keyframes slideUp {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
  }

  .lightbox-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
  }

  .lightbox-body {
    padding: 2rem 2.2rem 2.5rem;
  }

  .lightbox-cat {
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--caramel);
    display: block;
    margin-bottom: 0.5rem;
  }

  .lightbox-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 500;
    color: var(--chocolate);
    margin-bottom: 1rem;
    line-height: 1.2;
  }

  .lightbox-desc {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.75;
    font-style: italic;
  }

  .lightbox-close {
    position: absolute;
    top: 2rem; right: 2rem;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 1.5rem;
    width: 40px; height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s;
  }
  .lightbox-close:hover { background: rgba(255,255,255,0.1); }

  /* ========== REVEAL ANIMATIONS ========== */
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* ========== MOBILE ========== */
  @media (max-width: 1100px) {
    .products-grid { grid-template-columns: repeat(3, 1fr); }
  }

  @media (max-width: 900px) {
    nav { padding: 0 2rem; }
    section { padding: 5rem 2rem; }
    .quienes-grid { grid-template-columns: 1fr; }
    .quienes-text { padding: 3rem 0; }
    .quienes-image img { min-height: 400px; }
    .stats-row { grid-template-columns: repeat(2, 1fr); padding: 3rem 2rem; }
    .sedes-grid { grid-template-columns: 1fr; }
    .campanas-grid { grid-template-columns: repeat(2, 1fr); }
    .contacto-form-section { grid-template-columns: 1fr; gap: 3rem; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .products-grid { grid-template-columns: repeat(2, 1fr); padding: 0 2rem; }
    .cat-tabs, .productos-header { padding: 0 2rem; }
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .quienes-inner, .campanas-inner, .contacto-inner { padding: 0 2rem; }
  }

  @media (max-width: 600px) {
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .campanas-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
    .form-row { grid-template-columns: 1fr; }
    .valores-row { flex-direction: column; }
  }

  /* Mobile nav */
  .mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--chocolate);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
  }
  .mobile-nav.open { display: flex; }
  .mobile-nav a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 300;
    font-style: italic;
    transition: color 0.2s;
  }
  .mobile-nav a:hover { color: var(--caramel-light); }
  .mobile-close {
    position: absolute;
    top: 2rem; right: 2rem;
    background: none; border: none;
    color: white; font-size: 1.8rem;
    cursor: pointer;
  }
  /* ========== COOKIE BANNER ========== */
  .cookie-banner {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 9000;
    background: var(--chocolate);
    color: white;
    padding: 1.5rem 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    box-shadow: 0 -4px 30px rgba(0,0,0,0.3);
    transform: translateY(100%);
    transition: transform 0.4s ease;
  }
  .cookie-banner.visible { transform: translateY(0); }
  .cookie-text {
    font-size: 0.83rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.6;
    flex: 1;
  }
  .cookie-text strong { color: var(--caramel-light); }
  .cookie-text a { color: var(--caramel); text-decoration: none; }
  .cookie-text a:hover { text-decoration: underline; }
  .cookie-btns {
    display: flex;
    gap: 0.8rem;
    flex-shrink: 0;
  }
  .cookie-accept {
    background: var(--caramel);
    color: white;
    border: 1px solid var(--caramel);
    padding: 0.6rem 1.6rem;
    font-family: 'Lato', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.25s;
  }
  .cookie-accept:hover { background: #b07d52; border-color: #b07d52; }
  .cookie-reject {
    background: transparent;
    color: rgba(255,255,255,0.6);
    border: 1px solid rgba(255,255,255,0.25);
    padding: 0.6rem 1.6rem;
    font-family: 'Lato', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.25s;
  }
  .cookie-reject:hover { border-color: rgba(255,255,255,0.6); color: white; }
  @media (max-width: 768px) {
    .cookie-banner { flex-direction: column; padding: 1.5rem 1.5rem; align-items: flex-start; }
    .cookie-btns { width: 100%; }
    .cookie-accept, .cookie-reject { flex: 1; text-align: center; }
  }

  /* Fresco grid responsive */
  .fresco-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-bottom: 0;
  }
  @media (max-width: 900px) {
    .fresco-grid { grid-template-columns: 1fr; }
  }

  /* Product badges */
  .product-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-top: 6px;
  }
  .product-badge {
    font-size: 0.68rem;
    padding: 2px 8px;
    border-radius: 10px;
    font-family: 'Lato', sans-serif;
    letter-spacing: 0.5px;
  }
  .badge-green { background: #EAF3DE; color: #3B6D11; }
  .badge-teal { background: #E1F5EE; color: #0F6E56; }

  /* Descripción en tarjeta */
  .product-cat-text {
    font-size: 0.78rem;
    color: var(--text-light);
    line-height: 1.4;
    margin-top: 2px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
