/* ESTILOS DA PÁGINA SOBRE A MACK */

.sobre-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  font-family: 'Montserrat', sans-serif;
  color: var(--color-text);
}

/* HERO SECTION */
.sobre-hero {
  text-align: center;
  padding: 4rem 2rem;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(43, 184, 252, 0.1), rgba(254, 85, 189, 0.1));
  border: 1px solid rgba(23, 54, 87, 0.08);
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
}

.sobre-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(234, 73, 139, 0.03) 0%, transparent 60%);
  pointer-events: none;
}

.sobre-hero h1 {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #2bb8fc, #fe55bd);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  letter-spacing: -0.02em;
}

.sobre-hero p {
  font-size: 1.15rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
  opacity: 0.85;
  font-weight: 500;
}

/* LAYOUT GRID */
.sobre-layout-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 2.5rem;
  align-items: start;
}

@media (max-width: 900px) {
  .sobre-layout-grid {
    grid-template-columns: 1fr;
  }
}

/* CARD DE PERFIL (ESQUERDA) */
.sobre-profile-card {
  background: #ffffff;
  border: 1px solid rgba(23, 54, 87, 0.08);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  box-shadow: 0 10px 30px rgba(23, 54, 87, 0.02);
  text-align: center;
  position: sticky;
  top: 100px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.sobre-profile-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(23, 54, 87, 0.06);
}

.profile-avatar-wrapper {
  width: 160px;
  height: 160px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  padding: 8px;
  background: linear-gradient(135deg, #2bb8fc, #fe55bd);
  box-shadow: 0 8px 24px rgba(43, 184, 252, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.sobre-profile-card:hover .profile-avatar-wrapper {
  transform: scale(1.03) rotate(3deg);
}

.profile-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  background: #ffffff;
  padding: 5px;
}

.profile-name {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--color-text);
  margin-bottom: 0.25rem;
}

.profile-tagline {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: 2rem;
}

.profile-badges {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
  border-top: 1px solid rgba(23, 54, 87, 0.06);
  border-bottom: 1px solid rgba(23, 54, 87, 0.06);
  padding: 1.5rem 0;
  margin-bottom: 1.5rem;
}

.profile-badge {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.badge-icon {
  font-size: 1.6rem;
  color: var(--color-accent);
  background: rgba(234, 73, 139, 0.08);
  padding: 0.5rem;
  border-radius: 10px;
  flex-shrink: 0;
}

.badge-info {
  display: flex;
  flex-direction: column;
}

.badge-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.6;
  font-weight: 700;
}

.badge-value {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-text);
}

.profile-socials {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(23, 54, 87, 0.08);
  background: #ffffff;
  transition: all 0.3s ease;
}

.social-link img {
  width: 20px;
  height: 20px;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.social-link:hover {
  border-color: var(--color-accent);
  background-color: rgba(234, 73, 139, 0.04);
  transform: translateY(-2px);
}

.social-link:hover img {
  opacity: 1;
}

/* CONTEÚDO (DIREITA) */
.sobre-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.sobre-section-card {
  background: #ffffff;
  border: 1px solid rgba(23, 54, 87, 0.08);
  border-radius: 20px;
  padding: 2.25rem;
  box-shadow: 0 10px 30px rgba(23, 54, 87, 0.02);
  transition: border-color 0.3s ease;
}

.sobre-section-card:hover {
  border-color: rgba(43, 184, 252, 0.25);
}

.card-header-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid rgba(23, 54, 87, 0.05);
  padding-bottom: 0.75rem;
}

.card-header-row .card-icon {
  font-size: 1.75rem;
  color: var(--color-accent);
  background: rgba(234, 73, 139, 0.08);
  padding: 0.4rem;
  border-radius: 10px;
}

.card-header-row h2 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--color-text);
  letter-spacing: -0.01em;
}

.card-body-text {
  font-size: 1.05rem;
  line-height: 1.7;
  opacity: 0.9;
}

.card-body-text p:not(:last-child) {
  margin-bottom: 1rem;
}

.card-body-text strong {
  color: var(--color-text);
  font-weight: 700;
}

/* MARCADOR DE CONQUISTA COM GRADIENTE */
.milestone-highlight {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-top: 1.5rem;
  padding: 1.25rem 1.5rem;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(254, 85, 189, 0.08), rgba(43, 184, 252, 0.08));
  border: 1px solid rgba(254, 85, 189, 0.15);
  position: relative;
  overflow: hidden;
}

.milestone-highlight::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, #fe55bd, #2bb8fc);
}

.medal-icon {
  font-size: 2.25rem;
  color: #ffb703;
  animation: shine 2.5s infinite ease-in-out;
}

.milestone-highlight p {
  margin: 0 !important;
  font-size: 0.95rem;
  line-height: 1.5;
  font-weight: 500;
}

@keyframes shine {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 0px rgba(255, 183, 3, 0)); }
  50% { transform: scale(1.1); filter: drop-shadow(0 0 8px rgba(255, 183, 3, 0.5)); }
}

/* CITAÇÃO */
blockquote {
  margin: 1.5rem 0;
  padding: 1rem 1.5rem;
  border-left: 4px solid var(--color-accent);
  background: rgba(234, 73, 139, 0.03);
  font-style: italic;
  font-weight: 500;
  border-radius: 0 12px 12px 0;
  color: rgba(23, 54, 87, 0.85);
}

/* APRESENTAÇÃO FINAL (RODAPÉ DO SOBRE) */
.sobre-footer-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: linear-gradient(135deg, rgba(43, 184, 252, 0.05), rgba(254, 85, 189, 0.05));
  border: 1px dashed rgba(23, 54, 87, 0.15);
  border-radius: 16px;
  padding: 1.5rem;
  margin-top: 1rem;
  text-align: center;
  animation: float 4s ease-in-out infinite;
}

.waving-hand {
  font-size: 2rem;
  animation: wave 2.5s infinite;
  transform-origin: 70% 70%;
  display: inline-block;
}

.sobre-footer-note p {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0;
  color: var(--color-text);
}

@keyframes wave {
  0% { transform: rotate( 0.0deg) }
  10% { transform: rotate(14.0deg) }
  20% { transform: rotate(-8.0deg) }
  30% { transform: rotate(14.0deg) }
  40% { transform: rotate(-4.0deg) }
  50% { transform: rotate(10.0deg) }
  60% { transform: rotate( 0.0deg) }
  100% { transform: rotate( 0.0deg) }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.card-body-text a {
  color: var(--color-accent);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 2px solid rgba(234, 73, 139, 0.2);
  transition: all 0.2s ease;
}

.card-body-text a:hover {
  color: #2bb8fc;
  border-bottom-color: #2bb8fc;
  background-color: rgba(43, 184, 252, 0.05);
}

/* INTERATIVIDADE DA PLACA */
.milestone-text-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}

.btn-ver-placa {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.25rem;
  padding: 0.45rem 0.9rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-accent);
  background: #ffffff;
  border: 1px solid rgba(234, 73, 139, 0.25);
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(234, 73, 139, 0.05);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-ver-placa .material-symbols-rounded {
  font-size: 1.1rem;
}

.btn-ver-placa:hover {
  background-color: var(--color-accent);
  color: #ffffff;
  border-color: var(--color-accent);
  transform: translateY(-1.5px);
  box-shadow: 0 4px 12px rgba(234, 73, 139, 0.2);
}

/* MODAL DA PLACA (OVERLAY) */
.placa-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(23, 54, 87, 0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.placa-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* CONTEÚDO DO MODAL */
.placa-modal-content {
  background: #ffffff;
  border: 1px solid rgba(23, 54, 87, 0.08);
  border-radius: 24px;
  padding: 2rem 1.5rem 1.5rem;
  max-width: 90%;
  width: 680px;
  position: relative;
  box-shadow: 0 25px 60px rgba(23, 54, 87, 0.18);
  transform: scale(0.92);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: center;
}

.placa-modal-overlay.active .placa-modal-content {
  transform: scale(1);
}

/* BOTAO DE FECHAR */
.placa-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(23, 54, 87, 0.05);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--color-text);
  transition: all 0.25s ease;
}

.placa-modal-close:hover {
  background: var(--color-accent);
  color: #ffffff;
  transform: rotate(90deg);
}

/* IMAGEM DA PLACA */
.placa-modal-img {
  width: 100%;
  max-height: 580px;
  object-fit: contain;
  border-radius: 16px;
  margin-top: 0.75rem;
  background: #f8f9fa;
  border: 1px solid rgba(23, 54, 87, 0.05);
}

.placa-modal-caption {
  margin-top: 1rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-text);
}

/* GRID DE EXEMPLOS DE DESENHOS */
.desenhos-exemplos-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.75rem;
  margin-top: 1.5rem;
}

@media (max-width: 480px) {
  .desenhos-exemplos-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
  }
}

.exemplo-item {
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(23, 54, 87, 0.08);
  box-shadow: 0 4px 12px rgba(23, 54, 87, 0.02);
  background-color: #f8f9fa;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.exemplo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.exemplo-item:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 8px 20px rgba(43, 184, 252, 0.15);
  border-color: rgba(43, 184, 252, 0.35);
}

.exemplo-item:hover img {
  transform: scale(1.06);
}
