    :root {
      --bg: #ffffff;
      --text: #222;
      --muted: #555;
      --gold: #c4a159;
      --border: #e0e0e0;
      --radius: 12px;
      --shadow: 0 8px 24px rgba(0,0,0,0.08);
      --maxw: 1200px;
    }

    /* Reset y base */

    	.logoExpansion{
	  height: 55px;
	  margin: 0.5rem 0rem;
	}

    * { box-sizing: border-box; }
    html, body { margin: 0; padding: 0; background: var(--bg); color: var(--text); }
    body { font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji"; line-height: 1.6; }
    img { display: block; width: 100%; height: auto; border-radius: var(--radius); }
    a { color: var(--gold); text-decoration: none; }
    .container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

    /* Navbar minimalista */
    .nav {
      position: fixed; top: 0; left: 0; right: 0;
      display: flex; align-items: center; justify-content: center;
      height: 64px; z-index: 20;
      background: #cf102d; backdrop-filter: blur(6px);
      border-bottom: 1px solid var(--border);
    }
    .nav .brand {
      font-family: "Playfair Display", serif; font-weight: 600; letter-spacing: 0.4px;
      color: var(--text);
    }

    /* Hero */
    .hero {
      position: relative; min-height: 92vh; display: flex; align-items: center; justify-content: center;
      isolation: isolate; overflow: hidden;
    }
    .hero::before {
      content:""; position: absolute; inset: 0;
      background: url('../img/principal.jpg') center/cover no-repeat;
      filter: saturate(110%) contrast(105%) brightness(90%);
      transform: scale(1.03);
    }
    .hero::after {
      content:""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.6) 0%, var(--overlay) 100%);
    }
    .hero .inner {
      position: relative; z-index: 2; text-align: center; padding: 64px 24px; padding-top: 25%;
    }
    .hero h1 {
      font-family: "Playfair Display", serif; font-size: clamp(32px, 6vw, 64px); line-height: 1.15;
      margin: 0 0 16px; color: #fff;
    }
    .hero p {
      max-width: 900px; margin: 0 auto 28px; font-size: clamp(16px, 2.5vw, 20px); color: var(--muted);
    }
    .cta {
      display: inline-flex; align-items: center; gap: 10px;
      background: var(--gold); color: #0a0a0a; border: none; padding: 14px 22px; border-radius: 999px;
      font-weight: 600; letter-spacing: 0.2px; cursor: pointer; box-shadow: 0 10px 28px rgba(196,161,89,0.35);
      transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
    }
    .cta:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(196,161,89,0.45); background: var(--gold-600); }

    /* Secciones de bloque */
    section.block {
      margin: 72px 0; position: relative;
    }
    .block .content {
      display: grid; grid-template-columns: 1.05fr 1fr; gap: 32px; align-items: center;
      background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
      padding: 28px; box-shadow: var(--shadow);
    }
    .block .text h2 {
      font-family: "Playfair Display", serif; font-size: clamp(24px, 3.5vw, 36px); margin: 0 0 12px; color: #c4a159;
    }
    .block .text p { color: var(--muted); margin: 0 0 8px; }
    .tag {
      display: inline-block; font-size: 12px; text-transform: uppercase; letter-spacing: 1.2px;
      background: rgba(196,161,89,0.1); color: var(--gold); padding: 6px 10px; border-radius: 999px; border: 1px solid rgba(196,161,89,0.25);
      margin-bottom: 12px;
    }

    /* Galería carrusel */
    .gallery {
      margin: 96px 0; position: relative;
    }
    .gallery h3 {
      font-family: "Playfair Display", serif; font-size: clamp(20px, 3vw, 28px); margin: 0 0 16px;
    }
    .carousel {
      position: relative; overflow: hidden; border-radius: var(--radius); border: 1px solid var(--border);
      box-shadow: var(--shadow); background: #0d0d0d;
    }
    .slides {
      display: flex; transition: transform .6s ease; will-change: transform;
    }
    .slide {
      min-width: 100%; position: relative;
    }
    .slide img {
      height: 520px; width: 100%; object-fit: cover;
    }
    .caption {
      position: absolute; left: 24px; bottom: 20px; padding: 10px 14px;
      background: rgba(0,0,0,0.45); border: 1px solid var(--border); border-radius: 999px; color: #fff; font-size: 13px;
      backdrop-filter: blur(6px);
    }
    .controls {
      position: absolute; inset: 0; display: flex; align-items: center; justify-content: space-between; padding: 0 12px;
    }
    .control-btn {
      background: rgba(0,0,0,0.4); border: 1px solid var(--border); color: #fff; width: 42px; height: 42px; border-radius: 50%;
      display: grid; place-items: center; cursor: pointer; transition: transform .2s ease, background .2s ease;
    }
    .control-btn:hover { transform: scale(1.06); background: rgba(0,0,0,0.55); }

    /* Footer */
    footer {
      margin-top: 96px; background: #000; border-top: 1px solid var(--border); text-align: center; padding-bottom: 30px;
    }
    .footer-inner {
      display: grid; grid-template-columns: 1.2fr auto; gap: 20px; align-items: center;
      padding: 28px 24px; text-align: center;
    }
    .footer-inner p { margin: 0; color: var(--muted); }
    .footer-cta { display: inline-flex; align-items: center; gap: 10px; }
    .btn-outline {
      display: inline-flex; align-items: center; gap: 8px; padding: 12px 18px; border-radius: 999px;
      border: 1px solid var(--gold); color: var(--gold); background: transparent; cursor: pointer;
      transition: transform .2s ease, background .2s ease, color .2s ease;
    }
    .btn-outline:hover { transform: translateY(-2px); background: rgba(196,161,89,0.1); color: #f6e6c9; }

    /* Animaciones de aparición */
    .reveal { opacity: 0; transform: translateY(14px); transition: opacity .6s ease, transform .6s ease; }
    .reveal.in { opacity: 1; transform: translateY(0); }

    /* Responsive */
    @media (max-width: 980px) {
      .block .content { grid-template-columns: 1fr; }
      .slide img { height: 420px; }
      .footer-inner { grid-template-columns: 1fr; text-align: center; }
      .footer-cta { justify-content: center; }
    }
    @media (max-width: 640px) {
      .hero { min-height: 86vh; }
      .slide img { height: 360px; }
    }