/* ========================================
   CURRICULUM PAGE STYLES
   ======================================== */

/* CV Grid layout */
.cv-profile-section {
  padding-top: 140px;
}

.cv-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 56px;
  align-items: start;
}

/* Aside */
.cv-aside {
  position: sticky;
  top: 100px;
}

.cv-photo-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 24px;
  box-shadow: var(--shadow-brand);
  aspect-ratio: 3/4;
}

.cv-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.cv-contact-card {
  background: var(--light);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.cv-contact-card h4 {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 16px;
}

.cv-contact-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cv-contact-card li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.cv-contact-card li svg {
  width: 16px;
  height: 16px;
  stroke: var(--brand);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}

.cv-contact-card a {
  color: var(--gray-dk);
  text-decoration: none;
  transition: color var(--transition);
}

.cv-contact-card a:hover {
  color: var(--brand);
}

/* Hero grid: texto + stats */
.cv-hero-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}

.cv-hero-stats {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 1px solid rgba(255,255,255,0.14);
  padding-left: 48px;
}

.cv-hero-stat {
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.14);
  text-align: right;
}

.cv-hero-stat:last-child {
  border-bottom: none;
}

.cv-hero-stat__num {
  display: block;
  font-family: var(--sans);
  font-size: 44px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}

.cv-hero-stat__num::before {
  content: '+';
}

.cv-hero-stat__label {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.4;
}

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

  .cv-hero-stats {
    flex-direction: row;
    border-left: none;
    border-top: 1px solid rgba(255,255,255,0.14);
    padding-left: 0;
    padding-top: 32px;
    margin-top: 8px;
  }

  .cv-hero-stat {
    flex: 1;
    border-bottom: none;
    border-right: 1px solid rgba(255,255,255,0.14);
    text-align: center;
    padding: 0 8px;
  }

  .cv-hero-stat:last-child {
    border-right: none;
  }

  .cv-hero-stat__num {
    font-size: 30px;
  }

  .cv-hero-stat__label {
    font-size: 11px;
  }
}

/* CV sections */
.cv-section {
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}

.cv-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.cv-section__header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

.cv-section__icon {
  width: 44px;
  height: 44px;
  background: var(--brand);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cv-section__icon svg {
  width: 20px;
  height: 20px;
  stroke: white;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cv-section h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin: 0;
}

/* CV list */
.cv-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.cv-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.cv-list__dot {
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 6px;
}

.cv-list__badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: var(--brand);
  background: var(--brand-lt);
  border-radius: 20px;
  padding: 3px 10px;
  white-space: nowrap;
  flex-shrink: 0;
  margin-top: 3px;
}

.cv-list li > div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.cv-list li strong {
  font-weight: 600;
  color: var(--dark);
  font-size: 15px;
  line-height: 1.4;
}

.cv-list li span {
  font-size: 13px;
  color: var(--mid);
}

/* Clientes grid */
.clientes-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.cliente-logo {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 2/1;
  transition: box-shadow var(--transition);
}

.cliente-logo[data-reveal] {
  transition: opacity 0.35s ease, transform 0.35s ease, box-shadow var(--transition);
}

.cliente-logo:hover {
  box-shadow: 0 4px 16px rgba(115,0,70,0.12);
}

.cliente-logo img {
  max-width: 100%;
  max-height: 52px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all var(--transition);
}

.cliente-logo:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* CTA band */
.cta-band {
  background: var(--brand);
  padding: 80px 0;
  text-align: center;
}

.cta-band h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.cta-band p {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 36px;
}

.btn-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-actions .btn-outline {
  border-color: white;
  color: white;
}

.btn-actions .btn-outline:hover {
  background: white;
  color: var(--brand);
}

/* Responsive */
@media (max-width: 1024px) {
  .clientes-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .cv-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cv-aside {
    position: static;
  }

  .cv-photo-wrap {
    aspect-ratio: 4/3;
  }

  .cv-stat-banner {
    flex-direction: column;
  }

  .cv-stat {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .cv-stat:last-child {
    border-bottom: none;
  }

  .clientes-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .cta-band h2 {
    font-size: 26px;
  }
}

@media (max-width: 480px) {
  .clientes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
