/* ================================================= */
/* ============== APPLE DESIGN SYSTEM ============== */
/* ============== CONTACT PAGE ===================== */
/* ================================================= */

:root {
  --apple-bg: #ffffff;
  --apple-text: #1d1d1f;
  --apple-muted: #6e6e73;
  --apple-border: rgba(0,0,0,0.06);
  --apple-blue: #0066cc;
  --apple-blue-dark: #004999;
  --apple-gray-soft: #f5f5f7;
  --apple-radius-xl: 32px;
  --apple-radius-lg: 24px;
  --apple-radius-md: 18px;
  --apple-radius-sm: 14px;
  --transition-apple: all 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
  --shadow-sm: 0 4px 12px rgba(0,0,0,0.02);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.04);
  --shadow-lg: 0 24px 48px rgba(0,0,0,0.06);
}

/* ================================================= */
/* ============== CONTACT HERO ===================== */
/* ================================================= */

.contact-hero {
  position: relative;
  padding: 100px 24px 80px;
  background: linear-gradient(to bottom, #ffffff, #f9f9fb);
  text-align: center;
  overflow: hidden;
  border-bottom: 1px solid var(--apple-border);
}

.contact-hero h1 {
  font-size: 56px;
  font-weight: 600;
  letter-spacing: -2px;
  margin-bottom: 16px;
  color: var(--apple-text);
  position: relative;
  z-index: 2;
}

.contact-hero p {
  font-size: 20px;
  color: var(--apple-muted);
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  font-weight: 400;
}

/* ================================================= */
/* ============== ICON RAIN ======================== */
/* ================================================= */

.icon-rain {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.rain-icon {
  position: absolute;
  left: 0;
  top: 0;
  will-change: transform;
  user-select: none;
  color: rgba(0,102,204,0.12);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 300;
  pointer-events: none;
  z-index: 1;
}

/* ================================================= */
/* ============== TALK SECTION ===================== */
/* ================================================= */

.talk-section {
  padding: 60px 24px 40px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.talk-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(0,102,204,0.08);
  color: var(--apple-blue);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.talk-title {
  font-size: 40px;
  font-weight: 600;
  letter-spacing: -1px;
  margin-bottom: 20px;
  color: var(--apple-text);
}

.talk-description {
  font-size: 20px;
  color: var(--apple-muted);
  max-width: 800px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

/* ================================================= */
/* ============== FEATURES GRID ==================== */
/* ================================================= */

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 48px 0 24px;
}

.feature-item {
  background: white;
  border: 1px solid var(--apple-border);
  border-radius: var(--apple-radius-lg);
  padding: 28px 20px;
  transition: var(--transition-apple);
}

.feature-item:hover {
  transform: translateY(-4px);
  border-color: var(--apple-blue);
  box-shadow: var(--shadow-md);
}

.feature-item i {
  font-size: 32px;
  color: var(--apple-blue);
  margin-bottom: 16px;
}

.feature-item h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.feature-item p {
  font-size: 14px;
  color: var(--apple-muted);
  margin: 0;
}

/* ================================================= */
/* ============== CONTACT GRID ===================== */
/* ================================================= */

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 40px auto 60px;
  padding: 0 24px;
}

.contact-card {
  background: white;
  border: 1px solid var(--apple-border);
  border-radius: var(--apple-radius-xl);
  padding: 32px 28px;
  transition: var(--transition-apple);
  display: flex;
  flex-direction: column;
}

.contact-card:hover {
  border-color: var(--apple-blue);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.contact-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.contact-card-header i {
  font-size: 28px;
  color: var(--apple-blue);
}

.contact-card-header h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
}

/* ================================================= */
/* ============== MAPA ============================= */
/* ================================================= */

.map-container {
  border-radius: var(--apple-radius-lg);
  overflow: hidden;
  margin-bottom: 20px;
  border: 1px solid var(--apple-border);
  height: 180px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.address-detail {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.address-line {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--apple-muted);
  font-size: 15px;
}

.address-line i {
  color: var(--apple-blue);
  width: 20px;
  margin-top: 2px;
}

/* ================================================= */
/* ============== CONTACT ACTIONS ================== */
/* ================================================= */

.action-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.action-button {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--apple-gray-soft);
  border-radius: var(--apple-radius-md);
  text-decoration: none;
  color: inherit;
  transition: var(--transition-apple);
}

.action-button:hover {
  background: #e8e8ed;
  transform: scale(0.99);
}

.action-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: white;
  border-radius: 14px;
}

.action-icon i {
  font-size: 22px;
  color: var(--apple-blue);
}

.action-content {
  display: flex;
  flex-direction: column;
}

.action-label {
  font-size: 12px;
  color: var(--apple-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.action-value {
  font-size: 16px;
  font-weight: 500;
  color: var(--apple-text);
}

/* ================================================= */
/* ============== FORMULARIO ======================= */
/* ================================================= */

.form-card {
  background: white;
}

.form-group {
  margin-bottom: 18px;
}

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--apple-text);
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  background: var(--apple-gray-soft);
  border: 1px solid transparent;
  border-radius: 14px;
  font-size: 15px;
  transition: var(--transition-apple);
}

.form-control:focus {
  outline: none;
  border-color: var(--apple-blue);
  background: white;
  box-shadow: 0 0 0 4px rgba(0,102,204,0.08);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 16px 28px;
  background: var(--apple-blue);
  border: none;
  border-radius: 980px;
  color: white;
  font-size: 16px;
  font-weight: 500;
  margin-top: 16px;
  cursor: pointer;
  transition: var(--transition-apple);
}

.btn-submit:hover {
  background: var(--apple-blue-dark);
  transform: scale(1.01);
  box-shadow: 0 8px 20px rgba(0,102,204,0.3);
}

.btn-submit i {
  font-size: 16px;
}

/* ================================================= */
/* ============== INDALCE SECTION ================== */
/* ================================================= */

.indalce-section {
  background: linear-gradient(145deg, #f5f5f7, #ffffff);
  border-radius: var(--apple-radius-xl);
  max-width: 1200px;
  margin: 60px auto 40px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  border: 1px solid var(--apple-border);
}

.indalce-content h3 {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.indalce-content p {
  font-size: 18px;
  color: var(--apple-muted);
  line-height: 1.6;
}

.indalce-badge {
  display: inline-block;
  padding: 6px 18px;
  background: rgba(0,102,204,0.1);
  color: var(--apple-blue);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}

.indalce-icon {
  text-align: center;
}

.indalce-icon i {
  font-size: 80px;
  color: var(--apple-blue);
  opacity: 0.8;
}

/* ================================================= */
/* ============== CERT BADGES ====================== */
/* ================================================= */

.cert-badge {
  display: inline-block;
  padding: 8px 22px;
  background: white;
  border: 1.5px solid var(--apple-blue);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  margin: 0 8px 8px 0;
  color: var(--apple-blue);
  transition: var(--transition-apple);
}

.cert-badge:hover {
  background: var(--apple-blue);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0,102,204,0.2);
}

.cert-badge i {
  margin-right: 6px;
}

/* ================================================= */
/* ============== CTA SECTION ====================== */
/* ================================================= */

.cta-section {
  max-width: 1200px;
  margin: 40px auto 80px;
  padding: 0 24px;
  text-align: center;
}

.cta-content {
  background: linear-gradient(145deg, rgba(0,102,204,0.03), rgba(0,73,153,0.02));
  border-radius: var(--apple-radius-xl);
  padding: 48px;
  border: 1px solid var(--apple-border);
}

.cta-content h3 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 16px;
}

.cta-content p {
  font-size: 18px;
  color: var(--apple-muted);
  margin-bottom: 32px;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 48px;
  background: var(--apple-text);
  border: none;
  border-radius: 980px;
  color: white;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition-apple);
}

.btn-cta:hover {
  background: #000;
  transform: scale(1.02);
  box-shadow: var(--shadow-md);
}

/* ================================================= */
/* ============== RESPONSIVE ======================= */
/* ================================================= */

@media (max-width: 950px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .indalce-section {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .contact-hero h1 {
    font-size: 48px;
  }
}

@media (max-width: 650px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-hero h1 {
    font-size: 40px;
  }
  
  .talk-title {
    font-size: 32px;
  }
  
  .indalce-section {
    padding: 32px 24px;
  }
  
  .indalce-content h3 {
    font-size: 28px;
  }
  
  .indalce-icon i {
    font-size: 60px;
  }
}

@media (max-width: 480px) {
  .contact-hero {
    padding: 80px 20px 60px;
  }
  
  .contact-hero h1 {
    font-size: 36px;
  }
  
  .contact-hero p {
    font-size: 18px;
  }
  
  .contact-card {
    padding: 24px 20px;
  }
  
  .action-button {
    padding: 14px 16px;
  }
  
  .btn-cta {
    padding: 14px 32px;
    width: 100%;
  }
}

html {
  scroll-behavior: smooth;
}


