/* Importa la tipografia moderna des de Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

/* Tokens de disseny de marca */
:root {
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  /* Colors inspirats en el logotip de l'Ajuntament de Salou */
  --color-primary: #1b3c89;      /* Blau fosc */
  --color-primary-rgb: 27, 60, 137;
  --color-primary-light: #2d55b3;
  --color-text-dark: #0f1c3f;
  --color-text-muted: #5e6b8c;
  --color-bg-light: #f8fafc;
  --color-bg-white: #ffffff;
  
  /* Accents multicolors del logotip */
  --color-accent-red: #d81e1e;
  --color-accent-yellow: #f6c400;
  --color-accent-orange: #e67e22;
  --color-accent-green: #2ecc71;
  --color-accent-turquoise: #1abc9c;
  --color-accent-blue: #3498db;

  /* Degradats i ombres de la interfície */
  --gradient-primary: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  --gradient-accent: linear-gradient(90deg, var(--color-accent-red) 0%, var(--color-accent-orange) 20%, var(--color-accent-yellow) 40%, var(--color-accent-green) 60%, var(--color-accent-turquoise) 80%, var(--color-accent-blue) 100%);
  --shadow-sm: 0 2px 8px rgba(15, 28, 63, 0.04);
  --shadow-md: 0 8px 30px rgba(15, 28, 63, 0.06);
  --shadow-lg: 0 16px 40px rgba(15, 28, 63, 0.12);
  --shadow-hover: 0 20px 50px rgba(27, 60, 137, 0.18);
  
  /* Vores i radi de vores */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --border-glass: 1px solid rgba(255, 255, 255, 0.4);
}

/* Restabliments i estils base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg-light);
  color: var(--color-text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
}

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

/* Barra de desplaçament personalitzada prèmium */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--color-bg-light);
}
::-webkit-scrollbar-thumb {
  background: rgba(var(--color-primary-rgb), 0.2);
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(var(--color-primary-rgb), 0.5);
}

/* Utilitats de disposició */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
  position: relative;
}

/* Capçalera i navegació */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(15, 28, 63, 0.06);
  transition: all 0.3s ease;
}

.header.scrolled {
  padding: 8px 0;
  box-shadow: var(--shadow-md);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Logotip de la Targeta Ciutadana personalitzat */
.brand-logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: -0.5px;
  line-height: 1;
}


.logo-divider {
  width: 1px;
  height: 35px;
  background: rgba(15, 28, 63, 0.15);
}

.partner-logo {
  height: 24px;
  width: auto;
  transform: translateY(1px);
}

.partner-logo-mobile {
  display: none;
}

/* Àrea de controls */
.controls-area {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Botons de selecció d'idioma */
.lang-selector {
  display: flex;
  background: rgba(15, 28, 63, 0.05);
  padding: 4px;
  border-radius: 30px;
  gap: 2px;
}

.lang-btn {
  background: transparent;
  border: none;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  padding: 6px 14px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.lang-btn.active {
  background: var(--color-bg-white);
  color: var(--color-primary);
  box-shadow: var(--shadow-sm);
}

/* Botons prèmium */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 30px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
  gap: 8px;
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-bg-white);
  box-shadow: 0 4px 15px rgba(27, 60, 137, 0.25);
}

.btn-primary:hover {
  background: var(--color-primary-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(27, 60, 137, 0.35);
}

.btn-nav {
  padding: 10px 20px;
  font-size: 0.85rem;
}

/* Secció Hero */
.hero {
  padding-top: 180px;
  padding-bottom: 96px;
  background: radial-gradient(circle at 80% 20%, rgba(27, 60, 137, 0.05) 0%, transparent 50%),
              radial-gradient(circle at 10% 80%, rgba(26, 188, 156, 0.04) 0%, transparent 50%);
  position: relative;
  overflow: hidden;
}

/* Franja de degradat animada sota la navegació */
.brand-strip {
  height: 4px;
  background: var(--gradient-accent);
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  z-index: 999;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  background: rgba(27, 60, 137, 0.08);
  color: var(--color-primary);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  border-radius: 30px;
  margin-bottom: 24px;
  border: 1px solid rgba(27, 60, 137, 0.12);
  letter-spacing: 0.5px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--color-text-dark);
  margin-bottom: 16px;
  letter-spacing: -1.5px;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  margin-bottom: 40px;
  max-width: 520px;
}

.hero-download-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  background: #0f1c3f;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 12px;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  min-width: 180px;
}

.store-btn:hover {
  background: var(--color-primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(255, 255, 255, 0.2);
}

.store-btn svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.store-btn-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
}

.store-btn-small {
  font-size: 0.7rem;
  text-transform: uppercase;
  opacity: 0.7;
  letter-spacing: 0.5px;
}

.store-btn-large {
  font-size: 0.95rem;
  font-weight: 700;
}

/* Gràfic de la maqueta del telèfon */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mockup-wrapper {
  position: relative;
  width: 320px;
  height: 640px;
  z-index: 2;
}

.phone-shell {
  width: 100%;
  height: 100%;
  background: #0f1c3f;
  border-radius: 44px;
  padding: 12px;
  box-shadow: var(--shadow-lg);
  border: 4px solid #3d4a6e;
  position: relative;
  overflow: hidden;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: #f1f5f9;
  border-radius: 34px;
  overflow-y: auto;
  position: relative;
  display: flex;
  flex-direction: column;
  font-family: var(--font-body);
}

/* Estils de contingut de la pantalla del telèfon per mostrar l'App */
.app-header {
  background: var(--color-primary);
  color: #fff;
  padding: 24px 16px 16px;
  text-align: center;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  position: relative;
}

.app-logo {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
}

.app-card-preview {
  margin: 16px;
  background: linear-gradient(135deg, #1b3c89 0%, #2d55b3 100%);
  border-radius: 16px;
  padding: 20px;
  color: #fff;
  box-shadow: 0 10px 20px rgba(27, 60, 137, 0.25);
  position: relative;
  overflow: hidden;
  height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.app-card-preview::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -20%;
  width: 150px;
  height: 150px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}

.app-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.app-card-chip {
  width: 35px;
  height: 25px;
  background: #f6c400;
  border-radius: 4px;
  opacity: 0.8;
}

.app-card-mid {
  margin-top: 15px;
}

.app-card-name {
  font-size: 0.65rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.7;
}

.app-card-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  margin-top: 2px;
}

.app-card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.app-card-user {
  font-size: 0.8rem;
  font-weight: 500;
}

.app-card-qr {
  background: #fff;
  padding: 4px;
  border-radius: 4px;
  width: 32px;
  height: 32px;
}

.app-card-qr svg {
  width: 100%;
  height: 100%;
}

.app-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 0 16px 16px;
}

.app-service-item {
  background: #fff;
  border-radius: 12px;
  padding: 10px 4px;
  text-align: center;
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--color-text-dark);
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}

.app-service-icon {
  width: 24px;
  height: 24px;
  margin: 0 auto 6px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.app-service-blue { background: var(--color-primary); }
.app-service-green { background: var(--color-accent-green); }
.app-service-orange { background: var(--color-accent-orange); }
.app-service-turquoise { background: var(--color-accent-turquoise); }
.app-service-red { background: var(--color-accent-red); }
.app-service-yellow { background: var(--color-accent-yellow); color: #000; }

.app-news-preview {
  margin: 0 16px 16px;
  background: #fff;
  border-radius: 12px;
  padding: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}

.app-news-tag {
  font-size: 0.55rem;
  color: var(--color-accent-turquoise);
  font-weight: 700;
  text-transform: uppercase;
}

.app-news-title {
  font-size: 0.7rem;
  font-weight: 700;
  margin: 4px 0;
}

.app-news-date {
  font-size: 0.55rem;
  color: var(--color-text-muted);
}

/* Blobs de fons visuals */
.glow-blob {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  opacity: 0.5;
}

.blob-1 {
  background: rgba(27, 60, 137, 0.15);
  top: 10%;
  right: -10%;
}

.blob-2 {
  background: rgba(26, 188, 156, 0.1);
  bottom: 10%;
  left: -10%;
}

/* Secció de passos */
.section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 64px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-text-dark);
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--color-text-muted);
}

.steps-flow {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  position: relative;
}

/* Targeta de pas */
.step-card {
  background: var(--color-bg-white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(15, 28, 63, 0.04);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
}

.step-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(27, 60, 137, 0.15);
}

.step-icon-wrapper {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background: rgba(27, 60, 137, 0.05);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.step-card:hover .step-icon-wrapper {
  background: var(--color-primary);
  color: var(--color-bg-white);
  transform: scale(1.1) rotate(5deg);
}

.step-card:nth-child(1) .step-icon-wrapper { color: var(--color-primary); }
.step-card:nth-child(2) .step-icon-wrapper { color: var(--color-accent-turquoise); }
.step-card:nth-child(3) .step-icon-wrapper { color: var(--color-accent-orange); }

.step-card:nth-child(1):hover .step-icon-wrapper { background: var(--color-primary); color: var(--color-bg-white); }
.step-card:nth-child(2):hover .step-icon-wrapper { background: var(--color-accent-turquoise); color: var(--color-bg-white); }
.step-card:nth-child(3):hover .step-icon-wrapper { background: var(--color-accent-orange); color: var(--color-bg-white); }

.step-card-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 12px;
}

.step-card-desc {
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

/* Línies connectores per als passos en pantalles grans */
.steps-wrapper {
  position: relative;
}

.steps-line {
  position: absolute;
  top: 130px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: rgba(15, 28, 63, 0.06);
  z-index: 1;
}

/* Secció de serveis */
.benefits {
  background: var(--color-bg-white);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* Classes d'abast addicionals per a disposicions en graella */
.span-2 {
  grid-column: span 2;
}

.benefit-card {
  background: var(--color-bg-light);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid rgba(15, 28, 63, 0.03);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.benefit-card:hover {
  background: var(--color-bg-white);
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(27, 60, 137, 0.1);
}

.benefit-icon-wrapper {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 1.5rem;
  color: #fff;
  transition: transform 0.3s ease;
}

.benefit-card:hover .benefit-icon-wrapper {
  transform: scale(1.1) rotate(5deg);
}

/* Colorit distintiu de les targetes */
.benefit-card-1 .benefit-icon-wrapper { background: var(--color-primary); }
.benefit-card-2 .benefit-icon-wrapper { background: var(--color-accent-green); }
.benefit-card-3 .benefit-icon-wrapper { background: var(--color-accent-orange); }
.benefit-card-4 .benefit-icon-wrapper { background: var(--color-accent-turquoise); }
.benefit-card-5 .benefit-icon-wrapper { background: var(--color-accent-red); }

.benefit-card-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.benefit-card-desc {
  font-size: 1rem;
  color: var(--color-text-muted);
}

/* Estils del peu de pàgina */
.footer {
  background: #0b142d;
  color: #ffffff;
  padding: 80px 0 40px;
  font-family: var(--font-body);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 64px;
  margin-bottom: 64px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.footer-logo-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
}

.footer-description {
  color: #8fa0c4;
  font-size: 0.95rem;
  max-width: 400px;
}

.footer-heading {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: #ffffff;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  color: #8fa0c4;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.footer-link:hover {
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-copy {
  color: #8fa0c4;
  font-size: 0.85rem;
}

.footer-info {
  display: flex;
  gap: 24px;
  color: #8fa0c4;
  font-size: 0.85rem;
}

/* Microanimacions */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeInUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.2s; opacity: 0; }
.delay-2 { animation-delay: 0.4s; opacity: 0; }
.delay-3 { animation-delay: 0.6s; opacity: 0; }

/* Ajustos de disseny adaptatiu (responsives) */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  
  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-download-buttons {
    justify-content: center;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .span-2 {
    grid-column: span 1;
  }
  
  .steps-flow {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .steps-line {
    display: none;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 64px 0;
  }
  
  .hero {
    padding-top: 140px;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.4rem;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  /* Evita que es muntin o s'encavalquin els elements de la capçalera a mòbil */
  .nav-container {
    height: 64px;
  }

  /* Ocultem el botó de descàrrega de la capçalera a mòbil */
  .btn-nav {
    display: none !important;
  }


  /* Mostrem el logo del municipi, el divisor i només el grafisme d'eAgora (sense text) */
  .logo-divider {
    display: block !important;
    height: 24px;
    background: rgba(15, 28, 63, 0.1);
  }

  .partner-logo-desktop {
    display: none !important;
  }

  .partner-logo-mobile {
    display: block !important;
    height: 20px;
    width: auto;
    opacity: 0.85;
  }

  .logo-area {
    gap: 10px;
  }

  .brand-logo-container img {
    height: 45px !important;
  }

  /* Ajusta la posició de la franja animada a l'alçada de la capçalera mòbil (64px) */
  .brand-strip {
    top: 64px !important;
  }
}

/* Estils d'enllaç de les insígnies oficials de les botigues */
.badge-store-link {
  display: inline-block;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 8px;
  overflow: hidden;
}

.badge-store-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(15, 28, 63, 0.12);
}

.badge-store-link img {
  height: 52px;
  width: auto;
  display: block;
}

/* Estils de la insígnia de properament dins de les targetes */
.badge-coming-soon {
  background: rgba(15, 28, 63, 0.05);
  color: var(--color-text-muted);
  border: 1px solid rgba(15, 28, 63, 0.08);
  font-family: var(--font-body);
  font-size: 0.65rem;
  padding: 4px 10px;
  border-radius: 20px;
  font-weight: 700;
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

/* Estils per als botons de descàrrega més petits a les instruccions */
.store-btn-mini {
  padding: 8px 16px !important;
  min-width: 145px !important;
  border-radius: var(--radius-sm) !important;
  gap: 8px !important;
  margin-top: 10px;
}

.store-btn-mini svg {
  width: 18px !important;
  height: 18px !important;
}

.store-btn-mini .store-btn-small {
  font-size: 0.5rem !important;
}

.store-btn-mini .store-btn-large {
  font-size: 0.75rem !important;
}

/* Estil del botó Seguir replicat de la imatge i el seu element destacat */
.step-follow-highlight {
  margin-top: 16px;
  padding: 10px 14px;
  background: rgba(33, 111, 96, 0.08);
  border: 1px dashed rgba(33, 111, 96, 0.4);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.follow-badge-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-text-dark);
}

.btn-seguir-mockup {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #216f60; /* Color verd-teal exacte del botó de la imatge */
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  padding: 6px 24px;
  border-radius: 100px;
  box-shadow: 0 2px 8px rgba(33, 111, 96, 0.25);
  user-select: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  letter-spacing: 0.5px;
  transition: transform 0.2s ease;
}

.btn-seguir-mockup:hover {
  transform: scale(1.05);
}

.btn-seguir-inline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #216f60; /* Color verd-teal exacte del botó de la imatge */
  color: #ffffff !important;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  padding: 2px 12px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  letter-spacing: 0.5px;
  margin: 0 4px;
  vertical-align: middle;
  line-height: 1.4;
  user-select: none;
}


