/* ============================================
   MAGGIE CRUZ FREZZINI — Estilos globales
   Paleta: Dark Plum #653B49 | Plum #845A68
           Dusty Pink #C9A2B8 | Evergreen #3B4C3E
           Coastal Sage #99ABA6 | Linen #F0EAD8
   Tipografías: Neue Haas Grotesk Display (títulos) | Inter (cuerpo)
   ============================================ */

/* --- Neue Haas Grotesk Display — fuente local --- */
@font-face {
  font-family: 'Neue Haas Grotesk Display';
  src: url('../public/fonts/neue-haas-grotesk-display-pro-cufonfonts/NeueHaasDisplayRoman.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Neue Haas Grotesk Display';
  src: url('../public/fonts/neue-haas-grotesk-display-pro-cufonfonts/NeueHaasDisplayRomanItalic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Neue Haas Grotesk Display';
  src: url('../public/fonts/neue-haas-grotesk-display-pro-cufonfonts/NeueHaasDisplayMediu.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Neue Haas Grotesk Display';
  src: url('../public/fonts/neue-haas-grotesk-display-pro-cufonfonts/NeueHaasDisplayMediumItalic.ttf') format('truetype');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Neue Haas Grotesk Display';
  src: url('../public/fonts/neue-haas-grotesk-display-pro-cufonfonts/NeueHaasDisplayBold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Neue Haas Grotesk Display';
  src: url('../public/fonts/neue-haas-grotesk-display-pro-cufonfonts/NeueHaasDisplayBoldItalic.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Neue Haas Grotesk Display';
  src: url('../public/fonts/neue-haas-grotesk-display-pro-cufonfonts/NeueHaasDisplayBlack.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* --- Variables CSS --- */
:root {
  --dark-plum:    #653B49;
  --plum:         #845A68;
  --dusty-pink:   #C9A2B8;
  --evergreen:    #3B4C3E;
  --coastal-sage: #99ABA6;
  --linen:        #F0EAD8;
  --linen-deep:   #e8dfc8;
  --white:        #ffffff;
  --text-dark:    #2a1f24;
  --text-mid:     #5a4a50;

  /* Tipografías */
  --font-display: 'Neue Haas Grotesk Display', 'Arial Narrow', Arial, sans-serif;
  --font-body:    'Inter', Arial, sans-serif;

  /* Letter-spacing apretado — parte del branding */
  --ls-display:  -0.05em;
  --ls-heading:  -0.04em;
  --ls-sub:      -0.03em;
  --ls-body:     -0.01em;

  /* Espaciado base */
  --section-pad: clamp(4rem, 8vw, 7rem);
  --container:   min(90%, 720px);
  --container-wide: min(92%, 960px);

  /* Transiciones */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --duration: 0.6s;
}

/* --- Reset mínimo --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--linen);
  color: var(--text-dark);
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.8vw, 1.125rem);
  line-height: 1.7;
  letter-spacing: var(--ls-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, video {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul { list-style: none; }

/* --- Contenedores --- */
.container {
  width: var(--container);
  margin-inline: auto;
}

.container--wide {
  width: var(--container-wide);
  margin-inline: auto;
}

/* --- Tipografía base --- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: var(--ls-display);
}

h1 { font-size: clamp(2.8rem, 7vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3rem); }
h3 { font-size: clamp(1.4rem, 3vw, 1.9rem); }

p {
  font-size: clamp(1rem, 1.8vw, 1.125rem);
  letter-spacing: var(--ls-body);
  color: var(--text-mid);
  line-height: 1.75;
}

strong { color: var(--text-dark); font-weight: 600; }

/* ============================================
   ANIMACIONES DE ENTRADA AL SCROLL
   ============================================ */
[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--duration) var(--ease),
              transform var(--duration) var(--ease);
}

[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

/* Delay escalonado para grupos */
[data-delay="1"] { transition-delay: 0.1s; }
[data-delay="2"] { transition-delay: 0.2s; }
[data-delay="3"] { transition-delay: 0.3s; }
[data-delay="4"] { transition-delay: 0.4s; }
[data-delay="5"] { transition-delay: 0.5s; }
[data-delay="6"] { transition-delay: 0.6s; }

/* ============================================
   BARRA DE NAVEGACIÓN
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.2rem 0;
  background: transparent;
  transition: background var(--duration) var(--ease),
              box-shadow var(--duration) var(--ease);
}

.nav.scrolled {
  background: rgba(240, 234, 216, 0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 1px 0 rgba(101, 59, 73, 0.1);
}

.nav__inner {
  width: var(--container-wide);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  font-weight: 700;
  letter-spacing: var(--ls-heading);
  color: var(--dark-plum);
}

.nav__logo span {
  font-weight: 400;
  font-style: italic;
}

/* ============================================
   BOTONES
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.25s var(--ease);
  text-align: center;
  line-height: 1.2;
}

/* Botón primario — Dark Plum */
.btn--primary {
  background: var(--dark-plum);
  color: var(--linen);
  border-color: var(--dark-plum);
}

.btn--primary:hover {
  background: #4f2d39;
  border-color: #4f2d39;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(101, 59, 73, 0.28);
}

/* Botón secundario — outline */
.btn--secondary {
  background: transparent;
  color: var(--plum);
  border-color: var(--plum);
}

.btn--secondary:hover {
  background: var(--plum);
  color: var(--linen);
  transform: translateY(-1px);
}

/* Botón ghost — sin borde, solo texto */
.btn--ghost {
  background: transparent;
  color: var(--text-mid);
  border-color: transparent;
  font-size: 0.9rem;
  font-weight: 400;
  text-decoration: underline;
  text-underline-offset: 3px;
  padding: 0.6rem 1rem;
}

.btn--ghost:hover {
  color: var(--dark-plum);
  transform: none;
}

/* Botón grande (hero CTA) */
.btn--lg {
  padding: 1.15rem 2.5rem;
  font-size: 1.05rem;
  width: 100%;
  max-width: 400px;
}

/* Botón redes sociales */
.btn--social {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.8rem;
  border-radius: 4px;
  border: 2px solid;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: all 0.25s var(--ease);
  cursor: pointer;
}

.btn--social.instagram {
  border-color: var(--dark-plum);
  color: var(--dark-plum);
}

.btn--social.instagram:hover {
  background: var(--dark-plum);
  color: var(--linen);
  transform: translateY(-2px);
}

.btn--social.tiktok {
  border-color: var(--evergreen);
  color: var(--evergreen);
}

.btn--social.tiktok:hover {
  background: var(--evergreen);
  color: var(--linen);
  transform: translateY(-2px);
}

/* ============================================
   FORMULARIOS
   ============================================ */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  width: 100%;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text-dark);
}

.form-group input {
  width: 100%;
  padding: 0.9rem 1.1rem;
  border: 1.5px solid var(--dusty-pink);
  border-radius: 4px;
  background: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  letter-spacing: var(--ls-body);
  color: var(--text-dark);
  transition: border-color 0.2s var(--ease),
              box-shadow 0.2s var(--ease);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-group input::placeholder {
  color: #b8a8ae;
}

.form-group input:focus {
  border-color: var(--plum);
  box-shadow: 0 0 0 3px rgba(132, 90, 104, 0.15);
}

/* Mensaje de error inline */
.form-group .error-msg {
  font-size: 0.82rem;
  color: #c0392b;
  display: none;
}

.form-group.has-error input {
  border-color: #e74c3c;
}

.form-group.has-error .error-msg {
  display: block;
}

/* ============================================
   EYEBROW (etiqueta pequeña sobre títulos)
   ============================================ */
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--plum);
  margin-bottom: 0.8rem;
}

/* ============================================
   DIVIDER DECORATIVO
   ============================================ */
.divider {
  width: 48px;
  height: 2px;
  background: var(--dusty-pink);
  margin: 1.5rem auto;
}

.divider--left {
  margin-left: 0;
}

/* ============================================
   SECTION BASE
   ============================================ */
.section {
  padding: var(--section-pad) 0;
}

.section--alt {
  background: var(--white);
}

.section--plum {
  background: var(--dark-plum);
  color: var(--linen);
}

.section--plum p { color: rgba(240, 234, 216, 0.85); }

.section--sage {
  background: rgba(153, 171, 166, 0.15);
}

.section__header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section__header h2 {
  color: var(--dark-plum);
}

/* ============================================
   CHECKLIST
   ============================================ */
.checklist {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.checklist__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.checklist__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--dark-plum);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.1em;
}

.checklist__icon svg {
  width: 13px;
  height: 13px;
  stroke: var(--linen);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.checklist__text {
  font-size: clamp(0.97rem, 1.8vw, 1.05rem);
  color: var(--text-mid);
  letter-spacing: var(--ls-body);
  line-height: 1.65;
}

/* ============================================
   TARJETAS DE GUÍA
   ============================================ */
.guide-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 600px) {
  .guide-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.guide-card {
  background: var(--linen);
  border: 1.5px solid var(--dusty-pink);
  border-radius: 8px;
  padding: 1.8rem 1.5rem;
  position: relative;
}

.guide-card__number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: var(--ls-display);
  color: var(--dusty-pink);
  line-height: 1;
  margin-bottom: 0.6rem;
}

.guide-card__text {
  font-size: 0.97rem;
  color: var(--text-mid);
  line-height: 1.6;
  letter-spacing: var(--ls-body);
}

/* ============================================
   ABOUT MAGGIE
   ============================================ */
.about {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
}

@media (min-width: 640px) {
  .about {
    flex-direction: row;
    text-align: left;
    gap: 2.5rem;
  }
}

/* Foto circular placeholder — reemplazá por tu imagen */
.maggie-photo {
  flex-shrink: 0;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--dusty-pink) 0%, var(--plum) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: var(--ls-display);
  overflow: hidden;
  border: 4px solid var(--linen-deep);
  box-shadow: 0 4px 20px rgba(101, 59, 73, 0.18);
}

/* Si se agrega la imagen real: */
.maggie-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__text h3 {
  color: var(--dark-plum);
  margin-bottom: 0.75rem;
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--dark-plum);
  color: rgba(240, 234, 216, 0.75);
  padding: 2.5rem 0;
  text-align: center;
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: var(--ls-heading);
  color: var(--linen);
  margin-bottom: 1rem;
  font-style: italic;
}

.footer__social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.2rem;
  flex-wrap: wrap;
}

.footer__social a {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(240, 234, 216, 0.8);
  transition: color 0.2s var(--ease);
  letter-spacing: 0;
}

.footer__social a:hover {
  color: var(--dusty-pink);
}

.footer__social svg {
  width: 16px;
  height: 16px;
}

.footer__copy {
  font-size: 0.78rem;
  color: rgba(240, 234, 216, 0.45);
  letter-spacing: 0;
}

/* ============================================
   MODAL (lista de espera desde gracias.html)
   ============================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(42, 31, 36, 0.65);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease), visibility 0.3s;
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: var(--linen);
  border-radius: 10px;
  padding: clamp(2rem, 5vw, 3rem);
  max-width: 480px;
  width: 100%;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.35s var(--ease);
  box-shadow: 0 20px 60px rgba(42, 31, 36, 0.3);
}

.modal-overlay.open .modal {
  transform: translateY(0);
}

.modal__close {
  position: absolute;
  top: 1rem; right: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-mid);
  padding: 0.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}

.modal__close:hover { color: var(--dark-plum); }
.modal__close svg { width: 20px; height: 20px; }

.modal__eyebrow { margin-bottom: 0.5rem; }
.modal__title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  letter-spacing: var(--ls-display);
  color: var(--dark-plum);
  margin-bottom: 0.6rem;
  line-height: 1.2;
}

.modal__subtitle {
  font-size: 0.95rem;
  color: var(--text-mid);
  margin-bottom: 1.8rem;
  line-height: 1.65;
}

.modal form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* ============================================
   BANNER DE CONFIRMACIÓN (top de gracias.html)
   ============================================ */
.confirm-banner {
  background: var(--evergreen);
  color: var(--linen);
  padding: 0.85rem 1rem;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: var(--ls-body);
}

/* ============================================
   VIDEO PLACEHOLDER (VSL)
   ============================================ */
.vsl-placeholder {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, var(--dark-plum) 0%, var(--plum) 100%);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(101, 59, 73, 0.3);
  cursor: pointer;
  border: 3px solid rgba(201, 162, 184, 0.3);
}

/* Patrón decorativo de fondo */
.vsl-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(201, 162, 184, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(59, 76, 62, 0.15) 0%, transparent 50%);
}

.vsl-placeholder__play {
  position: relative;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(240, 234, 216, 0.15);
  border: 2px solid rgba(240, 234, 216, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease);
}

.vsl-placeholder:hover .vsl-placeholder__play {
  background: rgba(240, 234, 216, 0.25);
  transform: scale(1.08);
}

.vsl-placeholder__play svg {
  width: 28px;
  height: 28px;
  fill: var(--linen);
  margin-left: 4px; /* optical center del triángulo */
}

.vsl-placeholder__text {
  position: relative;
  text-align: center;
}

.vsl-placeholder__label {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  font-weight: 700;
  letter-spacing: var(--ls-display);
  color: var(--linen);
  line-height: 1.3;
}

.vsl-placeholder__sub {
  font-size: 0.8rem;
  color: rgba(240, 234, 216, 0.55);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 0.3rem;
}

/* ============================================
   BULLETS DE PROGRAMA
   ============================================ */
.program-bullets {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.program-bullet {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.1rem 1.3rem;
  background: var(--white);
  border-radius: 6px;
  border-left: 3px solid var(--dusty-pink);
}

.program-bullet__icon {
  flex-shrink: 0;
  font-size: 1.1rem;
  margin-top: 0.05em;
}

.program-bullet__text {
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
  color: var(--text-mid);
  letter-spacing: var(--ls-body);
  line-height: 1.6;
}

/* ============================================
   URGENCIA / ESCASEZ
   ============================================ */
.urgency-box {
  text-align: center;
  padding: 1.5rem 2rem;
  background: rgba(153, 171, 166, 0.15);
  border-radius: 8px;
  border: 1px solid rgba(153, 171, 166, 0.3);
}

.urgency-box p {
  font-size: 0.95rem;
  color: var(--evergreen);
  font-weight: 500;
}

/* ============================================
   PÁGINA LISTA DE ESPERA
   ============================================ */
.thankyou-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem;
  text-align: center;
}

.thankyou-page__icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  animation: bloom 0.6s var(--ease) both;
}

@keyframes bloom {
  from { transform: scale(0.3); opacity: 0; }
  to   { transform: scale(1);   opacity: 1; }
}

.thankyou-page__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 3.5rem);
  letter-spacing: var(--ls-display);
  color: var(--dark-plum);
  margin-bottom: 1.2rem;
  line-height: 1.15;
}

.thankyou-page__body {
  font-size: clamp(1rem, 2vw, 1.15rem);
  max-width: 520px;
  margin: 0 auto 1rem;
}

.thankyou-page__secondary {
  font-size: 0.97rem;
  max-width: 420px;
  margin: 0 auto 2.5rem;
}

.social-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.thankyou-page__slogan {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  font-style: italic;
  letter-spacing: var(--ls-heading);
  color: var(--plum);
  opacity: 0.85;
}

/* ============================================
   NOTIFICACIÓN INLINE (botón secundario gracias.html)
   ============================================ */
.inline-confirm {
  display: none;
  text-align: center;
  padding: 1rem 1.5rem;
  background: rgba(59, 76, 62, 0.08);
  border-radius: 6px;
  border: 1px solid rgba(59, 76, 62, 0.2);
  font-size: 0.95rem;
  color: var(--evergreen);
  font-weight: 500;
  margin-top: 0.5rem;
}

.inline-confirm.visible {
  display: block;
  animation: fadeIn 0.4s var(--ease);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================
   UTILIDADES
   ============================================ */
.text-center { text-align: center; }
.text-plum   { color: var(--dark-plum); }
.mt-sm { margin-top: 0.75rem; }
.mt-md { margin-top: 1.5rem; }
.mt-lg { margin-top: 2.5rem; }
.mb-sm { margin-bottom: 0.75rem; }
.mb-md { margin-bottom: 1.5rem; }

/* Trust text debajo del formulario */
.trust-text {
  font-size: 0.82rem;
  color: var(--text-mid);
  text-align: center;
  margin-top: 0.75rem;
  opacity: 0.75;
  letter-spacing: 0;
}

/* Mensaje de estado del formulario */
.form-status {
  display: none;
  padding: 0.9rem 1.2rem;
  border-radius: 6px;
  font-size: 0.92rem;
  font-weight: 500;
  text-align: center;
  margin-top: 0.5rem;
}

.form-status.success {
  display: block;
  background: rgba(59, 76, 62, 0.1);
  color: var(--evergreen);
  border: 1px solid rgba(59, 76, 62, 0.25);
}

.form-status.error {
  display: block;
  background: rgba(192, 57, 43, 0.08);
  color: #c0392b;
  border: 1px solid rgba(192, 57, 43, 0.2);
}

/* ============================================
   RESPONSIVE GENERAL
   ============================================ */
@media (max-width: 480px) {
  .btn--lg {
    max-width: 100%;
  }

  .modal {
    padding: 1.75rem 1.25rem;
  }
}
