/* MIXED CSS PACK */
/* Template: viviendasemmanuel.com.ar/index.html */
/* Template mtime: 2025-10-17 19:58:11 */

/* external link (no embedded): https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;600;700;800;900&display=swap */
/* external link (no embedded): https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Poppins:wght@300;400;500;600;700;800;900&display=swap */
/* external link (no embedded): https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css */
/* external link (no embedded): https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css */
/* external link (no embedded): https://cdnjs.cloudflare.com/ajax/libs/aos/2.3.4/aos.css */
/* external link (no embedded): https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&display=swap */

/* ===== INLINE <style> BLOCK #1 ===== */
:root {
      --primary: #1a56db;
      --primary-dark: #1e3a8a;
      --primary-light: #3b82f6;
      --secondary: #10b981;
      --accent: #f59e0b;
      --text: #1f2937;
      --text-light: #6b7280;
      --bg: #f8fafc;
      --card: #ffffff;
      --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
      --gradient-secondary: linear-gradient(135deg, var(--secondary) 0%, #059669 100%);
      --gradient-hero: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #10b981 100%);
      --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
      --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.07), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
      --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
      --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
      --radius: 16px;
      --radius-lg: 24px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
      font-size: 16px;
    }

    body {
      font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Ubuntu, sans-serif;
      color: var(--text);
      background: var(--bg);
      line-height: 1.6;
      overflow-x: hidden;
    }

    h1, h2, h3, h4, h5, h6 {
      font-family: 'Plus Jakarta Sans', 'Poppins', sans-serif;
      font-weight: 700;
      line-height: 1.2;
      margin-bottom: 0.5rem;
    }

    .container-narrow {
      max-width: 1100px;
    }

    /* ===== NAVBAR ===== */
    .navbar {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1020;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(229, 231, 235, 0.8);
      padding: 1.2rem 0;
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    .navbar.scrolled {
      padding: 0.7rem 0;
      box-shadow: var(--shadow-lg);
      background: rgba(255, 255, 255, 0.98);
    }

    .navbar .brand {
      font-family: 'Poppins', sans-serif;
      font-weight: 900;
      font-size: 1.6rem;
      color: var(--primary-dark);
      letter-spacing: -0.5px;
      position: relative;
      display: inline-flex;
      align-items: center;
    }

    .navbar .brand span {
      color: var(--primary);
    }

    .navbar .brand::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 0;
      height: 3px;
      background: var(--gradient-primary);
      border-radius: 3px;
      transition: width 0.5s ease;
    }

    .navbar .brand:hover::after {
      width: 100%;
    }

    .navbar a.nav-link {
      color: var(--text);
      font-weight: 600;
      padding: 0.5rem 1rem;
      border-radius: 10px;
      transition: all 0.3s ease;
      position: relative;
      margin: 0 0.2rem;
    }

    .navbar a.nav-link:hover {
      color: var(--primary);
      background: rgba(59, 130, 246, 0.08);
    }

    .navbar a.nav-link::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      width: 0;
      height: 3px;
      background: var(--gradient-primary);
      transition: all 0.4s ease;
      transform: translateX(-50%);
      border-radius: 3px;
    }

    .navbar a.nav-link:hover::after {
      width: 80%;
    }

    .btn-brand {
      background: var(--gradient-primary);
      color: white;
      border: 0;
      border-radius: 14px;
      padding: 0.85rem 1.8rem;
      font-weight: 600;
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      box-shadow: var(--shadow-md);
      position: relative;
      overflow: hidden;
    }

    .btn-brand::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
      transition: left 0.7s ease;
    }

    .btn-brand:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-xl);
      color: white;
    }

    .btn-brand:hover::before {
      left: 100%;
    }

    .btn-ghost {
      background: rgba(59, 130, 246, 0.08);
      color: var(--primary);
      border-radius: 14px;
      padding: 0.85rem 1.8rem;
      font-weight: 600;
      border: 1px solid rgba(59, 130, 246, 0.2);
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    .btn-ghost:hover {
      background: rgba(59, 130, 246, 0.15);
      transform: translateY(-3px);
      color: var(--primary);
      box-shadow: var(--shadow-md);
    }

    a {
      color: var(--primary);
      text-decoration: none;
      transition: all 0.2s ease;
    }

    a:hover {
      color: var(--primary-dark);
    }

    .eyebrow {
      letter-spacing: 0.1em;
      color: var(--primary);
      text-transform: uppercase;
      font-weight: 700;
      font-size: 0.8rem;
      display: inline-block;
      margin-bottom: 0.5rem;
      position: relative;
      padding-left: 1.5rem;
    }

    .eyebrow::before {
      content: '';
      position: absolute;
      left: 0;
      top: 50%;
      transform: translateY(-50%);
      width: 1rem;
      height: 2px;
      background: var(--primary);
    }

    .section {
      padding: 7rem 0;
      position: relative;
    }

    .section-title {
      font-size: clamp(2.2rem, 4.5vw, 3.5rem);
      font-weight: 800;
      margin: 0.5rem 0 1rem;
      line-height: 1.1;
    }

    .lead {
      color: var(--text-light);
      font-size: 1.25rem;
      font-weight: 400;
    }

    .card-soft {
      background: var(--card);
      border-radius: var(--radius);
      box-shadow: var(--shadow-sm);
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      border: 1px solid rgba(229, 231, 235, 0.5);
      overflow: hidden;
      position: relative;
    }

    .card-soft::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, rgba(59, 130, 246, 0.03) 0%, rgba(16, 185, 129, 0.03) 100%);
      opacity: 0;
      transition: opacity 0.4s ease;
    }

    .card-soft:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow-xl);
    }

    .card-soft:hover::before {
      opacity: 1;
    }

    .badge-dot {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-weight: 500;
    }

    .badge-dot::before {
      content: "";
      width: 0.6rem;
      height: 0.6rem;
      border-radius: 999px;
      background: var(--secondary);
      display: inline-block;
    }

    /* ===== HERO ===== */
    .hero {
      padding: 10rem 0 7rem;
      background: 
        radial-gradient(ellipse at 80% 50%, rgba(59, 130, 246, 0.2) 0%, transparent 60%),
        radial-gradient(ellipse at 20% 20%, rgba(16, 185, 129, 0.15) 0%, transparent 60%),
        linear-gradient(180deg, rgba(248, 250, 252, 0.9) 0%, var(--bg) 100%);
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231a56db' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
      z-index: -1;
    }

    .hero h1 {
      font-size: clamp(2.8rem, 5.5vw, 4.5rem);
      font-weight: 900;
      line-height: 1.05;
      margin-bottom: 1.5rem;
      background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--secondary) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      position: relative;
    }

    .hero h1::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 0;
      width: 100px;
      height: 4px;
      background: var(--gradient-primary);
      border-radius: 2px;
    }

    .hero .bullets {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 1.2rem;
      margin-top: 2.5rem;
    }

    .hero .bullet {
      display: flex;
      align-items: center;
      gap: 0.8rem;
      background: rgba(255, 255, 255, 0.7);
      border-radius: 14px;
      padding: 1.2rem 1.5rem;
      box-shadow: var(--shadow-sm);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.8);
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    .hero .bullet:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-lg);
    }

    .hero .bullet i {
      font-style: normal;
      background: var(--gradient-primary);
      color: #fff;
      border-radius: 10px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 2rem;
      height: 2rem;
      font-size: 0.9rem;
      font-weight: 600;
    }

    /* ===== SERVICIOS ===== */
    .services-section {
      background: linear-gradient(180deg, var(--bg) 0%, #f0f4f8 100%);
    }

    .grid-3 {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
    }

    .svc {
      padding: 2.5rem 2rem;
      text-align: center;
      height: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      position: relative;
      overflow: hidden;
    }

    .svc::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 4px;
      background: var(--gradient-primary);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.5s ease;
    }

    .svc:hover::before {
      transform: scaleX(1);
    }

    .svc-icon {
      width: 5rem;
      height: 5rem;
      border-radius: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.8rem;
      background: var(--gradient-primary);
      color: white;
      font-size: 1.8rem;
      box-shadow: var(--shadow-md);
      transition: all 0.4s ease;
    }

    .svc:hover .svc-icon {
      transform: scale(1.1) rotate(5deg);
    }

    .svc h3 {
      font-size: 1.4rem;
      margin: 0.5rem 0 1rem;
    }

    .svc p {
      color: var(--text-light);
      margin: 0;
    }

    /* ===== ELEGIR ===== */
    .choose-section {
      background: linear-gradient(180deg, #f0f4f8 0%, var(--bg) 100%);
    }

    .list-check {
      list-style: none;
      padding: 0;
      margin: 1.5rem 0 0;
      display: grid;
      gap: 0.9rem;
    }

    .list-check li {
      padding-left: 2.2rem;
      position: relative;
      font-size: 1.1rem;
      transition: all 0.3s ease;
    }

    .list-check li:hover {
      transform: translateX(5px);
    }

    .list-check li::before {
      content: "✓";
      position: absolute;
      left: 0.4rem;
      color: var(--secondary);
      font-weight: 900;
      font-size: 1.1rem;
    }

    .process-step {
      text-align: center;
      padding: 2rem 1.5rem;
      height: 100%;
      position: relative;
    }

    .process-step::before {
      content: attr(data-step);
      position: absolute;
      top: -0.75rem;
      left: 50%;
      transform: translateX(-50%);
      width: 3rem;
      height: 3rem;
      border-radius: 50%;
      background: var(--gradient-primary);
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 1.2rem;
      box-shadow: var(--shadow-lg);
      z-index: 2;
    }

    .process-step::after {
      content: '';
      position: absolute;
      top: 1.5rem;
      left: 50%;
      width: 0;
      height: 2px;
      background: var(--gradient-primary);
      transition: width 0.8s ease;
      transform: translateX(-50%);
    }

    .process-step:hover::after {
      width: 80%;
    }

    /* ===== TRABAJOS ===== */
    .works-section {
      background: linear-gradient(180deg, var(--bg) 0%, #f0f4f8 100%);
    }

    .ticker-wrap {
      max-width: 1200px;
      margin-inline: auto;
    }

    .square-frame {
      position: relative;
      width: 90vw;
      max-width: 500px;
      aspect-ratio: 1/1;
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-xl);
      margin-inline: auto;
      transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    .square-frame:hover {
      transform: scale(1.05);
    }

    .square-frame img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease;
    }

    .square-frame:hover img {
      transform: scale(1.1);
    }

    @media (min-width: 992px) {
      .square-frame {
        width: 500px;
      }
    }

    .carousel-control-prev, .carousel-control-next {
      width: 4rem;
      height: 4rem;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.9);
      top: 50%;
      transform: translateY(-50%);
      opacity: 0.8;
      box-shadow: var(--shadow-lg);
      transition: all 0.4s ease;
    }

    .carousel-control-prev {
      left: 1rem;
    }

    .carousel-control-next {
      right: 1rem;
    }

    .carousel-control-prev:hover, .carousel-control-next:hover {
      opacity: 1;
      transform: translateY(-50%) scale(1.1);
    }

    .carousel-indicators [data-bs-target] {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: #9db6ef;
      margin: 0 6px;
      transition: all 0.3s ease;
    }

    .carousel-indicators .active {
      background: var(--primary);
      transform: scale(1.2);
    }

    /* ===== FAQs ===== */
    .faq-section {
      background: linear-gradient(180deg, #f0f4f8 0%, var(--bg) 100%);
    }

    .accordion-button {
      font-weight: 600;
      padding: 1.5rem 1.8rem;
      border: none;
      background: white;
      box-shadow: none;
      font-size: 1.1rem;
      transition: all 0.3s ease;
    }

    .accordion-button:not(.collapsed) {
      background: white;
      color: var(--primary);
      box-shadow: none;
    }

    .accordion-button:focus {
      box-shadow: none;
      border: none;
    }

    .accordion-item {
      border: 1px solid rgba(229, 231, 235, 0.8);
      border-radius: 14px;
      overflow: hidden;
      margin-bottom: 1.2rem;
      box-shadow: var(--shadow-sm);
      transition: all 0.3s ease;
    }

    .accordion-item:hover {
      box-shadow: var(--shadow-md);
    }

    .accordion-body {
      padding: 1.2rem 1.8rem 1.8rem;
      color: var(--text-light);
    }

    /* ===== CONTACTO ===== */
    .contact-section {
      background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
      color: white;
      position: relative;
      overflow: hidden;
    }

    .contact-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }

    .contact-section .eyebrow {
      color: rgba(255, 255, 255, 0.8);
    }

    .contact-section .eyebrow::before {
      background: rgba(255, 255, 255, 0.8);
    }

    .contact-section .section-title {
      color: white;
    }

    .contact-section p {
      color: rgba(255, 255, 255, 0.8);
    }

    .contact-section .card-soft {
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(15px);
      border: 1px solid rgba(255, 255, 255, 0.2);
      color: white;
    }

    .contact-section .form-control {
      border-radius: 12px;
      border: 1px solid rgba(255, 255, 255, 0.2);
      padding: 0.85rem 1.2rem;
      background: rgba(255, 255, 255, 0.1);
      color: white;
      transition: all 0.3s ease;
    }

    .contact-section .form-control::placeholder {
      color: rgba(255, 255, 255, 0.6);
    }

    .contact-section .form-control:focus {
      border-color: rgba(255, 255, 255, 0.4);
      box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.1);
      background: rgba(255, 255, 255, 0.15);
      color: white;
    }

    .contact-section .form-label {
      color: rgba(255, 255, 255, 0.9);
      font-weight: 500;
    }

    .contact-section a {
      color: white;
      font-weight: 500;
    }

    .contact-section .btn-brand {
      background: rgba(255, 255, 255, 0.2);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.3);
    }

    .contact-section .btn-brand:hover {
      background: rgba(255, 255, 255, 0.3);
    }

    /* ===== FOOTER ===== */
    footer {
      background: #0f172a;
      color: #d1d5db;
      padding: 5rem 0 2.5rem;
    }

    footer a {
      color: #c6d4ff;
      transition: all 0.2s ease;
    }

    footer a:hover {
      color: white;
    }

    .footer-mid {
      display: flex;
      flex-wrap: wrap;
      gap: 1.5rem;
      align-items: center;
      margin: 1.5rem 0 2.5rem;
    }

    .footer-nav {
      display: flex;
      flex-wrap: wrap;
      gap: 1.8rem;
    }

    .footer-brand {
      font-family: 'Poppins', sans-serif;
      font-weight: 900;
      font-size: 1.8rem;
      color: white;
    }

    .copyright {
      border-top: 1px solid #1f2a44;
      margin-top: 2.5rem;
      padding-top: 1.8rem;
      font-size: 0.9rem;
      color: #9aa3b2;
    }

    /* ===== ANIMACIONES ===== */
    .fade-in {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.8s ease, transform 0.8s ease;
    }

    .fade-in.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 768px) {
      .section {
        padding: 5rem 0;
      }
      
      .hero {
        padding: 8rem 0 5rem;
      }
      
      .navbar .navbar-nav {
        padding: 1rem 0;
      }
      
      .footer-mid {
        flex-direction: column;
        align-items: flex-start;
      }
      
      .footer-nav {
        flex-direction: column;
        gap: 1rem;
      }
      
      .grid-3 {
        grid-template-columns: 1fr;
      }
    }

/* ===== INLINE <style> BLOCK #2 ===== */
:root{--accent:#101e29; --nav-text:#d9962d;}
  html{font-size:14px}
  body{font-family:'Manrope',system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,sans-serif}
  .navbar{background:#101e29!important}
  .navbar .navbar-brand, .navbar .nav-link{color:#d9962d!important; font-weight:700}
  .navbar .nav-link:hover{color:#f1b860!important; background:rgba(217,150,45,.12); border-radius:10px}

/* ===== INLINE <style> BLOCK #3 ===== */
.hero h1{ letter-spacing:-0.5px !important; font-weight:900 !important; }

  /* === Hero title color hard override === */
  .hero h1{
    background: none !important;
    -webkit-text-fill-color: initial !important;
    color: #101e29 !important;
  }

  /* === Palette requested === */
  :root{ --accent:#101e29; --nav-text:#d9962d; }

  /* === Typographic scale smaller === */
  html{ font-size:14px !important; }              /* from 16px -> 14px */
  body{ font-family:'Manrope', system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, sans-serif !important; }
  h1{ font-size:clamp(2.0rem, 4.2vw, 3.0rem) !important; line-height:1.12 !important; font-weight:900 !important; }
  h2{ font-size:clamp(1.4rem, 3.2vw, 2.0rem) !important; line-height:1.18 !important; }
  h3{ font-size:clamp(1.15rem, 2.2vw, 1.35rem) !important; }
  .lead{ font-size:1rem !important; }            /* was 1.25rem */

  /* === Navbar colors & compact spacing === */
  .navbar{ background:var(--accent) !important; padding:.7rem 0 !important; }
  .navbar .brand{ color:var(--nav-text) !important; font-size:1.2rem !important; }
  .navbar .brand span{ color:var(--nav-text) !important; }
  .navbar a.nav-link{ color:var(--nav-text) !important; font-weight:700 !important; padding:.4rem .75rem !important; font-size:.95rem !important; border-radius:10px; }
  .navbar a.nav-link:hover{ color:#f1b860 !important; background:rgba(217,150,45,.12) !important; }
  .navbar.scrolled{ box-shadow:0 10px 20px -10px rgba(0,0,0,.25) !important; }

  /* === Buttons consistent with palette and reduced size === */
  .btn{ font-weight:700 !important; }
  .btn-brand{
    background:var(--nav-text) !important;
    border-color:var(--nav-text) !important;
    color:#0a0f14 !important;
    padding:.6rem 1rem !important;
    border-radius:12px !important;
    box-shadow:0 6px 14px -6px rgba(217,150,45,.45) !important;
  }
  .btn-brand:hover{ filter:brightness(1.05); transform:translateY(-1px); }
  .btn-ghost{
    background:rgba(0,0,0,.04) !important;
    color:#0b1220 !important;
    border:1px solid rgba(16,30,41,.15) !important;
    padding:.6rem 1rem !important;
    border-radius:12px !important;
  }

  /* === Icons & service tiles smaller === */
  i.fas, i.fab, i.fa{ font-size:.95em !important; }
  .svc-icon{ width:3.2rem !important; height:3.2rem !important; font-size:1.2rem !important; }

  /* === Hero clean (no bg image), keep split layout; tighten gaps === */
  #inicio.hero{ padding:9rem 0 5.5rem !important; }
  #inicio .row.g-4.g-lg-5{ --bs-gutter-x:1.2rem; }
  #inicio .ratio{ border-radius:16px !important; }
  #inicio .ratio img{ object-fit:cover; }

  /* === Footer/link sizes slightly smaller === */
  footer, .accordion-button, .list-check li, p, li, a{ font-size:.98rem !important; }
  .copyright{ font-size:.85rem !important; }

  /* Mobile even smaller base if needed */
  @media (max-width:480px){ html{ font-size:13.5px !important; } }
  /* Logo en la navbar */
.navbar .brand { display: inline-flex; align-items: center; gap:.5rem; }
.navbar .brand-logo{
  height: 28px;            /* ajustá si querés más grande */
  width: auto;
  display: block;
}

/* En pantallas grandes podés subirlo un toque */
@media (min-width: 992px){
  .navbar .brand-logo{ height: 32px; }
}

/* ===== INLINE <style> BLOCK #4 ===== */
/* Lista con checks */
  #quienes-somos .list-check{list-style:none; padding:0; margin:0; display:grid; gap:.5rem}
  #quienes-somos .list-check li{position:relative; padding-left:1.6rem}
  #quienes-somos .list-check li::before{
    content:"✓"; position:absolute; left:.2rem; top:.1rem;
    color:#10b981; font-weight:900
  }

  /* Imagen SIN overlay y ENTERA (contain) */
  .qs-illustration{
    margin:0; background:#fff; border-radius:16px;
    border:1px solid rgba(16,30,41,.12);
    box-shadow:0 20px 45px -15px rgba(0,0,0,.12);
    overflow:hidden; display:flex; align-items:center; justify-content:center;
    height: 460px; /* alto visible en desktop */
  }
  .qs-illustration img{
    width:100%; height:100%; object-fit:contain; /* <- NO RECORTA */
    display:block;
  }
  /* Por si quedó algún overlay previo por CSS global */
  .qs-illustration::before,
  .qs-illustration::after{ content:none !important; display:none !important; }

  /* Responsive: más bajo en mobile */
  @media (max-width: 991.98px){
    .qs-illustration{ height: 340px; }
  }
  @media (max-width: 575.98px){
    .qs-illustration{ height: 260px; }
  }

/* ===== INLINE <style> BLOCK #5 ===== */
.work-thumb{
      display:block; border-radius:16px; overflow:hidden;
      box-shadow:0 16px 40px -20px rgba(0,0,0,.25);
      border:1px solid rgba(16,30,41,.12);
      transition:transform .25s ease, box-shadow .25s ease;
      background:#fff;
    }
    .work-thumb img{
      width:100%; height:100%; object-fit:cover; /* preview prolijo */
      display:block;
    }
    .work-thumb:hover{ transform:translateY(-4px); box-shadow:0 24px 60px -24px rgba(0,0,0,.35); }
    /* Resalta el foco/hover con tu paleta */
    .work-thumb:focus-visible{ outline:3px solid #d9962d; outline-offset:3px; }

/* ===== INLINE <style> BLOCK #6 ===== */
.site-footer{
        background:#101e29; color:#d1d5db; padding:3.2rem 0 2rem;
        border-top:1px solid rgba(255,255,255,.06);
      }
      .site-footer a{ color:#d9962d; text-decoration:none }
      .site-footer a:hover{ color:#f1b860 }
  
      .footer-mid{
        display:flex; flex-wrap:wrap; align-items:center; justify-content:space-between;
        gap:1rem; margin-bottom:1.4rem;
      }
      .footer-logo{ height:34px; width:auto; display:block; }
      @media (min-width:992px){ .footer-logo{ height:38px; } }
  
      .footer-nav{ display:flex; flex-wrap:wrap; gap:1rem .9rem; }
      .footer-nav a{
        font-weight:700; font-size:.98rem; padding:.2rem .4rem; border-radius:.5rem;
        transition:background .2s ease, color .2s ease;
      }
      .footer-nav a:hover{ background:rgba(217,150,45,.12); }
  
      .footer-contacts{
        display:flex; flex-wrap:wrap; gap:1rem 1.5rem; margin:1rem 0 0;
        font-size:.98rem;
      }
      .footer-contacts i{ color:#d9962d; }
  
      .copyright{
        border-top:1px solid rgba(255,255,255,.08);
        margin-top:1.6rem; padding-top:1rem; font-size:.9rem; color:#a7b0bd;
      }
  
      /* compactar más en móvil */
      @media (max-width:576px){
        .site-footer{ padding:2.4rem 0 1.6rem; }
        .footer-nav{ gap:.6rem .8rem; }
        .footer-contacts{ gap:.6rem 1rem; }
      }

