/* moncreative — contacto.css
   /wp-content/themes/everhue/assets/css/contacto.css */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --sky: #0fbcd4;
      --sky-light: #7ee8fa;
      --orange: #ff6b2b;
      --orange-light: #ff9966;
      --bg: #080808;
      --bg2: #0d0d0d;
      --bg3: #121212;
      --white: #f0f0f0;
      --muted: rgba(240,240,240,0.55);
      --glass: rgba(255,255,255,0.04);
      --glass-border: rgba(255,255,255,0.08);
    }

    html, body {
      width: 100%;
      height: 100%;
      margin: 0;
      padding: 0;
      background: var(--bg) !important;
      color: var(--white) !important;
      font-family: 'DM Sans', sans-serif;
      cursor: default;
    }

    /* Custom Cursor - Solo en hover de elementos interactivos */
    #cursor {
      width: 12px; height: 12px;
      background: var(--sky);
      border-radius: 50%;
      position: fixed;
      top: 0; left: 0;
      pointer-events: none;
      z-index: 9999;
      transition: transform 0.15s ease-out, background 0.3s, width 0.3s, height 0.3s;
      box-shadow: 0 0 20px var(--sky), 0 0 40px rgba(15,188,212,0.4);
      mix-blend-mode: screen;
      display: none;
    }
    #cursor-ring {
      width: 36px; height: 36px;
      border: 1px solid rgba(15,188,212,0.4);
      border-radius: 50%;
      position: fixed;
      top: 0; left: 0;
      pointer-events: none;
      z-index: 9998;
      transition: all 0.08s ease-out;
      display: none;
    }
    
    body.cursor-active #cursor,
    body.cursor-active #cursor-ring {
      display: block;
    }

    /* Noise Texture */
    body::before {
      content: '';
      pointer-events: none;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
      opacity: 0.6;
      position: fixed;
      inset: 0;
      z-index: 1;
    }

    /* Animated Background Canvas */
    #bg-canvas {
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      pointer-events: none;
      z-index: 0;
      opacity: 0.35;
    }

    /* Animated Background Blobs */
    .mesh-bg {
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      pointer-events: none;
      z-index: 0;
      overflow: hidden;
    }
    .mesh-blob {
      position: absolute;
      border-radius: 50%;
      filter: blur(80px);
      animation: float-blob 18s ease-in-out infinite;
    }
    .blob-1 {
      width: 600px; height: 600px;
      background: radial-gradient(circle, rgba(15,188,212,0.12) 0%, transparent 70%);
      top: -200px; left: -200px;
      animation-duration: 20s;
    }
    .blob-2 {
      width: 500px; height: 500px;
      background: radial-gradient(circle, rgba(255,107,43,0.1) 0%, transparent 70%);
      top: 30%; right: -150px;
      animation-duration: 25s;
      animation-delay: -8s;
    }
    @keyframes float-blob {
      0%,100% { transform: translate(0,0) scale(1); }
      33% { transform: translate(40px,-30px) scale(1.05); }
      66% { transform: translate(-20px,50px) scale(0.95); }
    }

    /* ══════════════════════════════════════════
       MAPA + PANEL SUPERIOR
       ══════════════════════════════════════════ */
    .map-scene {
      position: relative;
      width: 100%;
      height: calc(100vh - 80px);
      min-height: 500px;
      display: grid;
      grid-template-columns: 320px 1fr;
      z-index: 2;
    }

    .map-panel {
      position: relative;
      z-index: 2;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      padding: 100px 32px 40px;
      background: rgba(13,13,13,0.85);
      border-right: 1px solid var(--glass-border);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
    }

    .map-panel h3 {
      font-family: 'Unbounded', sans-serif;
      font-size: 13px;
      font-weight: 600;
      color: #fff;
      letter-spacing: .15em;
      text-transform: uppercase;
      margin-bottom: 8px;
    }

    .map-panel h1 {
      font-family: 'Unbounded', sans-serif;
      font-size: 28px;
      font-weight: 700;
      line-height: 1.1;
      color: var(--white);
      margin-bottom: 20px;
    }

    .map-panel h1 em {
      font-style: italic;
      color: var(--orange-light);
    }

    .map-info {
      margin-top: 24px;
    }

    .map-info p {
      font-size: 13px;
      color: var(--muted);
      line-height: 1.8;
      margin-bottom: 6px;
    }

    .map-coords {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(15,188,212,0.08);
      border: 1px solid rgba(15,188,212,0.2);
      border-radius: 3px;
      padding: 6px 12px;
      font-size: 11px;
      letter-spacing: .08em;
      color: var(--sky-light);
      margin-top: 20px;
    }

    .map-coords-dot {
      width: 5px; height: 5px;
      border-radius: 50%;
      background: var(--sky);
      animation: pulse 2s ease-in-out infinite;
      box-shadow: 0 0 10px var(--sky);
    }

    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: .4; transform: scale(.7); }
    }

    .map-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 10px;
      letter-spacing: .15em;
      text-transform: uppercase;
      color: var(--white);
      text-decoration: none;
      margin-top: 20px;
      transition: color .3s;
    }

    .map-link:hover { color: var(--sky); }

    .map-container {
      position: relative;
      overflow: hidden;
      width: 100%;
      height: 100%;
    }

    .map-container iframe {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      border: none;
      filter: saturate(.6) contrast(1.1) brightness(.85);
      transition: filter .6s;
    }

    .map-container:hover iframe {
      filter: saturate(.8) contrast(1.05) brightness(.9);
    }

    .map-overlay {
      position: absolute;
      inset: 0;
      z-index: 2;
      pointer-events: none;
      background:
        linear-gradient(to right, rgba(8,8,8,0.6) 0%, transparent 20%),
        linear-gradient(to bottom, rgba(8,8,8,0.3) 0%, transparent 15%),
        linear-gradient(to top, rgba(8,8,8,0.4) 0%, transparent 20%);
    }

    /* ══════════════════════════════════════════
       SECCIÓN CONTACTO PRINCIPAL - 2 COLUMNAS
       ══════════════════════════════════════════ */
    .contact-main {
      background: linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%);
      padding: 100px 40px 80px;
      position: relative;
      z-index: 2;
    }

    .contact-grid {
      max-width: 1400px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: start;
    }

    .contact-title {
      grid-column: 1 / -1;
      margin-bottom: 20px;
    }

    .contact-title h2 {
      font-family: 'Unbounded', sans-serif;
      font-size: clamp(32px, 4vw, 48px);
      font-weight: 700;
      line-height: 1.1;
      letter-spacing: -1px;
      color: #fff;
      text-transform: uppercase;
    }

    .contact-title h2 .highlight {
      background: linear-gradient(135deg, var(--sky-light) 0%, var(--sky) 40%, var(--orange) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    /* Columna Izquierda - Información de contacto */
    .contact-info-col {
      display: flex;
      flex-direction: column;
      gap: 24px;
    }

    .contact-details {
      padding: 30px;
      background: var(--glass);
      border: 1px solid var(--glass-border);
      border-radius: 16px;
      backdrop-filter: blur(10px);
    }

    .contact-details h3 {
      font-family: 'Unbounded', sans-serif;
      font-size: 14px;
      font-weight: 600;
      color: #fff;
      margin-bottom: 16px;
      letter-spacing: .1em;
      text-transform: uppercase;
    }

    .contact-details p {
      font-size: 14px;
      line-height: 2;
      color: var(--muted);
      margin-bottom: 8px;
    }

    .contact-details a {
      color: var(--white);
      text-decoration: none;
      transition: color 0.3s, border-color 0.3s;
      border-bottom: 1px solid transparent;
    }

    .contact-details a:hover {
      color: var(--sky);
      border-bottom-color: var(--sky);
    }

    .contact-desc {
      font-size: 14px;
      line-height: 1.9;
      color: var(--muted);
    }

    /* Columna Derecha - Botón */
    .contact-action-col {
      width: 70%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: flex-start;
      padding: 40px;
      background: linear-gradient(135deg, rgba(15,188,212,0.05) 0%, rgba(255,107,43,0.05) 100%);
      border: 1px solid rgba(15,188,212,0.15);
      border-radius: 20px;
      backdrop-filter: blur(10px);
    }

    .contact-label {
      display: block;
      font-size: 9px;
      letter-spacing: .25em;
      text-transform: uppercase;
      color: var(--sky);
      margin-bottom: 24px;
      font-weight: 600;
    }

    .trigger-btn {
      position: relative !important;
      display: inline-flex !important;
      align-items: center !important;
      gap: 16px !important;
      padding: 20px 52px !important;
      background: linear-gradient(135deg, var(--sky) 0%, var(--orange) 100%) !important;
      border: none !important;
      color: var(--white) !important;
      font-family: 'DM Sans', sans-serif !important;
      font-size: 16px !important;
      font-weight: 700 !important;
      letter-spacing: .08em !important;
      text-transform: uppercase !important;
      border-radius: 60px !important;
      cursor: pointer !important;
      overflow: hidden !important;
      transition: all .4s cubic-bezier(.23,1,.32,1) !important;
      box-shadow: 0 10px 40px rgba(15,188,212,0.3), 0 0 0 1px rgba(255,255,255,0.1) inset !important;
      text-decoration: none !important;
      appearance: none !important;
      -webkit-appearance: none !important;
      line-height: 1 !important;
      white-space: nowrap !important;
      width: auto !important;
      min-width: 0 !important;
    }

    .trigger-btn::before {
      content: '' !important;
      position: absolute !important;
      inset: 0 !important;
      background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,0.2) 50%, transparent 70%) !important;
      transform: translateX(-100%) !important;
      transition: transform .7s ease !important;
      z-index: 0 !important;
    }

    .trigger-btn:hover::before {
      transform: translateX(100%) !important;
    }

    .trigger-btn:hover {
      transform: translateY(-4px) scale(1.02) !important;
      box-shadow: 0 20px 60px rgba(15,188,212,0.4), 0 0 0 1px rgba(255,255,255,0.2) inset !important;
      color: var(--white) !important;
      text-decoration: none !important;
    }

    .trigger-btn.is-open .t-icon {
      transform: rotate(45deg) !important;
    }

    .t-icon {
      width: 36px !important;
      height: 36px !important;
      border-radius: 50% !important;
      background: rgba(255,255,255,0.15) !important;
      backdrop-filter: blur(10px) !important;
      -webkit-backdrop-filter: blur(10px) !important;
      display: flex !important;
      align-items: center !important;
      justify-content: center !important;
      font-size: 16px !important;
      flex-shrink: 0 !important;
      transition: transform .4s ease, background .4s ease !important;
      color: var(--white) !important;
      border: 1px solid rgba(255,255,255,0.2) !important;
      position: relative !important;
      z-index: 1 !important;
    }

    .trigger-btn:hover .t-icon {
      transform: rotate(15deg) scale(1.1) !important;
      background: rgba(255,255,255,0.25) !important;
    }

    @media (max-width: 1024px) {
      .map-scene {
        grid-template-columns: 1fr;
        grid-template-rows: auto 400px;
        height: auto;
        min-height: auto;
      }
      .map-panel {
        border-right: none;
        border-bottom: 1px solid var(--glass-border);
        padding: 32px 24px;
      }
      .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }
      .contact-action-col {
        order: -1;
        width: 100%;
      }
    }

    @media (max-width: 768px) {
      .contact-main {
        padding: 60px 24px;
      }
      
      .map-scene {
        grid-template-rows: auto 300px;
        height: auto;
        min-height: auto;
        margin-top: 0;
      }
      
      .map-panel {
        padding: 50px 20px 30px;
      }
      
      .map-panel h1 {
        font-size: 24px;
        margin-top: 5px;
      }
      
      .map-panel h3 {
        margin-top: 70px;
        font-size: 11px;
      }
      
      .map-info p {
        font-size: 12px;
      }
      
      .map-coords {
        font-size: 10px;
        padding: 5px 10px;
      }
      
      .map-link {
        font-size: 9px;
      }
      
      .contact-title h2 {
        font-size: clamp(26px, 6vw, 36px);
        line-height: 1.15;
      }
      
      .contact-info-col {
        gap: 18px;
      }
      
      .contact-details {
        padding: 24px 20px;
      }
      
      .contact-details h3 {
        font-size: 13px;
      }
      
      .contact-details p {
        font-size: 13px;
      }
      
      .contact-desc {
        font-size: 13px;
        line-height: 1.7;
      }
      
      .contact-action-col {
        padding: 32px 24px;
        width: 100%;
      }
      
      .trigger-btn {
        padding: 18px 40px !important;
        font-size: 15px !important;
        width: 100% !important;
        justify-content: center !important;
      }
      
      .contact-label {
        font-size: 8px;
        text-align: center;
        display: block;
        width: 100%;
      }
    }
    
    @media (max-width: 480px) {
      .quote-stepper {
        width: 100%;
      }
      
      .contact-main {
        padding: 48px 16px;
      }
      
      .map-scene {
        height: auto;
        min-height: auto;
        grid-template-rows: auto 260px;
        margin-top: 0;
      }
      
      .map-panel {
        padding: 45px 16px 20px;
      }
      
      .map-panel h1 {
        font-size: 22px;
        margin-top: 5px;
      }
      
      .map-info {
        margin-top: 16px;
      }
      
      .contact-title {
        margin-bottom: 16px;
      }
      
      .contact-title h2 {
        font-size: 26px;
      }
      
      .contact-details {
        padding: 20px 16px;
      }
      
      .contact-action-col {
        width: 100%;
        padding: 24px 16px;
      }
      
      .trigger-btn {
        padding: 16px 32px !important;
        font-size: 14px !important;
      }
      
      .t-icon {
        width: 32px !important;
        height: 32px !important;
        font-size: 14px !important;
      }
    }
.cta-inner {
  position: relative;
  overflow: hidden;
}
.cta-inner::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: conic-gradient(from 0deg, transparent 0deg, rgba(15,188,212,0.05) 60deg, transparent 120deg, rgba(255,107,43,0.04) 180deg, transparent 240deg, rgba(15,188,212,0.03) 300deg, transparent 360deg);
  animation: rotate-conic 20s linear infinite;
  pointer-events: none;
  z-index: 0;
}
@keyframes rotate-conic {
  to { transform: rotate(360deg); }
}
.cta-inner > * { position: relative; z-index: 1; }