/* RESET Y BASE - Falsa Fe INC */
:root {
  --black: #000000;
  --black-dark: #0a0a0a;
  --black-light: #1a1a1a;
  --yellow-burnt: #cc7722;
  --yellow-dark: #a85e1c;
  --yellow-light: #e68c2e;
  --red: #cc0000;
  --red-dark: #990000;
  --red-light: #ff3333;
  --white: #ffffff;
  --white-off: #f5f5f5;
  --gray: #2a2a2a;
  --gray-light: #444444;
  
  --font-primary: 'Playfair Display', serif;
  --font-secondary: 'Crimson Text', serif;
  --font-code: 'Source Code Pro', monospace;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--black);
  color: var(--white-off);
  font-family: var(--font-secondary);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* ELEMENTOS DE FONDO TEMÁTICOS */
.background-elements {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  opacity: 0.05;
}

.cross {
  position: absolute;
  width: 2px;
  height: 40px;
  background: var(--yellow-burnt);
}

.cross-1 {
  top: 15%;
  left: 10%;
  transform: rotate(45deg);
  animation: floatCross 20s infinite linear;
}

.cross-2 {
  top: 60%;
  right: 15%;
  transform: rotate(90deg);
  animation: floatCross 25s infinite linear reverse;
}

.cross-3 {
  bottom: 20%;
  left: 20%;
  transform: rotate(135deg);
  animation: floatCross 30s infinite linear;
}

.halo {
  position: absolute;
  border: 1px solid rgba(204, 119, 34, 0.3);
  border-radius: 50%;
}

.halo-1 {
  top: 30%;
  right: 10%;
  width: 100px;
  height: 100px;
  animation: pulseHalo 15s infinite ease-in-out;
}

.halo-2 {
  bottom: 40%;
  left: 15%;
  width: 150px;
  height: 150px;
  animation: pulseHalo 20s infinite ease-in-out reverse;
}

.halo-3 {
  top: 70%;
  right: 25%;
  width: 80px;
  height: 80px;
  animation: pulseHalo 25s infinite ease-in-out;
}

@keyframes floatCross {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(20px); }
}

@keyframes pulseHalo {
  0%, 100% { opacity: 0.1; transform: scale(1); }
  50% { opacity: 0.3; transform: scale(1.1); }
}

/* HERO */
.hero {
  position: relative;
  min-height: 95vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  background: 
    radial-gradient(ellipse at 30% 30%, rgba(204, 119, 34, 0.1) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 70%, rgba(204, 0, 0, 0.05) 0%, transparent 60%),
    linear-gradient(to bottom, var(--black) 0%, var(--black-dark) 100%);
  overflow: hidden;
  border-bottom: 2px solid var(--yellow-burnt);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 1px,
      rgba(204, 119, 34, 0.02) 1px,
      rgba(204, 119, 34, 0.02) 2px
    );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  text-align: center;
  padding: 2rem;
}

.project-label {
  font-family: var(--font-code);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow-burnt);
  margin-bottom: 1rem;
  border: 1px solid var(--yellow-burnt);
  padding: 0.5rem 1rem;
  display: inline-block;
  background: rgba(204, 119, 34, 0.05);
}

/* LOGO SIMBÓLICO */
.logo-container {
  margin: 1.5rem auto;
}

.logo-symbol {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}

.symbol-cross {
  position: absolute;
  font-size: 3rem;
  color: var(--yellow-burnt);
  animation: crossGlow 3s infinite ease-in-out;
}

.symbol-slash {
  position: absolute;
  font-size: 4rem;
  color: var(--red);
  transform: rotate(45deg);
  top: -10px;
  left: 15px;
  opacity: 0.8;
}

@keyframes crossGlow {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; text-shadow: 0 0 10px var(--yellow-burnt); }
}

.hero-title {
  font-family: var(--font-primary);
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 800;
  line-height: 0.9;
  margin: 0.5rem 0 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.title-line {
  display: block;
}

.title-line.accent {
  color: var(--red);
  position: relative;
  font-size: 1.2em;
}

.hero-subtitle {
  margin-bottom: 2rem;
  position: relative;
}

.subtitle-text {
  font-family: var(--font-code);
  font-size: clamp(0.8rem, 2.5vw, 1.1rem);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  display: block;
  margin-bottom: 0.5rem;
}

.subtitle-line {
  height: 2px;
  width: 100px;
  background: linear-gradient(90deg, var(--yellow-burnt), var(--red), transparent);
  margin: 0 auto;
}

.hero-description {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  max-width: 700px;
  margin: 0 auto 3rem;
  color: var(--white-off);
  font-family: var(--font-secondary);
}

.hero-description strong {
  color: var(--yellow-light);
  font-weight: 600;
}

/* BOTONES ESPECIALES */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-family: var(--font-code);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.6s;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background-color: var(--yellow-burnt);
  color: var(--black);
  border: 2px solid var(--yellow-burnt);
  font-weight: 700;
}

.btn-primary:hover {
  background-color: var(--yellow-dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(204, 119, 34, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: var(--white);
  border: 2px solid var(--red);
}

.btn-secondary:hover {
  background-color: rgba(204, 0, 0, 0.1);
  border-color: var(--red-light);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: var(--white);
  border: 2px solid var(--gray);
}

.btn-outline:hover {
  border-color: var(--yellow-burnt);
  color: var(--yellow-light);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.security-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-code);
  font-size: 0.8rem;
  color: var(--gray-light);
  margin-top: 2rem;
}

.security-badge svg {
  stroke: var(--yellow-burnt);
}

/* MARQUEE DE ALERTA */
.alert-marquee {
  background: linear-gradient(90deg, var(--black-dark), var(--red-dark), var(--black-dark));
  border-top: 1px solid var(--yellow-burnt);
  border-bottom: 1px solid var(--yellow-burnt);
  overflow: hidden;
  padding: 0.8rem 0;
}

.marquee-content {
  display: flex;
  animation: scrollMarquee 30s linear infinite;
  white-space: nowrap;
}

.marquee-content span {
  padding: 0 2rem;
  font-family: var(--font-code);
  font-weight: 600;
  color: var(--white);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
}

@keyframes scrollMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* SECCIONES GENERALES */
.section {
  padding: 5rem 1rem;
  position: relative;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-family: var(--font-primary);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--white);
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--yellow-burnt), var(--red));
}

.section-subtitle {
  text-align: center;
  color: var(--gray-light);
  margin-bottom: 3rem;
  font-size: 1.1rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-family: var(--font-secondary);
}

/* NUESTRA LUCHA */
.lucha-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.lucha-card {
  background-color: var(--black-light);
  padding: 2rem;
  border: 1px solid var(--gray);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.lucha-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--yellow-burnt), var(--red));
}

.lucha-card:hover {
  border-color: var(--yellow-burnt);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(204, 119, 34, 0.1);
}

.lucha-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.lucha-card h3 {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--white);
}

.lucha-card p {
  color: var(--white-off);
  margin-bottom: 1rem;
}

.lucha-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.tag {
  background: rgba(204, 119, 34, 0.1);
  color: var(--yellow-light);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-family: var(--font-code);
  border: 1px solid rgba(204, 119, 34, 0.3);
}

.warning-box {
  display: flex;
  gap: 1.5rem;
  background: rgba(204, 119, 34, 0.05);
  padding: 2rem;
  margin-top: 3rem;
  border: 1px solid var(--yellow-burnt);
  border-left: 4px solid var(--yellow-burnt);
}

.warning-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.warning-content h3 {
  font-family: var(--font-primary);
  margin-bottom: 0.5rem;
  color: var(--white);
}

/* SEÑALES DE ALERTA */
.senales-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.senal-card {
  padding: 2rem;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.senal-card h3 {
  font-family: var(--font-primary);
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.senal-card ul {
  list-style: none;
  padding-left: 0;
}

.senal-card li {
  margin-bottom: 0.8rem;
  padding-left: 1.5rem;
  position: relative;
}

.senal-card li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: inherit;
}

.red-flag {
  background: rgba(204, 0, 0, 0.05);
  border: 1px solid var(--red);
  color: var(--red-light);
}

.yellow-flag {
  background: rgba(204, 119, 34, 0.05);
  border: 1px solid var(--yellow-burnt);
  color: var(--yellow-light);
}

.black-flag {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--black);
  color: var(--white-off);
}

/* INVESTIGACIÓN */
.investigacion-steps {
  margin-top: 3rem;
  position: relative;
}

.investigacion-steps::before {
  content: '';
  position: absolute;
  left: 40px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--yellow-burnt), var(--red), transparent);
  z-index: 1;
}

.step {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  position: relative;
  z-index: 2;
}

.step-number {
  width: 80px;
  height: 80px;
  background: var(--black);
  border: 3px solid var(--yellow-burnt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-primary);
  font-size: 2rem;
  font-weight: 800;
  color: var(--yellow-burnt);
  flex-shrink: 0;
  position: relative;
  z-index: 3;
}

.step-content {
  background: var(--black-light);
  padding: 1.5rem 2rem;
  border: 1px solid var(--gray);
  flex: 1;
  border-left: 4px solid var(--yellow-burnt);
}

.step-content h4 {
  font-family: var(--font-primary);
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  color: var(--white);
}

.step-tip {
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(204, 119, 34, 0.05);
  border-left: 3px solid var(--yellow-burnt);
  font-size: 0.9rem;
  color: var(--yellow-light);
}

/* DENUNCIA */
.denuncia-section {
  background: linear-gradient(to bottom, var(--black-dark), var(--black));
  border-top: 2px solid var(--red);
  border-bottom: 2px solid var(--red);
}

.denuncia-card {
  background: var(--black);
  padding: 3rem;
  border: 2px solid var(--yellow-burnt);
  position: relative;
  overflow: hidden;
}

.denuncia-card::before {
  content: '†';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 20rem;
  color: rgba(204, 119, 34, 0.02);
  pointer-events: none;
}

.denuncia-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
  position: relative;
  z-index: 2;
}

.denuncia-title {
  font-family: var(--font-primary);
  font-size: 2.5rem;
  color: var(--white);
}

.security-level .security-badge {
  background: var(--red-dark);
  color: var(--white);
  padding: 0.5rem 1rem;
  font-family: var(--font-code);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  margin: 0;
}

.denuncia-warning {
  display: flex;
  gap: 1.5rem;
  background: rgba(204, 119, 34, 0.1);
  padding: 1.5rem;
  margin-bottom: 2rem;
  border-left: 4px solid var(--yellow-burnt);
  position: relative;
  z-index: 2;
}

.warning-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.canales-denuncia {
  position: relative;
  z-index: 2;
}

.canales-denuncia h3 {
  font-family: var(--font-primary);
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.canal {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  border-left: 3px solid var(--red);
}

.canal h4 {
  font-family: var(--font-primary);
  margin-bottom: 0.8rem;
  color: var(--yellow-light);
}

.canal ul {
  list-style: none;
  padding-left: 1rem;
}

.canal li {
  margin-bottom: 0.5rem;
  padding-left: 1rem;
  position: relative;
}

.canal li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--yellow-burnt);
}

.denuncia-disclaimer {
  padding: 1.5rem;
  background: rgba(204, 0, 0, 0.05);
  border: 1px solid var(--red);
  font-size: 0.95rem;
  position: relative;
  z-index: 2;
}

/* RECURSOS */
.recursos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.recurso-card {
  background: var(--black-light);
  padding: 2rem;
  border: 1px solid var(--gray);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.recurso-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--yellow-burnt), var(--red));
}

.recurso-card:hover {
  border-color: var(--yellow-burnt);
  transform: translateY(-5px);
}

.recurso-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.recurso-card h3 {
  font-family: var(--font-primary);
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--white);
}

.btn-recurso {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--gray);
  padding: 0.7rem 1.5rem;
  font-family: var(--font-code);
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-right: 0.5rem;
  margin-top: 1rem;
}

.btn-recurso:hover {
  border-color: var(--yellow-burnt);
  color: var(--yellow-light);
}

.btn-recurso.secondary {
  background: rgba(204, 119, 34, 0.1);
}

.qr-section {
  text-align: center;
  padding: 3rem;
  background: var(--black-dark);
  border: 1px solid var(--yellow-burnt);
  margin-top: 3rem;
  position: relative;
  overflow: hidden;
}

.qr-section::before {
  content: '⛪';
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 8rem;
  opacity: 0.03;
}

.qr-code {
  display: inline-block;
  margin: 2rem 0;
  padding: 1.5rem;
  background: var(--white);
  border: 2px solid var(--yellow-burnt);
  position: relative;
  z-index: 2;
}

.qr-symbol {
  font-size: 4rem;
  color: var(--black);
  margin-bottom: 0.5rem;
}

.qr-text {
  font-family: var(--font-code);
  font-size: 1rem;
  color: var(--black);
  letter-spacing: 0.1em;
}

.btn-qr {
  background: var(--yellow-burnt);
  color: var(--black);
  border: none;
  padding: 1rem 2rem;
  font-family: var(--font-primary);
  font-weight: 600;
  cursor: pointer;
  margin: 0 0.5rem;
  transition: all 0.3s ease;
}

.btn-qr:hover {
  background: var(--yellow-dark);
  transform: translateY(-2px);
}

.btn-qr.secondary {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}

.btn-qr.secondary:hover {
  border-color: var(--red);
  color: var(--red-light);
}

.btn-qr.outline {
  background: transparent;
  border: 2px solid var(--red);
  color: var(--red-light);
}

/* MANIFIESTO */
.manifiesto-section {
  background: linear-gradient(to bottom, var(--black), var(--black-dark));
  border-top: 2px solid var(--red);
  border-bottom: 2px solid var(--red);
}

.manifiesto-card {
  background: var(--black-light);
  padding: 4rem;
  border: 1px solid var(--yellow-burnt);
  position: relative;
  overflow: hidden;
}

.manifiesto-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--yellow-burnt), var(--red));
}

.manifiesto-title {
  font-family: var(--font-primary);
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--white);
  position: relative;
}

.manifiesto-content {
  position: relative;
  z-index: 2;
}

.manifiesto-text {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.8;
  font-family: var(--font-secondary);
}

.manifiesto-text.accent {
  color: var(--yellow-light);
  font-weight: 600;
  border-left: 3px solid var(--red);
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
}

.manifiesto-closing {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--gray);
}

.manifiesto-signature {
  font-family: var(--font-code);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  color: var(--yellow-burnt);
  text-align: right;
  margin-top: 1rem;
}

/* FOOTER */
.footer {
  background: var(--black-dark);
  padding: 4rem 1rem 2rem;
  border-top: 2px solid var(--yellow-burnt);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand h3 {
  font-family: var(--font-primary);
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.footer-brand .accent {
  color: var(--red);
}

.footer-subtitle {
  color: var(--gray-light);
  margin-bottom: 0.5rem;
}

.footer-motto {
  font-family: var(--font-code);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  color: var(--yellow-burnt);
}

.principles {
  margin-top: 1rem;
}

.principle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: var(--gray-light);
}

.principle-icon {
  font-size: 1.2rem;
}

.footer-actions h4 {
  font-family: var(--font-primary);
  margin-bottom: 1rem;
  color: var(--white);
}

.footer-actions ul {
  list-style: none;
}

.footer-actions li {
  margin-bottom: 0.5rem;
}

.footer-actions a,
.footer-actions button {
  color: var(--gray-light);
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  text-align: left;
  padding: 0;
}

.footer-actions a:hover,
.footer-actions button:hover {
  color: var(--yellow-light);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--gray);
  color: var(--gray-light);
  font-size: 0.9rem;
}

.footer-note {
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: var(--gray);
}

/* MODAL */
#securityModal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 1rem;
}

#securityModal[hidden] {
  display: none !important;
}

.modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  cursor: pointer;
}

.modal-content {
  position: relative;
  background: var(--black);
  border: 2px solid var(--yellow-burnt);
  max-width: 500px;
  width: 100%;
  z-index: 10000;
  animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  background: var(--black-light);
  border-bottom: 1px solid var(--gray);
}

.modal-header h3 {
  font-family: var(--font-primary);
  color: var(--white);
  margin: 0;
}

.modal-close {
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  padding: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  border-radius: 50%;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--red-light);
}

.modal-body {
  padding: 2rem;
}

.modal-body ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.modal-body li {
  margin-bottom: 0.5rem;
  color: var(--white-off);
}

.btn-modal {
  background: var(--yellow-burnt);
  color: var(--black);
  border: none;
  padding: 0.8rem 1.5rem;
  font-family: var(--font-primary);
  font-weight: 600;
  cursor: pointer;
  margin-right: 0.5rem;
  margin-top: 1rem;
  transition: all 0.3s ease;
}

.btn-modal:hover {
  background: var(--yellow-dark);
  transform: translateY(-2px);
}

.btn-modal.secondary {
  background: transparent;
  border: 1px solid var(--white);
  color: var(--white);
}

.btn-modal.secondary:hover {
  border-color: var(--red);
  color: var(--red-light);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-title {
    font-size: clamp(2rem, 6vw, 3.5rem);
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 300px;
  }
  
  .step {
    flex-direction: column;
    gap: 1rem;
  }
  
  .step-number {
    align-self: flex-start;
  }
  
  .investigacion-steps::before {
    left: 40px;
  }
  
  .denuncia-card {
    padding: 2rem 1rem;
  }
  
  .manifiesto-card {
    padding: 2rem 1rem;
  }
}

@media (max-width: 480px) {
  .logo-symbol {
    width: 60px;
    height: 60px;
  }
  
  .symbol-cross {
    font-size: 2rem;
  }
  
  .symbol-slash {
    font-size: 3rem;
    top: -8px;
    left: 10px;
  }
  
  .section {
    padding: 3rem 1rem;
  }
}