/* === LOCAL FONT: Vacaro === */
@font-face {
  font-family: "VacMate";
  src: url("../fonts/VacMate_regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "VacMate";
  src: url("../fonts/VacMate_bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* === GLOBAL BASE STYLES (FORCED) === */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

main {
  max-width: 1600px;
  margin-inline: auto;
  width: 100%;
}

body {
  overflow-x: hidden;
  font-family:
    "Vacaro", ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji",
    "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family:
    "Vacaro", ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji",
    "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

section {
  width: 100%;
}

/* --- SVG icons (local sprite) --- */
.icon {
  width: 1.25rem;
  height: 1.25rem;
  display: inline-block;
  vertical-align: middle;
  flex: 0 0 auto;
}

/* === PAGE BODY (moved from inline Tailwind classes) === */
.page-body {
  background-color: #f8fafc;
  color: #1e293b;
  font-family:
    "Vacaro", ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji",
    "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.page-body--selection-teal ::selection {
  background-color: #99f6e4;
  color: #0f172a;
}

.page-legal {
  background-color: #f0f4f8;
  color: #0a192f;
  font-family:
    "Vacaro", ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji",
    "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* === STICKY FOOTER (footer at bottom of viewport) === */
.layout-footer-bottom {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.layout-footer-bottom main {
  flex: 1 0 auto;
}

/* === THANKS PAGE === */
.thanks-wrap {
  max-width: 1600px;
  margin-inline: auto;
  width: 100%;
  padding: 2rem 1rem 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thanks-card {
  background: #fff;
  border-radius: 0.125rem;
  box-shadow:
    0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -4px rgba(0, 0, 0, 0.1);
  padding: 2.5rem 2rem;
  max-width: 32rem;
  width: 100%;
  text-align: center;
  border-top: 4px solid #14b8a6;
}

.thanks-card h1 {
  font-size: 1.875rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 1rem;
  line-height: 1.25;
}

.thanks-card .thanks-lead {
  font-size: 1.125rem;
  color: #475569;
  line-height: 1.6;
  margin: 0 0 1.5rem;
}

.thanks-card .thanks-note {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.5;
  margin: 0 0 1.5rem;
}

.thanks-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.thanks-actions .btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-weight: 700;
  border-radius: 3px;
  text-decoration: none;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.thanks-actions .btn-primary {
  background-color: #14b8a6;
  color: #0f172a;
}

.thanks-actions .btn-primary:hover {
  background-color: #2dd4bf;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(20, 184, 166, 0.35);
}

.thanks-actions .btn-secondary {
  background-color: transparent;
  color: #0f172a;
  border: 2px solid #14b8a6;
}

.thanks-actions .btn-secondary:hover {
  background-color: rgba(20, 184, 166, 0.1);
  border-color: #2dd4bf;
}

/* === CONTACTO: checkbox visible when checked === */
.custom-checkbox:checked + .checkbox-box {
  background-color: #14b8a6;
  border-color: #14b8a6;
}

.custom-checkbox:checked + .checkbox-box .checkbox-check {
  display: block;
  color: #fff;
}
