MIX · extractor de estilos
Template: mudanzasroberto.com/index.html · mtime: 2026-03-17 13:58
← 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: mudanzasroberto.com/index.html */
/* Template mtime: 2026-03-17 13:58:23 */

/* external link (no embedded): https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap */
/* external link (no embedded): https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css */
/* external link (no embedded): https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css */

/* ===== INLINE <style> BLOCK #1 ===== */
.hero-point{
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 16px;
  padding: 14px 16px;
  font-weight: 600;
  color: #1f2937;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
  min-height: 64px;
}

.hero-point i{
  width: 42px;
  height: 42px;
  min-width: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(13,110,253,.10);
  color: #0d6efd;
  font-size: 1.05rem;
}

#quienes-somos .info-card img{
  border-radius: 20px;
}
    /* ===== VARIABLES REFINADAS ===== */
    :root {
      /* Paleta existente - refinada */
      --accent: #164dae;
      --accent-dark: #a94f12;
      --accent-soft: #fff1e6; /* Más suave, basado en el color de acento */
      
      /* Fondo y superficie - más limpio */
      --bg: #ffffff;
      --surface: #ffffff;
      --surface-muted: #f8fafc;
      --card-bg: rgba(255, 255, 255, 0.9);
      
      /* Texto - mejor contraste */
      --text: #0f172a;
      --text-muted: #475569;
      
      /* Bordes y sombras - más elegantes */
      --border: rgba(214, 106, 31, 0.12);
      --border-light: rgba(15, 23, 42, 0.06);
      --shadow-sm: 0 4px 6px -1px rgb(0 0 0 / 0.05), 0 2px 4px -2px rgb(0 0 0 / 0.05);
      --shadow-md: 0 20px 25px -5px rgb(0 0 0 / 0.05), 0 8px 10px -6px rgb(0 0 0 / 0.05);
      --shadow-lg: 0 25px 50px -12px rgb(0 0 0 / 0.15);
      --shadow-accent: 0 10px 40px -5px rgba(214, 106, 31, 0.3);
      
      /* Radios - más suaves y consistentes */
      --radius-xs: 8px;
      --radius-sm: 12px;
      --radius-md: 20px;
      --radius-lg: 28px;
      --radius-xl: 999px;
      
      /* Espaciado y contenedor */
      --container: 1280px;
      --nav-h: 80px;
      --section-padding: 100px 0;
    }

    /* ===== RESET Y BASE ===== */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      width: 100%;
      overflow-x: hidden;
    }

    body {
      font-family: "Inter", system-ui, -apple-system, sans-serif;
      color: var(--text);
      background: var(--bg);
      line-height: 1.6;
      width: 100%;
      max-width: 100%;
      overflow-x: clip;
    }

    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    a {
      text-decoration: none;
      color: inherit;
      transition: color 0.2s ease;
    }

    iframe,
    video,
    .row,
    [class*="col-"] {
      max-width: 100%;
    }

    /* ===== UTILIDADES PRO ===== */
    .container-main {
      max-width: var(--container);
      padding-left: 24px;
      padding-right: 24px;
    }

    .section {
      padding: var(--section-padding);
      position: relative;
    }

    /* Degradados de fondo sutiles para secciones */
    .section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--border), transparent);
    }

    #quienes-somos,
    #porque-elegirnos,
    #faqs {
      background: var(--surface-muted);
    }

    /* ===== TIPOGRAFÍA PREMIUM ===== */
    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--accent-dark);
      background: var(--accent-soft);
      padding: 0.5rem 1rem;
      border-radius: var(--radius-xl);
      margin-bottom: 1.5rem;
      border: 1px solid var(--border);
      backdrop-filter: blur(4px);
    }

    .section-title {
      font-size: clamp(2.2rem, 5vw, 3.2rem);
      font-weight: 700;
      letter-spacing: -0.03em;
      line-height: 1.1;
      margin: 0;
      color: var(--text);
    }

    .section-subtitle {
      font-size: 1.1rem;
      color: var(--text-muted);
      max-width: 680px;
      margin: 1rem auto 0;
      line-height: 1.7;
    }

    /* ===== NAVEGACIÓN DE LUJO ===== */
    .navbar-wrap {
      position: sticky;
      top: 0;
      z-index: 1040;
      backdrop-filter: blur(16px) saturate(180%);
      background: rgba(255, 255, 255, 0.8);
      border-bottom: 1px solid var(--border-light);
    }

    .navbar {
      min-height: var(--nav-h);
      padding: 0.75rem 0;
    }

    .navbar-brand {
      display: flex;
      align-items: center;
      gap: 12px;
      font-weight: 700;
      color: var(--text);
      min-width: 0;
      max-width: calc(100% - 76px);
      flex: 1 1 auto;
    }

    .brand-logo,
    .footer-logo {
      height: 44px;
      width: auto;
      transition: transform 0.2s ease;
    }

    .navbar-brand:hover .brand-logo {
      transform: scale(1.02);
    }

    .navbar-brand span {
      font-size: 1rem;
      line-height: 1.2;
      letter-spacing: -0.02em;
      white-space: normal;
      word-break: break-word;
    }

    .navbar-toggler {
      border: 1px solid var(--border-light);
      border-radius: var(--radius-sm);
      padding: 0.6rem 0.8rem;
      box-shadow: none !important;
      flex: 0 0 auto;
      margin-left: 12px;
    }

    .navbar-toggler:focus {
      border-color: var(--accent);
    }

    .navbar-toggler-icon {
      width: 1.4rem;
      height: 1.4rem;
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(15,23,42,0.92)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }

    .navbar-collapse {
      min-width: 0;
    }

    .navbar-nav {
      gap: 4px;
    }

    .nav-link {
      font-weight: 600;
      font-size: 0.95rem;
      color: var(--text);
      padding: 0.6rem 1rem !important;
      border-radius: var(--radius-md);
      transition: all 0.2s ease;
    }

    .nav-link:hover {
      color: var(--accent);
      background: var(--accent-soft);
    }

    .nav-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0.7rem 1.8rem;
      border-radius: var(--radius-xl);
      background: var(--accent);
      color: white;
      font-weight: 600;
      font-size: 0.95rem;
      letter-spacing: -0.01em;
      transition: all 0.3s ease;
      box-shadow: var(--shadow-accent);
      border: 1px solid transparent;
    }

    .nav-cta:hover {
      background: var(--accent-dark);
      color: white;
      transform: translateY(-2px);
      box-shadow: 0 20px 30px -10px rgba(214, 106, 31, 0.4);
    }

    /* ===== HERO ESPECTACULAR ===== */
    .hero {
      min-height: auto;
      display: flex;
      align-items: center;
      padding: 28px 0 56px;
      background: radial-gradient(circle at 80% 50%, rgba(214, 106, 31, 0.03) 0%, transparent 50%),
                  radial-gradient(circle at 20% 30%, rgba(214, 106, 31, 0.02) 0%, transparent 50%);
    }

    .hero-copy h1 {
      font-size: clamp(2.8rem, 6vw, 4.8rem);
      font-weight: 700;
      letter-spacing: -0.05em;
      line-height: 1.1;
      margin: 0;
      color: var(--text);
    }

    .hero-copy p {
      font-size: 1.1rem;
      color: var(--text-muted);
      margin: 1.5rem 0 2rem;
      max-width: 580px;
      line-height: 1.8;
    }

    .hero-points {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin: 2rem 0;
    }

    .hero-point {
      background: rgba(255, 255, 255, 0.9);
      border: 1px solid var(--border-light);
      border-radius: var(--radius-md);
      padding: 0.6rem 1.2rem;
      font-weight: 600;
      font-size: 0.9rem;
      color: var(--text);
      backdrop-filter: blur(4px);
      box-shadow: var(--shadow-sm);
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      margin-top: 2rem;
    }

    .btn-main,
    .btn-ghost {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 56px;
      padding: 0 2rem;
      border-radius: var(--radius-xl);
      font-weight: 600;
      font-size: 1rem;
      transition: all 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .btn-main {
      background: var(--accent);
      color: white;
      box-shadow: var(--shadow-accent);
    }

    .btn-main:hover {
      background: var(--accent-dark);
      transform: translateY(-2px);
      box-shadow: 0 25px 35px -10px rgba(214, 106, 31, 0.5);
    }

    .btn-ghost {
      background: white;
      color: var(--text);
      border: 1.5px solid var(--border-light);
    }

    .btn-ghost:hover {
      border-color: var(--accent);
      color: var(--accent);
      transform: translateY(-2px);
      box-shadow: var(--shadow-md);
    }

    .hero-card {
      background: white;
      border-radius: var(--radius-lg);
      padding: 16px;
      box-shadow: var(--shadow-lg);
      border: 1px solid var(--border-light);
      position: relative;
    }

    .hero-media {
    border-radius: calc(var(--radius-lg) - 8px);
    overflow: hidden;
    background: linear-gradient(180deg, #f8fbff 0%, #eef4ff 100%);
    min-height: 460px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
  }
  
  .hero-media img {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    object-fit: contain;
    transition: transform 0.7s ease;
  }
  
  
  .quienes-card {
    min-height: 420px;
    background: #f8f9fa;
  }

  .quienes-img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: contain;
    object-position: center center;
    display: block;
  }

  @media (max-width: 767.98px) {
    .quienes-card {
      min-height: auto;
    }

    .quienes-img {
      height: auto;
      min-height: 0;
      max-height: 420px;
      object-fit: contain;
    }
  }
@media (max-width: 991.98px) {
    .hero-media {
      min-height: 380px;
      padding: 8px;
    }
  
    .hero-card {
      margin: 1.25rem 0 0;
      max-width: none;
    }
  }
  
  @media (max-width: 767.98px) {
    .hero-media {
      min-height: 300px;
      padding: 8px;
    }
  }
    .hero-card:hover .hero-media img {
      transform: scale(1.05);
    }

    .hero-badge {
      position: absolute;
      bottom: 28px;
      left: 28px;
      right: 28px;
      background: rgba(255, 255, 255, 0.98);
      backdrop-filter: blur(10px);
      border-radius: var(--radius-md);
      padding: 1.2rem 1.5rem;
      border: 1px solid var(--border-light);
      box-shadow: var(--shadow-lg);
    }

    .hero-badge strong {
      display: block;
      font-size: 1rem;
      font-weight: 700;
      color: var(--text);
    }

    .hero-badge span {
      display: block;
      color: var(--text-muted);
      font-size: 0.9rem;
      margin-top: 4px;
      line-height: 1.6;
    }

    /* ===== CARDS MODERNAS ===== */
    .info-card,
    .service-card,
    .why-card,
    .contact-card {
      background: white;
      border: 1px solid var(--border-light);
      border-radius: var(--radius-lg);
      padding: 2.2rem 1.8rem;
      height: 100%;
      transition: all 0.4s ease;
      box-shadow: var(--shadow-sm);
    }

    .service-card:hover,
    .why-card:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow-lg);
      border-color: var(--accent);
    }

    .service-icon,
    .why-icon {
      width: 64px;
      height: 64px;
      border-radius: var(--radius-md);
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--accent-soft);
      color: var(--accent);
      margin-bottom: 1.5rem;
      border: 1px solid var(--border);
      transition: all 0.3s ease;
    }

    .service-card:hover .service-icon,
    .why-card:hover .why-icon {
      background: var(--accent);
      color: white;
      border-color: var(--accent);
    }

    .service-icon svg,
    .why-icon svg {
      width: 28px;
      height: 28px;
      transition: transform 0.3s ease;
    }

    .service-card:hover .service-icon svg,
    .why-card:hover .why-icon svg {
      transform: scale(1.1);
    }

    .service-card h3,
    .why-card h3 {
      font-size: 1.25rem;
      font-weight: 700;
      margin-bottom: 0.75rem;
      letter-spacing: -0.02em;
    }

    .service-card p,
    .why-card p {
      color: var(--text-muted);
      line-height: 1.7;
      margin: 0;
      font-size: 0.95rem;
    }

    /* ===== GALERÍA MEJORADA ===== */
    .gal-gallery {
      background: white;
    }

    .gal-frame {
      background: var(--surface-muted);
      border-radius: var(--radius-lg);
      overflow: hidden;
      height: 500px;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 12px;
      border: 1px solid var(--border-light);
      box-shadow: var(--shadow-md);
    }

    .gal-img {
      max-width: 100%;
      max-height: 100%;
      width: auto !important;
      height: auto !important;
      object-fit: contain;
      border-radius: calc(var(--radius-lg) - 12px);
      cursor: pointer;
      transition: transform 0.3s ease;
    }

    .gal-img:hover {
      transform: scale(1.02);
    }

    .gal-gallery .carousel {
      position: relative;
      padding-bottom: 82px;
    }

    .carousel-control-prev,
    .carousel-control-next {
      width: 56px;
      height: 56px;
      background: rgba(255, 255, 255, 0.96);
      border-radius: 50%;
      top: calc(50% - 41px);
      transform: translateY(-50%);
      opacity: 1;
      border: 1px solid rgba(15, 23, 42, 0.1);
      box-shadow: 0 16px 36px rgba(15, 23, 42, 0.16);
      backdrop-filter: blur(6px);
      z-index: 3;
      transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
    }

    .carousel-control-prev {
      left: 16px;
    }

    .carousel-control-next {
      right: 16px;
    }

    .carousel-control-prev:hover,
    .carousel-control-next:hover {
      background: var(--accent);
      border-color: var(--accent);
      transform: translateY(-50%) scale(1.04);
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
      width: 22px;
      height: 22px;
      background-size: 22px 22px;
      opacity: 1;
      filter: none;
    }

    .carousel-control-prev-icon {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M14.5 5 8 12l6.5 7' stroke='%230f172a' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    }

    .carousel-control-next-icon {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M9.5 5 16 12l-6.5 7' stroke='%230f172a' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    }

    .carousel-control-prev:hover .carousel-control-prev-icon {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M14.5 5 8 12l6.5 7' stroke='%23ffffff' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    }

    .carousel-control-next:hover .carousel-control-next-icon {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M9.5 5 16 12l-6.5 7' stroke='%23ffffff' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    }

    .carousel-indicators {
      position: absolute;
      left: 50%;
      bottom: 20px;
      transform: translateX(-50%);
      margin: 0;
      width: max-content;
      max-width: calc(100% - 32px);
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 12px 16px;
      background: rgba(255, 255, 255, 0.96);
      border: 1px solid rgba(15, 23, 42, 0.08);
      border-radius: 999px;
      box-shadow: 0 16px 36px rgba(15, 23, 42, 0.12);
      z-index: 2;
    }

    .carousel-indicators button {
      width: 12px;
      height: 12px;
      margin: 0;
      border-radius: 999px;
      background: #cbd5e1;
      opacity: 1;
      border: 0;
      flex: 0 0 auto;
      transition: all 0.2s ease;
    }

    .carousel-indicators button:hover {
      background: #94a3b8;
    }

    .carousel-indicators button.active {
      width: 30px;
      background: var(--accent);
    }

    /* ===== ACORDEÓN PREMIUM ===== */
    .accordion-wrap {
      max-width: 900px;
      margin: 2rem auto 0;
    }

    .accordion-item {
      background: white;
      border: 1px solid var(--border-light);
      border-radius: var(--radius-md) !important;
      margin-bottom: 1rem;
      overflow: hidden;
      box-shadow: var(--shadow-sm);
    }

    .accordion-button {
      font-weight: 600;
      padding: 1.2rem 1.5rem;
      color: var(--text);
      background: white;
      box-shadow: none !important;
      font-size: 1rem;
    }

    .accordion-button:not(.collapsed) {
      background: var(--accent-soft);
      color: var(--accent-dark);
    }

    .accordion-button:focus {
      border-color: var(--accent);
    }

    .accordion-body {
      padding: 0 1.5rem 1.5rem;
      color: var(--text-muted);
      line-height: 1.8;
      font-size: 0.95rem;
    }

    /* ===== CONTACTO Y FORMULARIO ===== */
    .contact-card {
      background: linear-gradient(145deg, white, var(--surface-muted));
    }

    .contact-title {
      font-size: 1.5rem;
      font-weight: 700;
      letter-spacing: -0.02em;
      margin-bottom: 1rem;
    }

    .contact-list {
      list-style: none;
      padding: 0;
      margin: 2rem 0 0;
      display: grid;
      gap: 16px;
    }

    .contact-list li {
      display: flex;
      gap: 16px;
      align-items: flex-start;
      padding: 1rem;
      background: white;
      border-radius: var(--radius-md);
      border: 1px solid var(--border-light);
    }

    .contact-dot {
      width: 44px;
      height: 44px;
      border-radius: var(--radius-sm);
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--accent-soft);
      color: var(--accent);
      flex-shrink: 0;
    }

    .contact-list strong {
      display: block;
      font-weight: 600;
      margin-bottom: 4px;
    }

    .contact-list span {
      display: block;
      color: var(--text-muted);
      font-size: 0.9rem;
      line-height: 1.6;
    }

    .form-card {
      background: white;
      border: 1px solid var(--border-light);
      border-radius: var(--radius-lg);
      padding: 2.5rem;
      box-shadow: var(--shadow-md);
    }

    .form-label {
      font-weight: 600;
      font-size: 0.9rem;
      color: var(--text);
      margin-bottom: 0.5rem;
    }

    .form-control,
    .form-select {
      min-height: 52px;
      border-radius: var(--radius-md);
      border: 1.5px solid var(--border-light);
      padding: 0.75rem 1rem;
      font-size: 0.95rem;
      transition: all 0.2s ease;
      background: white;
    }

    .form-control:focus,
    .form-select:focus {
      border-color: var(--accent);
      box-shadow: 0 0 0 4px rgba(214, 106, 31, 0.1);
    }

    textarea.form-control {
      min-height: 120px;
      resize: vertical;
    }

    .form-note {
      font-size: 0.85rem;
      color: var(--text-muted);
      margin-top: 1.5rem;
      line-height: 1.6;
      padding: 1rem;
      background: var(--surface-muted);
      border-radius: var(--radius-sm);
    }

    /* ===== FOOTER ===== */
    footer {
      background: var(--text);
      color: white;
      padding: 60px 0 30px;
      margin-top: 0;
    }

    .footer-brand {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 1.5rem;
    }

    .footer-brand span {
      font-size: 1rem;
      font-weight: 600;
      letter-spacing: -0.02em;
    }

    .footer-text {
      color: rgba(255, 255, 255, 0.7);
      line-height: 1.7;
      margin-bottom: 2rem;
      font-size: 0.95rem;
    }

    .footer-title {
      font-size: 1rem;
      font-weight: 700;
      margin-bottom: 1.5rem;
      letter-spacing: -0.02em;
      color: white;
    }

    .footer-links,
    .footer-contact {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      gap: 0.8rem;
    }

    .footer-links a,
    .footer-contact li {
      color: rgba(255, 255, 255, 0.7);
      font-size: 0.95rem;
      transition: all 0.2s ease;
    }

    .footer-links a:hover {
      color: white;
      transform: translateX(4px);
    }

    .footer-divider {
      height: 1px;
      background: rgba(255, 255, 255, 0.1);
      margin: 3rem 0 2rem;
    }

    .footer-bottom {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      align-items: center;
      justify-content: space-between;
      color: rgba(255, 255, 255, 0.6);
      font-size: 0.9rem;
    }

    .footer-credit a {
      color: white;
      font-weight: 600;
      border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    }

    .footer-credit a:hover {
      border-bottom-color: white;
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 991.98px) {
      .navbar > .container,
      .navbar > .container-fluid,
      .navbar > .container-sm,
      .navbar > .container-md,
      .navbar > .container-lg,
      .navbar > .container-xl,
      .navbar > .container-xxl {
        flex-wrap: wrap;
      }

      .navbar-brand {
        max-width: calc(100% - 72px);
      }

      .navbar-collapse {
        background: white;
        border-radius: var(--radius-lg);
        padding: 1rem;
        margin-top: 1rem;
        border: 1px solid var(--border-light);
        box-shadow: var(--shadow-lg);
        width: 100%;
        flex-basis: 100%;
        overflow: hidden;
      }

      .navbar-nav {
        gap: 0;
        width: 100%;
      }

      .nav-item,
      .nav-link {
        width: 100%;
      }

      .nav-link {
        display: block;
        padding-left: 0.9rem !important;
        padding-right: 0.9rem !important;
      }

      .hero {
        min-height: auto;
        padding-top: 24px;
      }

      .hero-copy {
        text-align: center;
      }

      .hero-copy h1,
      .hero-copy p {
        margin-left: auto;
        margin-right: auto;
      }

      .hero-points {
        justify-content: center;
      }

      .hero-actions {
        justify-content: center;
      }
      .hero-card {
        margin: 1.25rem auto 0;
        max-width: 100%;
      }

      .hero-badge {
        position: static;
        margin-top: 1rem;
      }

      .carousel-control-prev,
      .carousel-control-next {
        width: 46px;
        height: 46px;
        top: calc(50% - 41px);
      }

      .carousel-control-prev {
        left: 10px;
      }

      .carousel-control-next {
        right: 10px;
      }
    }

    @media (max-width: 767.98px) {
      .section {
        padding: 60px 0;
      }

      .gal-gallery .carousel {
        padding-bottom: 96px;
      }

      .carousel-indicators {
        bottom: 16px;
        gap: 8px;
        padding: 10px 14px;
      }

      .carousel-indicators button {
        width: 10px;
        height: 10px;
      }

      .carousel-indicators button.active {
        width: 24px;
      }

      .section-title {
        font-size: clamp(1.8rem, 5vw, 2.4rem);
      }

      .hero-copy h1 {
        font-size: clamp(2rem, 8vw, 2.8rem);
      }

      .hero-actions {
        flex-direction: column;
      }

      .btn-main,
      .btn-ghost {
        width: 100%;
      }

      .gal-frame {
        height: 350px;
      }

      .form-card {
        padding: 1.5rem;
      }

      .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
      }
    }

    @media (max-width: 575.98px) {
      .container-main {
        padding-left: 20px;
        padding-right: 20px;
      }

      .navbar {
        min-height: auto;
      }

      .navbar-brand {
        gap: 10px;
        max-width: calc(100% - 68px);
      }

      .navbar-brand span {
        font-size: 0.92rem;
      }

      .navbar-toggler {
        padding: 0.5rem 0.7rem;
        margin-left: 8px;
      }

      .hero-points {
        flex-direction: column;
      }

      .hero-point {
        text-align: center;
      }

      .brand-logo,
      .footer-logo {
        height: 40px;
      }
    }
  

    /* ===== AJUSTES ESTRUCTURALES ANTI-DESBORDE ===== */
    html, body {
      max-width: 100%;
      overflow-x: hidden;
    }

    main,
    section,
    .container,
    .container-main,
    .row,
    .col-12,
    .col-sm-6,
    .col-md-6,
    .col-lg-5,
    .col-lg-6,
    .col-lg-7,
    .col-xl-3,
    .col-xl-4 {
      min-width: 0;
    }

    .hero,
    #quienes-somos {
      overflow-x: clip;
    }

    .hero-grid {
      margin-left: 0;
      margin-right: 0;
    }

    .hero-copy,
    .hero-card,
    .info-card,
    .quienes-card {
      min-width: 0;
      max-width: 100%;
    }

    .hero-copy,
    #quienes-somos .info-card {
      overflow: hidden;
    }

    .hero-copy p,
    .section-subtitle,
    .navbar-brand span,
    .contact-list span,
    .contact-list strong {
      overflow-wrap: anywhere;
      word-break: break-word;
    }

    .hero-media,
    .gal-frame,
    .quienes-card {
      width: 100%;
      max-width: 100%;
    }

    .hero-media img,
    .quienes-img,
    .gal-img {
      max-width: 100%;
    }

    #quienes-somos .row {
      margin-left: 0;
      margin-right: 0;
    }

    @media (max-width: 991.98px) {
      .hero {
        padding: 18px 0 44px;
      }

      .hero .row,
      #quienes-somos .row {
        --bs-gutter-x: 1.25rem;
      }

      .hero-copy {
        padding-left: 0;
        padding-right: 0;
      }

      .hero-card {
        width: 100%;
      }
    }

    @media (max-width: 767.98px) {
      .container,
      .container-main {
        width: 100%;
        padding-left: 16px !important;
        padding-right: 16px !important;
      }

      .hero {
        padding: 10px 0 38px;
      }

      .hero .row,
      #quienes-somos .row,
      #contacto .row,
      #servicios .row,
      #porque-elegirnos .row {
        --bs-gutter-x: 1rem;
        margin-left: 0;
        margin-right: 0;
      }

      .hero-copy {
        text-align: left;
      }

      .hero-copy h1,
      .hero-copy p,
      .section-subtitle {
        max-width: 100%;
      }

      .hero-points,
      .hero-actions {
        width: 100%;
      }

      .hero-point {
        width: 100%;
        justify-content: flex-start;
        text-align: left;
      }

      .hero-card {
        padding: 12px;
        border-radius: 22px;
      }

      .hero-media {
        min-height: 240px;
        padding: 4px;
      }

      .hero-badge {
        padding: 1rem 1rem;
      }

      .quienes-card {
        min-height: auto;
      }

      .quienes-img {
        width: 100%;
        height: auto;
        max-height: none;
        min-height: 0;
        object-fit: cover;
      }

      #quienes-somos .info-card {
        padding: 1.5rem;
      }

      #quienes-somos .info-card.quienes-card {
        padding: 0;
      }
    }

    @media (max-width: 575.98px) {
      .container,
      .container-main {
        padding-left: 14px !important;
        padding-right: 14px !important;
      }

      .navbar-brand {
        max-width: calc(100% - 60px);
      }

      .hero-copy h1 {
        font-size: clamp(1.9rem, 8vw, 2.4rem);
      }

      .hero-copy p {
        font-size: 1rem;
      }

      .hero-media {
        min-height: 210px;
      }
    }

/* ===== 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;
  }

  .fb-float{
    position:fixed;
    right:18px;
    bottom:92px;
    z-index:9998;
    width:54px;
    height:54px;
    border-radius:50%;
    display:grid;
    place-items:center;
    color:#fff;
    text-decoration:none;
    background:linear-gradient(180deg, #1877F2 0%, #0f63d6 100%);
    box-shadow:0 10px 30px rgba(0,0,0,.25);
    transition:transform .25s, box-shadow .25s, opacity .25s;
  }
  .fb-float:hover{
    transform:translateY(-2px) scale(1.04);
    box-shadow:0 14px 36px rgba(0,0,0,.35);
  }

  .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);
    animation:fadeIn .25s ease;
    font-size:.9rem;
  }
  @keyframes fadeIn{
    from{opacity:0; transform:translateY(5px)}
    to{opacity:1; transform:none}
  }
  .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);
  }

  .wa-body::-webkit-scrollbar{width:6px}
  .wa-body::-webkit-scrollbar-track{background:rgba(0,0,0,.03); border-radius:3px}
  .wa-body::-webkit-scrollbar-thumb{background:rgba(0,0,0,.12); border-radius:3px}
  .wa-body::-webkit-scrollbar-thumb:hover{background:rgba(0,0,0,.18)}

  @media (max-width:480px){
    .fb-float{right:12px; bottom:86px; width:52px; height:52px}
    .wa-float{right:12px; bottom:12px}
    .wa-card{width:calc(100vw - 24px); right:0}
  }


    /* ===== AJUSTES ESTRUCTURALES ANTI-DESBORDE ===== */
    html, body {
      max-width: 100%;
      overflow-x: hidden;
    }

    main,
    section,
    .container,
    .container-main,
    .row,
    .col-12,
    .col-sm-6,
    .col-md-6,
    .col-lg-5,
    .col-lg-6,
    .col-lg-7,
    .col-xl-3,
    .col-xl-4 {
      min-width: 0;
    }

    .hero,
    #quienes-somos {
      overflow-x: clip;
    }

    .hero-grid {
      margin-left: 0;
      margin-right: 0;
    }

    .hero-copy,
    .hero-card,
    .info-card,
    .quienes-card {
      min-width: 0;
      max-width: 100%;
    }

    .hero-copy,
    #quienes-somos .info-card {
      overflow: hidden;
    }

    .hero-copy p,
    .section-subtitle,
    .navbar-brand span,
    .contact-list span,
    .contact-list strong {
      overflow-wrap: anywhere;
      word-break: break-word;
    }

    .hero-media,
    .gal-frame,
    .quienes-card {
      width: 100%;
      max-width: 100%;
    }

    .hero-media img,
    .quienes-img,
    .gal-img {
      max-width: 100%;
    }

    #quienes-somos .row {
      margin-left: 0;
      margin-right: 0;
    }

    @media (max-width: 991.98px) {
      .hero {
        padding: 18px 0 44px;
      }

      .hero .row,
      #quienes-somos .row {
        --bs-gutter-x: 1.25rem;
      }

      .hero-copy {
        padding-left: 0;
        padding-right: 0;
      }

      .hero-card {
        width: 100%;
      }
    }

    @media (max-width: 767.98px) {
      .container,
      .container-main {
        width: 100%;
        padding-left: 16px !important;
        padding-right: 16px !important;
      }

      .hero {
        padding: 10px 0 38px;
      }

      .hero .row,
      #quienes-somos .row,
      #contacto .row,
      #servicios .row,
      #porque-elegirnos .row {
        --bs-gutter-x: 1rem;
        margin-left: 0;
        margin-right: 0;
      }

      .hero-copy {
        text-align: left;
      }

      .hero-copy h1,
      .hero-copy p,
      .section-subtitle {
        max-width: 100%;
      }

      .hero-points,
      .hero-actions {
        width: 100%;
      }

      .hero-point {
        width: 100%;
        justify-content: flex-start;
        text-align: left;
      }

      .hero-card {
        padding: 12px;
        border-radius: 22px;
      }

      .hero-media {
        min-height: 240px;
        padding: 4px;
      }

      .hero-badge {
        padding: 1rem 1rem;
      }

      .quienes-card {
        min-height: auto;
      }

      .quienes-img {
        width: 100%;
        height: auto;
        max-height: none;
        min-height: 0;
        object-fit: cover;
      }

      #quienes-somos .info-card {
        padding: 1.5rem;
      }

      #quienes-somos .info-card.quienes-card {
        padding: 0;
      }
    }

    @media (max-width: 575.98px) {
      .container,
      .container-main {
        padding-left: 14px !important;
        padding-right: 14px !important;
      }

      .navbar-brand {
        max-width: calc(100% - 60px);
      }

      .hero-copy h1 {
        font-size: clamp(1.9rem, 8vw, 2.4rem);
      }

      .hero-copy p {
        font-size: 1rem;
      }

      .hero-media {
        min-height: 210px;
      }
    }

      
Manifest preview
{
    "template": "mudanzasroberto.com/index.html",
    "template_mtime": 1773755903,
    "template_mtime_human": "2026-03-17T13:58:23+00:00",
    "css_links_found": [
        "https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap",
        "https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css",
        "https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css"
    ],
    "css_links_external": [
        "https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap",
        "https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css",
        "https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css"
    ],
    "css_links_embedded": [],
    "inline_style_blocks": 2,
    "inline_imports_external": [],
    "inline_imports_embedded": [],
    "missing_css_files": []
}