/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #f7f7fa;
  min-height: 100vh;
  font-family: 'Inter', Arial, sans-serif;
  color: #222;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  font-size: 1rem;
}

.background {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 0;
  background: #f7f7fa;
}

.card-content {
  background: #fff;
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
  width: 100%;
  padding: 0 0 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
  box-sizing: border-box;
}

.card {
  position: relative;
  background: transparent;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  max-width: 504px;
  width: 96vw;
  margin: 32px auto 18px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
  overflow: visible;
  min-width: 0;
  padding-bottom: 0 !important;
}

.card-banner {
  width: 100%;
  min-width: 0;
  height: 22vw;
  min-height: 90px;
  max-height: 140px;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.banner-curve {
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 20px;
  display: block;
  pointer-events: none;
  z-index: 2;
}

.banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
}

.avatar-wrapper {
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 110px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 6px solid #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.13);
  background: #fff;
  object-fit: cover;
}

.profile-info {
  margin-top: 55px;
  text-align: center;
  padding: 0 4vw;
}

.name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: #0033A0;
  word-break: break-word;
}

.canal-desc {
  text-align: left;
  margin: 18px 0 0 0;
}
.description {
  margin-top: 28px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.social-icons .fa-youtube { color: #FF0000; }
.social-icons .fa-instagram { color: #E1306C; }
.social-icons .fa-x-twitter { color: #000; }
.social-icons .fa-facebook { color: #1877F3; }
.social-icons .fa-envelope { color: #444; }

.social-icons a {
  font-size: 2rem;
  background: none;
  box-shadow: none;
  padding: 0 6px;
  transition: transform 0.2s;
}

.social-icons a:hover,
.social-icons a:focus {
  transform: scale(1.15);
  filter: brightness(1.2);
}

.featured-image {
  width: 100%;
  padding: 0 4vw;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.featured-img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
  margin-bottom: 4px;
}

.featured-caption {
  font-size: 1rem;
  color: #222;
  font-weight: 500;
  text-align: center;
  margin-bottom: 2px;
}

.featured-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0033A0;
  text-align: center;
  margin-bottom: 10px;
  margin-top: 8px;
}

.featured-subtitle {
  font-size: 1rem;
  color: #444;
  text-align: left;
  margin-bottom: 12px;
  margin-top: 2px;
  line-height: 1.5;
}

.subtitle {
  color: #0033A0;
  font-weight: 700;
  font-size: 1.15rem;
  text-align: center;
  margin: 24px 0 10px 0;
}

.links {
  width: 100%;
  padding: 0 4vw 18px 4vw;
  box-sizing: border-box;
}
.links ul {
  list-style: none;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.link-btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  background: #f7f7fa;
  color: #0033A0;
  border-radius: 12px;
  padding: 14px 0 10px 0;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: background 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s;
  border: none;
  min-width: 0;
}
.sponsor-logo {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  object-fit: contain;
  margin-left: 14px;
  margin-right: 14px;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,0.07);
  flex-shrink: 0;
}
.link-texts {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
}
.link-btn .link-title,
.link-btn .link-desc {
  text-align: left;
  word-break: break-word;
}
.link-btn .link-title {
  margin-bottom: 2px;
}
.link-btn:hover,
.link-btn:focus {
  background: #e0e0e5;
  color: #005fcc;
  box-shadow: 0 6px 20px rgba(0,0,0,0.13);
  outline: none;
  transform: translateY(-1px) scale(1.01);
}
.link-title {
  font-size: 1.08rem;
  font-weight: 700;
  margin-bottom: 2px;
  color: #0033A0;
}
.link-desc {
  font-size: 0.98rem;
  color: #444;
  font-weight: 400;
}

.footer {
  text-align: center;
  color: #fff;
  font-size: 0.95rem;
  margin: 0;
  padding: 16px 0 0 0;
  z-index: 3;
  background: none;
  position: relative;
}

.video-embed {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
  margin-bottom: 4px;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}
.video-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.partners-block {
  width: 100%;
  margin: 18px 0 8px 0;
  padding: 0 4vw;
  box-sizing: border-box;
}
.partners-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0033A0;
  text-align: center;
  margin-bottom: 8px;
}
.partners-subtitle {
  font-size: 1rem;
  color: #444;
  text-align: left;
  margin-bottom: 12px;
  margin-top: 2px;
  line-height: 1.5;
}

.about-block {
  width: 100%;
  margin: 24px 0 18px 0;
  padding: 0 4vw;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.about-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0033A0;
  text-align: center;
  margin-bottom: 10px;
}
.about-video-embed {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
  margin-bottom: 10px;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}
.about-video-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.subscribe-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FF0000;
  color: #fff;
  font-weight: 700;
  font-size: 1.08rem;
  border-radius: 6px;
  padding: 10px 22px;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  margin-top: 8px;
  transition: background 0.2s, transform 0.2s;
}
.subscribe-btn i {
  font-size: 1.3rem;
}
.subscribe-btn:hover,
.subscribe-btn:focus {
  background: #c20000;
  color: #fff;
  transform: translateY(-1px) scale(1.03);
}

.share-btn {
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 10;
  background: #e8e8e8;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
  cursor: pointer;
  font-size: 1.5rem;
  color: #0033A0;
  border: none;
  transition: background 0.2s, box-shadow 0.2s;
}
.share-btn:hover, .share-btn:focus {
  background: #d8d8d8;
  box-shadow: 0 4px 16px rgba(0,0,0,0.20);
  outline: none;
}

.share-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.25);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}
.share-modal[style*="display: flex"] {
  display: flex !important;
}
.share-modal-content {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.22);
  padding: 36px 32px 32px 32px;
  min-width: 380px;
  max-width: 420px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.close-share-modal {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #888;
  cursor: pointer;
}
.share-modal h2 {
  font-size: 1.25rem;
  color: #222;
  margin-bottom: 24px;
  text-align: left;
  font-weight: 800;
  letter-spacing: -0.5px;
}
.share-link-block {
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 26px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  border: 1.5px solid #e0e0e0;
  overflow: hidden;
  padding: 0 0 0 12px;
}
#shareLink {
  flex: 1;
  padding: 14px 0;
  border: none;
  border-radius: 0;
  font-size: 1.08rem;
  color: #0033A0;
  background: transparent;
  outline: none;
  font-weight: 600;
  letter-spacing: 0.1px;
}
#copyShareLink {
  background: #f7f7fa;
  border: none;
  border-left: 1.5px solid #e0e0e0;
  padding: 0 22px;
  cursor: pointer;
  font-size: 1.08rem;
  color: #0033A0;
  height: 100%;
  transition: background 0.2s, color 0.2s;
  outline: none;
  display: flex;
  align-items: center;
  gap: 7px;
  font-weight: 600;
}
#copyShareLink i {
  font-size: 1.1rem;
}
#copyShareLink:hover, #copyShareLink:focus {
  background: #e0e0e5;
  color: #222;
}
.share-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  margin-top: 10px;
}
.share-options a {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1.08rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 12px;
  padding: 16px 18px 16px 16px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  color: #222;
  margin-bottom: 0;
  border: 1.5px solid #e0e0e0;
  transition: background 0.18s, box-shadow 0.18s, color 0.18s;
  position: relative;
}
.share-options a i {
  font-size: 1.35rem;
  min-width: 26px;
  text-align: center;
}
.share-options a::after {
  content: '\f054';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 1rem;
  color: #bbb;
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  transition: color 0.18s;
}
.share-facebook { color: #1877F3 !important; }
.share-x { color: #000 !important; }
.share-whatsapp { color: #25D366 !important; }
.share-email { color: #444 !important; }
.share-options a:hover, .share-options a:focus {
  background: #f7f7fa;
  box-shadow: 0 4px 16px rgba(0,0,0,0.10);
  color: #0033A0;
}
.share-options a:hover::after, .share-options a:focus::after {
  color: #0033A0;
}
.bottom-banner {
  width: 100%;
  position: relative;
  margin-top: 32px;
  overflow: hidden;
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
}
.bottom-banner .banner-img {
  width: 100%;
  height: 90px;
  object-fit: cover;
  display: block;
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
}
.bottom-social {
  margin-top: 24px;
  margin-bottom: 0;
  background: none;
}
.bottom-wallpaper {
  width: 100%;
  position: relative;
  margin-top: 0;
  overflow: hidden;
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
  padding: 0;
  background: none;
  min-height: 90px;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.footer {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  font-size: 0.95rem;
  margin: 0;
  padding: 0;
  z-index: 2;
  background: none;
}
.bottom-img {
  width: 100%;
  height: 100%;
  min-height: 90px;
  object-fit: cover;
  display: block;
  border-radius: 0 0 24px 24px;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}
.bottom-curve {
  display: none;
}
#backToTop {
  position: fixed;
  right: 24px;
  bottom: 32px;
  z-index: 1001;
  background: #e8e8e8;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
  cursor: pointer;
  font-size: 1.5rem;
  color: #0033A0;
  border: none;
  transition: background 0.2s, box-shadow 0.2s;
  padding: 0;
}
#backToTop svg {
  width: 24px;
  height: 24px;
  display: block;
}
#backToTop:hover, #backToTop:focus {
  background: #d8d8d8;
  box-shadow: 0 4px 16px rgba(0,0,0,0.20);
  outline: none;
}
@media (max-width: 700px) {
  .card {
    max-width: 100vw;
    width: 100vw;
    border-radius: 0;
    margin: 0;
    box-shadow: none;
    background: transparent;
    padding: 0 0 0 0;
  }
  .card-banner, .banner-img {
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
    border-radius: 0 !important;
  }
  .card-content {
    background: transparent;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    box-shadow: none;
    padding: 0;
  }
  .avatar-wrapper {
    top: 10vw;
    width: 22vw;
    height: 22vw;
    min-width: 72px;
    min-height: 72px;
    max-width: 110px;
    max-height: 110px;
  }
  .profile-info {
    margin-top: 13vw;
  }
  .about-block, .partners-block, .featured-image, .links {
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    padding: 0 2vw;
  }
  .about-title, .partners-title, .featured-title {
    font-size: 1.01rem;
  }
  .footer {
    font-size: 0.88rem;
  }
  .footer {
    margin-top: 32px;
    margin-bottom: 16px;
  }
  .bottom-banner .banner-img {
    height: 60px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  .bottom-banner {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  .bottom-social {
    margin-top: 16px;
  }
  .bottom-img {
    height: 100%;
    border-radius: 0 0 0 0;
  }
  .bottom-wallpaper {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    min-height: 60px;
  }
  #backToTop {
    right: 12px;
    bottom: 16px;
    width: 38px;
    height: 38px;
  }
  #backToTop svg {
    width: 20px;
    height: 20px;
  }
}
@media (max-width: 480px) {
  body {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }
  .card {
    max-width: 100vw;
    width: 100vw;
    border-radius: 0;
    margin: 0 !important;
    padding-top: 0 !important;
  }
  .card-banner {
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
    min-height: 70px;
    height: 18vw;
    margin-top: 0 !important;
    padding-top: 0 !important;
  }
  .avatar-wrapper {
    min-width: 56px;
    min-height: 56px;
    max-width: 72px;
    max-height: 72px;
    top: 7vw;
  }
  .profile-info {
    margin-top: 18vw;
    padding: 0 2vw;
  }
  .about-block, .partners-block, .featured-image, .links {
    padding: 0 2vw;
  }
  .about-title, .partners-title, .featured-title {
    font-size: 1.01rem;
  }
  .footer {
    font-size: 0.88rem;
  }
} 