:root {
  --blue: #0069F6;
  --cream: #FFFAE7;
  --cream-soft: #FDFBEF;
  --ink: #221712;
  --white: #FFFFFF;
  --border-blue: #0069F6;

  --font-display: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-body: 'Chiron GoRound TC', 'Inter', 'Poppins', system-ui, sans-serif;
  --font-script: 'Caveat', cursive;

  --container: 1320px;
  --side-pad: clamp(16px, 4vw, 80px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.45;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; }

.page {
  max-width: var(--container);
  margin: 0 auto;
  padding: 24px var(--side-pad) 48px;
  display: flex;
  flex-direction: column;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  background: var(--blue);
  color: var(--white);
  display: grid;
  grid-template-columns: 1fr;
  overflow: hidden;
  min-height: 540px;
}
.hero__text {
  position: relative;
  padding: clamp(40px, 6vw, 80px) clamp(28px, 5vw, 72px) clamp(60px, 7vw, 96px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
}
.hero__tag {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(23px, 7vw, 18px);
  letter-spacing: 0.18em;
  margin-bottom: clamp(20px, 2.5vw, 36px);
  color: var(--white);
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(40px, 5.4vw, 69px);
  line-height: 1;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--white);
}
.hero__title em {
  /* font-style: italic;
  font-weight: 300; */
}
.hero__circulos {
  width: clamp(140px, 16vw, 260px);
  margin-top: clamp(16px, 2vw, 28px);
}
.hero__photo {
  position: relative;
  background: #1a1a1a;
  overflow: hidden;
  min-height: 320px;
}
.hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 320px;
}

/* ============ INTRO ============ */
.intro {
  background: var(--cream);
  padding: clamp(48px, 6vw, 96px) clamp(28px, 5vw, 72px);
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 4vw, 64px);
  align-items: center;
}
.intro__title {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--blue);
  font-size: clamp(28px, 3vw, 39px);
  line-height: 1.1;
  margin: 0 0 clamp(20px, 2vw, 32px);
}
.intro__text p {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(16px, 1.2vw, 22px);
  line-height: 1.4;
  color: var(--ink);
  margin: 0 0 16px;
}
.intro__text p:last-child { margin-bottom: 0; }
.intro__logo {
  display: flex;
  justify-content: center;
}
.intro__logo img {
  width: 100%;
  max-width: 360px;
  height: auto;
}

/* ============ FORM SECTION ============ */
.form-section {
  background: var(--white);
  /* padding: clamp(48px, 6vw, 96px) clamp(20px, 4vw, 72px) clamp(64px, 7vw, 120px); */
  padding: clamp(48px, 6vw, 86px) clamp(20px, 2vw, 72px) clamp(34px, 2vw, 120px);
  text-align: center;
}
.form-section__title {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--blue);
  font-size: clamp(28px, 3vw, 48px);
  line-height: 1.15;
  margin: 0 0 clamp(16px, 1.5vw, 28px);
}
.form-section__lead {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(15px, 1.3vw, 22px);
  line-height: 1.4;
  color: var(--ink);
  max-width: 720px;
  margin: 0 auto clamp(32px, 4vw, 56px);
}
.contact-form {
  max-width: 880px;
  margin: 0 auto;
  text-align: left;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(14px, 1.4vw, 22px);
}
.field { display: flex; flex-direction: column; }
.field label {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(14px, 1vw, 18px);
  color: black;
  margin-bottom: 8px;
}
.field input,
.field textarea {
  font: inherit;
  font-family: var(--font-body);
  font-weight: 300;
  width: 100%;
  padding: clamp(12px, 1vw, 18px) 16px;
  border: 2px solid var(--border-blue);
  border-radius: 0;
  background: var(--white);
  color: var(--ink);
  outline: none;
  transition: box-shadow 0.15s, border-color 0.15s;
}
.field input:focus,
.field textarea:focus {
  box-shadow: 0 0 0 3px rgba(0, 105, 246, 0.18);
}
.field textarea { resize: vertical; min-height: 120px; line-height: 1.4; }
.field-row { display: grid; grid-template-columns: 1fr; gap: clamp(14px, 1.4vw, 22px); }

.checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(14px, 1vw, 18px);
  color: var(--ink);
  cursor: pointer;
  margin-top: 4px;
}
.checkbox input {
  width: 22px;
  height: 22px;
  border: 2px solid #1E1E1E;
  accent-color: var(--blue);
  cursor: pointer;
}

.btn-enviar {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(16px, 1.2vw, 22px);
  letter-spacing: 0.08em;
  color: var(--white);
  background: var(--blue);
  border: none;
  border-radius: 999px;
  padding: clamp(14px, 1.4vw, 22px) clamp(40px, 5vw, 80px);
  cursor: pointer;
  justify-self: center;
  margin-top: clamp(16px, 2vw, 32px);
  transition: filter 0.15s, transform 0.1s;
}
.btn-enviar:hover { filter: brightness(0.92); }
.btn-enviar:active { transform: translateY(1px); }
.btn-enviar[disabled] { opacity: 0.6; cursor: not-allowed; }

.form-feedback {
  text-align: center;
  font-size: 14px;
  min-height: 22px;
  margin-top: 8px;
}
.form-feedback.success { color: #1a7a3a; }
.form-feedback.error { color: #c0392b; }

/* ============ IDEAS (PRODUCTS) ============ */
.ideas {
  background: var(--blue);
  color: var(--white);
  padding: clamp(48px, 6vw, 96px) clamp(28px, 5vw, 72px);
}
.ideas__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(28px, 3.2vw, 56px);
  line-height: 1.15;
  margin: 0 0 clamp(36px, 4vw, 64px);
}
.ideas__title em { font-style: italic; font-weight: 600; }
.ideas__realidad {
  position: relative;
  display: inline-block;
  white-space: nowrap;
}
.ideas__underline {
  position: absolute;
  left: -2%;
  bottom: -0.3em;
  width: 100%;
  height: auto;
  pointer-events: none;
}

.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 2vw, 32px);
  margin-bottom: clamp(24px, 3vw, 48px);
}
.card { color: var(--white); }
.card__photo {
  overflow: hidden;
  margin-bottom: clamp(14px, 1.4vw, 22px);
  aspect-ratio: 485 / 850;
  background: rgba(255, 255, 255, 0.08);
}
.card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(18px, 1.6vw, 28px);
  letter-spacing: 0.02em;
  margin: 0 0 10px;
  line-height: 1.2;
}
.card__text {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(14px, 1.1vw, 20px);
  line-height: 1.4;
  margin: 0;
}
.ideas__more {
  font-family: var(--font-script);
  font-weight: 500;
  font-size: clamp(40px, 5vw, 80px);
  text-align: center;
  margin: clamp(16px, 2vw, 32px) 0 0;
  color: var(--white);
}

/* ============ CLAIM ============ */
.claim {
  position: relative;
  background: var(--cream-soft);
  padding: clamp(64px, 8vw, 140px) clamp(20px, 4vw, 56px);
  text-align: center;
  overflow: hidden;
  background-image: url('../img/squiggles-bg.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.claim__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(36px, 4.8vw, 96px);
  background: white;
  letter-spacing: 0;
  line-height: 1;
  margin: 0;
  padding: 1.6vw;
  color: var(--blue);
}

/* ============ FOOTER ============ */
.site-footer {
  background: var(--white);
  padding: clamp(48px, 5vw, 80px) clamp(28px, 5vw, 72px);
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 4vw, 64px);
  align-items: center;
}
.site-footer__logo {
  display: flex;
  justify-content: center;
}
.site-footer__logo img {
  width: 100%;
  max-width: 360px;
  height: auto;
}
.site-footer__contact {
  text-align: center;
}
.site-footer__label {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(16px, 1.4vw, 24px);
  color: var(--blue);
  margin: 16px 0 0;
}
.site-footer__value {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(20px, 2vw, 36px);
  color: var(--blue);
  margin: 0;
  line-height: 1.2;
  margin-top: 5px;
}

.site-footer__value:nth-child(1 of .site-footer__value) a {
  text-decoration: underline;
}

/* ============ TABLET / DESKTOP ============ */
@media (min-width: 768px) {
  .hero {
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
  }
  .hero__photo { min-height: 100%; }

  .intro {
    grid-template-columns: 1fr 1fr;
  }
  .intro__text p { max-width: 520px; }

  .field-row { grid-template-columns: 1fr 1fr; }

  .cards { grid-template-columns: repeat(3, 1fr); }

  .site-footer {
    grid-template-columns: 1fr 1fr;
  }
  .site-footer__logo { justify-content: flex-start; }
  .site-footer__contact { text-align: left; }
  .site-footer__label { margin-top: 20; }
}

@media (min-width: 1024px) {
  .hero { min-height: 720px; }
  .ideas__title { max-width: 1100px; }
}

@media (max-width: 767px) {
	.hero__title br {
		display: none;
	}
	
	.hero__title {
		font-size: clamp(35px, 5.4vw, 69px);
	}
	
	
	.hero__photo {
		order: -1;
	}
	
	.intro__title {
		font-size: clamp(27px, 3vw, 39px);
		text-align: center;
	}
	
	.intro {
		text-align: center;
	}
	
	.claim__title {
		font-size: clamp(26px, 4.8vw, 96px);
		padding-top: 3.6vw;
		padding-bottom: 3.6vw;
	}
		
	.intro__logo img, .site-footer__logo img {
		max-width: 290px;
	}

	/* full-bleed sections — Figma mobile frame is 390 wide with x=0/1 sections */
	.page { padding: 0; }

	/* hero: photo banner on top (user already set order:-1), blue panel below */
	.hero { min-height: 0; }
	.hero__photo {
		min-height: 0;
		aspect-ratio: 391 / 332;
	}
	.hero__photo img { min-height: 0; }
	.hero__text {
		padding: 28px 28px 32px;
	}
	.hero__tag {
		font-size: 14px;
		letter-spacing: 0.16em;
		margin-bottom: 14px;
	}
	.hero__circulos {
		width: 140px;
		margin-top: 16px;
		margin-left: -10px;
	}

	/* intro: cream block, body 14px Chiron centered (Figma: x=35, w=307) */
	.intro {
		padding: 40px 28px 44px;
		gap: 24px;
	}
	.intro__text p {
		font-size: 14px;
		line-height: 1.45;
		max-width: 320px;
		margin-left: auto;
		margin-right: auto;
	}

	/* form: lead 15px Chiron centered (Figma: x=44, w=289) */
	.form-section {
		padding: 36px 20px 40px;
	}
	.form-section__title {
		font-size: 26px;
		line-height: 1.2;
	}
	.form-section__lead {
		font-size: 15px;
		line-height: 1.45;
		margin-bottom: 28px;
	}
	.field label { font-size: 14px; }
	.field input, .field textarea {
		font-size: 14px;
		padding: 12px 14px;
	}
	.btn-enviar {
		font-size: 16px;
		padding: 14px 36px;
	}

	/* products / ideas — cards stack, content centered */
	.ideas {
		padding: 40px 24px 36px;
	}
	.ideas__title {
		font-size: 26px;
		line-height: 1.25;
		text-align: center;
		margin-bottom: 28px;
	}
	.cards { gap: 28px; }
	.card { text-align: center; }
	.card__title { font-size: 18px; }
	.card__text { font-size: 14px; line-height: 1.45; }
	.ideas__more { font-size: 44px; }

	/* footer compact, single column centered */
	.site-footer {
		padding: 36px 24px 40px;
		gap: 20px;
	}
}

em {
    font-style: normal;
}
