/* =====================================================   REFORMAS PREMIUM - BASE STYLES   ===================================================== */

/* Reset */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-size: var(--font-size-base);
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all var(--transition-fast);
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* Utilidades */

.rp-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.rp-text-accent {
  font-size: clamp(1.6rem, 4vw, 3rem);
  color: var(--color-accent);
}

.rp-section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--font-size-xs);
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--spacing-md);
}

.rp-section-tag::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--color-accent);
}

.rp-section-tag.light {
  color: rgba(255, 255, 255, 0.7);
}

.rp-section-tag.light::before {
  background: rgba(255, 255, 255, 0.4);
}

.rp-section-title {
  font-family: var(--font-heading);
  font-size: var(--font-size-4xl);
  font-weight: 500;
  color: var(--color-primary);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.rp-section-title-xl {
  font-family: var(--font-heading);
  font-size: var(--font-size-5xl);
  font-weight: 500;
  color: var(--color-primary);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.rp-section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--spacing-3xl);
}

.rp-section-header-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: var(--spacing-xl);
}

@media (max-width: 768px) {
  .rp-section-header-flex {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--spacing-md);
  }
}

