:root {
      --bg: #0b0c0c;
      --panel: #191b1d;
      --text: #ffffff;
      --accent: #d2c1af;
      --muted: #f5f8ffc9;
      --line: #ffffff1f;
    }
    * { box-sizing: border-box; }
    *::before, *::after { box-sizing: border-box; }
    body {
      margin: 0;
      background: var(--bg);
      color: var(--text);
      font-family: Roboto, sans-serif;
      overflow-x: hidden;
    }
    img, video, iframe {
      max-width: 100%;
      height: auto;
    }
    h1, h2, h3, h4, p, a, span, strong, cite {
      overflow-wrap: anywhere;
      word-break: break-word;
    }
    .site-header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 50;
      background: linear-gradient(to bottom, rgba(11,12,12,.9), rgba(11,12,12,.35));
      border-bottom: 1px solid #ffffff1a;
      backdrop-filter: blur(6px);
    }
    .header-inner {
      width: min(1200px, 92%);
      margin: 0 auto;
      min-height: 84px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }
    .brand {
      text-decoration: none;
      display: inline-flex;
      align-items: center;
    }
    .brand img {
      display: block;
      height: 86px;
      width: auto;
      object-fit: contain;
    }
    .nav-toggle {
      display: none;
      border: 1px solid #ffffff30;
      background: #111315;
      color: #fff;
      width: 48px;
      height: 48px;
      padding: 0;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      border-radius: 12px;
      margin-left: auto;
    }
    .nav-toggle span {
      display: block;
      width: 18px;
      height: 2px;
      background: currentColor;
      transition: transform .25s ease, opacity .25s ease;
    }
    .site-header.menu-open .nav-toggle span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }
    .site-header.menu-open .nav-toggle span:nth-child(2) {
      opacity: 0;
    }
    .site-header.menu-open .nav-toggle span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }
    .main-nav {
      display: flex;
      align-items: center;
      gap: 20px;
      flex-wrap: wrap;
      justify-content: flex-end;
      min-width: 0;
    }
    .main-nav-primary {
      margin-left: auto;
    }
    .main-nav-secondary {
      display: flex;
      width: auto;
      order: 3;
      gap: 16px;
      justify-content: flex-end;
      padding: 0;
      border: 0;
      background: transparent;
      border-radius: 0;
      box-shadow: none;
    }
    .main-nav a {
      color: #fff;
      text-decoration: none;
      font-family: "Saira Condensed", sans-serif;
      font-size: 17px;
      text-transform: uppercase;
      letter-spacing: .07em;
      opacity: .9;
      transition: opacity .2s ease, color .2s ease;
    }
    .main-nav a:hover {
      color: var(--accent);
      opacity: 1;
    }
    .nav-dropdown {
      position: relative;
      padding-bottom: 12px;
      margin-bottom: -12px;
    }
    .nav-dropdown-toggle {
      appearance: none;
      border: 0;
      background: transparent;
      color: #fff;
      font-family: "Saira Condensed", sans-serif;
      font-size: 17px;
      text-transform: uppercase;
      letter-spacing: .07em;
      opacity: .9;
      cursor: pointer;
      padding: 0;
      transition: opacity .2s ease, color .2s ease;
    }
    .nav-dropdown-toggle:hover,
    .nav-dropdown.is-open .nav-dropdown-toggle,
    .nav-dropdown:focus-within .nav-dropdown-toggle {
      color: var(--accent);
      opacity: 1;
    }
    .nav-submenu {
      position: absolute;
      top: 100%;
      left: 0;
      display: none;
      min-width: 220px;
      padding: 10px;
      border: 1px solid #ffffff1f;
      border-radius: 16px;
      background: rgba(15, 17, 19, 0.98);
      box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
      z-index: 20;
    }
    .nav-dropdown:hover .nav-submenu,
    .nav-dropdown:focus-within .nav-submenu,
    .nav-dropdown.is-open .nav-submenu {
      display: grid;
      gap: 8px;
    }
    .nav-submenu a {
      display: block;
      padding: 10px 12px;
      border: 1px solid #ffffff12;
      border-radius: 12px;
      background: rgba(255, 255, 255, 0.02);
    }
    .nav-cta {
      color: var(--accent) !important;
      border: 1px solid var(--accent);
      padding: 4px 12px;
      border-radius: 20px;
      margin-left: 10px;
    }
    .header-inner > * {
      min-width: 0;
    }
    .container { width: min(1200px, 92%); margin: 0 auto; }
    section { position: relative; }
    h1, h2, h3, h4 {
      margin: 0;
      font-family: "Saira Condensed", sans-serif;
      text-transform: uppercase;
      line-height: 1.1;
      letter-spacing: 0.02em;
    }
    p { margin: 0; color: var(--muted); line-height: 1.7; }
    .heading h2 { font-size: clamp(32px, 4vw, 40px); color: #fff; }
    .heading .sub { color: var(--muted); font-family: "Saira Condensed", sans-serif; text-transform: uppercase; }
    .underline { border-bottom: 2px solid var(--accent); padding-bottom: 3px; display: inline-block; }

    .btn-link {
      margin-top: 22px;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: var(--accent);
      font-family: "Saira Condensed", sans-serif;
      font-size: 17px;
      text-transform: uppercase;
      text-decoration: none;
      border-bottom: 1px solid currentColor;
      transition: color .25s ease;
    }
    .btn-link:hover { color: #fff; }

    .anim { opacity: 0; }
    .anim.in { opacity: 1; }
    .fadeInUp.in { animation: fadeInUp .9s both; }
    .fadeInDown.in { animation: fadeInDown .9s both; }
    .fadeInLeft.in { animation: fadeInLeft .9s both; }
    .zoomIn.in { animation: zoomIn .9s both; }
    @keyframes fadeInUp { from { opacity: 0; transform: translateY(28px);} to {opacity:1; transform:none;} }
    @keyframes fadeInDown { from { opacity: 0; transform: translateY(-28px);} to {opacity:1; transform:none;} }
    @keyframes fadeInLeft { from { opacity: 0; transform: translateX(-28px);} to {opacity:1; transform:none;} }
    @keyframes zoomIn { from { opacity: 0; transform: scale(.92);} to {opacity:1; transform:scale(1);} }

    .hero {
      min-height: 100vh;
      margin-top: -55px;
      display: block;
      text-align: center;
      padding: 0;
      position: relative;
      overflow: hidden;
    }
    .hero-slide {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center 10%;
      opacity: 0;
      transform: scale(1);
      transition: opacity 2.5s ease;
      will-change: transform, opacity;
    }
    .hero-slide.active { opacity: 1; animation: ken 4s linear both; }
    .hero::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, rgba(25,27,29,.62), rgba(11,12,12,.9));
      mix-blend-mode: multiply;
      z-index: 1;
    }
    @keyframes ken { from { transform: scale(1);} to { transform: scale(1.08);} }
    .hero-content {
      position: absolute;
      inset: 0;
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
    }
    .hero h1 { font-size: clamp(36px, 9vw, 72px); }
    .hero h3 { color: var(--muted); font-size: clamp(22px, 4vw, 32px); margin-top: 8px; }

    .image-slider-wrap {
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      bottom: -70px;
      z-index: 3;
      margin-top: 0;
      width: 100vw;
    }
    .image-slider {
      overflow: hidden;
      width: 100%;
      margin: 0 auto;
    }
    .image-track {
      display: flex;
      transition: transform 2s ease, opacity .55s ease;
      gap: 0;
    }
    .image-track.is-refreshing {
      opacity: 0;
    }
    .image-track img {
      width: calc(100% / 6);
      aspect-ratio: 1 / 1;
      object-fit: cover;
      flex: 0 0 calc(100% / 6);
      opacity: 0;
      visibility: hidden;
      transform: scale(.985);
      transition: transform .4s ease, opacity .4s ease;
      pointer-events: none;
      background: #111315;
    }
    .image-track img.is-ready {
      opacity: 1;
      visibility: visible;
      transform: scale(1);
      pointer-events: auto;
    }
    .nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: #00000066;
      color: #fff;
      border: 1px solid #ffffff3b;
      width: 40px;
      height: 40px;
      cursor: pointer;
      z-index: 3;
    }
    .nav:hover { background: #000000aa; }
    .nav.prev { left: 12px; }
    .nav.next { right: 12px; }

    .about { padding: 180px 0 100px; }
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: start;
    }
    .about-text {
      columns: 2;
      column-gap: 60px;
    }

    .banners { padding: 30px 0 10px; }
    .banner-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 26px;
      width: min(1200px, 92%);
      margin: 0 auto;
    }
    .banner {
      position: relative;
      min-height: 560px;
      overflow: hidden;
      border: 1px solid #ffffff24;
      background: #0f1011;
      box-shadow: 0 24px 50px rgba(0, 0, 0, 0.45);
      transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
    }
    .banner:last-child { border-right: 1px solid #ffffff24; }
    .banner:hover {
      transform: translateY(-10px);
      border-color: #d2c1af7a;
      box-shadow: 0 32px 70px rgba(0, 0, 0, 0.56);
    }
    .banner .bg, .banner .bg-hover {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      transition: opacity .45s ease, transform .55s ease;
    }
    .banner .bg-hover { opacity: 0; }
    .banner:hover .bg { transform: scale(1.06); }
    .banner:hover .bg-hover { opacity: 1; transform: scale(1.06); }
    .banner::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(12,13,14,.94), rgba(14,15,16,.42));
    }
    .banner-content {
      position: relative;
      z-index: 1;
      height: 100%;
      padding: 36px 30px 30px;
      display: flex;
      flex-direction: column;
      justify-content: end;
    }
    .banner h3 { color: var(--accent); font-size: 42px; }
    .banner .sub { font-family: "Saira Condensed", sans-serif; color: var(--muted); letter-spacing: .15em; }
    .banner p { margin-top: 20px; white-space: pre-line; }
    .seasonal-banner {
      width: min(1200px, 92%);
      margin: 28px auto 0;
    }
    .seasonal-card {
      display: grid;
      grid-template-columns: minmax(220px, 320px) 1fr;
      gap: 28px;
      align-items: stretch;
      padding: 30px;
      border: 1px solid #ffffff24;
      background:
        radial-gradient(circle at top left, rgba(210, 193, 175, 0.18), transparent 40%),
        linear-gradient(135deg, rgba(22, 24, 26, 0.98), rgba(11, 12, 12, 0.98));
      box-shadow: 0 24px 50px rgba(0, 0, 0, 0.4);
    }
    .seasonal-copy {
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 14px;
    }
    .seasonal-eyebrow {
      font-family: "Saira Condensed", sans-serif;
      color: var(--accent);
      letter-spacing: .18em;
      font-size: 13px;
    }
    .seasonal-card h3 {
      font-size: clamp(34px, 5vw, 48px);
      color: #fff;
    }
    .seasonal-actions {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 20px;
    }
    .seasonal-option {
      position: relative;
      min-height: 240px;
      display: flex;
      align-items: end;
      padding: 24px;
      text-decoration: none;
      overflow: hidden;
      border: 1px solid #ffffff1f;
      background-color: #111315;
      background-size: cover;
      background-position: center;
      box-shadow: inset 0 -80px 100px rgba(0, 0, 0, 0.45);
      transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
    }
    .seasonal-option::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(8, 8, 8, 0.88), rgba(8, 8, 8, 0.16));
    }
    .seasonal-option:hover {
      transform: translateY(-6px);
      border-color: #d2c1af7a;
      box-shadow: inset 0 -120px 120px rgba(0, 0, 0, 0.55), 0 20px 38px rgba(0, 0, 0, 0.32);
    }
    .seasonal-option-label {
      position: relative;
      z-index: 1;
      display: inline-flex;
      align-items: center;
      padding: 10px 16px;
      background: rgba(11, 12, 12, 0.64);
      backdrop-filter: blur(4px);
      color: #fff;
      font-family: "Saira Condensed", sans-serif;
      font-size: 26px;
      text-transform: uppercase;
      letter-spacing: .05em;
      border: 1px solid #ffffff30;
    }
    .seasonal-option-boda {
      background-image: url('../../img/boda/IMG_0441-Editar.jpg');
    }
    .seasonal-option-xv {
      background-image: url('../../img/xv-optimized/IMG_2141-Editar-lumnar.jpg');
    }

    .marquee-sec { padding: 40px 0 0; overflow: hidden; }
    .marquee {
      display: flex;
      width: max-content;
      animation: marquee 20s linear infinite;
      gap: 80px;
      font-family: "Saira Condensed", sans-serif;
      font-size: clamp(42px, 7vw, 100px);
      text-transform: uppercase;
      color: transparent;
      -webkit-text-stroke: 2px var(--accent);
    }
    @keyframes marquee { from { transform: translateX(0);} to { transform: translateX(-50%);} }

    .heart { padding: 180px 0 80px; }
    .heart-grid {
      display: grid;
      grid-template-columns: 52% 48%;
      gap: 40px;
      align-items: center;
    }
    .cards-slider { position: relative; overflow: hidden; min-height: 520px; }
    .cards-track { position: relative; height: 500px; }
    .card-slide {
      position: absolute;
      width: min(500px, 90%);
      aspect-ratio: 1/1;
      background-size: cover;
      background-position: center;
      border: 1px solid #ffffff1f;
      transition: transform .65s ease, opacity .65s ease;
      left: 0;
      top: 0;
    }

    .services { padding: 80px 0; }
    .service-cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 60px;
    }
    .service {
      background: var(--panel);
      padding: 40px;
      border: 1px solid var(--line);
    }
    .service img,
    .service-icon {
      width: 48px;
      height: 48px;
      object-fit: contain;
      margin-bottom: 26px;
    }
    .service-icon {
      display: block;
      stroke: var(--accent);
      fill: none;
      stroke-width: 2.2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
    .service h3 { font-size: clamp(30px, 4vw, 40px); margin-bottom: 16px; }

    .center-action { text-align: center; margin-top: 34px; }
    .outline-btn {
      width: 100%;
      max-width: 420px;
      text-decoration: none;
      color: var(--accent);
      font-family: "Saira Condensed", sans-serif;
      text-transform: uppercase;
      font-size: 17px;
      padding: 14px 18px;
      display: inline-flex;
      justify-content: center;
      align-items: center;
      gap: 12px;
      border: 2px solid #d2c1af80;
      transition: border-color .25s ease, color .25s ease;
    }
    .outline-btn:hover { color: #fff; border-color: #fff; }

    .gallery-sec { padding: 80px 0 0; }
    .gallery-sec .container { width: min(1050px, 88%); }
    .home-gallery-carousel {
      position: relative;
      border: 1px solid #ffffff1f;
      background: #0f1113;
    }
    .home-gallery-viewport {
      position: relative;
      height: min(70vh, 560px);
      overflow: hidden;
    }
    .home-gallery-track {
      position: relative;
      height: 100%;
    }
    .home-gallery-slide {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      display: block;
      opacity: 0;
      transition: opacity .45s ease;
    }
    .home-gallery-slide:first-child,
    .home-gallery-slide.is-active {
      opacity: 1;
    }
    .gallery-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: #00000073;
      color: #fff;
      border: 1px solid #ffffff40;
      width: 42px;
      height: 42px;
      cursor: pointer;
      z-index: 2;
    }
    .gallery-nav:hover { background: #000000b5; }
    .gallery-prev { left: 12px; }
    .gallery-next { right: 12px; }

    .testimonials { padding: 80px 0 140px; background: var(--panel); }
    .testimonial-grid {
      margin-top: 60px;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 100px;
    }
    .quote { font-size: 30px; color: var(--accent); margin-bottom: 10px; }
    .testimonial cite {
      margin-top: 20px;
      display: block;
      color: var(--accent);
      font-family: "Saira Condensed", sans-serif;
      text-transform: uppercase;
      font-style: normal;
      font-size: 17px;
    }

    .template-spacer { height: 40px; }

    .contact { padding: 80px 0; }
    .contact-grid {
      margin-top: 60px;
      display: grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 30px;
    }
    .contact-card {
      background: #121416;
      border: 1px solid #ffffff26;
      padding: 34px;
    }
    .contact-card h3 {
      font-size: clamp(30px, 4vw, 40px);
      color: var(--accent);
      margin-bottom: 18px;
    }
    .contact-list {
      margin-top: 20px;
      display: grid;
      gap: 12px;
    }
    .contact-item {
      color: var(--muted);
      border: 1px solid #ffffff1f;
      padding: 14px 16px;
      background: #0f1113;
    }
    .contact-item strong {
      color: #fff;
      display: block;
      margin-bottom: 4px;
      font-family: "Saira Condensed", sans-serif;
      letter-spacing: .05em;
      text-transform: uppercase;
    }
    .contact-actions {
      margin-top: 26px;
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }
    .contact-btn {
      text-decoration: none;
      color: var(--accent);
      border: 1px solid #d2c1af7f;
      padding: 12px 16px;
      font-family: "Saira Condensed", sans-serif;
      text-transform: uppercase;
      letter-spacing: .06em;
      transition: color .2s ease, border-color .2s ease;
    }
    .contact-btn:hover {
      color: #fff;
      border-color: #fff;
    }
    .contact-form {
      display: grid;
      gap: 12px;
    }
    .contact-form input,
    .contact-form textarea {
      width: 100%;
      border: 1px solid #ffffff30;
      background: #0d0f10;
      color: #fff;
      padding: 12px 14px;
      font-family: Roboto, sans-serif;
      font-size: 15px;
    }
    .contact-form textarea {
      min-height: 140px;
      resize: vertical;
    }
    .contact-form button {
      border: 1px solid #d2c1af7f;
      background: transparent;
      color: var(--accent);
      font-family: "Saira Condensed", sans-serif;
      font-size: 17px;
      text-transform: uppercase;
      letter-spacing: .06em;
      padding: 12px 16px;
      cursor: pointer;
    }
    .contact-form button:hover {
      color: #fff;
      border-color: #fff;
    }
    .about-grid > *,
    .banner-grid > *,
    .heart-grid > *,
    .service-cards > *,
    .testimonial-grid > *,
    .contact-grid > *,
    .footer-grid > * {
      min-width: 0;
    }

    @media (max-width: 1024px) {
      .hero { margin-top: -42px; }
      .hero-slide { background-position: center 10%; }
      .header-inner { min-height: 76px; }
      .main-nav { gap: 14px; }
      .main-nav a { font-size: 15px; }
      .image-slider-wrap { bottom: -55px; }
      .about { padding: 150px 0 90px; }
      .image-track img { width: calc(100% / 3); flex-basis: calc(100% / 3); }
      .about-grid, .heart-grid { grid-template-columns: 1fr; }
      .about-text { columns: 1; }
      .banner-grid, .service-cards, .contact-grid, .testimonial-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
      .banner { min-height: 500px; }
      .seasonal-card {
        grid-template-columns: 1fr;
      }
    }
    @media (max-width: 768px) {
      .header-inner {
        min-height: 66px;
        align-items: center;
        justify-content: flex-start;
        flex-wrap: wrap;
        padding: 10px 0;
        gap: 10px;
      }
      .brand img { height: 38px; }
      .nav-toggle {
        display: inline-flex;
        order: 3;
        margin-left: 0;
      }
      .main-nav {
        display: none;
        width: 100%;
        order: 4;
        gap: 10px;
        justify-content: stretch;
        flex-direction: column;
        align-items: stretch;
        padding: 14px;
        border: 1px solid #ffffff1f;
        background: rgba(15, 17, 19, 0.96);
        border-radius: 18px;
        box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
      }
      .main-nav.main-nav-primary {
        display: inline-flex !important;
        width: auto !important;
        order: 2;
        margin-left: auto;
        padding: 0;
        border: 0;
        background: transparent;
        box-shadow: none;
        flex-direction: row;
        align-items: center;
        flex-wrap: nowrap;
        gap: 8px;
      }
      .main-nav.main-nav-primary a {
        display: inline-flex !important;
        align-items: center;
        width: auto !important;
        padding: 0 !important;
        border: 0 !important;
        background: transparent !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        white-space: nowrap;
        line-height: 1;
      }
      .main-nav.main-nav-primary a:first-child {
        font-size: 12px !important;
      }
      .main-nav.main-nav-primary a:last-child {
        font-size: 12px !important;
      }
      .site-header.menu-open .main-nav-secondary { display: flex; }
      .main-nav a {
        font-size: 14px;
        letter-spacing: .05em;
        width: 100%;
        padding: 10px 12px;
        border: 1px solid #ffffff17;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.02);
      }
      .nav-dropdown {
        width: 100%;
      }
      .nav-dropdown-toggle {
        width: 100%;
        text-align: left;
        font-size: 14px;
        letter-spacing: .05em;
        padding: 10px 12px;
        border: 1px solid #ffffff17;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.02);
      }
      .nav-submenu {
        position: static;
        min-width: 0;
        margin-top: 8px;
      }
      .nav-cta {
        margin-left: 0;
        text-align: center;
      }
      .hero { margin-top: -26px; }
      .hero-slide { background-position: center 10%; }
      .image-slider-wrap { bottom: -45px; }
      .about { padding: 120px 0 80px; }
      .gallery-sec .container { width: 92%; }
      .image-track img {
        width: 100%;
        flex-basis: 100%;
        height: 70vw;
        max-height: 240px;
        aspect-ratio: auto;
      }
      .banner-grid, .service-cards, .contact-grid, .testimonial-grid { grid-template-columns: 1fr; }
      .seasonal-card {
        padding: 22px;
      }
      .seasonal-actions {
        grid-template-columns: 1fr;
      }
      .seasonal-option {
        min-height: 210px;
      }
      .seasonal-option-label {
        font-size: 22px;
      }
      .gallery-sec { padding: 40px 0 10px; }
      .home-gallery-viewport { height: 300px; }
      .gallery-nav {
        width: 36px;
        height: 36px;
      }
      .gallery-prev { left: 6px; }
      .gallery-next { right: 6px; }
      .cards-track { height: 360px; }
      .card-slide { width: 86%; }
      .whatsapp-float {
        width: 54px;
        height: 54px;
        right: 16px;
        bottom: 16px;
      }
    }

/* Botón flotante WhatsApp - Axendy Custom */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 2px 2px 15px rgba(0,0,0,0.3);
}
.whatsapp-float svg {
  width: 35px;
  height: 35px;
  fill: currentColor;
}
.site-header.scrolled {
  background: rgba(11, 12, 12, 0.95) !important;
  padding: 5px 0 !important;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

/* Footer - Axendy Custom */
.site-footer {
  background: #0f1011;
  border-top: 1px solid #ffffff1a;
  padding: 60px 0 0;
  margin-top: 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand img {
  height: 60px;
  margin-bottom: 20px;
}
.footer-brand p {
  max-width: 300px;
}
.footer-links, .footer-social {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.site-footer h4 {
  color: var(--accent);
  margin-bottom: 8px;
  font-size: 20px;
}
.footer-links a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-links a:hover {
  color: #fff;
}
.social-icons {
  display: flex;
  gap: 15px;
}
.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #ffffff30;
  color: #fff;
  text-decoration: none;
  font-family: "Saira Condensed", sans-serif;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.social-icons a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #000;
}
.footer-bottom {
  border-top: 1px solid #ffffff1a;
  padding: 20px 0;
  background: #0b0c0c;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}
.footer-bottom p {
  font-size: 14px;
}
.legal-links {
  display: flex;
  gap: 20px;
}
.legal-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}
.legal-links a:hover {
  color: #fff;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-brand p {
    margin: 0 auto;
  }
  .social-icons {
    justify-content: center;
  }
  .footer-bottom .container {
    flex-direction: column;
    text-align: center;
  }
}

/* Lightbox Modal - Axendy Custom */
.lightbox {
  display: none;
  position: fixed;
  z-index: 2000;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox.show {
  display: block;
  opacity: 1;
}

.lightbox-content {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 1000px;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
  animation-name: zoom;
  animation-duration: 0.4s;
}

@keyframes zoom {
  from {transform:scale(0.95); opacity: 0;}
  to {transform:scale(1); opacity: 1;}
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
  cursor: pointer;
  z-index: 2001;
}

.lightbox-close:hover,
.lightbox-close:focus {
  color: var(--accent);
  text-decoration: none;
  cursor: pointer;
}

#lightbox-caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 1000px;
  text-align: center;
  color: #ccc;
  padding: 15px 0;
  height: 40px;
  font-family: "Saira Condensed", sans-serif;
  font-size: 18px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

@media only screen and (max-width: 700px){
  .lightbox-content {
    width: 95%;
  }
}

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

.site-boot-screen {
  position: fixed;
  inset: 0;
  display: none;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at top left, rgba(214, 184, 145, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(10, 13, 15, 0.96) 0%, rgba(18, 23, 26, 0.98) 100%);
  z-index: 2200;
}

.site-boot-screen.is-visible {
  display: grid;
}

.site-boot-card {
  width: min(420px, 100%);
  padding: 30px;
  border-radius: 24px;
  background: rgba(17, 21, 24, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(14px);
  text-align: center;
}

.site-boot-spinner {
  width: 44px;
  height: 44px;
  margin: 0 auto 16px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.12);
  border-top-color: var(--accent);
  animation: site-boot-spin 0.9s linear infinite;
}

.site-boot-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

@keyframes site-boot-spin {
  to {
    transform: rotate(360deg);
  }
}
