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

 body {
     font-family: 'Poppins', sans-serif;
     line-height: 1.6;
     color: #333;
     overflow-x: hidden;
     width: 100%;
 }

 html {
     overflow-x: hidden;
     width: 100%;
 }

 /* Top Bar - Estilos herdados de header.css */
 .top-bar {
     padding: 10px 0;
     font-size: 14px;
 }

 .top-bar .container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 20px;
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 .top-bar a {
     color: var(--white);
     text-decoration: none;
     margin-right: 20px;
 }

 .top-bar i {
     margin-right: 5px;
 }

 /* Header */
 .header {
     background: white;
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
     position: sticky;
     top: 0;
     z-index: 1000;
 }

 .header .container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 20px;
     display: flex;
     justify-content: space-between;
     align-items: center;
     height: 80px;
 }

 .logo {
     font-size: 28px;
     font-weight: 700;
     color: var(--primary-color);
     text-decoration: none;
     display: flex;
     align-items: center;
     gap: 10px;
 }

 .logo i {
     font-size: 32px;
 }

 .nav-menu {
     display: flex;
     list-style: none;
     gap: 30px;
 }

 .nav-menu a {
     text-decoration: none;
     color: var(--text-dark);
     font-weight: 500;
     transition: color 0.3s;
 }

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

 .btn-appointment {
     background: var(--primary-color);
     color: var(--white);
     padding: 12px 30px;
     border-radius: 50px;
     text-decoration: none;
     font-weight: 600;
     transition: all 0.3s;
 }

 .btn-appointment:hover {
     background: var(--primary-dark);
     transform: translateY(-2px);
 }

 /* Slider */
 .slider {
     position: relative;
     height: 600px;
     overflow: hidden;
 }

 .slide {
     position: absolute;
     width: 100%;
     height: 100%;
     opacity: 0;
     transition: opacity 1s ease-in-out;
 }

 .slide.active {
     opacity: 1;
 }

 .slide-bg {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }

 .slide-overlay {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: var(--overlay-bg);
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .slide-content {
     text-align: center;
     color: var(--white);
     max-width: 800px;
     padding: 0 20px;
 }

 .slide-content h1 {
     font-size: 48px;
     font-weight: 700;
     margin-bottom: 20px;
     line-height: 1.2;
 }

 .slide-content p {
     font-size: 18px;
     margin-bottom: 30px;
     opacity: 0.95;
 }

 .btn-primary {
     background: var(--primary-color);
     color: var(--white);
     padding: 15px 40px;
     border-radius: 50px;
     text-decoration: none;
     font-weight: 600;
     display: inline-block;
     transition: all 0.3s;
 }

 .btn-primary:hover {
     background: var(--primary-dark);
     transform: translateY(-2px);
 }

 .slider-nav {
     position: absolute;
     top: 50%;
     transform: translateY(-50%);
     background: rgba(255, 255, 255, 0.3);
     color: white;
     border: none;
     width: 50px;
     height: 50px;
     border-radius: 50%;
     cursor: pointer;
     font-size: 20px;
     transition: all 0.3s;
     z-index: 10;
 }

 .slider-nav:hover {
     background: rgba(255, 255, 255, 0.5);
 }

 .slider-nav.prev {
     left: 30px;
 }

 .slider-nav.next {
     right: 30px;
 }

 .slider-dots {
     position: absolute;
     bottom: 30px;
     left: 50%;
     transform: translateX(-50%);
     display: flex;
     gap: 10px;
     z-index: 10;
 }

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

 .dot.active {
     background: white;
     width: 30px;
     border-radius: 6px;
 }

 /* Stats Section */
 .stats {
     background: var(--bg-light);
     padding: 60px 0;
 }

 .stats .container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 20px;
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 30px;
 }

 .stat-card {
     background: white;
     padding: 40px;
     border-radius: 10px;
     text-align: center;
     box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
 }

 .stat-number {
     font-size: 48px;
     font-weight: 700;
     color: var(--primary-color);
     margin-bottom: 10px;
 }

 .stat-label {
     color: var(--text-light);
     font-size: 16px;
 }

 /* Services Section */
 .services {
     padding: 80px 0;
 }

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

 .section-title {
     text-align: center;
     margin-bottom: 60px;
 }

 .section-title span {
     color: var(--primary-color);
     font-weight: 600;
     text-transform: uppercase;
     font-size: 14px;
     letter-spacing: 1px;
 }

 .section-title h2 {
     font-size: 36px;
     margin: 10px 0;
 }

 .section-title p {
     color: var(--text-light);
     font-size: 16px;
 }

 .services-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 30px;
 }

 .service-card {
     background: white;
     padding: 40px;
     border-radius: 10px;
     box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
     transition: all 0.3s;
 }

 .service-card:hover {
     transform: translateY(-10px);
     box-shadow: var(--shadow-blue-lg);
 }

 .service-icon {
     width: 70px;
     height: 70px;
     background: linear-gradient(135deg, var(--primary-color), var(--accent-cyan));
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 32px;
     color: var(--white);
     margin-bottom: 20px;
 }

 .service-card h3 {
     font-size: 22px;
     margin-bottom: 15px;
 }

 .service-card p {
     color: var(--text-light);
     margin-bottom: 20px;
 }

 .service-link {
     color: var(--primary-color);
     text-decoration: none;
     font-weight: 600;
 }

 .service-link:hover {
     text-decoration: underline;
 }

 /* ========== ABOUT SECTION ========== */
 .about-section {
     padding: 80px 0;
     background: white;
 }

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

 .about-image img {
     width: 100%;
     border-radius: 20px;
     box-shadow: 0 10px 40px rgba(0, 102, 255, 0.2);
 }

 .about-content .section-tag {
     color: #0066FF;
     font-weight: 600;
     text-transform: uppercase;
     font-size: 14px;
     letter-spacing: 1px;
     display: block;
 }

 .about-content h2 {
     font-size: 36px;
     margin: 15px 0 20px;
 }

 .about-content p {
     color: #666;
     margin-bottom: 20px;
     line-height: 1.8;
 }

 .about-features {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 20px;
     margin-top: 30px;
 }

 .feature-item {
     display: flex;
     gap: 15px;
 }

 .feature-icon {
     width: 50px;
     height: 50px;
     background: linear-gradient(135deg, #0066FF, #00D4FF);
     border-radius: 10px;
     display: flex;
     align-items: center;
     justify-content: center;
     flex-shrink: 0;
 }

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

 .feature-text h3 {
     font-size: 16px;
     margin-bottom: 5px;
 }

 .feature-text p {
     color: #666;
     font-size: 14px;
     margin-bottom: 0;
 }

 /* ========== RESPONSIVE ========== */
 @media (max-width: 1024px) {
     .about-section {
         padding: 50px 0;
     }

     .about-grid {
         grid-template-columns: 1fr;
         gap: 40px;
         text-align: center;
     }

     .about-image {
         order: -1;
         max-width: 600px;
         margin: 0 auto;
     }

     .about-image img {
         max-height: 400px;
     }

     .about-content h2 {
         font-size: 28px;
     }

     .about-features {
         text-align: left;
     }
 }

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