/* === FONT: SEATORA (LOCAL) === */

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

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

:root {
  --font-main: "Seatora", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

/* === 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;
}

section {
  width: 100%;
}

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

/* Generic image container helper (used on nosotros hero) */
.img-container {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* === THANK YOU PAGE === */

.page-thanks {
  background-color: #f3f2ef;
  color: #333333;
  -webkit-font-smoothing: antialiased;
}

.thanks-main {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thanks-card {
  width: 100%;
  background-color: #ffffff;
  border-radius: 1.75rem;
  box-shadow: 0 12px 35px rgba(15, 23, 42, 0.08);
  border: 1px solid #e0e0e0;
  padding: 2.5rem 1.75rem;
  text-align: center;
}

@media (min-width: 768px) {
  .thanks-card {
    padding: 3.5rem 3rem;
  }
}

.thanks-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem 0.75rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background-color: #f3f2ef;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #777777;
}

.thanks-title {
  font-size: 1.85rem;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #222222;
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .thanks-title {
    font-size: 2.1rem;
  }
}

.thanks-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #555555;
  max-width: 36rem;
  margin: 0 auto 1.5rem auto;
}

.thanks-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

@media (min-width: 640px) {
  .thanks-actions {
    flex-direction: row;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 2.5rem;
  border-radius: 0.375rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
}

.btn-primary {
  background-color: #2c2e30;
  color: #ffffff;
  border: 1px solid #2c2e30;
}

.btn-primary:hover {
  background-color: #45484b;
  border-color: #45484b;
  color: #ffffff;
}

.btn-secondary {
  background-color: transparent;
  color: #2c2e30;
  border: 1px solid #2c2e30;
}

.btn-secondary:hover {
  background-color: #2c2e30;
  color: #ffffff;
}

