/* ============================================
   CSS VARIABLES
============================================ */
:root {
  --purple-950: #1a0553;
  --purple-900: #270082;
  --purple-800: #3d0099;
  --purple-600: #6D28D9;
  --purple-500: #7C3AED;
  --purple-400: #A78BFA;
  --purple-200: #DDD6FE;
  --purple-100: #EDE9FE;
  --purple-50:  #F5F3FF;
  --yellow:     #FBBF24;
  --green:      #22C55E;
  --text-900:   #0f172a;
  --text-600:   #475569;
  --text-400:   #94a3b8;
  --white:      #ffffff;
  --bg:         #F8F7FF;
  --shadow-sm:  0 4px 14px rgba(109, 40, 217, 0.1);
  --shadow-md:  0 10px 30px rgba(109, 40, 217, 0.18);
  --shadow-lg:  0 20px 50px rgba(109, 40, 217, 0.28);
  --radius:     16px;
}

/* ============================================
   RESET & BASE
============================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", sans-serif;
  color: var(--text-900);
  background: var(--bg);
  line-height: 1.6;
}

body.modal-open {
  overflow: hidden;
}

img { width: 100%; display: block; }

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

.section { padding: 5rem 0; }

/* ============================================
   TYPOGRAPHY HELPERS
============================================ */
.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--purple-500);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  display: block;
}
.section-eyebrow.centered { text-align: center; }

.section-title {
  font-size: clamp(1.9rem, 1.4rem + 1.6vw, 2.7rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 0.8rem;
}
.section-title.centered { text-align: center; }

.section-subtitle {
  color: var(--text-600);
  font-size: 1rem;
  margin-bottom: 1.4rem;
}

.section-intro {
  color: var(--text-600);
  margin-bottom: 2.5rem;
}
.section-intro.centered { text-align: center; }

/* ============================================
   BUTTONS
============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 999px;
  padding: 0.7rem 1.55rem;
  transition: transform 0.2s ease, box-shadow 0.25s ease, background 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--purple-500);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.38);
}
.btn-primary:hover { box-shadow: 0 12px 32px rgba(124, 58, 237, 0.52); }

.btn-whatsapp {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(34, 197, 94, 0.32);
}
.btn-whatsapp:hover { box-shadow: 0 12px 30px rgba(34, 197, 94, 0.45); }

/* .btn-outline-white — Download CV button unused
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.6);
}
.btn-outline-white:hover { background: rgba(255, 255, 255, 0.12); }
*/

.btn-hero-primary {
  background: var(--purple-500);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.5);
  font-size: 1rem;
  padding: 0.82rem 1.9rem;
}

/* ============================================
   NAVBAR
============================================ */
.site-header {
  background: linear-gradient(140deg, var(--purple-950) 0%, var(--purple-800) 55%, #5b1aad 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.navbar {
  padding: 1.4rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  position: relative;
  z-index: 10;
}

.brand {
  color: var(--white);
  text-decoration: none;
  font-weight: 900;
  font-size: 1.55rem;
  letter-spacing: -0.5px;
}
.brand-symbol {
  color: var(--purple-400);
  font-size: 1.8rem;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 0.15rem;
  flex-wrap: wrap;
}
.nav-links a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.93rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  touch-action: manipulation;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--white);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================
   HERO
============================================ */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 2rem;
  padding-top: 3rem;
  padding-bottom: 5rem;
  position: relative;
  z-index: 5;
}

.hero-left { padding-right: 1.5rem; }

.hello-tag {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 0.5rem;
}

.hero-name {
  font-size: clamp(2rem, 1.4rem + 3.2vw, 3.7rem);
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 0.95rem;
}

.hero-roles {
  font-size: clamp(0.9rem, 0.85rem + 0.45vw, 1.08rem);
  color: rgba(255, 255, 255, 0.68);
  margin-bottom: 2rem;
  line-height: 1.55;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.available-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 500;
  white-space: nowrap;
}
.available-badge .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.25);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.25); }
  50%       { box-shadow: 0 0 0 7px rgba(34, 197, 94, 0.08); }
}

/* Hero Right column */
.hero-right {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 440px;
}

.hero-img-wrap {
  width: 310px;
  height: 310px;
  border-radius: 50%;
  overflow: hidden;
  border: 6px solid rgba(255, 255, 255, 0.22);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 3;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

/* Decorative elements */
.deco { position: absolute; z-index: 2; }

.deco-circle-yellow {
  top: 18px;
  right: 55px;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 5px solid var(--yellow);
  background: transparent;
}

.deco-triangle {
  top: 28px;
  right: 5px;
  width: 0;
  height: 0;
  border-left: 18px solid transparent;
  border-right: 18px solid transparent;
  border-bottom: 33px solid rgba(255, 255, 255, 0.5);
}

.deco-dot {
  border-radius: 50%;
}
.deco-dot-1 {
  width: 14px;
  height: 14px;
  bottom: 90px;
  right: 18px;
  background: rgba(255, 255, 255, 0.52);
}
.deco-dot-2 {
  width: 10px;
  height: 10px;
  top: 110px;
  left: 38px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  background: transparent;
}
.deco-ring {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 40px solid rgba(255, 255, 255, 0.04);
  bottom: -20px;
  left: -20px;
  z-index: 1;
}

/* Floating stats card — unused
.stats-card {
  position: absolute;
  bottom: 55px;
  right: 0;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.1rem 1.4rem;
  box-shadow: var(--shadow-md);
  z-index: 4;
  text-align: center;
  min-width: 138px;
}
.stats-num {
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--text-900);
  line-height: 1;
}
.stats-label {
  font-size: 0.76rem;
  color: var(--text-600);
  line-height: 1.35;
  margin-top: 0.3rem;
}
*/

/* Wave divider */
.header-wave {
  line-height: 0;
  margin-top: -2px;
}
.header-wave svg { display: block; }

/* ============================================
   ABOUT
============================================ */
.about { background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

.about-text {
  color: var(--text-600);
  margin-bottom: 1.6rem;
  line-height: 1.75;
}

/* about-actions, social buttons, signature, info table — unused
.about-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.4rem;
}

.social-links { display: flex; gap: 0.5rem; }

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.82rem;
  color: var(--white);
  transition: transform 0.2s, opacity 0.2s;
  text-transform: lowercase;
}
.social-btn:hover { transform: scale(1.1); opacity: 0.9; }
.social-btn.fb { background: #1877f2; }
.social-btn.ig { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-btn.tw { background: #1da1f2; }

.signature {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  font-style: italic;
  color: var(--text-900);
  border-top: 1px solid #E2E8F0;
  padding-top: 1.1rem;
  margin-bottom: 1.3rem;
}

.info-table { border-top: 1px solid #E2E8F0; }

.info-row {
  display: flex;
  padding: 0.65rem 0;
  border-bottom: 1px solid #F1F5F9;
  font-size: 0.94rem;
}
.info-label {
  font-weight: 600;
  width: 110px;
  flex-shrink: 0;
  color: var(--text-900);
}
.info-value { color: var(--text-600); }
.info-value.available { color: var(--green); font-weight: 600; }
*/

/* Skills list */
.skills-heading {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-900);
  margin-bottom: 1rem;
}

.skills-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.skill-tag {
  background: var(--purple-100);
  color: var(--purple-600);
  border: 1.5px solid var(--purple-200);
  border-radius: 999px;
  padding: 0.45rem 1.05rem;
  font-size: 0.88rem;
  font-weight: 600;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  cursor: default;
}
.skill-tag:hover {
  background: var(--purple-500);
  color: var(--white);
  border-color: var(--purple-500);
  transform: translateY(-2px);
}

/* ============================================
   SERVICES
============================================ */
.services { background: var(--purple-50); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.2rem 1.6rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid transparent;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.service-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-md);
  border-color: var(--purple-400);
}

.service-card.featured {
  background: var(--purple-500);
  color: var(--white);
}
.service-card.featured h3,
.service-card.featured p { color: rgba(255, 255, 255, 0.92); }
.service-card.featured .service-icon {
  background: rgba(255, 255, 255, 0.18);
  color: var(--white);
}

.service-icon {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: var(--purple-100);
  color: var(--purple-500);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.1rem;
}
.service-icon svg { width: 28px; height: 28px; }

.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.55rem;
}
.service-card p {
  font-size: 0.9rem;
  color: var(--text-600);
  line-height: 1.65;
}

/* ============================================
   PORTFOLIO
============================================ */
.portfolio { background: var(--white); }

.project-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

/* ============================================
   GALLERY
============================================ */
.gallery { background: var(--purple-50); }

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.coming-soon-card {
  background: linear-gradient(145deg, var(--white), var(--purple-50));
  border: 1px solid var(--purple-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 2.5rem 2rem;
  text-align: center;
}

.coming-soon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 0.85rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: var(--purple-100);
  color: var(--purple-600);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.coming-soon-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.65rem;
  color: var(--text-900);
}

.coming-soon-card p {
  max-width: 560px;
  margin: 0 auto;
  color: var(--text-600);
}

.gallery-coming-soon {
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ============================================
   CONTACT
============================================ */
.contact { background: var(--white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.contact-list {
  list-style: none;
  margin-top: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}
.contact-list li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.95rem;
  color: var(--text-600);
}
.contact-list li > div {
  line-height: 1.45;
}
.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--purple-100);
  color: var(--purple-500);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg {
  width: 20px;
  height: 20px;
}
.contact-list strong {
  font-weight: 700;
  color: var(--text-900);
  display: block;
  margin-bottom: 0.1rem;
}

.contact-whatsapp {
  margin-top: 1.25rem;
  align-self: flex-start;
}

.contact-form {
  background: var(--purple-50);
  padding: 1.9rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: 0.7rem;
  border: 1px solid var(--purple-100);
}

.form-heading {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: var(--text-900);
}

.contact-form label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-900);
}

.contact-form input,
.contact-form textarea {
  border: 1.5px solid var(--purple-200);
  border-radius: 10px;
  padding: 0.76rem 0.95rem;
  font: inherit;
  font-size: 0.93rem;
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--purple-500);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.contact-form .btn {
  justify-self: start;
  margin-top: 0.35rem;
}

/* ============================================
   MODALS
============================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  z-index: 1000;
}

.modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal-card {
  position: relative;
  width: min(100%, 480px);
  background: var(--white);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transform: translateY(10px) scale(0.96);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.modal-card-form {
  width: min(100%, 560px);
}

.modal-overlay.is-open .modal-card {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 0.9rem;
  right: 1rem;
  border: none;
  background: transparent;
  color: var(--text-400);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

.modal-title {
  font-size: 1.65rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 0.65rem;
}

.modal-text {
  color: var(--text-600);
  margin-bottom: 1.4rem;
}

.modal-text-center {
  text-align: center;
}

.modal-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.modal-form {
  margin-top: 1rem;
}

.choice-option {
  width: 100%;
  border: 1.5px solid var(--purple-200);
  background: var(--white);
  border-radius: 14px;
  padding: 0.85rem 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  font: inherit;
  color: var(--text-900);
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.choice-option:hover {
  border-color: var(--purple-500);
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
}

.choice-option-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--purple-100);
  color: var(--purple-600);
  font-size: 0.95rem;
  flex-shrink: 0;
}

.choice-option-content {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.choice-option-title {
  font-size: 0.97rem;
  font-weight: 700;
  line-height: 1.2;
}

.choice-option-subtitle {
  font-size: 0.83rem;
  color: var(--text-600);
  line-height: 1.35;
  margin-top: 0.1rem;
}

.choice-option-whatsapp .choice-option-icon {
  background: rgba(34, 197, 94, 0.14);
  color: #16a34a;
}

/* ============================================
   FOOTER
============================================ */
.site-footer {
  background: var(--purple-950);
  color: rgba(255, 255, 255, 0.65);
  padding: 1.6rem 0;
}
.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.92rem;
}
.footer-brand {
  font-size: 1.55rem;
  font-weight: 900;
  color: var(--white);
}
.footer-brand span { color: var(--purple-400); }

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    padding-bottom: 4rem;
  }
  .hero-left { padding-right: 0; }
  .hero-right { height: 370px; }

  .about-grid { grid-template-columns: 1fr; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }

  .coming-soon-card {
    padding: 2.2rem 1.5rem;
  }

  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .section { padding: 3.5rem 0; }

  .hero {
    gap: 1.4rem;
    padding-top: 2rem;
  }

  .hero-cta {
    flex-wrap: nowrap;
    gap: 0.75rem;
    align-items: center;
  }

  .btn-hero-primary {
    padding: 0.72rem 1.1rem;
    font-size: 0.9rem;
    white-space: nowrap;
  }

  .available-badge {
    font-size: 0.8rem;
    gap: 0.4rem;
  }

  .hello-tag {
    font-size: 1.05rem;
  }

  .navbar {
    align-items: flex-start;
  }

  .nav-actions {
    margin-left: auto;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-links {
    display: flex;
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: min(280px, 90vw);
    padding: 0.8rem;
    border-radius: 14px;
    background: rgba(39, 0, 130, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 14px 28px rgba(8, 5, 34, 0.38);
    z-index: 25;
    flex-direction: column;
    gap: 0.25rem;
    flex-wrap: nowrap;
    backdrop-filter: blur(6px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px) scale(0.98);
    transform-origin: top right;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease, max-height 0.25s ease;
  }

  .nav-links.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
    max-height: 340px;
  }

  .nav-links a {
    display: block;
    width: 100%;
    padding: 0.7rem 0.75rem;
    font-size: 0.98rem;
  }

  .hero-right { height: 300px; }
  .hero-img-wrap { width: 240px; height: 240px; }
  /* .stats-card { bottom: 10px; right: 0; } — element removed */

  .services-grid { grid-template-columns: 1fr; }

  .coming-soon-card {
    padding: 2rem 1.2rem;
  }

  .modal-card {
    padding: 1.35rem 1rem;
    border-radius: 18px;
  }

  .modal-title {
    font-size: 1.35rem;
  }

  .modal-text {
    margin-bottom: 1rem;
  }

  .choice-option {
    padding: 0.8rem 0.8rem;
    gap: 0.65rem;
  }

  .choice-option-icon {
    width: 34px;
    height: 34px;
  }

  .choice-option-title {
    font-size: 0.92rem;
  }

  .choice-option-subtitle {
    font-size: 0.78rem;
  }

  .modal-actions .btn,
  .modal-form .btn {
    width: 100%;
    justify-content: center;
  }

  .footer-content { flex-direction: column; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  .modal-card {
    transition: none;
  }

  .modal-overlay {
    transition: none;
  }
}
