:root {
  --color-primario: #ff6200;
  --color-secundario: #ff4500;
  --color-fondo: #fafafa;
  --color-texto: #333;
  --radius: 8px;
  --fuente-principal: 'VictoryMarr', Arial, sans-serif;
}

body {
  margin: 0;
  font-family: var(--fuente-principal);
  background: var(--color-fondo);
  color: var(--color-texto);
  line-height: 1.8;
  font-size: clamp(17px, 2.5vw, 19px);
  padding: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.container {
  max-width: 640px;
  width: 100%;
  background: #fff;
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

h1 {
  font-size: clamp(42px, 8vw, 60px);
  font-weight: 900;
  line-height: 1.1;
  color: #000;
  letter-spacing: -1px;
  max-width: 700px;
  margin: 2rem auto 0;
}

.accent {
  background: linear-gradient(135deg, #ff6200 0%, #ff4500 50%, #ff0000 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: #ff7a00;
  font-weight: 700;
}

h2 {
  font-size: clamp(28px, 5vw, 36px);
  font-weight: 800;
  line-height: 1.2;
  margin: 3rem 0 2rem 0;
  letter-spacing: -0.5px;
  position: relative;
  padding-bottom: 0.75rem;
}

h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #ff6200 0%, #ff4500 50%, #ff0000 100%);
  border-radius: 2px;
}

p {
  font-size: clamp(17px, 2.5vw, 19px);
  line-height: 1.8;
  color: #444;
  margin: 0 0 1.5rem 0;
}

strong {
  color: #000;
  font-weight: 700;
}

form.news {
  background: #fafafa;
  border-radius: 8px;
  padding: 2rem;
  margin: 2rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.controls {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

input[type="email"] {
  flex: 1;
  padding: 1rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
}

button {
  background: linear-gradient(135deg, #ff6200 0%, #ff4500 50%, #ff0000 100%);
  color: #fff;
  border: none;
  padding: 1rem 2rem;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease;
}

button:hover {
  transform: translateY(-2px);
}

.consent-box {
  font-size: 0.9rem;
  color: #666;
}

.consent-text a {
  color: #ff4500;
}

.nota {
  margin-top: 1.5em;
  font-size: 1rem;
  color: #555;
  font-style: italic;
}







@media (max-width: 768px) {
  body {
    background: #fff;
  }
  .container {
    width: 100%;
    margin: 0;
    box-shadow: none;
  }
  h1 {
    font-weight: 900 !important;
  }
}

@media (max-width: 600px) {
  body {
    padding: 1.5rem;
  }
  h1 {
    font-size: 1.7rem;
  }
  .controls {
    flex-direction: column;
  }
}