/* 
 * BASE CSS - Instituto de Córnea S.A.S.
 * Reset, tipografías base, elementos HTML fundamentales
 */

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

/* ========================================
   ELEMENTOS BASE
   ======================================== */
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-family-primary);
  line-height: 1.6;
  color: var(--black);
  overflow-x: hidden;
  background-color: var(--white);
}

/* ========================================
   TIPOGRAFÍAS
   ======================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family-primary);
  font-weight: var(--font-weight-semibold);
  line-height: 1.2;
  margin-bottom: var(--spacing-md);
  color: var(--black);
}

h1 {
  font-size: var(--font-size-4xl);
  font-weight: var(--font-weight-bold);
  letter-spacing: -0.02em;
}

h2 {
  font-size: var(--font-size-3xl);
  font-weight: var(--font-weight-semibold);
  letter-spacing: -0.01em;
}

h3 {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-semibold);
}

h4 {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-semibold);
}

h5 {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-medium);
}

h6 {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-medium);
}

p {
  margin-bottom: var(--spacing-md);
  line-height: 1.7;
}

a {
  color: var(--primary-orange);
  text-decoration: none;
  transition: color var(--transition-base);
}

a:hover {
  color: var(--secondary-orange);
}

ul, ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* ========================================
   IMÁGENES
   ======================================== */
img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--image-border-radius);
}

/* Bordes curvos para todas las imágenes */
img {
  border-radius: 15px;
}

/* ========================================
   TEXTO MÉDICO PROFESIONAL
   ======================================== */
.medical-text {
  font-family: var(--font-secondary);
  line-height: 1.7;
  font-size: var(--font-size-lg);
  color: var(--gray-dark);
}

.procedure-title {
  font-family: var(--font-family-primary);
  font-weight: var(--font-weight-semibold);
  font-size: var(--font-size-xl);
  color: var(--black);
}

.tech-specification {
  font-family: var(--font-secondary);
  font-weight: var(--font-weight-medium);
  font-size: var(--font-size-sm);
  color: var(--gray-medium);
}

/* ========================================
   UTILIDADES
   ======================================== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ========================================
   RESPONSIVE TIPOGRAFÍA
   ======================================== */
@media (max-width: 768px) {
  h1 {
    font-size: var(--font-size-3xl);
  }
  
  h2 {
    font-size: var(--font-size-2xl);
  }
  
  h3 {
    font-size: var(--font-size-xl);
  }
}

