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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Elementos Decorativos de Fundo */
.decorative-elements {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.floating-element {
  position: absolute;
  border-radius: 50%;
  opacity: 0.2;
}

.element-1 {
  top: 80px;
  left: 40px;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ec4899, #f472b6);
  animation: pulse 3s ease-in-out infinite;
}

.element-2 {
  top: 160px;
  right: 80px;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
  animation: bounce 2s ease-in-out infinite;
}

.element-3 {
  bottom: 160px;
  left: 80px;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #8b5cf6, #a78bfa);
  animation: pulse 2.5s ease-in-out infinite;
}

.element-4 {
  bottom: 80px;
  right: 40px;
  width: 96px;
  height: 96px;
  background: linear-gradient(135deg, #06b6d4, #67e8f9);
  animation: bounce 3.5s ease-in-out infinite;
}

/* Animações */
@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.2;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.3;
  }
}

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

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

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

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Header */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(135deg, rgba(252, 231, 243, 0.98), rgba(239, 246, 255, 0.98));
  backdrop-filter: blur(15px);
  transition: all 0.4s ease;
  padding: 16px 0;
  transform: translateY(-100%);
  opacity: 0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

#header.visible {
  transform: translateY(0);
  opacity: 1;
}

#header.scrolled {
  background: rgba(255, 255, 255, 0.99);
  backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  padding: 12px 0;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.logo-container {
  position: relative;
}

.logo-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #ec4899, #3b82f6);
  border-radius: 50%;
  opacity: 0.2;
  animation: pulse 2s ease-in-out infinite;
}

.logo {
  position: relative;
  z-index: 10;
  width: 12vw;
  max-width: 80px;
  min-width: 40px;
  height: auto;
  aspect-ratio: 408/605;
  transition: all 0.3s ease;
  display: block;
}

@media (max-width: 600px) {
  .logo {
    width: 18vw;
    max-width: 60px;
    min-width: 32px;
  }
}

#header.scrolled .logo {
  width: 9vw;
  max-width: 48px;
  min-width: 28px;
  height: auto;
}

.logo-text h1 {
  font-size: 20px;
  font-weight: 700;
  background: linear-gradient(135deg, #ec4899, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-text p {
  font-size: 12px;
  font-weight: 800;
  background: linear-gradient(135deg, #ec4899, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  display: flex;
  align-items: center;
  gap: 4px;
  text-shadow: none;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-link {
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: #ec4899;
  transform: scale(1.05);
}

.nav-link.active {
  background: linear-gradient(135deg, #ec4899, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  border-bottom: 2px solid #ec4899;
}

.menu-toggle {
  display: none;
  background: linear-gradient(135deg, #fce7f3, #dbeafe);
  border: none;
  padding: 12px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.menu-toggle:hover {
  background: linear-gradient(135deg, #fbcfe8, #bfdbfe);
  transform: scale(1.05);
}

.menu-toggle i {
  color: #ec4899;
  font-size: 18px;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #e5e7eb;
}

.mobile-nav.active {
  display: flex;
}

.mobile-nav-link {
  text-decoration: none;
  padding: 12px 16px;
  border-radius: 12px;
  color: #374151;
  font-weight: 500;
  transition: all 0.3s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  background: linear-gradient(135deg, #ec4899, #3b82f6);
  color: white;
  transform: scale(1.02);
  box-shadow: 0 4px 12px rgba(236, 72, 153, 0.3);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.video-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.7),
    rgba(236, 72, 153, 0.4),
    rgba(147, 51, 234, 0.4),
    rgba(59, 130, 246, 0.4)
  );
}

.hero-decorations {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
}

.hero-star-1 {
  position: absolute;
  top: 80px;
  left: 80px;
  font-size: 32px;
  color: #fce7f3;
  animation: pulse 2s ease-in-out infinite;
}

.hero-rainbow {
  position: absolute;
  top: 128px;
  right: 128px;
  font-size: 48px;
  color: #dbeafe;
  animation: bounce 3s ease-in-out infinite;
}

.hero-heart {
  position: absolute;
  bottom: 160px;
  left: 128px;
  font-size: 24px;
  color: #fbcfe8;
  animation: pulse 2.5s ease-in-out infinite;
}

.hero-sparkles {
  position: absolute;
  bottom: 128px;
  right: 80px;
  font-size: 40px;
  color: #cffafe;
  animation: bounce 2.5s ease-in-out infinite;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: white;
  max-width: 800px;
}

.hero-content-bg {
  background: rgba(255, 255, 255, 0.75);
  border-radius: 1.5rem;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.1);
  padding: 2.5rem 2rem 2rem 2rem;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
  backdrop-filter: blur(2px);
}

@media (max-width: 600px) {
  .hero-content-bg {
    padding: 1.2rem 0.7rem 1.2rem 0.7rem;
    max-width: 98vw;
    margin-top: 1.2rem;
    margin-bottom: 1.2rem;
  }
}

.hero-title {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.2;
  text-shadow: 3px 3px 12px rgba(0, 0, 0, 0.8);
  color: #ffffff;
}

.gradient-text {
  background: none;
  -webkit-background-clip: initial;
  -webkit-text-fill-color: initial;
  background-clip: initial;
  color: #1e293b;
  font-weight: 900;
  text-shadow: 0 2px 8px #fff, 0 1px 2px rgba(0, 0, 0, 0.08);
  animation: none;
}

.hero-subtitle {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  margin-bottom: 32px;
  color: #f3f4f6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9);
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, #ec4899, #8b5cf6);
  color: white;
  box-shadow: 0 8px 24px rgba(236, 72, 153, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #db2777, #7c3aed);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(236, 72, 153, 0.4);
}

.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-outline:hover {
  background: white;
  color: #8b5cf6;
  transform: translateY(-2px);
}

/* Stats Section */
.stats {
  padding: 64px 0;
  background: linear-gradient(135deg, #fce7f3, #f3e8ff, #dbeafe);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
}

.stat-item {
  text-align: center;
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: scale(1.05);
}

.stat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin-bottom: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.stat-icon.pink {
  background: linear-gradient(135deg, #ec4899, #f472b6);
}

.stat-icon.blue {
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
}

.stat-icon.purple {
  background: linear-gradient(135deg, #8b5cf6, #a78bfa);
}

.stat-icon.cyan {
  background: linear-gradient(135deg, #06b6d4, #67e8f9);
}

.stat-icon i {
  color: white;
  font-size: 24px;
}

.stat-item:hover .stat-icon {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.stat-value {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 8px;
}

.stat-item:nth-child(1) .stat-value {
  color: #ec4899;
}
.stat-item:nth-child(2) .stat-value {
  color: #3b82f6;
}
.stat-item:nth-child(3) .stat-value {
  color: #8b5cf6;
}
.stat-item:nth-child(4) .stat-value {
  color: #06b6d4;
}

.stat-label {
  color: #6b7280;
  font-size: 14px;
}

/* About Section */
.about {
  padding: 80px 0;
  background: white;
  position: relative;
  overflow: hidden;
}

.section-decoration {
  position: absolute;
  width: 256px;
  height: 256px;
  border-radius: 50%;
  opacity: 0.1;
}

.decoration-left {
  top: 0;
  left: 0;
  background: linear-gradient(135deg, #fce7f3, transparent);
  transform: translate(-50%, -50%);
}

.decoration-right {
  bottom: 0;
  right: 0;
  background: linear-gradient(135deg, #dbeafe, transparent);
  transform: translate(50%, 50%);
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: linear-gradient(135deg, #fce7f3, #dbeafe);
  color: #8b5cf6;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  background: linear-gradient(135deg, #ec4899, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 24px;
  text-align: center;
}

.section-subtitle {
  font-size: 20px;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-text {
  appearance: 24px;
}

.about-text p {
  font-size: 18px;
  color: #374151;
  line-height: 1.7;
  margin-bottom: 24px;
}

.quote-box {
  background: linear-gradient(135deg, #fce7f3, #dbeafe);
  padding: 24px;
  border-radius: 16px;
  border-left: 4px solid #ec4899;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  position: relative;
}

.quote-icon {
  color: #ec4899;
  font-size: 20px;
  margin-right: 8px;
}

.quote-box p {
  color: #8b5cf6;
  font-weight: 500;
  margin: 0;
  display: flex;
  align-items: flex-start;
}

.mission-card {
  background: linear-gradient(135deg, #ec4899, #8b5cf6, #3b82f6);
  color: white;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(236, 72, 153, 0.3);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.mission-card:hover {
  transform: scale(1.02);
}

.mission-decoration {
  position: absolute;
  top: 16px;
  right: 16px;
}

.mission-decoration i {
  font-size: 32px;
  color: rgba(255, 255, 255, 0.2);
}

.mission-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mission-card p {
  margin-bottom: 24px;
  line-height: 1.6;
}

.mission-footer {
  display: flex;
  align-items: center;
  gap: 8px;
}

.mission-footer i {
  color: #fbbf24;
  animation: pulse 2s ease-in-out infinite;
}

/* Space Section */
.space {
  padding: 80px 0;
  background: linear-gradient(135deg, #f9fafb, #f3e8ff);
}

.carousel-container {
  max-width: 800px;
  margin: 0 auto;
}

.carousel {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
}

.carousel-inner {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-item {
  min-width: 100%;
  position: relative;
}

.carousel-item img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.carousel-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.2), transparent);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.carousel-btn:hover {
  background: white;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.carousel-prev {
  left: 16px;
}

.carousel-next {
  right: 16px;
}

.carousel-btn i {
  color: #374151;
  font-size: 18px;
}

.carousel-indicators {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active,
.indicator:hover {
  background: white;
  transform: scale(1.25);
}

.carousel-caption {
  text-align: center;
  margin-top: 32px;
  font-size: 18px;
  color: #6b7280;
  background: linear-gradient(135deg, #fce7f3, #dbeafe);
  padding: 12px 24px;
  border-radius: 24px;
  display: inline-block;
  width: 100%;
  box-sizing: border-box;
}

/* Specialties Section */
.specialties {
  padding: 80px 0;
  background: white;
  position: relative;
  overflow: hidden;
}

.decoration-left-2 {
  position: absolute;
  top: 80px;
  left: 40px;
  width: 128px;
  height: 128px;
  background: linear-gradient(135deg, #fce7f3, transparent);
  border-radius: 50%;
  opacity: 0.3;
}

.decoration-right-2 {
  position: absolute;
  bottom: 80px;
  right: 40px;
  width: 160px;
  height: 160px;
  background: linear-gradient(135deg, #dbeafe, transparent);
  border-radius: 50%;
  opacity: 0.3;
}

.specialties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.specialty-card {
  padding: 32px;
  border-radius: 16px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

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

.specialty-decoration {
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
  border-bottom-left-radius: 50%;
}

.specialty-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 16px;
  margin-bottom: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.specialty-card:hover .specialty-icon {
  transform: scale(1.1);
}

.specialty-icon i {
  color: white;
  font-size: 24px;
}

.specialty-badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
  background: rgba(255, 255, 255, 0.8);
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}

.specialty-card p {
  color: #374151;
  line-height: 1.6;
}

/* Specialty Card Variants */
.psychology {
  background: linear-gradient(135deg, #fce7f3, #f3e8ff);
}

.psychology .specialty-icon {
  background: linear-gradient(135deg, #ec4899, #8b5cf6);
}

.psychology .specialty-badge {
  color: #8b5cf6;
}

.pedagogy {
  background: linear-gradient(135deg, #dbeafe, #cffafe);
}

.pedagogy .specialty-icon {
  background: linear-gradient(135deg, #3b82f6, #06b6d4);
}

.pedagogy .specialty-badge {
  color: #3b82f6;
}

.speech {
  background: linear-gradient(135deg, #fce7f3, #fecaca);
}

.speech .specialty-icon {
  background: linear-gradient(135deg, #ec4899, #ef4444);
}

.speech .specialty-badge {
  color: #ef4444;
}

.music {
  background: linear-gradient(135deg, #e0e7ff, #f3e8ff);
}

.music .specialty-icon {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
}

.music .specialty-badge {
  color: #6366f1;
}

.occupational {
  background: linear-gradient(135deg, #cffafe, #dbeafe);
}

.occupational .specialty-icon {
  background: linear-gradient(135deg, #06b6d4, #3b82f6);
}

.occupational .specialty-badge {
  color: #06b6d4;
}

.aba {
  background: linear-gradient(135deg, #f3e8ff, #fce7f3);
}

.aba .specialty-icon {
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
}

.aba .specialty-badge {
  color: #8b5cf6;
}

.specialties-mobile {
  display: none;
  position: relative;
  overflow: hidden;
}

.specialties-carousel {
  display: flex;
  transition: transform 0.3s ease;
}

.specialty-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.specialty-nav:hover {
  transform: translateY(-50%) scale(1.1);
}

.specialty-prev {
  left: 0;
}

.specialty-next {
  right: 0;
}

.specialty-nav i {
  color: #374151;
  font-size: 16px;
}

/* Contact Section */
.contact {
  padding: 80px 0;
  background: linear-gradient(135deg, #fce7f3, #f3e8ff, #dbeafe);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-card {
  background: white;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.3s ease;
}

.contact-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-icon.phone {
  background: linear-gradient(135deg, #ec4899, #8b5cf6);
}

.contact-icon.email {
  background: linear-gradient(135deg, #3b82f6, #06b6d4);
}

.contact-icon.location {
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
}

.contact-icon i {
  color: white;
  font-size: 20px;
}

.contact-details h3 {
  font-weight: 600;
  color: #111827;
  margin-bottom: 4px;
}

.contact-details p {
  color: #6b7280;
  margin: 0;
}

.social-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.social-card {
  background: white;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.social-card h3 {
  background: linear-gradient(135deg, #ec4899, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.social-card h3 i {
  color: #ec4899;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border-radius: 16px;
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: all 0.3s ease;
}

.social-link:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.social-link.instagram {
  background: linear-gradient(135deg, #ec4899, #8b5cf6);
}

.social-link.facebook {
  background: linear-gradient(135deg, #3b82f6, #06b6d4);
}

.social-link.whatsapp {
  background: linear-gradient(135deg, #10b981, #059669);
}

.cta-card {
  background: linear-gradient(135deg, #ec4899, #8b5cf6, #3b82f6);
  color: white;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(236, 72, 153, 0.3);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-decoration-1 {
  position: absolute;
  top: 0;
  right: 0;
  width: 96px;
  height: 96px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: translate(50%, -50%);
}

.cta-decoration-2 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: translate(-50%, 50%);
}

.cta-content {
  position: relative;
  z-index: 10;
}

.cta-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.cta-content p {
  margin-bottom: 24px;
  line-height: 1.6;
}

.btn-cta {
  background: white;
  color: #8b5cf6;
  width: 100%;
  justify-content: center;
}

.btn-cta:hover {
  background: #f9fafb;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #111827, #8b5cf6, #3b82f6);
  color: white;
  padding: 32px 0;
  text-align: center;
}

.footer p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0;
}

.footer i:first-child {
  color: #ec4899;
}

.footer i:last-child {
  color: #60a5fa;
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1000;
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.4);
  transition: all 0.3s ease;
  animation: pulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
  background: linear-gradient(135deg, #059669, #047857);
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(16, 185, 129, 0.5);
}

.whatsapp-float i {
  font-size: 24px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contact-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .logo-text {
    display: none;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .specialties-grid {
    display: none;
  }

  .specialties-mobile {
    display: block;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
  }

  .carousel-btn i {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero-content {
    padding: 0 16px;
  }

  .btn {
    padding: 12px 24px;
    font-size: 16px;
  }

  .section-title {
    font-size: 2rem;
  }

  .carousel-item img {
    height: 300px;
  }
}

.gradient-logo-text {
  background: linear-gradient(135deg, #ec4899, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-weight: 800;
}
