/* ================================================= */
/* ============== TRIPLE COLUMN LAYOUT ============= */
/* ================================================= */

:root {
  --text: #1d1d1f;
  --text-light: #6e6e73;
  --border: rgba(0,0,0,.06);
  --card-bg: #ffffff;
--shadow: 0 4px 16px rgba(0,0,0,.02);
--shadow-hover: 0 8px 22px rgba(0,0,0,.04);
  --radius: 18px;
  --radius-sm: 12px;
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  box-sizing: border-box;
}

/* ================================================= */
/* ================= CONTAINER ===================== */
/* ================================================= */

.support-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 50px 24px 70px;
}

/* ================================================= */
/* ============== TRIPLE GRID ====================== */
/* ================================================= */

.triple-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.triple-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
}

.triple-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

/* ================================================= */
/* ============== COLUMNA 1: MAPA ================== */
/* ================================================= */

.map-card {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.map-container {
  height: 160px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.map-info {
  padding: 4px 0;
}

.info-compact {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.info-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
}

.info-text {
  font-size: 14px;
  line-height: 1.5;
  color: var(--text);
}

/* ================================================= */
/* ========== COLUMNA 2: ACCIONES ================== */
/* ================================================= */

.actions-card {
  padding: 24px 22px;
}

.card-title {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 18px;
  color: var(--text);
  letter-spacing: -0.3px;
}

.actions-vertical {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.action-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 12px;
  background: #f8f8fa;
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: all 0.2s;
}

.action-row:hover {
  background: #f0f0f2;
  box-shadow: 0 4px 14px rgba(0,0,0,.03);
}




.action-icon-small {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: white;
  border-radius: 10px;
}

.action-icon-small svg {
  width: 20px;
  height: 20px;
  fill: #1d1d1f;
}

.action-row-content {
  display: flex;
  flex-direction: column;
}

.action-row-content strong {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 2px;
  color: var(--text);
}

.action-row-content small {
  font-size: 12px;
  color: var(--text-light);
}

/* ================================================= */
/* ========== COLUMNA 3: FORMULARIO ================ */
/* ================================================= */

.form-card-compact {
  padding: 24px 22px;
}

.form-subtitle {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 20px;
  margin-top: -8px;
}

.field-compact {
  margin-bottom: 12px;
}

.form-card-compact input,
.form-card-compact textarea {
  width: 100%;
  background: #f5f5f7;
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 14px;
  transition: all 0.2s;
}

.form-card-compact input:focus,
.form-card-compact textarea:focus {
  outline: none;
  border-color: #0071e3;
  background: white;
  box-shadow: 0 0 0 3px rgba(0,113,227,0.06);
}

.form-card-compact textarea {
  resize: vertical;
  min-height: 80px;
}

.btn-small {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin-top: 8px;
  padding: 12px 20px;
  background: #1d1d1f;
  border: none;
  border-radius: 30px;
  color: white;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s;
}

.btn-small:hover {
  background: #000;
  transform: scale(0.98);
}

.btn-small svg {
  fill: white;
}

/* ================================================= */
/* ================= PAGE TITLE ==================== */
/* ================================================= */

.page-title {
  position: relative;
  overflow: hidden;
  padding: 100px 24px 80px;
  background: white;
  text-align: center;
}

.page-title h1 {
  margin: 0 0 10px;
  font-size: 44px;
  font-weight: 500;
  letter-spacing: -1px;
  line-height: 1.05;
  color: var(--text);
  position: relative;
  z-index: 2;
}

.page-title p {
  font-size: 19px;
  font-weight: 400;
  color: var(--text-light);
  max-width: 550px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* ================================================= */
/* ================= ICON RAIN ===================== */
/* ================================================= */

.icon-rain {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: visible;
}

.rain-icon {
  position: absolute;
  left: 0;
  top: 0;
  will-change: transform;
  user-select: none;
  color: rgba(0, 0, 0, 0.30);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  pointer-events: none;
  z-index: 1;
}

/* ================================================= */
/* ============== RESPONSIVE ======================= */
/* ================================================= */

/* Tablet - 2 columnas */
@media (max-width: 950px) {
  .triple-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .triple-card:last-child {
    grid-column: span 2;
  }
}

/* Mobile - 1 columna */
@media (max-width: 650px) {
  .triple-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .triple-card:last-child {
    grid-column: span 1;
  }
  
  .form-card-compact {
    max-width: 100%;
  }
  
  .page-title h1 {
    font-size: 36px;
  }
  
  .page-title p {
    font-size: 18px;
  }
  
  .support-container {
    padding: 40px 20px 60px;
  }
}

/* Mobile pequeño */
@media (max-width: 480px) {
  .page-title {
    padding: 80px 20px 60px;
  }
  
  .page-title h1 {
    font-size: 32px;
  }
  
  .map-container {
    height: 140px;
  }
  
  .action-row {
    padding: 8px 12px;
  }
}