:root {
    --color-bg: #e7ecef;
    --color-primary: #234c78;
    --color-accent: #f39200;
    --color-text: #1f2933;
    --color-muted: #6b7280;
    --color-white: #ffffff;
  }
  
  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
  }

  /* Animaciones al hacer scroll */
  .js .animate-on-scroll {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.55s ease-out, transform 0.55s ease-out;
  }

  .animate-on-scroll.visible,
  .no-js .animate-on-scroll {
    opacity: 1;
    transform: translateY(0);
  }

  .animate-on-load {
    opacity: 0;
    transform: translateY(20px);
    animation: fade-slide-up 0.7s ease-out forwards;
  }

  .animate-delay-1 { transition-delay: 0.1s; }
  .animate-delay-2 { transition-delay: 0.2s; }
  .animate-delay-3 { transition-delay: 0.3s; }
  .animate-delay-4 { transition-delay: 0.4s; }
  .animate-delay-5 { transition-delay: 0.5s; }

  .animate-on-load.animate-delay-1 { animation-delay: 0.1s; }
  .animate-on-load.animate-delay-2 { animation-delay: 0.2s; }
  .animate-on-load.animate-delay-3 { animation-delay: 0.3s; }
  .animate-on-load.animate-delay-4 { animation-delay: 0.4s; }
  .animate-on-load.animate-delay-5 { animation-delay: 0.5s; }

  @keyframes fade-slide-up {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  body {
    margin: 0;
    font-family: "Rubik", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
  }
  
  /* Layout */
  
  .container {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 1.5rem;
  }
  
  .section {
    padding: 4.5rem 0;
  }
  
  .section-alt {
    background-color: var(--color-white);
  }
  
  .section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
  }
  
  .section-intro {
    max-width: 640px;
    color: var(--color-muted);
  }
  
  /* Navbar */
  
  .navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: var(--color-white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  }
  
  .navbar .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .navbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
  }
  
  .navbar-logo img {
    height: 48px;
    display: block;
  }
  
  .navbar-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
  }
  
  .navbar-links a {
    text-decoration: none;
    color: var(--color-text);
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s ease;
  }
  
  .navbar-links a:hover {
    color: var(--color-primary);
  }

  .navbar-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 1.4rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--color-accent), #f8a733);
    color: var(--color-white) !important;
    font-weight: 500;
    box-shadow: 0 8px 18px rgba(243, 146, 0, 0.28);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
  }

  .navbar-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(243, 146, 0, 0.35);
  }

  .navbar-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    border-radius: 0.5rem;
    transition: background-color 0.2s ease;
  }

  .navbar-toggle:hover {
    background-color: rgba(35, 76, 120, 0.06);
  }

  .navbar-toggle-bar {
    display: block;
    width: 22px;
    height: 2px;
    background-color: var(--color-primary);
    border-radius: 1px;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  .navbar-toggle[aria-expanded="true"] .navbar-toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .navbar-toggle[aria-expanded="true"] .navbar-toggle-bar:nth-child(2) {
    opacity: 0;
  }

  .navbar-toggle[aria-expanded="true"] .navbar-toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  
  /* Hero */
  
  .hero {
    padding: 5rem 0 4rem;
    background-color: var(--color-bg);
  }
  
  .hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.3fr);
    align-items: center;
    gap: 3rem;
  }
  
  .hero-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.8rem;
    border-radius: 999px;
    background-color: rgba(35, 76, 120, 0.06);
    color: var(--color-primary);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 0.7rem;
  }
  
  .hero-text h1 {
    font-size: clamp(2.2rem, 3.2vw, 2.9rem);
    line-height: 1.2;
    margin-bottom: 0.85rem;
    color: var(--color-primary);
  }
  
  .hero-text p {
    max-width: 560px;
    color: var(--color-muted);
    margin-bottom: 1.4rem;
  }
  
  .hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem 1.5rem;
  }
  
  .hero-secondary-text {
    font-size: 0.9rem;
    color: var(--color-muted);
  }
  
  .hero-right {
    position: relative;
    display: flex;
    justify-content: center;
    min-width: 0;
  }

  
  .hero-collage {
    position: relative;
    z-index: 1;
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 135px 90px 95px;
    gap: 0.65rem;
    max-width: 420px;
    width: 100%;
    padding: 6px;
    box-sizing: content-box;
  }
  
  .hero-collage-img {
    display: block;
    width: 100%;
    height: 100%;
    min-width: 0;
    min-height: 0;
    object-fit: cover;
    border-radius: 1.6rem;
    background-color: var(--color-bg);
  }
  
  /* Fila 1: círculo top-left, imagen ancha top-middle (col 2-3) */
  .hero-collage-img-wide {
    grid-column: 2 / 4;
    grid-row: 1;
  }
  
  /* Fila 2 col 1: high-five (medio izquierda) */
  .hero-collage-img-a {
    grid-column: 1;
    grid-row: 2;
  }
  
  /* Fila 2-3 col 2: laptop (centro, 2 filas de alto) */
  .hero-collage-img-b {
    grid-column: 2;
    grid-row: 2 / 4;
  }
  
  /* Fila 3 col 1: overhead (abajo izquierda) */
  .hero-collage-img-c {
    grid-column: 1;
    grid-row: 3;
  }
  
  /* Fila 2 col 3: cuaderno (medio derecha, solo 1 fila) */
  .hero-collage-img-d {
    grid-column: 3;
    grid-row: 2;
  }
  
  /* Círculos dentro del grid, no absolute */
  .hero-collage-circle {
    border-radius: 4px;
    transform: rotate(45deg);
    pointer-events: none;
  }
  
  /* Círculo arriba a la izquierda: ocupa celda (1,1) */
  .hero-collage-circle-primary {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
    align-self: start;
    width: 88px;
    height: 88px;
    background-color: var(--color-primary);
    opacity: 0.92;
  }
  
  /* Círculo abajo a la derecha: ocupa celda (3,3) */
  .hero-collage-circle-accent {
    grid-column: 3;
    grid-row: 3;
    justify-self: end;
    align-self: end;
    width: 72px;
    height: 72px;
    background-color: var(--color-accent);
    opacity: 0.95;
  }
  
  /* Botones */
  
  .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 1.4rem;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    background: linear-gradient(135deg, var(--color-accent), #f8a733);
    color: var(--color-white);
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    box-shadow: 0 8px 18px rgba(243, 146, 0, 0.28);
    transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
  }
  
  .btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(243, 146, 0, 0.35);
    filter: brightness(1.02);
  }
  
  .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.3rem;
    border-radius: 999px;
    border: 1px solid rgba(35, 76, 120, 0.2);
    background-color: transparent;
    color: var(--color-primary);
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
  }
  
  .btn-secondary:hover {
    background-color: rgba(35, 76, 120, 0.04);
    border-color: rgba(35, 76, 120, 0.4);
  }
  
  /* Secciones en columnas */
  
  .two-columns {
    display: grid;
    gap: 2.5rem;
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.2fr);
  }
  
  /* Caja destacada */
  
  .highlight-box {
    background-color: var(--color-white);
    border-radius: 1rem;
    padding: 1.5rem 1.75rem;
    border: 1px solid rgba(35, 76, 120, 0.12);
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.04);
  }
  
  .highlight-box h3 {
    margin-top: 0;
    margin-bottom: 0.75rem;
    color: var(--color-primary);
  }
  
  .highlight-box ul {
    margin: 0;
    padding-left: 1.1rem;
    color: var(--color-muted);
  }

  /* Nosotros */
  .section-nosotros {
    background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-white) 100%);
  }

  .nosotros-header {
    margin-bottom: 2.5rem;
  }

  .nosotros-tag {
    display: inline-block;
    padding: 0.25rem 0.8rem;
    border-radius: 999px;
    background-color: rgba(35, 76, 120, 0.08);
    color: var(--color-primary);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
  }

  .nosotros-header h2 {
    margin: 0;
  }

  .nosotros-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
  }

  .nosotros-card {
    background-color: var(--color-white);
    border-radius: 1.25rem;
    padding: 1.75rem 1.6rem;
    border: 1px solid rgba(35, 76, 120, 0.08);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
  }

  .nosotros-card:hover {
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.1);
    transform: translateY(-2px);
  }

  .nosotros-card h3 {
    margin: 0 0 0.75rem;
    font-size: 1.1rem;
    color: var(--color-primary);
  }

  .nosotros-card p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--color-text);
    line-height: 1.6;
  }

  .nosotros-valores-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0 0;
    padding: 0;
    list-style: none;
  }

  .nosotros-valores-list li {
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    background-color: rgba(243, 146, 0, 0.12);
    color: var(--color-primary);
    font-size: 0.85rem;
    font-weight: 500;
  }

  .nosotros-quote {
    margin: 0;
    padding: 1.75rem 2rem;
    background: linear-gradient(135deg, rgba(35, 76, 120, 0.06), rgba(243, 146, 0, 0.08));
    border-left: 4px solid var(--color-accent);
    border-radius: 0 1rem 1rem 0;
    font-size: 1.15rem;
    font-weight: 500;
    font-style: normal;
    color: var(--color-primary);
  }

  /* Servicios */

  .servicios-header {
    margin-bottom: 0.5rem;
  }

  .servicios-tag {
    display: inline-block;
    padding: 0.25rem 0.8rem;
    border-radius: 999px;
    background-color: rgba(35, 76, 120, 0.08);
    color: var(--color-primary);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
  }

  .servicios-header h2 {
    margin: 0;
  }

  .servicios-hint {
    font-size: 0.88rem;
    color: var(--color-muted);
    margin-top: 0.5rem;
    margin-bottom: 0;
  }

  .servicios-hint-mobile {
    display: none;
  }

  @media (max-width: 768px) {
    .servicios-hint-desktop {
      display: none;
    }

    .servicios-hint-mobile {
      display: block;
    }
  }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
  scroll-margin-top: 80px;
}

.service-card {
  background-color: var(--color-white);
  border-radius: 1.1rem;
  border: 1px solid rgba(35, 76, 120, 0.14);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.04);
  padding: 1rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  cursor: pointer;
  transition:
    box-shadow 0.18s ease,
    transform 0.18s ease,
    border-color 0.18s ease,
    background-color 0.18s ease;
}

.service-card:hover,
.service-card:focus {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.16);
  border-color: rgba(35, 76, 120, 0.35);
  background-color: #f7fafc;
  outline: none;
}

.service-card:focus-visible {
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.16), 0 0 0 2px var(--color-accent);
}

.service-card.is-active {
  border-color: var(--color-accent);
  background: linear-gradient(135deg, rgba(243, 146, 0, 0.08), rgba(243, 146, 0, 0.04));
  box-shadow: 0 12px 28px rgba(243, 146, 0, 0.15);
}

.service-card h3 {
  margin: 0;
  font-size: 1rem;
  color: var(--color-primary);
}

.service-card p {
  margin: 0.15rem 0 0;
  font-size: 0.9rem;
  color: var(--color-muted);
}

.service-card-more {
  display: none;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-accent);
  margin-top: auto;
  padding-top: 0.5rem;
}

@media (max-width: 768px) {
  .service-card-more {
    display: inline-block;
  }
}
  
  .service-detail-panel {
    margin-top: 2rem;
    position: relative;
    scroll-margin-top: 80px;
  }

  .service-detail-back {
    display: none;
  }

  @media (max-width: 768px) {
    .service-detail-back {
      display: inline-flex;
      align-items: center;
      margin-bottom: 1rem;
      padding: 0.5rem 0;
      font-size: 0.9rem;
      font-weight: 600;
      color: var(--color-accent);
      text-decoration: none;
      transition: color 0.2s ease;
    }

    .service-detail-back:hover {
      color: var(--color-primary);
    }

    .service-detail-back:focus-visible {
      outline: 2px solid var(--color-accent);
      outline-offset: 2px;
    }
  }
  
  .service-detail-content {
    display: none;
    background-color: var(--color-white);
    border-radius: 1.2rem;
    border: 1px solid rgba(35, 76, 120, 0.16);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.14);
    padding: 1.7rem 1.9rem;
    animation: service-fade 0.25s ease;
  }

  @keyframes service-fade {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  
  .service-detail-content h3 {
    margin-top: 0;
    margin-bottom: 0.4rem;
    color: var(--color-primary);
  }
  
  .service-detail-content p {
    margin: 0 0 0.8rem;
    color: var(--color-muted);
  }
  
  .service-detail-content ul {
    margin: 0;
    padding-left: 1.1rem;
    color: var(--color-text);
    font-size: 0.95rem;
  }
  
  .service-detail-content.is-active {
    display: block;
  }

  /* CTA WhatsApp después de servicios */
  .cta-whatsapp-wrap {
    margin-top: 2.5rem;
    padding: 1.75rem 1.5rem;
    background: linear-gradient(135deg, rgba(35, 76, 120, 0.06), rgba(37, 211, 102, 0.08));
    border: 1px solid rgba(37, 211, 102, 0.2);
    text-align: center;
  }

  .cta-whatsapp-text {
    margin: 0 0 1rem;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--color-primary);
  }

  .btn-whatsapp-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 1.4rem;
    border-radius: 999px;
    background-color: #25d366;
    color: var(--color-white);
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.35);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
  }

  .btn-whatsapp-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.45);
  }
  
  /* FAQ */
  .section-faq {
    background: linear-gradient(180deg, var(--color-white) 0%, var(--color-bg) 100%);
  }

  .faq-header {
    margin-bottom: 1.5rem;
  }

  .faq-tag {
    display: inline-block;
    padding: 0.25rem 0.8rem;
    border-radius: 999px;
    background-color: rgba(35, 76, 120, 0.08);
    color: var(--color-primary);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
  }

  .faq-header h2 {
    margin: 0;
  }
  
  .faq-list {
    margin-top: 0;
    display: grid;
    gap: 0.85rem;
  }
  
  .faq-item {
    background-color: var(--color-white);
    border-radius: 1.1rem;
    border: 1px solid rgba(35, 76, 120, 0.1);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
    overflow: hidden;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
  }

  .faq-item:hover {
    border-color: rgba(35, 76, 120, 0.2);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
  }

  .faq-item[open] {
    border-color: rgba(35, 76, 120, 0.25);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.1);
  }

  .faq-item summary {
    cursor: pointer;
    list-style: none;
    font-weight: 500;
    color: var(--color-primary);
    padding: 1.1rem 1.25rem;
    padding-right: 2.5rem;
    position: relative;
    transition: color 0.2s ease;
  }

  .faq-item summary:hover {
    color: var(--color-primary);
  }

  .faq-item summary::-webkit-details-marker {
    display: none;
  }

  .faq-item summary::after {
    content: "+";
    position: absolute;
    right: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--color-accent);
    transition: transform 0.35s ease;
  }

  .faq-item[open] summary::after {
    content: "−";
  }
  
  .faq-content {
    padding: 0 1.25rem 1.25rem;
  }

  @keyframes faq-dropdown {
    from {
      opacity: 0;
      transform: translateY(-6px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .faq-item[open] .faq-content {
    animation: faq-dropdown 0.4s ease-out;
  }
  
  .faq-content p {
    margin: 0;
    color: var(--color-muted);
    line-height: 1.6;
    font-size: 0.95rem;
  }
  
  /* Contacto */
  .section-contacto {
    background-color: var(--color-white);
  }

  .contacto-header {
    margin-bottom: 0.5rem;
  }

  .contacto-tag {
    display: inline-block;
    padding: 0.25rem 0.8rem;
    border-radius: 999px;
    background-color: rgba(35, 76, 120, 0.08);
    color: var(--color-primary);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
  }

  .contacto-header h2 {
    margin: 0;
  }

  .contacto-intro {
    margin: 0 0 1.75rem;
    max-width: 560px;
    color: var(--color-muted);
  }

  .contacto-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 2rem;
    align-items: start;
  }

  .contacto-form-wrapper {
    background-color: var(--color-bg);
    border-radius: 1.25rem;
    padding: 1.75rem 1.6rem;
    border: 1px solid rgba(35, 76, 120, 0.08);
  }

  .form-message {
    display: none;
    padding: 1rem 1.25rem;
    border-radius: 0.75rem;
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
  }

  .form-message-success {
    background-color: rgba(34, 197, 94, 0.12);
    color: #15803d;
    border: 1px solid rgba(34, 197, 94, 0.3);
  }

  .form-message-error {
    background-color: rgba(239, 68, 68, 0.1);
    color: #b91c1c;
    border: 1px solid rgba(239, 68, 68, 0.3);
  }

  .contact-form {
    display: grid;
    gap: 0.9rem;
    margin: 0;
  }
  
  .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
  }
  
  .form-group label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-primary);
  }
  
  input,
  textarea {
    font-family: inherit;
    padding: 0.6rem 0.75rem;
    border-radius: 0.6rem;
    border: 1px solid rgba(15, 23, 42, 0.15);
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
    background-color: var(--color-white);
  }
  
  input:focus,
  textarea:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 1px rgba(35, 76, 120, 0.1);
  }
  
  /* Info de contacto y mapa */
  .contacto-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }

  .contacto-info-block {
    background-color: var(--color-bg);
    border-radius: 1.1rem;
    padding: 1.35rem 1.5rem;
    border: 1px solid rgba(35, 76, 120, 0.08);
  }

  .contacto-info-block h3 {
    margin: 0 0 0.75rem;
    font-size: 1rem;
    color: var(--color-primary);
  }

  .contacto-info-block p {
    margin: 0.4rem 0;
    font-size: 0.93rem;
  }

  .contacto-info-block a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.2s ease;
  }

  .contacto-info-block a:hover {
    color: var(--color-accent);
    text-decoration: underline;
  }

  .contacto-linea-whatsapp {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem 1rem;
    margin-top: 0.15rem;
  }

  .btn-contacto-whatsapp {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 1rem;
    border-radius: 999px;
    background-color: #25d366;
    color: var(--color-white);
    font-weight: 500;
    font-size: 0.875rem;
    text-decoration: none;
    transition: opacity 0.2s ease, transform 0.15s ease;
  }

  .contacto-info-block .btn-contacto-whatsapp:hover {
    color: var(--color-white);
    text-decoration: none;
    opacity: 0.95;
    transform: translateY(-1px);
  }
  
  .map-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 0.9rem;
    border: 1px solid rgba(35, 76, 120, 0.15);
  }
  
  .map-wrapper iframe {
    width: 100%;
    height: 220px;
    border: 0;
  }
  
  /* Footer */
  
  .footer {
    background-color: var(--color-primary);
    color: var(--color-white);
  }
  
  .footer-content {
    padding: 1.25rem 0;
  }

  .footer-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
  }

  .footer-logo {
    display: block;
    transition: opacity 0.2s ease;
  }

  .footer-logo:hover {
    opacity: 0.85;
  }

  .footer-logo img {
    height: 72px;
    display: block;
  }

  .footer-copy {
    margin: 0;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.85rem;
  }

  /* Botón flotante WhatsApp */
  .whatsapp-float {
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    z-index: 90;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0 1.25rem 0 0.9rem;
    height: 56px;
    background-color: #25d366;
    color: var(--color-white);
    border-radius: 999px;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .whatsapp-float:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 22px rgba(37, 211, 102, 0.55);
  }

  .whatsapp-float svg {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
  }

  .whatsapp-float-text {
    white-space: nowrap;
  }
  
  /* Responsivo */
  
  @media (max-width: 900px) {
    .hero-layout,
    .two-columns,
    .contacto-grid {
      grid-template-columns: 1fr;
    }
  
    .hero-right {
      margin-top: 2rem;
      justify-content: center;
    }
  
    .hero-collage {
      max-width: 380px;
      grid-template-rows: 120px 82px 88px;
      gap: 0.55rem;
    }
  
    .navbar-links {
      gap: 1rem;
    }
  }
  
  @media (max-width: 768px) {
    .navbar-toggle {
      display: flex;
      margin-right: 0.5rem;
    }

    .navbar .container {
      padding-left: 1.5rem;
      padding-right: 1.75rem;
    }

    .navbar-content {
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
    }

    .navbar-links {
      display: none;
      width: 100%;
      flex-direction: column;
      gap: 0;
      padding: 0.5rem 1.25rem 0;
    }

    .navbar-links a {
      display: block;
      padding: 0.85rem 0;
      border-bottom: 1px solid rgba(35, 76, 120, 0.08);
    }

    .navbar-cta {
      margin-top: 0.5rem;
      margin-bottom: 0.5rem;
      width: 100%;
      padding: 0.75rem 1.5rem;
      text-align: center;
      border-bottom: none !important;
    }

    .navbar.is-open .navbar-links {
      display: flex;
    }
  }

  @media (max-width: 640px) {
    .navbar-content {
      align-items: center;
      justify-content: space-between;
    }
  
    .navbar-logo img {
      height: 40px;
    }
  
    .hero {
      padding-top: 4rem;
    }
  
    .hero-collage {
      max-width: 100%;
      grid-template-rows: 110px 75px 80px;
      gap: 0.5rem;
      padding: 4px;
    }
  
    .hero-collage-circle-primary {
      width: 68px;
      height: 68px;
    }
  
    .hero-collage-circle-accent {
      width: 56px;
      height: 56px;
    }
  
    .nosotros-quote {
      padding: 1.25rem 1.5rem;
      font-size: 1rem;
    }

    .footer-inner {
      flex-direction: column;
      gap: 0.5rem;
      text-align: center;
    }

    .footer-logo img {
      height: 56px;
    }

    .section {
      padding: 3.5rem 0;
    }

    .whatsapp-float {
      right: 1rem;
      bottom: 1rem;
      padding: 0 1rem 0 0.75rem;
      height: 50px;
      font-size: 0.9rem;
    }

    .whatsapp-float svg {
      width: 24px;
      height: 24px;
    }
  }