/* ============================================================
   PORTFÓLIO – Sara Morais dos Santos
   style.css — CSS3 puro, sem frameworks
   Estética: Soft pastel — sage, blush, rose, cream, mocha
   ============================================================ */

/* ── Importação de fontes via HTML (Playfair Display + DM Sans) ── */

/* ── Variáveis CSS (tema claro) ── */
:root {
  /* Paleta principal */
  --bg:          #FFF8F0;     /* creme quente suave */
  --bg-alt:      #FFEBC6;     /* creme dourado — cor da paleta */
  --surface:     #FFFFFF;
  --text:        #3D2B25;     /* marrom escuro caloroso */
  --text-muted:  #9A7B74;
  --accent:      #DB6680;     /* rosa médio — cor principal */
  --accent-dark: #c04d68;     /* rosa mais escuro para hover */
  --olive:       #B2BD8B;     /* sage verde */
  --border:      rgba(110, 82, 72, 0.14);

  /* Cores de projeto */
  --accent-1: #FF9DA3;   /* blush */
  --accent-2: #B2BD8B;   /* sage */
  --accent-3: #DB6680;   /* rose */
  --accent-4: #FFEBC6;   /* creme */
  --accent-5: #6E5248;   /* mocha */
  --accent-6: #FF9DA3;   /* blush repetido */

  /* Tipografia */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;

  /* Espaçamento */
  --max-w: 1200px;
  --section-pad: 100px;
  --nav-h: 72px;

  /* Sombras */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.12);
  --shadow-lg: 0 24px 48px rgba(0,0,0,0.16);

  /* Transições */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── Tema escuro ── */
body.dark-theme {
  --bg:         #2A1E1C;
  --bg-alt:     #35261F;
  --surface:    #3D2D28;
  --text:       #eed1d5;
  --text-muted: #C9A8A0;
  --accent:     #FF9DA3;
  --accent-dark:#DB6680;
  --olive:      #C8D4A0;
  --border:     rgba(255, 200, 210, 0.12);
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.35);
  --shadow-md:  0 8px 24px rgba(0,0,0,0.45);
  --shadow-lg:  0 24px 48px rgba(0,0,0,0.5);
}

/* ── Reset & Base ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  transition: background-color 0.3s var(--ease), color 0.3s var(--ease);
  overflow-x: hidden;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover { color: var(--accent-dark); }

img { max-width: 100%; display: block; }

/* ── Utilitários ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--section-pad) 0;
  position: relative;
}

/* ── Animação de entrada (reveal on scroll via JS) ── */
[data-animate] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── NAVBAR ── */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background-color: var(--bg);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
  transition: background-color 0.3s, box-shadow 0.3s;
}
#site-header.scrolled {
  box-shadow: var(--shadow-sm);
}

.navbar {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 700;
}
.logo-initials {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}
.logo-name {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.02em;
}

/* Links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 8px;
}
.nav-link {
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s, background 0.2s;
  letter-spacing: 0.03em;
}
.nav-link:hover,
.nav-link.active {
  color: var(--accent);
  background: rgba(196, 103, 58, 0.1);
}

/* Controles do nav */
.nav-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Botão tema */
.theme-btn {
  width: 38px; height: 38px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
  color: var(--text);
}
.theme-btn:hover {
  background: var(--bg-alt);
}

/* Hamburguer */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── SECTION HEADER (compartilhado) ── */
.section-header {
  margin-bottom: 64px;
  position: relative;
}
.section-number {
  display: block;
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 900;
  color: var(--border);
  line-height: 1;
  margin-bottom: -24px;
  user-select: none;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.1;
}
.section-subtitle {
  margin-top: 12px;
  font-size: 1rem;
  color: var(--text-muted);
}

/* ── HERO / SOBRE MIM ── */
.hero-section {
  padding-top: calc(var(--nav-h) + var(--section-pad));
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: var(--bg);
  overflow: hidden;
}

/* Faixa lateral decorativa */
.side-label {
  position: absolute;
  left: -40px; top: 50%;
  transform: rotate(-90deg) translateX(-50%);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
  font-weight: 500;
  pointer-events: none;
  user-select: none;
}

/* Grid hero */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  width: 100%;
}

/* Texto hero */
.hero-eyebrow {
  font-size: 0.875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 16px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1;
  color: var(--text);
  margin-bottom: 24px;
}
.hero-title em {
  font-style: italic;
  color: var(--accent);
}
.hero-divider {
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin-bottom: 20px;
  border-radius: 2px;
}
.hero-role {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 20px;
}
.hero-bio {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 440px;
  line-height: 1.75;
  margin-bottom: 28px;
}

.img-retrato {
    width: 260px;
    height: 260px;
    border-radius: 50%;
    object-fit: cover;
}

/* Tags de hobbies */
.hobby-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
}
.tag {
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--text-muted);
  background: var(--surface);
  transition: border-color 0.2s, color 0.2s;
}
.tag:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* Botão primário */
.btn-primary {
  display: inline-block;
  padding: 14px 32px;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  border: 2px solid var(--accent);
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  font-family: var(--font-body);
}
.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Visual hero (foto + decorações) */
.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.photo-frame {
  position: relative;
  width: 280px;
  height: 280px;
}

/* Decorações em volta da foto */
.deco-circle {
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  border: 2px dashed var(--accent);
  top: -10px; left: -10px;
  animation: spin 20s linear infinite;
  pointer-events: none;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
.deco-dot-grid {
  position: absolute;
  bottom: -30px; right: -30px;
  width: 100px; height: 100px;
  background-image: radial-gradient(var(--accent) 1.5px, transparent 0);
  background-size: 14px 14px;
  opacity: 0.35;
  pointer-events: none;
}

/* Placeholder de foto */
.photo-placeholder {
  width: 280px; height: 280px;
  border-radius: 50%;
  background: linear-gradient(135deg, #DB6680, #FF9DA3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -2px;
  box-shadow: var(--shadow-lg);
}

/* Soft skills */
.soft-skills-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.soft-skill {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  transition: border-color 0.2s, color 0.2s;
}
.soft-skill:hover {
  border-color: var(--accent);
  color: var(--text);
}
.ss-num {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.8;
  min-width: 20px;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px; right: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.scroll-indicator span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px; height: 48px;
  background: var(--border);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--accent);
  animation: scrollDown 1.5s ease-in-out infinite;
}
@keyframes scrollDown {
  to { top: 200%; }
}

/* ── FORMAÇÃO ── */
.formacao-section {
  background: var(--olive);
}

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

.form-col {
  background: var(--surface);
  border-radius: 16px;
  padding: 32px;
  border: 1px solid var(--border);
  transition: box-shadow 0.3s, transform 0.3s;
}
.form-col:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.form-col-title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.col-icon { font-size: 1.1rem; }

/* Timeline */
.timeline { position: relative; }
.timeline::before {
  content: '';
  position: absolute;
  left: 6px; top: 8px; bottom: 8px;
  width: 2px;
  background: var(--border);
  border-radius: 2px;
}

.timeline-item {
  display: flex;
  gap: 20px;
  margin-bottom: 28px;
  position: relative;
}
.timeline-item:last-child { margin-bottom: 0; }

.timeline-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid var(--bg);
  flex-shrink: 0;
  margin-top: 4px;
  box-shadow: 0 0 0 3px rgba(196,103,58,0.25);
}

.timeline-date {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 4px;
}
.timeline-role {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.timeline-place {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Idiomas / barras */
.idioma-list { display: flex; flex-direction: column; gap: 20px; }

.idioma-item {}
.idioma-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}
.idioma-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
}
.idioma-level {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.progress-bar {
  height: 6px;
  background: var(--border);
  border-radius: 999px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  width: 0;           /* definido pelo JS com transição */
  background: linear-gradient(90deg, #DB6680, #B2BD8B);
  border-radius: 999px;
  transition: width 1.2s var(--ease);
}

/* Cursos grid */
.cursos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.curso-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg);
  transition: border-color 0.2s, transform 0.2s;
}
.curso-card:hover {
  border-color: var(--accent);
  transform: scale(1.03);
}
.curso-icon { font-size: 1.1rem; }
.curso-name {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
}

/* ── PORTFÓLIO ── */
.portfolio-section {
  background: var(--bg);
}

/* Filtros */
.portfolio-filters {
  display: flex;
  gap: 8px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 8px 20px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s;
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

/* Grade de projetos */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.project-card {
  background: var(--surface);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: box-shadow 0.3s, transform 0.3s, opacity 0.3s;
}
.project-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}
/* Esconde os filtrados */
.project-card.hidden {
  display: none;
}

.project-thumb {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.85;
}
.project-thumb-icon { font-size: 3rem; }

.project-info { padding: 20px 24px 24px; }

.project-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.project-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.project-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}
.project-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.03em;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s;
}
.project-link:hover {
  gap: 8px;
}

/* Projeto em destaque */
.project-card.featured {
  border-color: var(--accent);
  grid-column: span 1;
  position: relative;
}
.project-card.featured::before {
  content: '⭐ Destaque';
  position: absolute;
  top: 12px; right: 12px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--accent);
  color: #fff;
  padding: 4px 10px;
  border-radius: 999px;
}

/* ── CONTATO ── */
.contato-section {
  background: var(--bg-alt);
}

.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: start;
}

.contato-info-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 24px;
}

.info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}
.info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.info-icon { font-size: 1.1rem; flex-shrink: 0; }
.info-item a {
  color: var(--text-muted);
  transition: color 0.2s;
}
.info-item a:hover { color: var(--accent); }

.motivational-quote {
  border-left: 3px solid var(--accent);
  padding: 12px 0 12px 20px;
  margin-top: 8px;
}
.motivational-quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Formulário */
.contato-form-wrap {
  background: var(--surface);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.form-group {
  margin-bottom: 24px;
}
.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}
.form-label span { color: var(--accent); }

.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  appearance: none;
}
.form-input::placeholder { color: var(--text-muted); }
.form-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(196,103,58,0.15);
}
.form-input.is-error { border-color: #D32F2F; }

.form-textarea { resize: vertical; min-height: 120px; }

/* Mensagem de erro */
.form-error {
  display: block;
  font-size: 0.78rem;
  color: #D32F2F;
  margin-top: 6px;
  min-height: 1em;
}

.btn-submit {
  width: 100%;
  justify-content: center;
  font-size: 1rem;
  padding: 16px;
}

/* Modal de sucesso */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 24px;
  backdrop-filter: blur(4px);
  animation: fadeIn 0.2s ease;
}
.modal[hidden] { display: none; }

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.modal-box {
  background: var(--surface);
  border-radius: 20px;
  padding: 48px 40px;
  text-align: center;
  max-width: 400px;
  width: 100%;
  box-shadow: var(--shadow-lg);
  animation: slideUp 0.3s var(--ease);
}
@keyframes slideUp {
  from { transform: translateY(24px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

.modal-icon { font-size: 3rem; margin-bottom: 16px; }
.modal-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--text);
  margin-bottom: 12px;
}
.modal-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.6;
}

/* ── RODAPÉ ── */
.site-footer {
  background: var(--text);
  color: rgba(255,255,255,0.8);
  padding: 40px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}
.footer-copy { font-size: 0.8rem; }
.footer-nav {
  display: flex;
  gap: 20px;
}
.footer-nav a {
  color: rgba(255,255,255,0.6);
  font-size: 0.8rem;
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--accent); }

/* ── RESPONSIVIDADE ── */
@media (max-width: 1024px) {
  .formacao-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --section-pad: 64px; }

  /* Nav mobile */
  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 20px 24px 28px;
    gap: 4px;
  }
  .nav-links.open { display: flex; }
  .nav-link { border-radius: 8px; padding: 10px 16px; }
  .hamburger { display: flex; }

  /* Hero */
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 48px;
  }
  .hero-bio { margin-left: auto; margin-right: auto; }
  .hobby-tags { justify-content: center; }
  .side-label { display: none; }
  .scroll-indicator { display: none; }

  /* Formação */
  .formacao-grid { grid-template-columns: 1fr; }

  /* Portfólio */
  .portfolio-grid { grid-template-columns: 1fr; }

  /* Contato */
  .contato-grid { grid-template-columns: 1fr; gap: 32px; }
  .contato-form-wrap { padding: 28px; }

  /* Rodapé */
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-nav { justify-content: center; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 3rem; }
  .cursos-grid { grid-template-columns: 1fr; }
  .photo-frame,
  .photo-placeholder,
  .deco-circle {
    width: 220px;
    height: 220px;
  }
  .deco-circle { width: 240px; height: 240px; }
}
