:root {
  --primary-color: #6B3A3A;
  --primary-dark: #4a2727;
  --primary-light: #8B5A5A;
  --secondary-color: #C9B8AB;
  --accent-color: #D4C5B9;
  --background-light: #EBE4DF;
  --background-gradient: linear-gradient(135deg, #6B3A3A 0%, #8B5A5A 100%);
  --white-color: #FFFFFF;
  --dark-color: #2c3e50;
  --text-light: #6c757d;
  --border-radius: 16px;
  --box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Lato", sans-serif;
  color: var(--dark-color);
  background: var(--white-color);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-dark);
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: var(--white-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

#preloader:before {
  content: "";
  width: 60px;
  height: 60px;
  border: 6px solid var(--primary-color);
  border-top-color: transparent;
  border-radius: 50%;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  transition: var(--transition);
  z-index: 997;
  padding: 18px 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

#header.header-scrolled {
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

#header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#header .logo h1 {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.5px;
}

#header .logo h1 a {
  color: var(--dark-color);
  display: flex;
  align-items: center;
  gap: 10px;
}

#header .logo h1 a:hover {
  color: var(--primary-color);
}

#header .logo i {
  font-size: 32px;
  color: var(--primary-color);
  animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
  gap: 5px;
}

.navbar li {
  position: relative;
}

.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 18px;
  font-size: 15px;
  font-weight: 500;
  color: var(--dark-color);
  white-space: nowrap;
  transition: var(--transition);
  border-radius: 8px;
}

.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover>a {
  color: var(--primary-color);
  background: rgba(201, 75, 75, 0.05);
}

.navbar .btn-cta {
  background: var(--primary-color);
  color: var(--white-color) !important;
  padding: 10px 24px;
  border-radius: 25px;
  margin-left: 15px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(201, 75, 75, 0.3);
}

.navbar .btn-cta:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 75, 75, 0.4);
}

.mobile-nav-toggle {
  color: var(--dark-color);
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: var(--white-color);
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }
  .navbar ul {
    display: none;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  min-height: 100vh;
  background: linear-gradient(135deg, #D4C5B9 0%, #C9B8AB 5%, #8B5A5A 30%, #6B3A3A 75%, #5A2C2C 100%);
  position: relative;
  padding: 120px 0 80px 0;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,101.3C1248,85,1344,75,1392,69.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
  background-size: cover;
  opacity: 0.1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  color: var(--white-color);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

#hero h1 {
  font-size: 56px;
  font-weight: 800;
  color: var(--white-color);
  margin-bottom: 20px;
  line-height: 1.2;
}

#hero h1 .highlight {
  background: linear-gradient(45deg, #ff6b6b, #feca57);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

#hero h2 {
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 40px;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  gap: 20px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--white-color);
  color: var(--primary-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  color: var(--primary-dark);
}

.btn-secondary {
  background: transparent;
  color: var(--white-color);
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white-color);
  color: var(--white-color);
}

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.stat-item i {
  font-size: 40px;
  color: rgba(255, 255, 255, 0.9);
}

.stat-item h3 {
  font-size: 32px;
  font-weight: 700;
  color: var(--white-color);
  margin: 0;
}

.stat-item p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.hero-illustration {
  position: relative;
  z-index: 2;
}

.hero-illustration img {
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.floating-card {
  position: absolute;
  background: var(--white-color);
  padding: 15px 20px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: float 3s ease-in-out infinite;
}

.floating-card i {
  font-size: 24px;
  color: var(--primary-color);
}

.floating-card span {
  font-weight: 600;
  color: var(--dark-color);
  font-size: 14px;
}

.card-1 {
  top: 10%;
  left: -10%;
  animation-delay: 0s;
}

.card-2 {
  top: 50%;
  right: -10%;
  animation-delay: 1s;
}

.card-3 {
  bottom: 10%;
  left: 10%;
  animation-delay: 2s;
}

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

.hero-waves {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.hero-waves svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 150px;
}

.hero-waves .parallax > use {
  animation: move-forever 25s cubic-bezier(.55,.5,.45,.5) infinite;
}

.hero-waves .parallax > use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 7s;
}

.hero-waves .parallax > use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 10s;
}

.hero-waves .parallax > use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 13s;
}

.hero-waves .parallax > use:nth-child(4) {
  animation-delay: -5s;
  animation-duration: 20s;
}

@keyframes move-forever {
  0% { transform: translate3d(-90px,0,0); }
  100% { transform: translate3d(85px,0,0); }
}

@media (max-width: 768px) {
  #hero {
    padding: 100px 0 60px 0;
  }
  
  #hero h1 {
    font-size: 36px;
  }
  
  #hero h2 {
    font-size: 18px;
  }
  
  .hero-cta {
    flex-direction: column;
    gap: 15px;
  }
  
  .btn-primary, .btn-secondary {
    width: 100%;
    justify-content: center;
  }
  
  .floating-card {
    display: none;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 80px 0;
  overflow: hidden;
}

.section-title {
  text-align: center;
  padding-bottom: 40px;
}

.section-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  color: var(--white-color);
  padding: 8px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-title h2 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--dark-color);
}

.section-title p {
  font-size: 18px;
  color: var(--text-light);
  max-width: 800px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }
  
  .section-title h2 {
    font-size: 32px;
  }
}

/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
.about {
  background: var(--background-light);
}

.about-img-wrapper {
  position: relative;
}

.about-img-wrapper img {
  width: 100%;
  height: auto;
}

.experience-badge {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: var(--primary-color);
  color: var(--white-color);
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(201, 75, 75, 0.3);
  text-align: center;
}

.badge-content .number {
  font-size: 48px;
  font-weight: 800;
  display: block;
  line-height: 1;
}

.badge-content .text {
  font-size: 14px;
  font-weight: 600;
  opacity: 0.9;
}

.about-content {
  padding-left: 30px;
}

.about-content h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--dark-color);
}

.about-content .lead {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 20px;
}

.about-features {
  margin: 30px 0;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 25px;
  padding: 20px;
  background: var(--white-color);
  border-radius: 12px;
  transition: var(--transition);
}

.feature-item:hover {
  transform: translateX(10px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.feature-item .icon {
  flex-shrink: 0;
}

.feature-item .icon i {
  font-size: 28px;
  color: var(--primary-color);
}

.feature-item h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--dark-color);
}

.feature-item p {
  font-size: 15px;
  color: var(--text-light);
  margin: 0;
}

.btn-about {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary-color);
  color: var(--white-color);
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 600;
  margin-top: 20px;
  transition: var(--transition);
}

.btn-about:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(201, 75, 75, 0.3);
  color: var(--white-color);
}

@media (max-width: 991px) {
  .about-content {
    padding-left: 0;
    margin-top: 40px;
  }
  
  .experience-badge {
    bottom: 20px;
    right: 20px;
    padding: 20px;
  }
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services {
  background: var(--white-color);
}

.service-card {
  background: var(--white-color);
  border-radius: var(--border-radius);
  padding: 40px 30px;
  height: 100%;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
  transform: scaleX(0);
  transition: var(--transition);
}

.service-card:hover::before {
  transform: scaleX(1);
}

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

.service-card.featured {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: var(--white-color);
  box-shadow: 0 15px 40px rgba(201, 75, 75, 0.3);
}

.service-card.featured h3,
.service-card.featured p,
.service-card.featured .service-features li {
  color: var(--white-color);
}

.featured-badge {
  position: absolute;
  top: 20px;
  right: -30px;
  background: var(--accent-color);
  color: var(--white-color);
  padding: 8px 40px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  transform: rotate(45deg);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.icon-wrapper {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: var(--transition);
}

.service-card.featured .icon-wrapper {
  background: rgba(255, 255, 255, 0.2);
}

.service-card:hover .icon-wrapper {
  transform: rotateY(360deg);
}

.icon-wrapper i {
  font-size: 36px;
  color: var(--white-color);
}

.service-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--dark-color);
}

.service-subtitle {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.service-card p {
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.7;
  font-size: 14px;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--text-light);
}

.service-features i {
  color: var(--primary-color);
  font-size: 18px;
}

.service-card.featured .service-features i {
  color: var(--white-color);
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-color);
  font-weight: 600;
  transition: var(--transition);
}

.service-card.featured .service-link {
  color: var(--white-color);
}

.service-link:hover {
  gap: 12px;
  color: var(--primary-dark);
}

.service-card.featured .service-link:hover {
  color: var(--white-color);
}

/* App Showcase */
.app-showcase {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 24px;
  padding: 60px;
  margin-top: 40px;
  overflow: hidden;
  position: relative;
}

.app-showcase::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.showcase-content {
  color: var(--white-color);
}

.badge-app {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}

.showcase-content h3 {
  font-size: 36px;
  color: var(--white-color);
  margin-bottom: 20px;
}

.showcase-content p {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 30px;
}

.app-features-list {
  margin-bottom: 30px;
}

.app-feature {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.app-feature i {
  font-size: 24px;
  color: var(--white-color);
}

.app-feature span {
  font-size: 15px;
}

.app-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-app {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  color: var(--white-color);
  padding: 12px 24px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: var(--transition);
}

.btn-app:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
  color: var(--white-color);
}

.btn-app i {
  font-size: 32px;
}

.btn-app div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.btn-app span {
  font-size: 10px;
  opacity: 0.8;
}

.btn-app strong {
  font-size: 16px;
}

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

.app-mockup img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

@media (max-width: 991px) {
  .app-showcase {
    padding: 40px 30px;
  }
  
  .showcase-content h3 {
    font-size: 28px;
  }
  
  .app-mockup {
    margin-top: 40px;
  }
}

/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features {
  background: var(--background-light);
}

.feature-box {
  text-align: center;
  padding: 30px 20px;
  transition: var(--transition);
}

.icon-circle {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  transition: var(--transition);
}

.feature-box:hover .icon-circle {
  transform: rotateY(360deg) scale(1.1);
  box-shadow: 0 10px 30px rgba(201, 75, 75, 0.3);
}

.icon-circle i {
  font-size: 42px;
  color: var(--white-color);
}

.feature-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--dark-color);
}

.feature-box p {
  font-size: 15px;
  color: var(--text-light);
  margin: 0;
}

/*--------------------------------------------------------------
# Doctors
--------------------------------------------------------------*/
.doctors {
  background: var(--white-color);
  padding: 80px 0 10px 0;
}

.member-card {
  background: var(--white-color);
  border-radius: var(--border-radius);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.member-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.member-image {
  position: relative;
  overflow: hidden;
  height: 300px;
}

.member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.member-card:hover .member-image img {
  transform: scale(1.1);
}

.member-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(139, 90, 90, 0.9), rgba(109, 59, 59, 0.9));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.member-card:hover .member-overlay {
  opacity: 1;
}

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

.social-links a {
  width: 45px;
  height: 45px;
  background: var(--white-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--background-light);
  color: var(--primary-color);
  transition: var(--transition);
  transform: translateY(20px);
  opacity: 0;
}

.member-card:hover .social-links a {
  transform: translateY(0);
  opacity: 1;
  background: var(--primary-color);
  color: var(--white-color);
}

.social-links a:nth-child(1) { transition-delay: 0.1s; }
.social-links a:nth-child(2) { transition-delay: 0.2s; }
.social-links a:nth-child(3) { transition-delay: 0.3s; }

.social-links a:hover {
  background: var(--primary-color);
  color: var(--white-color);
  transform: translateY(-5px);
}

.member-info {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.member-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15px;
}

.member-info h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 5px;
}

.specialty {
  display: inline-block;
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 600;
  padding: 4px 12px;
  background: rgba(201, 75, 75, 0.1);
  border-radius: 20px;
}

.verified-badge i {
  font-size: 28px;
  color: var(--primary-color);
}

.member-info p {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.member-credentials {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 20px;
  border-top: 1px solid #e9ecef;
}

.member-credentials span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-light);
}

.member-credentials i {
  color: var(--primary-color);
  font-size: 16px;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact {
  background: var(--white-color);
}

.info-card {
  background: var(--white-color);
  border-radius: var(--border-radius);
  padding: 40px 30px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  height: 100%;
  transition: var(--transition);
}

.info-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.info-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: var(--transition);
}

.info-card:hover .info-icon {
  transform: rotateY(360deg);
}

.info-icon i {
  font-size: 32px;
  color: var(--white-color);
}

.info-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 20px;
}

.info-content {
  color: var(--text-light);
}

.address-item {
  margin-bottom: 20px;
}

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

.address-item strong {
  display: block;
  color: var(--dark-color);
  font-weight: 600;
  margin-bottom: 8px;
}

.address-item p {
  margin: 0;
  line-height: 1.6;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  color: var(--text-light);
  transition: var(--transition);
  border-bottom: 1px solid #e9ecef;
}

.contact-link:last-child {
  border-bottom: none;
}

.contact-link:hover {
  color: var(--primary-color);
  padding-left: 10px;
}

.contact-link i {
  font-size: 20px;
  color: var(--primary-color);
}

.contact-link.whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: var(--white-color);
  padding: 12px 20px;
  border-radius: 12px;
  border: none;
  margin-top: 10px;
}

.contact-link.whatsapp:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
  padding-left: 20px;
}

.contact-link.whatsapp i {
  color: var(--white-color);
}

.social-links-contact {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #e9ecef;
}

.social-links-contact a {
  width: 42px;
  height: 42px;
  background: var(--background-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  transition: var(--transition);
}

.social-links-contact a:hover {
  background: var(--primary-color);
  color: var(--white-color);
  transform: translateY(-5px);
}

/* CTA Box */
.cta-box {
  background: rgb(109, 59, 59);
  border-radius: 20px;
  padding: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.cta-content h3 {
  font-size: 32px;
  color: var(--white-color);
  margin-bottom: 10px;
}

.cta-content p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.cta-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-cta-primary, .btn-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
}

.btn-cta-primary {
  background: var(--white-color);
  color: var(--primary-color);
}

.btn-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  color: var(--primary-dark);
}

.btn-cta-secondary {
  background: transparent;
  color: var(--white-color);
  border: 2px solid var(--white-color);
}

.btn-cta-secondary:hover {
  background: var(--white-color);
  color: var(--primary-color);
}

@media (max-width: 991px) {
  .cta-box {
    padding: 40px 30px;
    text-align: center;
    justify-content: center;
  }
  
  .cta-buttons {
    width: 100%;
    justify-content: center;
  }
  
  .btn-cta-primary, .btn-cta-secondary {
    flex: 1;
    justify-content: center;
    min-width: 150px;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #1a1a2e;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

.footer-top {
  padding: 60px 0 30px 0;
  background: rgb(83, 45, 45);
}

.footer-info .footer-logo h3 {
  font-size: 28px;
  margin-bottom: 15px;
  color: var(--white-color);
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-info .footer-logo i {
  color: var(--accent-color);
  font-size: 32px;
}

.footer-info p {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.footer-links {
  margin-bottom: 30px;
}

.footer-links h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--white-color);
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 20px;
}

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

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  padding: 8px 0;
}

.footer-links ul a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

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

.footer-links ul i {
  font-size: 12px;
  color: var(--accent-color);
}

.footer-contact {
  margin-bottom: 30px;
}

.footer-contact h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--white-color);
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 20px;
}

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

.footer-contact p {
  line-height: 1.8;
}

.footer-contact strong {
  color: var(--white-color);
}

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

.social-links a {
  width: 40px;
  height: 40px;
  background: var(--background-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  transition: var(--transition);
}

.social-links a i {
  font-size: 18px !important;
  line-height: 1;
}

.social-links a:hover {
  background: var(--primary-color);
  transform: translateY(-5px);
  color: var(--white-color);
}

.social-links a.instagram { color: #E1306C; }
.social-links a.facebook { color: #1877F2; }
.social-links a.linkedin { color: #0A66C2; }
.social-links a.youtube { color: #FF0000; }
.social-links a.spotify { color: #1DB954; }
.social-links a.twitter { color: #1DA1F2; }
.social-links a.telegram { color: #0088cc; }
.social-links a.tiktok { color: #000000; }

.social-links a.instagram:hover { background: #E1306C; }
.social-links a.facebook:hover { background: #1877F2; }
.social-links a.linkedin:hover { background: #0A66C2; }
.social-links a.youtube:hover { background: #FF0000; }
.social-links a.spotify:hover { background: #1DB954; }
.social-links a.twitter:hover { background: #1DA1F2; }
.social-links a.telegram:hover { background: #0088cc; }
.social-links a.tiktok:hover { background: #000000; }

.footer-bottom {
  padding: 25px 0;
  background: rgb(83, 45, 45);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-bottom .copyright {
  font-size: 14px;
}

.footer-bottom .credits {
  font-size: 13px;
}

.footer-bottom .credits a {
  color: rgba(255, 255, 255, 0.7);
  margin: 0 10px;
  transition: var(--transition);
}

.footer-bottom .credits a:hover {
  color: var(--primary-color);
}

@media (max-width: 768px) {
  .footer-bottom .container {
    flex-direction: column;
    text-align: center;
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 20px;
  bottom: 20px;
  z-index: 996;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  width: 50px;
  height: 50px;
  border-radius: 50%;
  transition: var(--transition);
  box-shadow: 0 5px 20px rgba(201, 75, 75, 0.4);
}

.back-to-top i {
  font-size: 28px;
  color: var(--white-color);
  line-height: 0;
}

.back-to-top:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(201, 75, 75, 0.5);
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Mobile Nav
--------------------------------------------------------------*/
.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.95);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 1000;
  color: var(--white-color);
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: var(--white-color);
  overflow-y: auto;
  transition: 0.3s;
  border-radius: 16px;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
}

.navbar-mobile a {
  padding: 15px 20px;
  font-size: 16px;
  color: var(--dark-color);
  display: block;
}

.navbar-mobile a:hover, 
.navbar-mobile .active, 
.navbar-mobile li:hover>a {
  color: var(--primary-color);
  background: rgba(201, 75, 75, 0.05);
}

.navbar-mobile .btn-cta {
  margin: 15px;
  width: calc(100% - 30px);
  justify-content: center;
}

/*--------------------------------------------------------------
# Responsive Design
--------------------------------------------------------------*/
@media (max-width: 1200px) {
  .container {
    max-width: 100%;
    padding: 0 30px;
  }
}

@media (max-width: 992px) {
  section {
    padding: 60px 0;
  }
  
  .section-title h2 {
    font-size: 32px;
  }
  
  #hero h1 {
    font-size: 42px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
  
  section {
    padding: 50px 0;
  }
  
  .section-title h2 {
    font-size: 28px;
  }
  
  #hero {
    min-height: auto;
    padding: 100px 0 60px 0;
  }
  
  #hero h1 {
    font-size: 32px;
  }
  
  #hero h2 {
    font-size: 16px;
  }
  
  .hero-stats {
    gap: 20px;
  }
  
  .stat-item i {
    font-size: 30px;
  }
  
  .stat-item h3 {
    font-size: 24px;
  }
  
  .about-content h3 {
    font-size: 24px;
  }
  
  .service-card {
    margin-bottom: 30px;
  }
  
  .cta-box {
    padding: 30px 20px;
  }
  
  .cta-content h3 {
    font-size: 24px;
  }
}

@media (max-width: 576px) {
  #hero h1 {
    font-size: 28px;
  }
  
  .btn-primary, .btn-secondary {
    width: 100%;
    justify-content: center;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 15px;
  }
  
  .app-buttons {
    flex-direction: column;
  }
  
  .btn-app {
    width: 100%;
    justify-content: center;
  }
}/*--------------------------------------------------------------
# Clinical Body Cards
--------------------------------------------------------------*/
.clinical-body-card {
  background: var(--white-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
  border-top: 4px solid var(--primary-color);
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
}

.clinical-body-card:hover {
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}

.clinical-body-card .card-header {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
  padding: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.clinical-body-card .card-header .header-name {
  color: var(--white-color);
  font-size: 2.0rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
  text-transform: capitalize;
}

.clinical-body-card .specialist-avatar {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-size: 2.5rem;
  color: var(--white-color);
  border: 3px solid rgba(255, 255, 255, 0.3);
}

.clinical-body-card .card-body {
  padding: 1.8rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.clinical-body-card h3 {
  font-size: 1.3rem;
  color: var(--primary-color);
  margin-bottom: 0.8rem;
  line-height: 1.4;
}

.clinical-body-card .specialty-label {
  margin-bottom: 1.5rem;
}

.clinical-body-card .badge-specialty {
  display: inline-block;
  background: var(--accent-color);
  color: var(--primary-color);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.clinical-body-card .credentials-list {
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.clinical-body-card .credential-item {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(107, 58, 58, 0.1);
}

.clinical-body-card .credential-item:last-child {
  border-bottom: none;
}

.clinical-body-card .credential-item i {
  font-size: 1.3rem;
  color: var(--primary-color);
  min-width: 1.3rem;
  margin-top: 0.2rem;
}

.clinical-body-card .credential-item p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.4;
  color: var(--dark-color);
}

.clinical-body-card .credential-item strong {
  color: var(--primary-color);
  display: block;
  margin-bottom: 0.2rem;
}

.clinical-body-card .crm-info {
  background: var(--background-light);
  padding: 1rem;
  border-radius: 8px;
  margin-top: auto;
}

.clinical-body-card .crm-info p {
  margin: 0.4rem 0;
  font-size: 0.85rem;
  color: var(--dark-color);
}

.clinical-body-card .crm-info strong {
  color: var(--primary-color);
}

/* Central Image */
.clinical-body-image {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.clinical-body-image .image-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: var(--border-radius);
}

.clinical-body-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: var(--transition);
}

.clinical-body-image:hover img {
  transform: scale(1.05);
}

.clinical-body-image .image-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
  padding: 2rem 1.5rem 1.5rem;
  text-align: center;
}

.clinical-body-image .badge-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  color: var(--white-color);
  font-weight: 600;
  font-size: 1rem;
}

.clinical-body-image .badge-content i {
  font-size: 1.5rem;
  color: var(--secondary-color);
}

/* Responsivo */
@media (max-width: 991.98px) {
  .clinical-body-card {
    margin-bottom: 1rem;
  }

  .clinical-body-image {
    margin: 2rem 0;
  }

  .clinical-body-card h3 {
    font-size: 1.1rem;
  }

  .clinical-body-card .card-body {
    padding: 1.5rem;
  }
}

@media (max-width: 767.98px) {
  .clinical-body-card .card-header {
    padding: 1.5rem;
  }

  .clinical-body-card .specialist-avatar {
    width: 70px;
    height: 70px;
    font-size: 2rem;
  }

  .clinical-body-card .credential-item {
    gap: 0.6rem;
  }

  .clinical-body-image .image-wrapper {
    max-width: 100%;
  }
}

/* Social Icon Styles */
.social-icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  transition: var(--transition);
  color: var(--primary-color);
}

.social-icon-link:hover {
  color: var(--primary-dark);
  transform: scale(1.075);
}

.social-icon-link svg {
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
  width: 32px;
  height: 32px;
  transition: var(--transition);
}

.social-links-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}



