MIX · extractor de estilos
Template: smartproject.com.ar/index.html · mtime: 2026-04-24 18:18
← Volver al álbum Descargar mixed.css Descargar manifest.json
CSS links: 3 Embebidos: 0 Externos: 3 Inline styles: 2 Missing: 0
CSS externos (no embebidos)
CSS embebidos (locales)
No se pudieron embebir CSS locales.
Preview de mixed.css
/* MIXED CSS PACK */
/* Template: smartproject.com.ar/index.html */
/* Template mtime: 2026-04-24 18:18:59 */

/* external link (no embedded): https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Playfair+Display:wght@600;700&display=swap */
/* external link (no embedded): https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css */
/* external link (no embedded): https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.min.css */

/* ===== INLINE <style> BLOCK #1 ===== */
/* ─── TOKENS ─────────────────────────────────────────────────── */
    :root {
      --accent:   #d86248;
      --accent2:  #1a4a7a;
      --gold:     #c9a84c;
      --text:     #0d0d0d;
      --muted:    #5a5a6a;
      --soft:     #f4f6f9;
      --line:     #e2e6ee;
      --white:    #ffffff;
      --shadow-xs: 0 2px 8px rgba(10,43,74,.06);
      --shadow-sm: 0 8px 24px rgba(10,43,74,.09);
      --shadow-md: 0 20px 52px rgba(10,43,74,.13);
      --shadow-lg: 0 32px 80px rgba(10,43,74,.18);
      --r-xl: 28px;
      --r-lg: 20px;
      --r-md: 14px;
      --container: 1240px;
      scroll-behavior: smooth;
    }

    /* ─── RESET & BASE ───────────────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; }
    html, body { overflow-x: hidden; }

    body {
      margin: 0;
      font-family: "DM Sans", sans-serif;
      color: var(--text);
      background: #ffffff;
      line-height: 1.7;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }

    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }
    .container { max-width: var(--container); }

    /* ─── TYPOGRAPHY ─────────────────────────────────────────────── */
    .display-font { font-family: "Playfair Display", serif; }

    /* ─── EYEBROW ────────────────────────────────────────────────── */
    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      padding: .42rem 1rem;
      border-radius: 999px;
      background: rgba(10,43,74,.07);
      border: 1px solid rgba(10,43,74,.12);
      color: var(--accent);
      font-size: .75rem;
      font-weight: 600;
      letter-spacing: .10em;
      text-transform: uppercase;
    }
    .eyebrow::before {
      content: "";
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--gold);
      flex-shrink: 0;
    }

    /* ─── SECTION ────────────────────────────────────────────────── */
    .section { padding: 100px 0; position: relative; }

    .section-title {
      margin: .9rem 0 1rem;
      font-family: "Playfair Display", serif;
      font-size: clamp(2rem, 4vw, 3.4rem);
      line-height: 1.08;
      letter-spacing: -.02em;
      font-weight: 700;
      color: var(--text);
    }

    .section-subtitle {
      margin: 0;
      max-width: 640px;
      color: var(--muted);
      font-size: 1.05rem;
    }

    /* ─── HEADER / NAVBAR ────────────────────────────────────────── */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 1040;
      padding: 0;
      backdrop-filter: saturate(200%) blur(20px);
      background: rgba(255,255,255,.88);
      border-bottom: 1px solid rgba(10,43,74,.07);
      transition: box-shadow .3s;
    }
    .site-header.scrolled {
      box-shadow: 0 4px 24px rgba(10,43,74,.10);
    }

    .navbar { padding: 16px 0; }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: .85rem;
    }
    .brand img {
      width: 40px; height: 40px;
      object-fit: contain;
    }
    .brand-mark { display: flex; flex-direction: column; }
    .brand-name {
      font-size: .95rem;
      font-weight: 700;
      letter-spacing: -.02em;
      line-height: 1.15;
      color: var(--accent);
    }
    .brand-sub {
      font-size: .70rem;
      color: var(--muted);
      line-height: 1.2;
    }

    .navbar-toggler { border: none; padding: .4rem .25rem; box-shadow: none!important; }

    .navbar-nav { gap: .1rem; }
    .nav-link {
      color: var(--text)!important;
      font-size: .92rem;
      font-weight: 500;
      padding: .65rem .95rem!important;
      border-radius: 999px;
      transition: background .2s, color .2s;
      position: relative;
    }
    .nav-link::after {
      content: "";
      position: absolute;
      bottom: 4px; left: 50%; right: 50%;
      height: 2px;
      background: var(--gold);
      border-radius: 2px;
      transition: left .25s, right .25s;
    }
    .nav-link:hover::after,
    .nav-link:focus::after { left: 18%; right: 18%; }
    .nav-link:hover,
    .nav-link:focus { color: var(--accent)!important; background: rgba(10,43,74,.05); }

    /* ─── BUTTONS ────────────────────────────────────────────────── */
    .btn {
      border-radius: 999px;
      padding: .82rem 1.55rem;
      font-weight: 600;
      font-size: .94rem;
      letter-spacing: -.005em;
      transition: transform .22s, box-shadow .22s, background .22s, border-color .22s, color .22s;
      display: inline-flex;
      align-items: center;
      gap: .5rem;
    }
    .btn:hover { transform: translateY(-2px); }
    .btn:active { transform: translateY(0); }

    .btn-accent {
      color: #fff;
      background: var(--accent);
      border: 1.5px solid var(--accent);
      box-shadow: 0 8px 24px rgba(10,43,74,.28), inset 0 1px 0 rgba(255,255,255,.10);
    }
    .btn-accent:hover, .btn-accent:focus {
      color: #fff;
      background: #0d3560;
      border-color: #0d3560;
      box-shadow: 0 14px 34px rgba(10,43,74,.38);
    }

    .btn-outline-dark {
      border: 1.5px solid rgba(10,43,74,.22);
      color: var(--text);
      background: transparent;
    }
    .btn-outline-dark:hover, .btn-outline-dark:focus {
      background: var(--accent);
      color: #fff;
      border-color: var(--accent);
      box-shadow: var(--shadow-sm);
    }

    /* ─── HERO ───────────────────────────────────────────────────── */
    .hero {
      padding: 70px 0 100px;
      position: relative;
      overflow: hidden;
    }

    /* Decorative background shapes */
    .hero::before {
      content: "";
      position: absolute;
      top: -120px; right: -120px;
      width: 600px; height: 600px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(10,43,74,.06) 0%, transparent 70%);
      pointer-events: none;
    }
    .hero::after {
      content: "";
      position: absolute;
      bottom: -80px; left: -60px;
      width: 400px; height: 400px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(201,168,76,.08) 0%, transparent 70%);
      pointer-events: none;
    }

    .hero-eyebrow-wrap { margin-bottom: 1.4rem; }

    .hero-title {
      font-family: "Playfair Display", serif;
      font-size: clamp(2.6rem, 6vw, 5rem);
      line-height: 1.02;
      letter-spacing: -.03em;
      font-weight: 700;
      color: var(--text);
      margin: 0 0 1.3rem;
    }
    .hero-title em {
      font-style: italic;
      color: var(--accent);
    }

    .hero-text {
      font-size: 1.07rem;
      color: var(--muted);
      max-width: 560px;
      margin: 0 0 2rem;
      line-height: 1.75;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: .85rem;
      margin-bottom: 2.2rem;
    }

    .hero-stats {
      display: flex;
      gap: 2.4rem;
      flex-wrap: wrap;
      padding-top: 1.8rem;
      border-top: 1px solid var(--line);
    }
    .hero-stat-num {
      font-family: "Playfair Display", serif;
      font-size: 2.1rem;
      font-weight: 700;
      color: var(--accent);
      line-height: 1;
    }
    .hero-stat-label {
      font-size: .82rem;
      color: var(--muted);
      font-weight: 500;
      margin-top: .25rem;
    }

    /* Hero media */
    .hero-media-wrap {
      position: relative;
      padding: 20px 0 20px 20px;
    }
    .hero-media-bg {
      position: absolute;
      inset: 0 -10px 0 40px;
      border-radius: var(--r-xl);
      background: linear-gradient(135deg, rgba(10,43,74,.12) 0%, rgba(201,168,76,.10) 100%);
      z-index: 0;
    }
    .hero-media {
      position: relative;
      z-index: 1;
      border-radius: var(--r-xl);
      overflow: hidden;
      box-shadow: var(--shadow-lg);
    }
    .hero-media img {
      width: 100%;
      height: 560px;
      object-fit: cover;
      object-position: center;
      display: block;
      transition: transform .6s ease;
    }
    .hero-media:hover img { transform: scale(1.02); }

    .hero-media-mobile { display: none; }

    /* Floating badge on image */
    .hero-badge {
      position: absolute;
      bottom: 28px;
      left: -18px;
      z-index: 2;
      background: #fff;
      border-radius: var(--r-md);
      padding: 1rem 1.25rem;
      box-shadow: var(--shadow-md);
      display: flex;
      align-items: center;
      gap: .85rem;
      min-width: 200px;
      border: 1px solid var(--line);
    }
    .hero-badge-icon {
      width: 46px; height: 46px;
      border-radius: 12px;
      background: var(--accent);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.3rem;
      flex-shrink: 0;
    }
    .hero-badge-text strong {
      display: block;
      font-size: .97rem;
      font-weight: 700;
      color: var(--text);
      line-height: 1.2;
    }
    .hero-badge-text span {
      font-size: .78rem;
      color: var(--muted);
    }

    /* ─── ABOUT ──────────────────────────────────────────────────── */
    #quienes-somos {
      background: var(--soft);
      position: relative;
    }
    #quienes-somos::before {
      content: "";
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--line), transparent);
    }

    .about-text-block {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: var(--r-xl);
      padding: 2.4rem;
      box-shadow: var(--shadow-sm);
      height: 100%;
    }
    .about-text-block p:last-child { margin-bottom: 0; }
    .about-text-block p { color: var(--muted); font-size: 1.02rem; }

    .about-quote-block {
      background: var(--accent);
      border-radius: var(--r-xl);
      padding: 2.4rem;
      box-shadow: var(--shadow-md);
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      position: relative;
      overflow: hidden;
    }
    .about-quote-block::before {
      content: "\201C";
      position: absolute;
      top: -20px; right: 20px;
      font-family: "Playfair Display", serif;
      font-size: 12rem;
      color: rgba(255,255,255,.08);
      line-height: 1;
      pointer-events: none;
    }
    .about-quote-kicker {
      font-size: .75rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .12em;
      color: var(--gold);
      margin-bottom: 1.2rem;
    }
    .about-quote-text {
      font-family: "Playfair Display", serif;
      font-size: clamp(1.4rem, 2.5vw, 2.1rem);
      line-height: 1.22;
      font-weight: 600;
      color: #fff;
      letter-spacing: -.02em;
      margin: 0;
      flex: 1;
      display: flex;
      align-items: center;
    }
    .about-quote-footer {
      margin-top: 1.8rem;
      padding-top: 1.4rem;
      border-top: 1px solid rgba(255,255,255,.18);
      display: flex;
      align-items: center;
      gap: .75rem;
    }
    .about-quote-footer .dot {
      width: 36px; height: 36px;
      border-radius: 50%;
      background: rgba(255,255,255,.15);
      display: flex; align-items: center; justify-content: center;
      color: var(--gold);
      font-size: 1rem;
    }
    .about-quote-footer span {
      font-size: .83rem;
      color: rgba(255,255,255,.75);
      font-weight: 500;
    }

    /* ─── SERVICES ───────────────────────────────────────────────── */
    .services-section { background: #fff; }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.2rem;
      margin-top: 3rem;
    }

    .service-card {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: var(--r-lg);
      padding: 2rem;
      box-shadow: var(--shadow-xs);
      transition: transform .3s, box-shadow .3s, border-color .3s;
      position: relative;
      overflow: hidden;
    }
    .service-card::before {
      content: "";
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--accent), var(--gold));
      opacity: 0;
      transition: opacity .3s;
      border-radius: var(--r-lg) var(--r-lg) 0 0;
    }
    .service-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-md);
      border-color: rgba(10,43,74,.18);
    }
    .service-card:hover::before { opacity: 1; }

    .service-icon {
      width: 52px; height: 52px;
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(10,43,74,.07);
      color: var(--accent);
      font-size: 1.3rem;
      margin-bottom: 1.2rem;
      transition: background .3s, color .3s;
    }
    .service-card:hover .service-icon {
      background: var(--accent);
      color: #fff;
    }

    .service-card h3 {
      font-size: 1.07rem;
      font-weight: 700;
      margin-bottom: .65rem;
      letter-spacing: -.02em;
      line-height: 1.25;
      color: var(--text);
    }
    .service-card p {
      margin: 0;
      color: var(--muted);
      font-size: .93rem;
      line-height: 1.65;
    }

    /* ─── WHY CHOOSE ─────────────────────────────────────────────── */
    .choose-section {
      background: var(--soft);
      position: relative;
    }

    .choose-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.2rem;
      margin-top: 3rem;
    }

    .choose-card {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: var(--r-lg);
      padding: 2rem;
      box-shadow: var(--shadow-xs);
      transition: transform .3s, box-shadow .3s;
      position: relative;
    }
    .choose-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-md);
    }

    .choose-num {
      position: absolute;
      top: 1.4rem; right: 1.4rem;
      font-family: "Playfair Display", serif;
      font-size: 3.5rem;
      font-weight: 700;
      color: rgba(10,43,74,.05);
      line-height: 1;
      user-select: none;
    }

    .choose-icon {
      width: 52px; height: 52px;
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--accent);
      color: #fff;
      font-size: 1.25rem;
      margin-bottom: 1.2rem;
      box-shadow: 0 8px 20px rgba(10,43,74,.22);
    }

    .choose-card h3 {
      font-size: 1.07rem;
      font-weight: 700;
      margin-bottom: .6rem;
      letter-spacing: -.02em;
      line-height: 1.25;
      color: var(--text);
    }
    .choose-card p {
      margin: 0;
      color: var(--muted);
      font-size: .93rem;
      line-height: 1.65;
    }

    /* ─── GALLERY (unchanged logic, just shell) ──────────────────── */
    .gal-gallery { background: #fff; }

    .gallery-shell {
      margin-top: 3rem;
      padding: 2rem;
      border-radius: 34px;
      background: linear-gradient(180deg,#ffffff,#f5f7fb);
      border: 1px solid var(--line);
      box-shadow: var(--shadow-md);
    }

    .gal-gallery .carousel { max-width: 980px; margin-inline: auto; position: relative; }
    .gal-frame {
      height: clamp(220px, 48vh, 440px);
      background: #fff;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 12px 28px rgba(0,0,0,.12);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 8px;
    }
    .gal-img {
      width: auto!important;
      max-width: 100%;
      height: auto!important;
      max-height: 100%;
      object-fit: contain!important;
      object-position: center;
      display: block;
      cursor: zoom-in;
    }
    .gal-gallery .carousel-control-prev,
    .gal-gallery .carousel-control-next {
      z-index: 20; width: 50px; height: 50px; top: 50%; transform: translateY(-50%);
      opacity: 1; background: rgba(0,0,0,.55); border-radius: 50%; margin: 0 12px;
    }
    .gal-gallery .carousel-control-prev { left: 0; }
    .gal-gallery .carousel-control-next { right: 0; }
    .gal-gallery .gal-ctrl-icon { width: 2.6rem; height: 2.6rem; background-size: 60% 60%; }
    .gal-gallery .carousel-indicators { z-index: 10; bottom: -50px; }
    .gal-gallery .carousel-indicators button {
      width: 10px; height: 10px; border-radius: 50%;
      background: rgba(0,0,0,.5); border: none;
    }
    .gal-gallery .carousel-indicators button.active { background: #000; }
    .gal-gallery { padding-bottom: 56px; }

    #galLightbox .modal-content { background: #000; }
    #galLightboxImg { max-height: 86vh; width: 100%; height: auto; object-fit: contain; background: #000; }
    .gal-lightbox-nav {
      position: absolute; top: 50%; transform: translateY(-50%);
      border: 0; width: 44px; height: 44px; border-radius: 999px;
      background: rgba(255,255,255,.18); color: #fff; font-size: 30px;
      line-height: 44px; text-align: center; z-index: 5; cursor: pointer;
    }
    .gal-lightbox-nav:hover { background: rgba(255,255,255,.28); }
    .gal-lightbox-nav.gal-prev { left: 10px; }
    .gal-lightbox-nav.gal-next { right: 10px; }

    /* ─── FAQs ───────────────────────────────────────────────────── */
    .faq-section {
      background: var(--soft);
    }

    .faq-intro-card {
      background: var(--accent);
      border-radius: var(--r-xl);
      padding: 2.5rem;
      height: 100%;
      position: relative;
      overflow: hidden;
    }
    .faq-intro-card::after {
      content: "?";
      position: absolute;
      bottom: -20px; right: 10px;
      font-family: "Playfair Display", serif;
      font-size: 14rem;
      color: rgba(255,255,255,.05);
      line-height: 1;
      pointer-events: none;
    }
    .faq-intro-card .eyebrow {
      background: rgba(255,255,255,.12);
      border-color: rgba(255,255,255,.18);
      color: var(--gold);
    }
    .faq-intro-card .eyebrow::before { background: var(--gold); }
    .faq-intro-card .section-title { color: #fff; }
    .faq-intro-card p { color: rgba(255,255,255,.78); font-size: 1rem; }

    /* Accordion premium */
    .accordion {
      --bs-accordion-border-color: var(--line);
      --bs-accordion-btn-focus-box-shadow: none;
      --bs-accordion-active-color: var(--accent);
      --bs-accordion-active-bg: rgba(10,43,74,.03);
    }
    .accordion-item {
      border-radius: var(--r-md)!important;
      overflow: hidden;
      border: 1px solid var(--line)!important;
      box-shadow: var(--shadow-xs);
      margin-bottom: .85rem;
      background: #fff;
      transition: box-shadow .25s;
    }
    .accordion-item:hover { box-shadow: var(--shadow-sm); }

    .accordion-button {
      padding: 1.3rem 1.45rem;
      font-weight: 600;
      font-size: .97rem;
      line-height: 1.4;
      border-radius: var(--r-md)!important;
      color: var(--text);
      gap: 1rem;
    }
    .accordion-button:not(.collapsed) {
      box-shadow: none;
      color: var(--accent);
      background: rgba(10,43,74,.03);
    }
    .accordion-button::after {
      width: 22px; height: 22px;
      background-color: var(--accent);
      background-size: 50% 50%;
      border-radius: 50%;
      opacity: .7;
      flex-shrink: 0;
    }
    .accordion-body {
      padding: 0 1.45rem 1.35rem;
      color: var(--muted);
      font-size: .95rem;
      line-height: 1.72;
    }

    /* ─── CONTACT ────────────────────────────────────────────────── */
    .contact-section { background: #fff; }

    .contact-wrap {
      border-radius: 36px;
      overflow: hidden;
      box-shadow: var(--shadow-lg);
      border: 1px solid var(--line);
    }

    /* Left panel — dark */
    .contact-panel-left {
      background: var(--accent);
      padding: 3rem 2.5rem;
      position: relative;
      overflow: hidden;
    }
    .contact-panel-left::before {
      content: "";
      position: absolute;
      top: -100px; right: -100px;
      width: 350px; height: 350px;
      border-radius: 50%;
      background: rgba(255,255,255,.04);
      pointer-events: none;
    }
    .contact-panel-left::after {
      content: "";
      position: absolute;
      bottom: -80px; left: -80px;
      width: 300px; height: 300px;
      border-radius: 50%;
      background: rgba(201,168,76,.08);
      pointer-events: none;
    }

    .contact-panel-left .eyebrow {
      background: rgba(255,255,255,.12);
      border-color: rgba(255,255,255,.18);
      color: var(--gold);
    }
    .contact-panel-left .eyebrow::before { background: var(--gold); }
    .contact-panel-left .section-title { color: #fff; }
    .contact-panel-left > p { color: rgba(255,255,255,.75); font-size: 1rem; }

    .contact-list {
      display: grid;
      gap: .85rem;
      margin-top: 2rem;
      position: relative;
      z-index: 1;
    }
    .contact-item {
      display: flex;
      align-items: center;
      gap: 1rem;
      padding: 1rem 1.1rem;
      border-radius: var(--r-md);
      background: rgba(255,255,255,.08);
      border: 1px solid rgba(255,255,255,.12);
      transition: background .2s;
    }
    .contact-item:hover { background: rgba(255,255,255,.13); }
    .contact-item-icon {
      width: 44px; height: 44px;
      border-radius: 12px;
      flex-shrink: 0;
      display: flex; align-items: center; justify-content: center;
      background: rgba(255,255,255,.12);
      color: var(--gold);
      font-size: 1.15rem;
    }
    .contact-item span {
      display: block;
      font-size: .73rem;
      text-transform: uppercase;
      letter-spacing: .09em;
      color: rgba(255,255,255,.55);
      margin-bottom: .15rem;
    }
    .contact-item strong {
      font-size: .96rem;
      font-weight: 600;
      color: #fff;
      line-height: 1.35;
      word-break: break-word;
    }
    .contact-item strong a { color: #fff; }

    /* Right panel — form */
    .contact-panel-right {
      background: #fff;
      padding: 3rem 2.5rem;
    }

    .contact-panel-right h3 {
      font-family: "Playfair Display", serif;
      font-size: 1.6rem;
      font-weight: 700;
      color: var(--text);
      margin-bottom: .4rem;
      letter-spacing: -.02em;
    }
    .contact-panel-right > p {
      color: var(--muted);
      font-size: .93rem;
      margin-bottom: 2rem;
    }

    .form-label {
      font-size: .86rem;
      font-weight: 600;
      color: var(--text);
      margin-bottom: .5rem;
      letter-spacing: .01em;
    }
    .form-control,
    .form-select {
      border-radius: 12px;
      border: 1.5px solid var(--line);
      min-height: 52px;
      padding: .85rem 1rem;
      font-size: .95rem;
      color: var(--text);
      background: var(--soft);
      box-shadow: none!important;
      transition: border-color .2s, background .2s;
    }
    .form-control:focus,
    .form-select:focus {
      border-color: var(--accent);
      background: #fff;
      box-shadow: 0 0 0 4px rgba(10,43,74,.08)!important;
    }
    textarea.form-control {
      min-height: 140px;
      resize: vertical;
    }

    /* ─── FOOTER ─────────────────────────────────────────────────── */
    .footer {
      background: var(--accent);
      color: #fff;
      padding: 0;
    }
    .footer-top {
      padding: 56px 0 48px;
      border-bottom: 1px solid rgba(255,255,255,.12);
    }

    .footer-brand {
      display: flex;
      align-items: center;
      gap: .9rem;
      margin-bottom: 1rem;
    }
    .footer-brand img {
      width: 40px; height: 40px;
      object-fit: contain;
      background: rgba(255,255,255,.12);
      border-radius: 12px;
      padding: 5px;
    }
    .footer-brand strong {
      font-size: .95rem;
      font-weight: 700;
      color: #fff;
      letter-spacing: -.01em;
    }
    .footer p { color: rgba(255,255,255,.7); font-size: .93rem; }

    .footer-title {
      font-size: .72rem;
      text-transform: uppercase;
      letter-spacing: .12em;
      font-weight: 700;
      color: var(--gold);
      margin-bottom: 1.2rem;
    }
    .footer-nav,
    .footer-contact,
    .footer-social {
      display: grid;
      gap: .65rem;
    }
    .footer a {
      color: rgba(255,255,255,.75);
      font-size: .92rem;
      transition: color .2s;
    }
    .footer a:hover { color: #fff; }

    .footer-bottom {
      padding: 22px 0;
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      justify-content: space-between;
      align-items: center;
      font-size: .88rem;
      color: rgba(255,255,255,.55);
    }
    .footer-bottom a {
      color: rgba(255,255,255,.65);
      text-decoration: underline;
      text-underline-offset: 3px;
    }
    .footer-bottom a:hover { color: #fff; }

    /* gold divider line */
    .gold-line {
      width: 48px; height: 3px;
      background: linear-gradient(90deg, var(--gold), transparent);
      border-radius: 2px;
      margin: .9rem 0 1.2rem;
    }

    /* ─── SCROLL ANIMATIONS ──────────────────────────────────────── */
    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity .65s ease, transform .65s ease;
    }
    .reveal.visible {
      opacity: 1;
      transform: none;
    }
    .reveal-delay-1 { transition-delay: .1s; }
    .reveal-delay-2 { transition-delay: .2s; }
    .reveal-delay-3 { transition-delay: .3s; }
    .reveal-delay-4 { transition-delay: .4s; }

    /* ─── RESPONSIVE ─────────────────────────────────────────────── */
    @media (max-width: 1199.98px) {
      .services-grid, .choose-grid { grid-template-columns: repeat(2, 1fr); }
      .hero-media img { height: 480px; }
    }

    @media (max-width: 991.98px) {
      .site-header { padding: 0; }
      .navbar-collapse {
        margin-top: 1rem;
        padding: 1.2rem;
        border: 1px solid var(--line);
        border-radius: 20px;
        background: rgba(255,255,255,.96);
        box-shadow: var(--shadow-md);
      }
      .navbar-actions { margin-top: .75rem; }
      .hero { padding: 48px 0 84px; }
      .hero-media-wrap { padding-left: 0; margin-top: 2rem; }
      .hero-media img { height: 400px; }
      .hero-badge { display: none; }
      .contact-panel-left, .contact-panel-right { padding: 2.5rem 2rem; }
    }

    @media (max-width: 767.98px) {
      .section { padding: 80px 0; }
      .hero { padding: 30px 0 70px; }
      .hero-title { font-size: clamp(2.1rem, 11vw, 3rem); }
      .hero-stats { gap: 1.6rem; }
      .services-grid, .choose-grid { grid-template-columns: 1fr; }
      .gallery-shell { padding: 1.2rem; border-radius: 26px; }
      .contact-wrap { border-radius: 24px; }
      .contact-panel-left, .contact-panel-right { padding: 2rem 1.5rem; }
      .footer-top { padding: 40px 0 32px; }
      .hero-media-mobile {
        display: block;
        margin: 1.4rem 0 1.6rem;
      }
      .hero-desktop-media { display: none; }
      .hero-media-mobile .hero-media-wrap {
        padding: 0;
        margin-top: 0;
      }
      .hero-media-mobile .hero-media-bg {
        inset: 10px -8px -8px 12px;
        border-radius: 22px;
      }
      .hero-media-mobile .hero-media {
        border-radius: 22px;
        box-shadow: var(--shadow-md);
        background: #fff;
      }
      .hero-media-mobile .hero-media img {
        width: 100%;
        height: auto;
        max-height: 360px;
        object-fit: contain;
        object-position: center;
        background: #fff;
      }
    }

    @media (max-width: 575.98px) {
      .section-title { font-size: clamp(1.8rem, 9vw, 2.4rem); }
      .hero-actions { flex-direction: column; }
      .hero-actions .btn { width: 100%; justify-content: center; }
      .hero-media img { height: 300px; }
      .hero-media-mobile .hero-media img { height: auto; max-height: 320px; }
      .gal-frame { height: clamp(200px, 40vh, 360px); }
    }

/* ===== INLINE <style> BLOCK #2 ===== */
:root{
  --wa:#25D366;
  --wa-dark:#1fb85a;
  --light-bg:#ffffff;
  --light-bg-soft:#f6f8f7;
  --light-border:#dde4df;
  --dark-text:#1c1f1d;
  --muted-text:#6c756f;
}
.wa-float{position:fixed;right:18px;bottom:18px;z-index:9999;font-family:inherit}
.wa-btn{
  background:var(--wa);color:#fff;border:0;width:60px;height:60px;border-radius:50%;
  display:grid;place-items:center;box-shadow:0 10px 30px rgba(0,0,0,.22);
  cursor:pointer;transition:transform .3s,box-shadow .3s,filter .3s;position:relative;overflow:hidden;z-index:9999
}
.wa-btn:hover{transform:translateY(-3px) scale(1.05);box-shadow:0 14px 36px rgba(0,0,0,.28);filter:brightness(.98)}
.wa-card{
  position:absolute;right:0;bottom:74px;width:min(360px,92vw);background:var(--light-bg);
  color:var(--dark-text);border-radius:18px;overflow:hidden;box-shadow:0 18px 60px rgba(0,0,0,.25);
  border:1px solid var(--light-border);transform:translateY(10px);opacity:0;transition:transform .3s,opacity .3s;z-index:10000
}
.wa-card[aria-modal="true"]{transform:translateY(0);opacity:1}
.wa-head{display:flex;align-items:center;gap:12px;padding:14px 16px;background:linear-gradient(135deg,#ffffff,#ecf6f0);border-bottom:1px solid var(--light-border)}
.wa-avatar{width:40px;height:40px;border-radius:10px;background:#e9f7ef;display:grid;place-items:center;border:1px solid #cfeeda;overflow:hidden}
.wa-title{font-weight:800;font-size:1.02rem;color:var(--dark-text)}
.wa-status{font-size:.85rem;color:var(--muted-text);display:flex;align-items:center;gap:6px}
.wa-status::before{content:"";width:8px;height:8px;border-radius:50%;background:var(--wa)}
.wa-close{margin-left:auto;background:transparent;color:var(--muted-text);border:0;font-size:24px;cursor:pointer;opacity:.75;width:32px;height:32px;border-radius:50%;display:flex;align-items:center;justify-content:center;transition:.2s}
.wa-close:hover{opacity:1;background:rgba(0,0,0,.04)}
.wa-body{padding:12px 14px;max-height:40vh;overflow:auto;background:var(--light-bg-soft);display:flex;flex-direction:column;gap:8px}
.wa-bubble{max-width:88%;padding:9px 11px;border-radius:14px;line-height:1.35;box-shadow:0 3px 10px rgba(0,0,0,.06);font-size:.9rem}
.wa-bot{background:#ffffff;border:1px solid var(--light-border);align-self:flex-start;border-bottom-left-radius:4px}
.wa-user{background:var(--wa);color:#fff;align-self:flex-end;border-bottom-right-radius:4px}
.wa-compose{display:grid;grid-template-columns:1fr auto;gap:8px;padding:10px 12px;background:#ffffff;border-top:1px solid var(--light-border)}
.wa-compose textarea{resize:none;border-radius:12px;padding:10px 12px;border:1px solid var(--light-border);background:#f9fbfa;color:var(--dark-text);outline:none;min-height:44px;font-family:inherit;font-size:.9rem;transition:.2s}
.wa-compose textarea:focus{border-color:var(--wa);box-shadow:0 0 0 2px rgba(37,211,102,.15);background:#ffffff}
.wa-send{background:var(--wa);color:#ffffff;border:0;border-radius:12px;padding:0 16px;font-weight:700;cursor:pointer;display:flex;align-items:center;justify-content:center;transition:.2s}
.wa-send:hover{background:var(--wa-dark);transform:scale(1.04)}
@media (max-width:480px){
  .wa-float{right:12px;bottom:12px}
  .wa-card{width:calc(100vw - 24px);right:0}
}

      
Manifest preview
{
    "template": "smartproject.com.ar/index.html",
    "template_mtime": 1777054739,
    "template_mtime_human": "2026-04-24T18:18:59+00:00",
    "css_links_found": [
        "https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Playfair+Display:wght@600;700&display=swap",
        "https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css",
        "https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.min.css"
    ],
    "css_links_external": [
        "https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Playfair+Display:wght@600;700&display=swap",
        "https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css",
        "https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.min.css"
    ],
    "css_links_embedded": [],
    "inline_style_blocks": 2,
    "inline_imports_external": [],
    "inline_imports_embedded": [],
    "missing_css_files": []
}