html {
  min-height: 100%;
  margin: 0;
  padding: 0;
}

body {
  display: flex;
  flex-direction: column;
  background: linear-gradient(135deg, #f6bfd3 0%, #fff 100%) fixed;
  font-family: 'Segoe UI', Georgia, serif;
  color: #333;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  transition: background 0.5s;
}

main {
  flex: 1 0 auto;
}

header {
  background: linear-gradient(90deg, #ED408B 60%, #f6bfd3 100%);
  color: white;
  text-align: center;
  padding: 40px 10px 30px 10px;
  box-shadow: 0 4px 16px rgba(237,64,139,0.12);
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  position: relative;
  animation: fadeInDown 1s;
}

header h1 {
  margin: 0;
  font-size: 54px;
  letter-spacing: 2px;
  font-weight: 700;
  text-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

header h2 {
  margin: 10px 0 0 0;
  font-size: 22px;
  font-weight: 400;
  opacity: 0.95;
}

nav {
  margin-top: 18px;
  display: flex;
  justify-content: center;
  gap: 30px;
}

nav a {
  padding: 8px 22px;
  border-radius: 20px;
  background: rgba(255,255,255,0.12);
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(237,64,139,0.08);
  transition: background 0.3s, color 0.3s, box-shadow 0.3s;
  border: 2px solid transparent;
}

nav a:hover {
  background: #fff;
  color: #ED408B;
  box-shadow: 0 4px 16px rgba(237,64,139,0.18);
  border-color: #ED408B;
  text-decoration: none;
}

.container {
  max-width: 900px;
  margin: 40px auto;
  padding: 32px 24px;
  background: rgba(255,255,255,0.95);
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(237,64,139,0.08);
  animation: fadeInUp 1.2s;
}

.profile {
  text-align: center;
  margin-bottom: 30px;
}

.profile img {
  width: 180px;
  border-radius: 50%;
  margin-bottom: 18px;
  box-shadow: 0 4px 16px rgba(237,64,139,0.15);
  border: 4px solid #ED408B;
  transition: transform 0.3s;
}
.profile img:hover {
  transform: scale(1.05) rotate(-2deg);
}

.profile-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.social-icon {
  color: #ED408B;
  font-size: 24px;
  transition: transform 0.3s ease;
}

.social-icon:hover {
  transform: translateY(-3px);
}

.bio {
  font-size: 1.1em;
  line-height: 1.6;
  margin: 20px 0;
}

.skills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 20px 0;
}

.skill-tag {
  background: rgba(237,64,139,0.1);
  color: #ED408B;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 0.9em;
  font-weight: 500;
  transition: all 0.3s ease;
}

.skill-tag:hover {
  background: #ED408B;
  color: white;
  transform: translateY(-2px);
}

.projects {
  margin-top: 40px;
}

.project-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.project-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tag {
  background: rgba(237,64,139,0.08);
  color: #ED408B;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 0.85em;
}

.project-links {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.btn-primary, .btn-secondary {
  padding: 8px 16px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary {
  background: #ED408B;
  color: white;
}

.btn-secondary {
  background: rgba(237,64,139,0.1);
  color: #ED408B;
}

.btn-primary:hover, .btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(237,64,139,0.2);
}

.projects h2 {
  color: #ED408B;
  text-align: center;
  margin-bottom: 30px;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 1px;
}

.project-item {
  margin-bottom: 24px;
  padding: 20px 18px;
  background: linear-gradient(90deg, #f9e4ec 80%, #fff 100%);
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(237,64,139,0.07);
  transition: box-shadow 0.3s, transform 0.3s;
  border-left: 6px solid #ED408B;
  position: relative;
}
.project-item:hover {
  box-shadow: 0 8px 32px rgba(237,64,139,0.18);
  transform: translateY(-2px) scale(1.01);
}
.project-item h3 {
  margin-top: 0;
  color: #ED408B;
  font-size: 22px;
  font-weight: 600;
}
.project-item a {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 18px;
  background: #ED408B;
  color: #fff;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(237,64,139,0.10);
  transition: background 0.3s, color 0.3s;
  border: none;
}
.project-item a:hover {
  background: #fff;
  color: #ED408B;
  border: 2px solid #ED408B;
}

footer {
  background: linear-gradient(90deg, #ED408B 60%, #f6bfd3 100%);
  color: white;
  text-align: center;
  padding: 28px 10px 18px 10px;
  margin-top: auto;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  box-shadow: 0 -4px 16px rgba(237,64,139,0.10);
  font-size: 18px;
  flex-shrink: 0;
}

footer a {
  color: #fff;
  text-decoration: underline;
  font-weight: 500;
  transition: color 0.3s;
}

footer a:hover {
  color: #ED408B;
  background: #fff;
  border-radius: 8px;
  padding: 2px 6px;
  text-decoration: none;
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Sumários page styles */

/* Loading spinner */
.loading-spinner {
  padding: 20px;
  text-align: center;
  color: #e325bd;
  font-weight: 500;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { opacity: 0.6; }
  50% { opacity: 1; }
  100% { opacity: 0.6; }
}

/* Active navigation state */
nav a.active {
  background: #fff;
  color: #ED408B;
  border-color: #ED408B;
  transform: translateY(-2px);
}

.sumarios-title {
  text-align: center;
  color: #e325bd;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

.sumarios-content {
  text-align: center;
  margin-bottom: 10px;
}

.ppt-frame-wrap {
  max-width: 100%;
  margin: 0 auto 18px auto;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(237,64,139,0.06);
}

.ppt-frame {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}

@media (min-width: 900px) {
  .ppt-frame { height: 480px; }
  .container { max-width: 900px; }
}

.download-btn {
  display: inline-block;
  margin-top: 12px;
  padding: 12px 26px;
  background: #e325bd;
  color: #fff;
  border-radius: 24px;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 6px 20px rgba(227,50,189,0.12);
}

.download-btn:hover {
  background: #fff;
  color: #e325bd;
  border: 2px solid #e325bd;
}

.small-note { color: #888; font-size: 13px; margin-top: 10px; }

/* small adjustments to match index layout */
/* .sumarios-container - legacy selector removed (styles consolidated into .container) */
