/* ===========================
   PADEL VYSON — styles.css
   =========================== */

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

:root {
  --green:       #1B5E3B;
  --green-dark:  #134830;
  --navy:        #0D1B2A;
  --cream:       #F2F0EB;
  --cream2:      #E8E6E0;
  --white:       #FFFFFF;
  --gray:        #888888;
  --radius:      14px;
  --font-head:   'Bricolage Grotesque', sans-serif;
  --font-body:   'DM Sans', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--navy);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}


/* ----- NAVBAR ----- */
nav {
  background: var(--white);
  border-bottom: 1px solid rgba(0,0,0,0.07);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-inner {
  display: flex;
  align-items: center;
  height: 72px;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-title {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--navy);
}

.logo-title span {
  color: var(--green);
}

.logo-sub {
  font-size: 9.5px;
  font-weight: 400;
  letter-spacing: 0.14em;
  color: var(--gray);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  margin-left: auto;
}

.nav-links a {
  text-decoration: none;
  color: var(--navy);
  font-size: 15px;
  font-weight: 400;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.nav-links a:hover {
  opacity: 1;
}

.btn-cta {
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: 100px;
  padding: 12px 22px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
  white-space: nowrap;
}

.btn-cta:hover {
  background: var(--green-dark);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 16px;
  padding: 20px 24px;
  border-top: 1px solid var(--cream2);
  background: var(--white);
}

.nav-mobile ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nav-mobile a {
  text-decoration: none;
  color: var(--navy);
  font-size: 16px;
  font-weight: 400;
}

.nav-mobile.open {
  display: flex;
}


/* ----- SHARED COMPONENTS ----- */
.section-label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-label::before {
  content: '—';
  color: #bbb;
}

.section-h2 {
  font-family: var(--font-head);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.05;
  color: var(--navy);
  margin-bottom: 24px;
}

.section-h2 em {
  color: var(--green);
  font-style: italic;
}

.btn-primary {
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: 100px;
  padding: 15px 28px;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: background 0.2s;
}

.btn-primary:hover {
  background: var(--green-dark);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid rgba(0,0,0,0.2);
  border-radius: 100px;
  padding: 15px 28px;
  font-size: 15px;
  font-weight: 500;
  font-family: var(--font-body);
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.2s;
}

.btn-outline:hover {
  border-color: var(--navy);
}


/* ----- HERO ----- */
.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 48px 60px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: #444;
  margin-bottom: 36px;
}

.hero-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  display: block;
}

.hero-h1 {
  font-family: var(--font-head);
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  color: var(--navy);
  margin-bottom: 24px;
  max-width: 700px;
}

.hero-h1 em {
  color: var(--green);
  font-style: italic;
}

.hero-sub {
  font-size: 17px;
  color: #444;
  line-height: 1.65;
  max-width: 540px;
  margin-bottom: 40px;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 32px;
  align-items: center;
}

.hero-stat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #555;
}

.hero-stat strong {
  color: var(--navy);
}

.hero-stat svg {
  opacity: 0.6;
}

.hero-divider {
  width: 1px;
  height: 20px;
  background: rgba(0,0,0,0.15);
}


/* ----- FEATURED IMAGE ----- */
.featured-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px 60px;
}

.featured-img {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  height: 480px;
  background: #1a2a1a;
}

.featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}

.featured-label {
  position: absolute;
  bottom: 36px;
  left: 36px;
  color: #fff;
}

.featured-label p {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 6px;
}

.featured-label h3 {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 700;
}


/* ----- BRANDS SCROLL ----- */
.brands-wrap {
  border-top: 1px solid var(--cream2);
  border-bottom: 1px solid var(--cream2);
  background: var(--white);
  overflow: hidden;
}

.brands-track {
  display: flex;
  gap: 60px;
  align-items: center;
  padding: 22px 0;
  animation: scroll-brands 18s linear infinite;
  width: max-content;
}

.brands-track span {
  font-size: 16px;
  font-weight: 500;
  color: #bbb;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

@keyframes scroll-brands {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


/* ----- ABOUT ----- */
.about {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 48px;
}

.about-text {
  font-size: 17px;
  color: #444;
  line-height: 1.7;
  max-width: 680px;
  margin-bottom: 48px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.feature-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 16px;
  padding: 28px;
}

.feature-icon {
  width: 44px;
  height: 44px;
  background: var(--cream);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-card h4 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}


/* ----- CTA BANNER ----- */
.cta-banner-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px 80px;
}

.cta-banner {
  background: var(--green);
  border-radius: 20px;
  padding: 48px 52px;
  position: relative;
  overflow: hidden;
}

.cta-banner::after {
  content: '';
  position: absolute;
  right: -40px;
  top: -40px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
}

.cta-banner .section-label {
  color: rgba(255,255,255,0.6);
}

.cta-banner .section-label::before {
  color: rgba(255,255,255,0.3);
}

.cta-banner h3 {
  font-family: var(--font-head);
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 800;
  color: #fff;
  margin: 12px 0 16px;
  line-height: 1.15;
}

.cta-banner p {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  max-width: 480px;
  line-height: 1.6;
}


/* ----- CATALOGUE ----- */
.catalogue {
  background: var(--white);
  padding: 80px 0;
}

.catalogue-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

.catalogue-sub {
  font-size: 16px;
  color: #666;
  margin-bottom: 36px;
}

.search-box {
  background: var(--cream);
  border-radius: 16px;
  padding: 24px 28px;
  margin-bottom: 40px;
}

.search-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 12px;
}

.search-input-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 100px;
  padding: 12px 20px;
  margin-bottom: 16px;
}

.search-input-wrap input {
  border: none;
  outline: none;
  font-size: 15px;
  font-family: var(--font-body);
  color: var(--navy);
  background: transparent;
  width: 100%;
}

.search-input-wrap input::placeholder {
  color: #bbb;
}

.filter-toggle-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  font-size: 14px;
  color: #666;
  cursor: pointer;
  font-family: var(--font-body);
}

.filter-panel {
  display: none;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.filter-panel.open {
  display: flex;
}

.filter-pill {
  background: transparent;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 100px;
  padding: 7px 16px;
  font-size: 13px;
  font-family: var(--font-body);
  cursor: pointer;
  transition: all 0.2s;
  color: #555;
}

.filter-pill.active,
.filter-pill:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

.rackets-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.racket-card {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.07);
  background: #fff;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}

.racket-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.racket-img {
  height: 450px;       /* ← experimenta até ficares satisfeito */
  background: #F2F0EB;
  position: relative;
  overflow: hidden;
}

.racket-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;   /* ← volta ao cover */
  padding: 0;          /* ← remove o padding */
}


.racket-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  border-radius: 100px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.badge-usado      { background: #1a1a1a; color: #fff; }
.badge-novo       { background: #fff;    color: #1a1a1a; }
.racket-badge-oos { background: #f0f0f0; color: #888; text-decoration: line-through; }

.racket-info {
  padding: 20px;
}

.racket-brand {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 4px;
}

.racket-name {
  font-family: var(--font-head);
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.racket-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.racket-meta {
  font-size: 13px;
  color: #888;
}

.racket-price {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  color: var(--green);
}


/* ----- SELL SECTION ----- */
.sell-section {
  background: var(--green);
  padding: 80px 48px;
}

.sell-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.sell-section .section-label {
  color: rgba(255,255,255,0.6);
}

.sell-section .section-label::before {
  color: rgba(255,255,255,0.3);
}

.sell-section .section-h2 {
  color: #fff;
  max-width: 700px;
  margin-bottom: 20px;
}

.sell-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  max-width: 500px;
  margin-bottom: 36px;
  line-height: 1.65;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: var(--green);
  border-radius: 100px;
  padding: 15px 28px;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.2s;
  border: none;
}

.btn-whatsapp:hover {
  opacity: 0.9;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 60px;
}

.step-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 16px;
  padding: 28px;
  position: relative;
}

.step-num {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 800;
  color: rgba(255,255,255,0.25);
  margin-bottom: 20px;
}

.step-arrow {
  position: absolute;
  top: 22px;
  right: 22px;
  color: rgba(255,255,255,0.4);
  font-size: 20px;
}

.step-card h4 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.step-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.55;
}


/* ----- FOOTER ----- */
footer {
  background: var(--white);
  padding: 60px 48px 40px;
  border-top: 1px solid var(--cream2);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-logo img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.footer-brand {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
}

.footer-brand span {
  color: var(--green);
}

.footer-brand-sub {
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #aaa;
}

.footer-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  max-width: 360px;
  margin-bottom: 24px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s;
  color: var(--navy);
  text-decoration: none;
}

.social-btn:hover {
  border-color: var(--navy);
}

.footer-copy {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--cream2);
  font-size: 13px;
  color: #aaa;
}


/* ----- RESPONSIVE ----- */
@media (max-width: 900px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-inner {
    padding: 0 20px;
  }

  .nav-links {
    display: none;
  }

  .nav-inner .btn-cta {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .hero,
  .featured-wrap,
  .about,
  .cta-banner-wrap,
  .catalogue-inner,
  .footer-inner {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero {
    padding-top: 48px;
    padding-bottom: 40px;
  }

  .featured-img {
    height: 280px;
  }

  .cta-banner {
    padding: 32px 28px;
  }

  .sell-section {
    padding: 60px 20px;
  }

  footer {
    padding: 48px 20px 32px;
  }
}


/* ===========================
   FORMULÁRIOS PARTILHADOS
   (usados em raquete.html e index.html)
   =========================== */

/* ----- MODAL GENÉRICO ----- */
.form-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.form-modal.open {
  display: flex;
  animation: modalFadeIn 0.2s ease-out;
}

@keyframes modalFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.form-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(13, 27, 42, 0.55);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.form-modal-content {
  position: relative;
  background: var(--white);
  border-radius: 20px;
  width: 100%;
  max-width: 460px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 36px 32px 28px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  animation: modalSlideUp 0.25s ease-out;
}

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

.form-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: var(--cream);
  font-size: 22px;
  line-height: 1;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.form-modal-close:hover {
  background: var(--cream2);
}

.form-modal-header {
  margin-bottom: 24px;
}

.form-modal-header .section-label {
  margin-bottom: 10px;
}

.form-modal-title {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 8px;
}

.form-modal-sub {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}

/* ----- CAMPOS DE FORMULÁRIO ----- */
.site-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field label {
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: 0.01em;
}

.form-req { color: var(--green); font-weight: 600; }
.form-opt { font-weight: 400; color: #999; font-size: 12px; }

.form-req-light { color: rgba(255,255,255,0.6); font-weight: 600; }
.form-opt-light { font-weight: 400; color: rgba(255,255,255,0.45); font-size: 12px; }

.form-field input,
.form-field textarea {
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--navy);
  background: var(--white);
  outline: none;
  transition: border-color 0.18s, box-shadow 0.18s;
  width: 100%;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #bbb;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(27, 94, 59, 0.12);
}

.form-field textarea {
  resize: vertical;
  min-height: 100px;
  line-height: 1.5;
}

/* Dark form (sell section on green bg) */
.site-form-dark .form-field label {
  color: rgba(255,255,255,0.85);
}

.site-form-dark .form-field input,
.site-form-dark .form-field textarea {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.2);
  color: #fff;
}

.site-form-dark .form-field input::placeholder,
.site-form-dark .form-field textarea::placeholder {
  color: rgba(255,255,255,0.4);
}

.site-form-dark .form-field input:focus,
.site-form-dark .form-field textarea:focus {
  border-color: rgba(255,255,255,0.5);
  box-shadow: 0 0 0 3px rgba(255,255,255,0.1);
}

.btn-submit {
  justify-content: center;
  margin-top: 6px;
  padding: 14px 28px;
  font-size: 15px;
}

.btn-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.btn-submit-light {
  background: #fff;
  color: var(--green);
}

.btn-submit-light:hover {
  background: #f0f0f0;
}

.form-disclaimer {
  font-size: 12px;
  color: #999;
  text-align: center;
  line-height: 1.5;
  margin-top: 4px;
}

.form-disclaimer-dark {
  color: rgba(255,255,255,0.4);
}

/* ----- UPLOAD DE FICHEIROS ----- */
.file-input-hidden {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  pointer-events: none;
}

.file-upload-zone {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.file-upload-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 1px dashed rgba(0,0,0,0.2);
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 13px;
  font-family: var(--font-body);
  color: #555;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}

.file-upload-btn:hover {
  border-color: var(--green);
  color: var(--green);
}

.file-upload-btn-dark {
  border-color: rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.75);
}

.file-upload-btn-dark:hover {
  border-color: #fff;
  color: #fff;
}

.file-upload-hint {
  font-size: 11px;
  color: #999;
}

.file-upload-hint-dark {
  color: rgba(255,255,255,0.35);
}

/* Lista de ficheiros selecionados */
.file-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 6px;
}

.file-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--cream);
  border-radius: 8px;
  padding: 7px 10px;
  font-size: 13px;
}

.file-item-dark {
  background: rgba(255,255,255,0.1);
}

.file-item-name {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--navy);
}

.file-item-dark .file-item-name {
  color: rgba(255,255,255,0.85);
}

.file-item-size {
  font-size: 11px;
  color: #999;
  flex-shrink: 0;
}

.file-item-dark .file-item-size {
  color: rgba(255,255,255,0.4);
}

.file-item-remove {
  background: none;
  border: none;
  font-size: 18px;
  line-height: 1;
  color: #bbb;
  cursor: pointer;
  padding: 0 2px;
  transition: color 0.15s;
}

.file-item-remove:hover {
  color: #e53935;
}

/* ----- ESTADOS SUCESSO / ERRO ----- */
.form-state {
  text-align: center;
  padding: 16px 8px 8px;
}

.form-state-dark h3 {
  color: #fff;
}

.form-state-dark p {
  color: rgba(255,255,255,0.65);
}

.state-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.state-icon-success {
  background: rgba(27, 94, 59, 0.12);
  color: var(--green);
}

.state-icon-success-dark {
  background: rgba(255,255,255,0.15);
  color: #fff;
}

.state-icon-error {
  background: rgba(217, 48, 37, 0.10);
  color: #d93025;
}

.form-state h3 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
}

.form-state p {
  font-size: 14px;
  color: #fbf9f9;
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 340px;
  margin-left: auto;
  margin-right: auto;
}

.form-state .btn-outline {
  padding: 12px 24px;
  font-size: 14px;
  display: inline-block;
}

.btn-outline-light {
  border-color: rgba(255,255,255,0.35);
  color: #fff;
}

.btn-outline-light:hover {
  border-color: #fff;
}

/* ----- SELL FORM WRAP ----- */
.sell-form-wrap {
  margin-top: 48px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 36px 32px 28px;
}

.sell-form-title {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
}

/* ----- RESPONSIVE FORMS ----- */
@media (max-width: 480px) {
  .form-modal {
    padding: 0;
    align-items: flex-end;
  }

  .form-modal-content {
    max-width: 100%;
    max-height: 92vh;
    border-radius: 20px 20px 0 0;
    padding: 30px 22px 24px;
  }

  .form-modal-title {
    font-size: 22px;
  }

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

  .sell-form-wrap {
    padding: 28px 20px 22px;
  }
}
