/* Perfil Individual - Modern Glassmorphism Design */

:root {
  --mira-blue: #00289f;
  --mira-light-blue: #0052cc;
  --mira-dark-blue: #001f7a;
  --mira-yellow: #fbba00;
  --color-1: #00289f;
  --color-2: #0052cc;
  --color-3: #667eea;
  --color-4: #764ba2;
}

/* Background and orbs are defined in main.css */

/* Reveal Animation - Disabled */
.reveal {
  opacity: 1;
  transform: translateY(0);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Back Button */
.back-button-wrapper {
  margin-bottom: 2rem;
}

.btn-back {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-back:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateX(-5px);
  color: white;
}

/* Hero Section */
.perfil-hero-section {
  padding: 3rem 0 4rem;
  position: relative;
  z-index: 10;
}

/* Hero Content - Container for Photo with Overlays */
.perfil-hero-content {
  position: relative;
  max-width: 700px;
  margin: 0 auto 3rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-left: 50px;
}

/* Logo - Top Left */
.perfil-logo-top-left {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  transition: transform 0.3s ease;
}

.perfil-logo {
  max-height: 70px;
  width: auto;
  display: block;
}

/* Pedagogía - Top Right */
.perfil-pedagogia-top-right {
  position: absolute;
  top: -20px;
  right: -30px;
  z-index: 10;
  max-width: 50%;
  pointer-events: none;
}

.perfil-pedagogia-top-right a {
  display: block;
  pointer-events: auto;
}

.perfil-imagen-pedagogia {
  max-width: 260px;
  height: auto;
  display: block;
  pointer-events: none;
}

/* Photo - Center */
.perfil-photo-center {
  position: relative;
  z-index: 5;
  transition: transform 0.3s ease;
}

.perfil-photo-center:hover {
  transform: scale(1.02);
}

/* Name Image - Bottom Right */
.perfil-nombre-bottom-right {
  position: absolute;
  bottom: 0;
  right: -10px;
  z-index: 10;
  max-width: 70%;
  transition: transform 0.3s ease;
}

.perfil-nombre-bottom-right:hover {
  transform: translateX(5px) translateY(-5px);
}

.perfil-imagen-nombre {
  max-width: 100%;
  height: auto;
  max-height: 120px;
  display: block;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.6));
}

/* Info Section Below Photo */
.perfil-info-section {
  margin-top: 3rem;
}

/* Hero Title */
.perfil-hero-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1;
  letter-spacing: -1px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

/* Badges Wrapper */
.perfil-badges-wrapper {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

/* Badges */
.perfil-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, var(--mira-yellow) 0%, #ffd700 100%);
  color: #000;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  margin-right: 1rem;
  margin-bottom: 1rem;
  box-shadow: 0 8px 24px rgba(251, 186, 0, 0.4);
}

.perfil-badge-secondary {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

/* Social Media in Hero */
.perfil-social-hero {
  margin-top: 2rem;
}

.social-label {
  color: white;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.social-links-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Photo Styles */
.perfil-photo-main {
  max-width: 100%;
  max-height: 600px;
  height: auto;
  display: block;
  mask-image: linear-gradient(#00289f 80%, transparent);
}

.perfil-photo-placeholder {
  width: 100%;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  background: linear-gradient(
    180deg,
    #d8edf6 0%,
    #a9d3ec 40%,
    var(--mira-blue) 100%
  );
  border-radius: 16px;
}

/* Sections */
.perfil-section {
  padding: 4rem 0;
  position: relative;
  z-index: 10;
}

/* Glass Card */
.glass-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  padding: 3rem;
  transition: all 0.3s ease;
}

.glass-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}

/* Section Titles */
.section-title-main {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 3rem;
  background: linear-gradient(135deg, #ffffff 0%, #0052cc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-icon {
  font-size: 4rem;
  color: white;
  opacity: 0.9;
}

.section-title-inline {
  font-size: 2rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1.5rem;
}

.section-content {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
}

/* Propuestas */
.propuestas-image-wrapper {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

/* Info Stat Cards */
.info-stat-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transition: all 0.3s ease;
  height: 100%;
}

.info-stat-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.info-stat-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--mira-yellow) 0%, #ffd700 100%);
  color: #000;
  font-size: 1.5rem;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(251, 186, 0, 0.4);
}

.info-stat-content {
  flex: 1;
}

.info-stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}

.info-stat-value {
  font-size: 1.3rem;
  font-weight: 700;
  color: white;
  line-height: 1.2;
}

/* Modern Buttons */
.btn-modern {
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.btn-modern::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s ease;
}

.btn-modern:hover::before {
  left: 100%;
}

.btn-primary-modern {
  background: linear-gradient(135deg, #fbba00 0%, #ffd700 100%);
  color: #000;
  box-shadow: 0 10px 40px rgba(251, 186, 0, 0.5);
  font-weight: 700;
}

.btn-primary-modern:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 50px rgba(251, 186, 0, 0.7);
  background: linear-gradient(135deg, #ffd700 0%, #fbba00 100%);
  color: #000;
}

/* Hero Title from Landing */
.hero-title {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 900;
  background: linear-gradient(135deg, #ffffff 0%, #0052cc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
  .perfil-hero-section {
    padding: 2rem 0 3rem;
    min-height: auto;
  }

  .perfil-hero-title {
    font-size: 2.5rem;
  }

  .perfil-badge {
    font-size: 1rem;
    padding: 0.6rem 1.2rem;
  }

  .section-icon {
    font-size: 3rem;
  }

  .glass-card {
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  .perfil-hero-section {
    padding: 2rem 0 2rem;
  }

  .perfil-hero-content {
    max-width: 350px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .perfil-logo {
    max-height: 50px;
  }

  .perfil-pedagogia-top-right {
    max-width: 35%;
    top: 10px;
    right: 0;
  }

  .perfil-imagen-pedagogia {
    max-width: 180px;
  }

  .perfil-imagen-nombre {
    max-height: 70px;
  }

  .perfil-nombre-bottom-right {
    max-width: 65%;
    right: -5px;
  }

  .perfil-photo-main {
    max-height: 350px;
  }

  .perfil-badge {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    margin-right: 0.5rem;
  }

  .social-link {
    width: 46px;
    height: 46px;
    font-size: 1.1rem;
  }

  .perfil-section {
    padding: 3rem 0;
  }

  .glass-card {
    padding: 1.5rem;
  }

  .info-stat-card {
    padding: 1.5rem;
  }

  .info-stat-icon {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }

  .info-stat-value {
    font-size: 1.1rem;
  }

  .section-content {
    font-size: 1rem;
  }

  .btn-whatsapp-share {
    font-size: 0.85rem;
    padding: 0.65rem 1.25rem;
  }

  .btn-whatsapp-share i {
    font-size: 1.1rem;
  }
}

@media (max-width: 576px) {
  .back-button-wrapper {
    margin-bottom: 1.5rem;
  }

  .btn-back {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }

  .perfil-hero-title {
    font-size: 2rem;
  }

  .perfil-hero-content {
    max-width: 280px;
    padding-left: 5px;
    padding-right: 5px;
  }

  .perfil-pedagogia-top-right {
    max-width: 30%;
    top: 20px;
    right: 5px;
  }

  .perfil-imagen-pedagogia {
    max-width: 120px;
  }

  .perfil-imagen-nombre {
    max-height: 50px;
  }

  .perfil-nombre-bottom-right {
    max-width: 60%;
    right: 0;
  }

  .perfil-photo-main {
    max-height: 280px;
  }

  .perfil-whatsapp-share-below {
    margin-top: 1rem;
  }

  .btn-whatsapp-share {
    font-size: 0.8rem;
    padding: 0.6rem 1.2rem;
  }

  .btn-whatsapp-share i {
    font-size: 1rem;
  }

  .orb {
    filter: blur(60px);
  }
}

/* About Photo Circle */
.about-photo-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto;
  border: 4px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.about-photo-circle:hover {
  transform: scale(1.05);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.about-photo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.about-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  font-size: 2rem;
}

/* Estilos para Fórmula (Senador + Cámara) */
.perfil-hero-content-formula {
  position: relative;
  max-width: 1200px;
  margin: 0 auto 3rem;
}

.perfil-logo-top-left-formula {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  transition: transform 0.3s ease;
}

.perfil-fotos-formula {
  display: flex;
  gap: 0;
  justify-content: center;
  align-items: flex-end;
  position: relative;
}

.perfil-foto-senador {
  position: relative;
  flex: 1;
  max-width: 500px;
  z-index: 2;
  margin-right: -80px;
}

.perfil-foto-camara {
  position: relative;
  flex: 1;
  max-width: 500px;
  z-index: 1;
  margin-left: -80px;
  align-self: flex-end;
}

.perfil-photo-formula {
  max-width: 100%;
  max-height: 600px;
  height: auto;
  display: block;
  mask-image: linear-gradient(#00289f 80%, transparent);
}

.perfil-pedagogia-senador {
  position: absolute;
  top: 50%;
  left: -30px;
  z-index: 10;
  max-width: 40%;
  pointer-events: none;
}

.perfil-pedagogia-senador a {
  pointer-events: auto;
}

.perfil-pedagogia-camara {
  position: absolute;
  top: 50%;
  right: -30px;
  z-index: 10;
  max-width: 40%;
  pointer-events: none;
}

.perfil-pedagogia-camara a {
  pointer-events: auto;
}

.perfil-imagen-pedagogia-formula {
  width: 100%;
  height: auto;
  display: block;
  pointer-events: none;
}

.perfil-nombre-senador {
  position: absolute;
  bottom: 0;
  left: -10px;
  z-index: 10;
  max-width: 70%;
  transition: transform 0.3s ease;
}

.perfil-nombre-camara {
  position: absolute;
  bottom: 0;
  right: -10px;
  z-index: 10;
  max-width: 70%;
  transition: transform 0.3s ease;
}

.perfil-nombre-senador:hover {
  transform: translateX(-5px) translateY(-5px);
}

.perfil-nombre-camara:hover {
  transform: translateX(5px) translateY(-5px);
}

/* Número de votación */
.perfil-numero-votacion {
  margin-top: 1rem;
}

.badge-numero-vota {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: linear-gradient(135deg, var(--mira-yellow) 0%, #ffd700 100%);
  color: #000;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 4px 16px rgba(251, 186, 0, 0.4);
  animation: pulse-glow 2s ease-in-out infinite;
}

.badge-numero-vota strong {
  font-weight: 900;
  font-size: 1.3rem;
  color: var(--mira-purple);
}

@keyframes pulse-glow {
  0%,
  100% {
    box-shadow: 0 4px 16px rgba(251, 186, 0, 0.4);
  }
  50% {
    box-shadow: 0 4px 24px rgba(251, 186, 0, 0.7);
  }
}

.perfil-imagen-nombre-formula {
  max-width: 100%;
  height: auto;
  max-height: 120px;
  display: block;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.6));
}

/* Responsive para Fórmula */
@media (max-width: 768px) {
  .perfil-hero-content-formula {
    max-width: 100%;
    padding: 0 1rem;
  }

  .perfil-foto-senador,
  .perfil-foto-camara {
    max-width: 300px;
  }

  .perfil-foto-senador {
    margin-right: -40px;
  }

  .perfil-foto-camara {
    margin-left: -40px;
  }

  .perfil-pedagogia-senador,
  .perfil-pedagogia-camara {
    max-width: 55%;
    top: auto;
    bottom: 70px;
    transform: none;
  }

  .perfil-pedagogia-senador {
    left: -20px;
  }

  .perfil-pedagogia-camara {
    right: -20px;
  }

  .perfil-imagen-nombre-formula {
    max-height: 60px;
  }

  .perfil-photo-formula {
    max-height: 400px;
  }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #001560;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, var(--mira-blue), var(--mira-light-blue));
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, var(--mira-light-blue), var(--mira-blue));
}

/* WhatsApp Share Button - Below Photo */
.perfil-whatsapp-share-below {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.btn-whatsapp-share {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: white;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  font-family: inherit;
}

.btn-whatsapp-share:hover {
  background: linear-gradient(135deg, #128c7e 0%, #25d366 100%);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
  color: white;
}

.btn-whatsapp-share i {
  font-size: 1.2rem;
}

.btn-whatsapp-share span {
  font-weight: 600;
}

/* Actions Container (WhatsApp + Simulator buttons) */
.perfil-actions-below {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
  margin-bottom: 3rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Simulator Button */
.btn-simulador {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  font-family: inherit;
}

.btn-simulador:hover {
  background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
  color: white;
  text-decoration: none;
}

.btn-simulador i {
  font-size: 1.2rem;
}

.btn-simulador span {
  font-weight: 600;
}

/* Proposals Button */
.btn-propuestas {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: white;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(245, 87, 108, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  font-family: inherit;
}

.btn-propuestas:hover {
  background: linear-gradient(135deg, #f5576c 0%, #f093fb 100%);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(245, 87, 108, 0.6);
  color: white;
  text-decoration: none;
}

.btn-propuestas i {
  font-size: 1.2rem;
}

/* Kit Gráfico Button */
.btn-kit-grafico {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, #0052cc 0%, #00a3ff 100%);
  color: white;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 82, 204, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  font-family: inherit;
}

.btn-kit-grafico:hover {
  background: linear-gradient(135deg, #00a3ff 0%, #0052cc 100%);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 82, 204, 0.6);
  color: white;
  text-decoration: none;
}

.btn-kit-grafico i {
  font-size: 1.2rem;
}

/* Fuerza Pública Button */
.btn-fuerza-publica {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, #4b5320 0%, #6b8e23 100%);
  color: white;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(75, 83, 32, 0.4);
}

.btn-fuerza-publica:hover {
  background: linear-gradient(135deg, #6b8e23 0%, #4b5320 100%);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(107, 142, 35, 0.6);
  color: white;
  text-decoration: none;
}

.btn-fuerza-publica i {
  font-size: 1.2rem;
}

/* Responsive adjustments for action buttons */
@media (max-width: 576px) {
  .perfil-actions-below {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-whatsapp-share,
  .btn-simulador,
  .btn-propuestas,
  .btn-kit-grafico,
  .btn-fuerza-publica {
    width: 100%;
    justify-content: center;
  }
}

/* ========================
   Tarjetón Marcado
   ======================== */
.tarjeton-marcado-row {
  margin-top: 2.5rem;
}

.tarjeton-marcado-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  padding: 1.5rem 0.5rem;
}

.tarjeton-marcado-titulo {
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
  margin: 0;
}

.tarjeton-marcado-img-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
}

.tarjeton-marcado-img {
  max-width: 100%;
  width: 420px;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
}

@media (max-width: 576px) {
  .tarjeton-marcado-titulo {
    font-size: 1.3rem;
  }

  .tarjeton-marcado-img {
    width: 100%;
  }
}
