/* 
  Styles for Analu Psychologist Landing Page 
  Visual Identity:
  Primary: #f4a9d2 (Soft Pink)
  Secondary: #8fdbdd (Soft Cyan)
  Fonts: Pacifico (Logo/Accents), Poppins (Body text)
*/

:root {
  /* Brand Colors */
  --primary-color: #f4a9d2;
  --primary-light: #fef0f7;
  --primary-dark: #d58ab3;
  
  --secondary-color: #8fdbdd;
  --secondary-light: #e4f7f8;
  --secondary-dark: #6ebac3;

  /* Neutrals */
  --text-color: #333333;
  --text-light: #666666;
  --bg-color: #ffffff;
  --bg-light: #f9f9f9;
  
  /* Typography */
  --font-body: 'Poppins', sans-serif;
  --font-accent: 'Pacifico', cursive;
  
  /* Spacing & Sizes */
  --header-height: 80px;
  --container-width: 1200px;
  --border-radius: 12px;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

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

h1, h2, h3, h4, h5, h6 {
  color: var(--text-color);
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

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

.container {
  width: 90%;
  max-width: var(--container-width);
  margin: 0 auto;
}

.section-padding {
  padding: 6rem 0;
}

.text-center {
  text-align: center;
}

.mt-4 {
  margin-top: 2rem;
}

.bg-light {
  background-color: var(--bg-light);
}

.bg-primary-light {
  background-color: var(--primary-light);
}

/* Typography Utilities */
.accent-font {
  font-family: var(--font-accent);
  color: var(--primary-color);
  font-weight: normal;
}

.section-title {
  font-size: clamp(2rem, 5vw, 2.5rem);
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--text-light);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.lead-text {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--secondary-dark);
  margin-bottom: 1rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  text-align: center;
}

.btn-primary {
  background-color: var(--secondary-color);
  color: #fff;
  box-shadow: 0 4px 15px rgba(143, 219, 221, 0.4);
}

.btn-primary:hover {
  background-color: var(--secondary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(143, 219, 221, 0.6);
}

.btn-outline {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: #fff;
}

.btn-large {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

/* Header & Nav */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  width: 45px;
  height: auto;
  transition: var(--transition);
}

.logo:hover .logo-img {
  transform: scale(1.1) rotate(-5deg);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-family: var(--font-accent);
  font-size: 2rem;
  color: var(--secondary-dark);
  line-height: 1;
}

.logo-crp {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--text-light);
  letter-spacing: 1px;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-weight: 500;
  color: var(--text-color);
  transition: var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--primary-color);
}

.nav-link:hover::after {
  width: 100%;
}

.cta-nav {
  padding: 0.6rem 1.2rem;
  background-color: var(--primary-color);
  color: #fff;
  border-radius: 50px;
  transition: var(--transition);
}

.cta-nav::after {
  display: none;
}

.cta-nav:hover {
  background-color: var(--primary-dark);
  color: #fff;
  transform: scale(1.05);
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.hamburger {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--text-color);
  position: relative;
  transition: var(--transition);
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 25px;
  height: 3px;
  background-color: var(--text-color);
  transition: var(--transition);
  left: 0;
}

.hamburger::before {
  top: -8px;
}

.hamburger::after {
  bottom: -8px;
}

.mobile-toggle.active .hamburger {
  background-color: transparent;
}

.mobile-toggle.active .hamburger::before {
  top: 0;
  transform: rotate(45deg);
}

.mobile-toggle.active .hamburger::after {
  bottom: 0;
  transform: rotate(-45deg);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(244,169,210,0.15) 0%, rgba(143,219,221,0.15) 100%);
  z-index: -1;
}

.hero-bg::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80vh;
  height: 80vh;
  background-color: var(--primary-color);
  border-radius: 50%;
  filter: blur(150px);
  opacity: 0.2;
  animation: float 10s ease-in-out infinite;
}

.hero-bg::before {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 60vh;
  height: 60vh;
  background-color: var(--secondary-color);
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.2;
  animation: float 8s ease-in-out infinite reverse;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
  text-align: left;
}

.hero-title {
  font-size: clamp(2.5rem, 8vw, 4rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.hero-title .accent-font {
  display: block;
}

.hero-subtitle {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  color: var(--secondary-dark);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto 2rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.hero-butterfly {
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
  filter: drop-shadow(0 20px 30px rgba(244,169,210,0.3));
  animation: float 6s ease-in-out infinite;
}

/* Shape Divider */
.shape-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.shape-divider svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 80px;
}

.shape-divider .shape-fill {
  fill: var(--bg-color);
}

/* About Section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  aspect-ratio: 4/5;
  background: linear-gradient(45deg, var(--primary-light), var(--secondary-light));
}

.image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-style: italic;
  color: var(--text-light);
}

.about-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.about-image-wrapper:hover .about-photo {
  transform: scale(1.05);
}

.about-highlights {
  margin-top: 2rem;
}

.about-highlights li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-weight: 500;
  padding: 1rem;
  background-color: var(--bg-light);
  border-radius: var(--border-radius);
  border-left: 4px solid var(--primary-color);
}

.about-highlights li:nth-child(2) {
  border-color: var(--secondary-color);
}

.about-highlights li:nth-child(3) {
  border-color: var(--primary-dark);
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background-color: #fff;
  padding: 2.5rem 2rem;
  border-radius: var(--border-radius);
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: var(--transition);
  border-top: 5px solid var(--secondary-color);
}

.service-card:nth-child(even) {
  border-color: var(--primary-color);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* Formation Timeline */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 20px;
  width: 2px;
  height: 100%;
  background-color: var(--primary-light);
}

.timeline-item {
  position: relative;
  padding-left: 60px;
  margin-bottom: 3rem;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: 11px;
  top: 5px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--secondary-color);
  border: 4px solid #fff;
  box-shadow: 0 0 0 2px var(--secondary-light);
}

.timeline-item:nth-child(even) .timeline-dot {
  background-color: var(--primary-color);
  box-shadow: 0 0 0 2px var(--primary-light);
}

.timeline-content {
  background-color: #fff;
  padding: 1.5rem;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
  border: 1px solid rgba(0,0,0,0.05);
}

.timeline-content h3 {
  font-size: 1.2rem;
  margin-bottom: 0.2rem;
}

.timeline-institute {
  color: var(--secondary-dark);
  font-weight: 500;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.badge {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  background-color: var(--primary-light);
  color: var(--primary-dark);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

.badge.date {
  background-color: var(--secondary-light);
  color: var(--secondary-dark);
}

.timeline-list {
  list-style: disc;
  padding-left: 1.2rem;
  color: var(--text-light);
  font-size: 0.95rem;
}

.timeline-list li {
  margin-bottom: 0.5rem;
}

/* Formação embutida no Sobre */
.formacao-resumo {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 2px solid var(--primary-light);
}

.formacao-resumo h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--text-color);
}

.formacao-list {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.formacao-list li {
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.formacao-list li:last-child {
  border-bottom: none;
}

.formacao-list .badge {
  font-size: 0.75rem;
}

.btn-sm {
  padding: 0.5rem 1.2rem;
  font-size: 0.9rem;
}

/* Contact */
.contact-text {
  color: var(--text-light);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.contact-info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin: 3rem 0;
}

.contact-card {
  background-color: #fff;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: var(--transition);
}

.contact-card:hover {
  transform: translateY(-5px);
}

.card-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.contact-card h4 {
  margin-bottom: 0.5rem;
}

.contact-card a,
.contact-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  transition: var(--transition);
  word-break: break-word;
  overflow-wrap: break-word;
}

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

.contact-actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Footer */
.footer {
  background-color: #1a1a1a;
  color: #fff;
  padding: 4rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  margin-bottom: 1rem;
}

.footer-logo .logo-name {
  color: #fff;
}

.footer-brand p {
  color: #ccc;
  font-size: 0.9rem;
  line-height: 1.8;
}

.footer-links h4, .footer-social h4 {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-links h4::after, .footer-social h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--primary-color);
}

.footer-links ul li {
  margin-bottom: 0.8rem;
}

.footer-links ul li a {
  color: #ccc;
  transition: var(--transition);
}

.footer-links ul li a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255,255,255,0.1);
  border-radius: 50%;
  color: #fff;
  transition: var(--transition);
}

.social-icons a:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: #888;
  font-size: 0.85rem;
}

/* Animations */
@keyframes float {
  0% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(30px, -50px) rotate(10deg); }
  66% { transform: translate(-20px, 20px) rotate(-5deg); }
  100% { transform: translate(0, 0) rotate(0deg); }
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(143, 219, 221, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(143, 219, 221, 0); }
  100% { box-shadow: 0 0 0 0 rgba(143, 219, 221, 0); }
}

.pulse {
  animation: pulse 2s infinite;
}

/* Intersection Observer Animations */
.fade-in {
  opacity: 0;
  transition: opacity 0.8s ease-out;
}

.fade-in.appear {
  opacity: 1;
}

.slide-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.slide-up.appear {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }

/* Projetos Sociais */
.projetos-sociais {
  position: relative;
  overflow: hidden;
}

.projetos-sociais::before {
  content: '🦋';
  position: absolute;
  top: 2rem;
  right: 3rem;
  font-size: 4rem;
  opacity: 0.08;
  transform: rotate(-15deg);
  pointer-events: none;
}

.projetos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.projeto-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--border-radius);
  padding: 2.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.6);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.projeto-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.projeto-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
}

.projeto-card-featured {
  border: 2px solid rgba(244, 169, 210, 0.2);
}

.projeto-header {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
}

.projeto-icon-wrapper {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-light), rgba(244, 169, 210, 0.3));
  border-radius: 16px;
  flex-shrink: 0;
}

.projeto-icon-secondary {
  background: linear-gradient(135deg, var(--secondary-light), rgba(143, 219, 221, 0.3));
}

.projeto-icon {
  font-size: 2rem;
}

.projeto-title-group h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 0.2rem;
}

.projeto-tagline {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--primary-dark);
  font-style: italic;
}

.projeto-body {
  margin-bottom: 2rem;
}

.projeto-body p {
  color: var(--text-light);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.projeto-intro {
  font-size: 1.05rem;
}

.projeto-services {
  background: linear-gradient(135deg, var(--primary-light), var(--secondary-light));
  padding: 1.5rem;
  border-radius: var(--border-radius);
  margin: 1.5rem 0;
}

.projeto-services h4 {
  font-size: 1rem;
  margin-bottom: 0.8rem;
  color: var(--text-color);
}

.projeto-services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.projeto-services-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-color);
}

.check-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background-color: var(--secondary-color);
  color: #fff;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

.projeto-details {
  margin-top: 1.5rem;
}

.projeto-accordion {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--border-radius);
  margin-bottom: 0.8rem;
  overflow: hidden;
  transition: var(--transition);
}

.projeto-accordion:hover {
  border-color: var(--primary-color);
}

.projeto-accordion summary {
  padding: 1rem 1.2rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-color);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
  list-style: none;
  position: relative;
}

.projeto-accordion summary::-webkit-details-marker {
  display: none;
}

.projeto-accordion summary::before {
  content: '▸';
  font-size: 0.85rem;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.projeto-accordion[open] summary::before {
  transform: rotate(90deg);
}

.projeto-accordion summary:hover {
  background-color: var(--primary-light);
}

.accordion-content {
  padding: 0 1.2rem 1.2rem;
  animation: accordionSlide 0.3s ease-out;
}

@keyframes accordionSlide {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.accordion-content p {
  font-size: 0.92rem;
  line-height: 1.7;
}

.projeto-info-list {
  list-style: none;
  padding: 0;
}

.projeto-info-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.7rem;
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.6;
}

.projeto-info-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1.3;
}

.projeto-cta {
  text-align: center;
  padding-top: 0.5rem;
}

.projeto-aviso {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 1rem 1.2rem;
  background-color: #fff8e1;
  border: 1px solid #ffe082;
  border-left: 4px solid #ffa726;
  border-radius: var(--border-radius);
  margin-top: 1.5rem;
}

.aviso-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  line-height: 1.4;
}

.projeto-aviso p {
  font-size: 0.88rem;
  color: #6d4c00;
  line-height: 1.5;
  margin: 0;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-butterfly {
    max-width: 300px;
    margin-top: 2rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }
  
  .about-image-wrapper {
    max-width: 400px;
    margin: 0 auto;
  }

  .projeto-card {
    padding: 1.8rem;
  }

  .projeto-services-list {
    flex-direction: column;
    gap: 0.5rem;
  }

  .projeto-header {
    flex-direction: column;
    text-align: center;
  }

  .projeto-title-group {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .mobile-toggle {
    display: block;
  }
  
  .main-nav {
    position: fixed;
    top: var(--header-height);
    left: -100%;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    transition: var(--transition);
    overflow-y: auto;
  }
  
  .main-nav.active {
    left: 0;
  }
  
  .nav-list {
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
  }
  
  .nav-link {
    font-size: 1.2rem;
  }
  
  .cta-nav {
    margin-top: 1rem;
    display: block;
    text-align: center;
  }

  .timeline::before {
    left: 10px;
  }
  
  .timeline-dot {
    left: 1px;
    width: 18px;
    height: 18px;
  }
  
  .timeline-item {
    padding-left: 40px;
  }
}

.footer-dev-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
}

.footer-dev-link:hover {
  color: var(--primary-dark);
}
