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

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: #333;
}

/* Custom Colors */
:root {
  --primary-blue: #2e86ab;
  --secondary-blue: #a23b72;
  --light-blue: #f18f01;
  --accent-green: #06d6a0;
  --accent-purple: #7209b7;
  --accent-pink: #f72585;
  --light-gray: #f8f9fa;
  --dark-gray: #2c3e50;
}

/* Header */
.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--primary-blue) !important;
}

.navbar-nav .nav-link {
  font-weight: 500;
  margin: 0 10px;
  color: #333 !important;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-blue) !important;
}

.btn-appointment {
  background: linear-gradient(
    135deg,
    var(--primary-blue),
    var(--secondary-blue)
  );
  border: none;
  color: white;
  padding: 10px 25px;
  border-radius: 25px;
  font-weight: 600;
  transition: transform 0.3s ease;
}

.btn-appointment:hover {
  transform: translateY(-2px);
  color: white;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #03A9F4 60%, #ffffff 60%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::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="rgba(255,255,255,0.1)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,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>')
    no-repeat center bottom;
  background-size: cover;
}

  .hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
}  




.btn-hero {
  background: white;
  color: var(--primary-blue);
  padding: 15px 35px;
  border-radius: 30px;
  font-weight: 600;
  border: none;
  transition: all 0.3s ease;
} 




.btn-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Contact Form Card */
.contact-form-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 20px 35px;
  /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6); */
  box-shadow: 0 20px 40px rgb(3 169 244 / 50%);
  position: relative;
  overflow: hidden;
  margin-top: 10%;
}

.contact-form-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  /* background: linear-gradient(90deg, var(--primary-blue), var(--accent-green)); */
}

.form-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  gap: 10px;
}

.logo-dots {
  display: flex;
  flex-wrap: wrap;
  width: 40px;
  gap: 3px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary-blue);
}

.dot:nth-child(even) {
  background: var(--accent-green);
}

.logo-text {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary-blue);
}

.logo-med {
  background: var(--primary-blue);
  color: white;
  padding: 2px 8px;
  border-radius: 5px;
  font-size: 1rem;
  margin-left: 5px;
}

.contact-form-card h3 {
  text-align: center;
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 30px;
  line-height: 1.4;
}

.form-group {
  margin-bottom: 20px;
}

.contact-form .form-control {
  border: 2px solid #e1e8ed;
  border-radius: 10px;
  padding: 15px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.9);
}

.contact-form .form-control:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 0.2rem rgba(46, 134, 171, 0.15);
  background: white;
}

.contact-form .form-control::placeholder {
  color: #9ca3af;
  font-weight: 400;
}

.contact-form textarea.form-control {
  resize: vertical;
  min-height: 100px;
}

.btn-submit {
  background: linear-gradient(135deg, #00bcd4, #00acc1);
  color: white;
  border: none;
  padding: 15px 25px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.btn-submit:hover {
  background: linear-gradient(135deg, #00acc1, #0097a7);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 188, 212, 0.3);
  color: white;
}

.hero-form {
  position: relative;
  animation: slideInRight 0.8s ease-out;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.services-section {
  padding: 100px 0;
  background: var(--light-gray);
}

.service-card {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  border: none;
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-blue), var(--accent-green));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

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

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

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
}

.service-card:nth-child(1) .service-icon {
  background: linear-gradient(135deg, var(--primary-blue), #4a90e2);
}
.service-card:nth-child(2) .service-icon {
  background: linear-gradient(135deg, var(--accent-green), #00c896);
}
.service-card:nth-child(3) .service-icon {
  background: linear-gradient(135deg, var(--accent-purple), #9a4ef8);
}
.service-card:nth-child(4) .service-icon {
  background: linear-gradient(135deg, var(--accent-pink), #ff6b9d);
}

/* Care Section */
.care-section {
  padding: 100px 0;
  background: #03a9f43b;
}

.care-stats {
  background: linear-gradient(
    135deg,
    var(--primary-blue),
    var(--secondary-blue)
  );
  color: white;
  padding: 60px 40px;
  border-radius: 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.care-stats::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: rotate(45deg);
}

.stats-number {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.stats-text {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* Areas Section */
.areas-section {
  padding: 100px 0;
  /* background: var(--light-gray); */
  /* background: linear-gradient(250deg, #03A9F4 51%, #ffffff 26%); */
}

.area-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #eee;
  height: 100%;
}

.area-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-blue);
}

.area-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: #03A9F4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
}

/* Testimonials */
.testimonials-section {
  padding: 100px 0;
  background: white;
}

.testimonial-card {
  background: var(--light-gray);
  padding: 40px 30px;
  border-radius: 20px;
  border: none;
  height: 100%;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 4rem;
  color: var(--primary-blue);
  font-weight: 700;
}

.testimonial-rating {
  color: #ffd700;
  margin-bottom: 15px;
}

/* Team Section */
.team-section {
  padding: 100px 0;
  background: var(--light-gray);
}

.team-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: none;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.team-image {
  height: 250px;
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-green));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 3rem;
}

.team-info {
  padding: 25px;
  text-align: center;
}

/* Footer */
/* .footer {
  background: var(--dark-gray);
  color: white;
  padding: 60px 0 20px;
}

.footer h5 {
  color: white;
  margin-bottom: 20px;
  font-weight: 600;
}

.footer a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
} */

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.corletra{
    color: #03A9F4;
    font-size: 3rem;
}


/* Responsive Design - Mobile First */

/* Extra Small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  .hero-content h1 {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }

  .hero-content p {
    font-size: 1rem;
    margin-bottom: 25px;
  }

  .btn-hero {
    padding: 12px 25px;
    font-size: 0.9rem;
  }

  .contact-form-card {
    padding: 20px 15px;
    margin-top: 30px;
  }

  .contact-form-card h3 {
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.3;
  }

  .logo-text {
    font-size: 1.2rem;
  }

  .contact-form .form-control {
    padding: 12px;
    font-size: 0.9rem;
  }

  .btn-submit {
    padding: 12px 20px;
    font-size: 0.9rem;
  }

  .service-card,
  .area-card {
    margin-bottom: 20px;
    padding: 25px 20px;
  }

  .service-icon,
  .area-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .care-stats {
    padding: 40px 25px;
  }

  .stats-number {
    font-size: 2.5rem;
  }

  .team-image {
    height: 200px;
    font-size: 2rem;
  }

  .team-info {
    padding: 20px 15px;
  }

  .testimonial-card {
    padding: 25px 20px;
    margin-bottom: 20px;
  }

  .navbar-brand {
    font-size: 1.4rem;
  }

  .hero-section {
    padding: 80px 0 40px;
    min-height: auto;
  }

  .services-section,
  .care-section,
  .areas-section,
  .testimonials-section,
  .team-section {
    padding: 60px 0;
  }

  .footer {
    padding: 40px 0 15px;
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-content p {
    font-size: 1.1rem;
  }

  .contact-form-card {
    padding: 30px 25px;
    margin-top: 30px;
  }

  .contact-form-card h3 {
    font-size: 1rem;
  }

  .service-card,
  .area-card {
    margin-bottom: 25px;
    padding: 30px 25px;
  }

  .hero-section {
    padding: 100px 0 60px;
  }

  .services-section,
  .care-section,
  .areas-section,
  .testimonials-section,
  .team-section {
    padding: 80px 0;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero-content h1 {
    font-size: 2.8rem;
  }

  .contact-form-card {
    padding: 35px 30px;
  }

  .service-card,
  .area-card {
    margin-bottom: 30px;
  }

  .navbar-nav .nav-link {
    margin: 0 5px;
    font-size: 0.95rem;
  }

  .btn-appointment {
    padding: 8px 20px;
    font-size: 0.9rem;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .hero-content h1 {
    font-size: 3.2rem;
  }

  .contact-form-card {
    padding: 40px 35px;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .hero-content h1 {
    font-size: 3.5rem;
  }

  .container-xl {
    max-width: 1200px;
  }
}

/* Mobile Navigation Improvements */
@media (max-width: 991.98px) {
  .navbar-toggler {
    border: none;
    padding: 4px 8px;
  }

  .navbar-toggler:focus {
    box-shadow: none;
  }

  .navbar-collapse {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 10px;
    margin-top: 10px;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  }

  .navbar-nav {
    text-align: center;
    margin-bottom: 20px;
  }

  .navbar-nav .nav-item {
    margin: 5px 0;
  }

  .btn-appointment {
    display: block;
    text-align: center;
    width: 100%;
    margin: 0 auto;
  }
}

/* Hero Section Mobile Optimization */
@media (max-width: 767.98px) {
  .hero-section .row {
    flex-direction: column-reverse;
  }

  .hero-content {
    text-align: center;
    margin-top: 30px;
  }

  .contact-form-card {
    margin-bottom: 20px;
  }
}

/* Service Cards Mobile Stack */
@media (max-width: 767.98px) {
  .services-section .row.g-4 {
    --bs-gutter-x: 1rem;
    --bs-gutter-y: 1rem;
  }

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

/* Care Section Mobile Layout */
@media (max-width: 767.98px) {
  .care-section .row {
    text-align: center;
  }

  .care-section .col-6:last-child {
    margin-top: 20px;
  }
}

/* Areas Section Mobile Grid */
@media (max-width: 575.98px) {
  .areas-section .col-lg-3 {
    margin-bottom: 15px;
  }
}

/* Team Section Mobile Optimization */
@media (max-width: 767.98px) {
  .team-section .col-lg-3 {
    margin-bottom: 25px;
  }
}

/* Footer Mobile Layout */
@media (max-width: 767.98px) {
  .footer .row > div {
    margin-bottom: 30px;
    text-align: center;
  }

  .footer h5 {
    margin-bottom: 15px;
  }

  .footer ul {
    padding-left: 0;
  }

  .social-links {
    justify-content: center;
    margin-top: 15px;
  }

  .social-links a {
    margin: 0 10px !important;
    display: inline-block;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    background: var(--primary-blue);
    border-radius: 50%;
    color: white !important;
    transition: all 0.3s ease;
  }

  .social-links a:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(46, 134, 171, 0.4);
  }
}

/* Utility Classes for Responsive Typography */
.fs-responsive-1 {
  font-size: clamp(1.8rem, 4vw, 3.5rem);
}

.fs-responsive-2 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
}

.fs-responsive-3 {
  font-size: clamp(1.2rem, 2.5vw, 2rem);
}

.fs-responsive-4 {
  font-size: clamp(1rem, 2vw, 1.5rem);
}

/* Container fluid for better mobile experience */
@media (max-width: 575.98px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* Improve touch targets for mobile */
@media (max-width: 767.98px) {
  .btn,
  .nav-link,
  .form-control {
    min-height: 44px;
  }

  .navbar-nav .nav-link {
    padding: 12px 20px;
    margin: 2px 0;
    border-radius: 8px;
    transition: all 0.3s ease;
  }

  .navbar-nav .nav-link:hover {
    background: rgba(46, 134, 171, 0.1);
  }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .service-card,
  .area-card,
  .team-card,
  .testimonial-card {
    border: 2px solid #333;
  }

  .contact-form .form-control {
    border-width: 2px;
  }
}




.logo_navbar{
    width: 9rem;
}





/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
    background: linear-gradient(135deg, #128C7E, #25D366);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
    color: white;
}

.whatsapp-float i {
    transition: transform 0.3s ease;
}

.whatsapp-float:hover i {
    transform: rotate(15deg) scale(1.1);
}

/* WhatsApp Tooltip */
.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: rgba(0, 0, 0, 0.8);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(-5px);
}

/* WhatsApp Animation */
@keyframes whatsappPulse {
    0% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    }
    50% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
    100% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    }
}

@keyframes whatsappBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* WhatsApp Responsive */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 1.8rem;
    }
    
    .whatsapp-tooltip {
        right: 65px;
        font-size: 0.8rem;
        padding: 6px 10px;
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
        width: 50px;
        height: 50px;
        font-size: 1.6rem;
    }
    
    .whatsapp-tooltip {
        display: none; /* Hide tooltip on very small screens */
    }
}

/* WhatsApp Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .whatsapp-tooltip {
        background: rgba(255, 255, 255, 0.9);
        color: #333;
    }
    
    .whatsapp-tooltip::after {
        border-left-color: rgba(255, 255, 255, 0.9);
    }
}

/* WhatsApp Print Hide */
@media print {
    .whatsapp-float {
        display: none !important;
    }
}




/* FORMULÁRIO */


       

    
/* 
        .form-card {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-radius: 24px;
            padding: 40px;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
            border: 1px solid rgba(255, 255, 255, 0.2);
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
        } */

        /* .form-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #667eea, #764ba2, #f093fb, #f5576c);
            background-size: 200% 100%;
            animation: shimmer 3s ease-in-out infinite;
        } */

        /* @keyframes shimmer {
            0%, 100% { background-position: 200% 0; }
            50% { background-position: -200% 0; }
        } */

        /* .logo {
            display: flex;
            justify-content: center;
            margin-bottom: 32px;
        }

        .logo-grid {
            display: grid;
            grid-template-columns: repeat(3, 12px);
            gap: 4px;
            transform: rotate(45deg);
        }

        .logo-dot {
            width: 12px;
            height: 12px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            border-radius: 3px;
            animation: logoFloat 2s ease-in-out infinite;
        }

        .logo-dot:nth-child(1) { animation-delay: 0s; }
        .logo-dot:nth-child(2) { animation-delay: 0.2s; }
        .logo-dot:nth-child(3) { animation-delay: 0.4s; }
        .logo-dot:nth-child(4) { animation-delay: 0.1s; }
        .logo-dot:nth-child(5) { animation-delay: 0.3s; }
        .logo-dot:nth-child(6) { animation-delay: 0.5s; }
        .logo-dot:nth-child(7) { animation-delay: 0.2s; }
        .logo-dot:nth-child(8) { animation-delay: 0.4s; }
        .logo-dot:nth-child(9) { animation-delay: 0.6s; }

        @keyframes logoFloat {
            0%, 100% { transform: translateY(0) scale(1); }
            50% { transform: translateY(-3px) scale(1.1); }
        } */

        .form-title {
            text-align: center;
            color: #2d3748;
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 8px;
            letter-spacing: -0.5px;
        }

        .form-subtitle {
            text-align: center;
            color: #718096;
            font-size: 16px;
            margin-bottom: 32px;
            font-weight: 400;
        }

        .form-group {
            margin-bottom: 24px;
            position: relative;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }

        .form-label {
            display: block;
            color: #4a5568;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 8px;
            transition: color 0.3s ease;
        }

        .form-input, .form-textarea {
            width: 100%;
            padding: 16px 20px;
            border: 2px solid #e2e8f0;
            border-radius: 12px;
            font-size: 16px;
            transition: all 0.3s ease;
            background: #fff;
            color: #2d3748;
            outline: none;
            font-family: inherit;
        }

        .form-input:focus, .form-textarea:focus {
            border-color: #667eea;
            box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
            transform: translateY(-2px);
        }

        .form-input:valid, .form-textarea:valid {
            border-color: #48bb78;
        }

        .form-input::placeholder, .form-textarea::placeholder {
            color: #a0aec0;
            font-weight: 400;
        }

        .form-textarea {
            resize: vertical;
            min-height: 120px;
            font-family: inherit;
        }

        .input-icon {
            position: absolute;
            right: 16px;
            top: 50%;
            transform: translateY(-50%);
            color: #a0aec0;
            font-size: 18px;
            pointer-events: none;
            transition: color 0.3s ease;
        }

        .form-input:focus + .input-icon {
            color: #667eea;
        }

        .error-message {
            color: #e53e3e;
            font-size: 12px;
            margin-top: 4px;
            opacity: 0;
            transform: translateY(-10px);
            transition: all 0.3s ease;
        }

        .error-message.show {
            opacity: 1;
            transform: translateY(0);
        }

        .form-input.error {
            border-color: #e53e3e;
            box-shadow: 0 0 0 4px rgba(229, 62, 62, 0.1);
        }

        .submit-btn {
            width: 100%;
            padding: 18px 24px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border: none;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 35px rgba(102, 126, 234, 0.3);
        }

        .submit-btn:active {
            transform: translateY(0);
        }

        .submit-btn.loading {
            pointer-events: none;
        }

        .submit-btn .btn-text {
            transition: opacity 0.3s ease;
        }

        .submit-btn.loading .btn-text {
            opacity: 0;
        }

        .loading-spinner {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 20px;
            height: 20px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-top: 2px solid white;
            border-radius: 50%;
            animation: spin 1s linear infinite;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .submit-btn.loading .loading-spinner {
            opacity: 1;
        }

        @keyframes spin {
            0% { transform: translate(-50%, -50%) rotate(0deg); }
            100% { transform: translate(-50%, -50%) rotate(360deg); }
        }

        .success-message {
            background: linear-gradient(135deg, #48bb78, #38a169);
            color: white;
            padding: 16px 20px;
            border-radius: 12px;
            text-align: center;
            font-weight: 600;
            margin-top: 20px;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.5s ease;
        }

        .success-message.show {
            opacity: 1;
            transform: translateY(0);
        }

        @media (max-width: 640px) {
            .form-card {
                padding: 32px 24px;
                margin: 10px;
            }

            .form-row {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .form-title {
                font-size: 20px;
            }

            .form-subtitle {
                font-size: 14px;
            }
        }

        .floating-shapes {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
            pointer-events: none;
            z-index: -1;
        }

        .shape {
            position: absolute;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            animation: float 6s ease-in-out infinite;
        }

        .shape:nth-child(1) {
            width: 80px;
            height: 80px;
            top: 10%;
            left: 10%;
            animation-delay: 0s;
        }

        .shape:nth-child(2) {
            width: 120px;
            height: 120px;
            top: 70%;
            right: 10%;
            animation-delay: 2s;
        }

        .shape:nth-child(3) {
            width: 60px;
            height: 60px;
            bottom: 10%;
            left: 20%;
            animation-delay: 4s;
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
            }
            33% {
                transform: translateY(-20px) rotate(120deg);
            }
            66% {
                transform: translateY(10px) rotate(240deg);
            }
        }




         /* Barra de Progresso */
        .progress-container {
            margin-bottom: 32px;
            padding: 20px;
            background: rgba(102, 126, 234, 0.05);
            border-radius: 16px;
            border: 1px solid rgba(102, 126, 234, 0.1);
        }

        .progress-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 12px;
        }

        .progress-label {
            font-size: 14px;
            font-weight: 600;
            color: #4a5568;
        }

        .progress-percentage {
            font-size: 14px;
            font-weight: 700;
            color: #667eea;
            background: linear-gradient(135deg, #667eea, #764ba2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .progress-bar {
            position: relative;
            height: 8px;
            background: #e2e8f0;
            border-radius: 4px;
            overflow: hidden;
            margin-bottom: 12px;
        }

        .progress-fill {
            height: 100%;
            width: 0%;
            background: linear-gradient(90deg, #667eea, #764ba2, #f093fb, #f5576c);
            background-size: 200% 100%;
            border-radius: 4px;
            transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            animation: progressShimmer 2s ease-in-out infinite;
            position: relative;
        }

        .progress-fill::after {
            content: '';
            position: absolute;
            top: 0;
            right: -10px;
            width: 20px;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
            animation: progressGlow 2s ease-in-out infinite;
        }

        @keyframes progressShimmer {
            0%, 100% { background-position: 200% 0; }
            50% { background-position: -200% 0; }
        }

        @keyframes progressGlow {
            0%, 100% { transform: translateX(-100%); opacity: 0; }
            50% { transform: translateX(100%); opacity: 1; }
        }

        .progress-steps {
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            transform: translateY(-50%);
            display: flex;
            justify-content: space-between;
            padding: 0 4px;
        }

        .step {
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background: #e2e8f0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 10px;
            font-weight: 700;
            color: #a0aec0;
            border: 2px solid #fff;
            transition: all 0.4s ease;
            position: relative;
            z-index: 2;
        }

        .step.active {
            background: #667eea;
            color: white;
            transform: scale(1.2);
            box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
            animation: stepPulse 1.5s ease-in-out infinite;
        }
        
        @keyframes stepPulse {
            0%, 100% { box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3); }
            50% { box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5); }
        }

        .step.completed {
            background: #48bb78;
            color: white;
            transform: scale(1.1);
        }

        .step.completed::before {
            content: '✓';
            font-size: 8px;
        }

        .progress-labels {
            display: flex;
            justify-content: space-between;
            margin-top: 8px;
        }

        .progress-labels span {
            font-size: 12px;
            color: #718096;
            font-weight: 500;
            text-align: center;
            flex: 1;
        }

        .form-group {
            margin-bottom: 24px;
            position: relative;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }

        .form-label {
            display: block;
            color: #4a5568;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 8px;
            transition: color 0.3s ease;
        }

        .form-input, .form-textarea {
            width: 100%;
            padding: 16px 20px;
            border: 2px solid #e2e8f0;
            border-radius: 12px;
            font-size: 16px;
            transition: all 0.3s ease;
            background: #fff;
            color: #2d3748;
            outline: none;
            font-family: inherit;
        }

        .form-input:focus, .form-textarea:focus {
            border-color: #667eea;
            box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
            transform: translateY(-2px);
        }

        .form-input:valid, .form-textarea:valid {
            border-color: #48bb78;
        }

        .form-input::placeholder, .form-textarea::placeholder {
            color: #a0aec0;
            font-weight: 400;
        }

        .form-textarea {
            resize: vertical;
            min-height: 120px;
            font-family: inherit;
        }

        .input-icon {
            position: absolute;
            right: 16px;
            top: 50%;
            transform: translateY(-50%);
            color: #a0aec0;
            font-size: 18px;
            pointer-events: none;
            transition: color 0.3s ease;
        }

        .form-input:focus + .input-icon {
            color: #667eea;
        }

        .error-message {
            color: #e53e3e;
            font-size: 12px;
            margin-top: 4px;
            opacity: 0;
            transform: translateY(-10px);
            transition: all 0.3s ease;
        }

        .error-message.show {
            opacity: 1;
            transform: translateY(0);
        }

        .form-input.error {
            border-color: #e53e3e;
            box-shadow: 0 0 0 4px rgba(229, 62, 62, 0.1);
        }

        .submit-btn {
            width: 100%;
            padding: 18px 24px;
            background: #03A9F4;
            color: white;
            border: none;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 35px rgba(102, 126, 234, 0.3);
        }

        .submit-btn:active {
            transform: translateY(0);
        }

        .submit-btn.loading {
            pointer-events: none;
        }

        .submit-btn .btn-text {
            transition: opacity 0.3s ease;
        }

        .submit-btn.loading .btn-text {
            opacity: 0;
        }

        .loading-spinner {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 20px;
            height: 20px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-top: 2px solid white;
            border-radius: 50%;
            animation: spin 1s linear infinite;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .submit-btn.loading .loading-spinner {
            opacity: 1;
        }

        @keyframes spin {
            0% { transform: translate(-50%, -50%) rotate(0deg); }
            100% { transform: translate(-50%, -50%) rotate(360deg); }
        }

        .success-message {
            background: linear-gradient(135deg, #48bb78, #38a169);
            color: white;
            padding: 16px 20px;
            border-radius: 12px;
            text-align: center;
            font-weight: 600;
            margin-top: 20px;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.5s ease;
        }

        .success-message.show {
            opacity: 1;
            transform: translateY(0);
        }

        @media (max-width: 640px) {
            .form-card {
                padding: 32px 24px;
                margin: 10px;
            }

            .form-row {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .form-title {
                font-size: 20px;
            }

            .form-subtitle {
                font-size: 14px;
            }
            
            .progress-container {
                padding: 16px;
                margin-bottom: 24px;
            }
            
            .progress-labels {
                font-size: 10px;
            }
            
            .progress-labels span {
                font-size: 10px;
            }
            
            .step {
                width: 14px;
                height: 14px;
                font-size: 8px;
            }
            
            .progress-header {
                margin-bottom: 8px;
            }
            
            .progress-label, .progress-percentage {
                font-size: 12px;
            }
        }





  /* footer Novo */

  /* Footer principal */
.footer {
    position: relative;
    background: var(--gradient);
    padding: 80px 0 40px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 60px;
}

/* Texto principal */
.footer-text {
    flex: 1;
    max-width: 600px;
}

.footer-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    color: white;
    line-height: 1.2;
    margin-bottom: 16px;
    animation: fadeInUp 0.8s ease-out;
}

.highlight {
    background: linear-gradient(90deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ffd700, #ffed4e);
    border-radius: 2px;
    opacity: 0.6;
}

.footer-subtitle {
    font-size: 1.125rem;
    color: white;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

/* Botão CTA */
.footer-action {
    flex-shrink: 0;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: white;
    /* color: var(--primary-purple); */
    border: none;
    padding: 18px 32px;
    border-radius: var(--border-radius);
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
    background: #f8fafc;
    color: #03a9f4;
}

.cta-button:active {
    transform: translateY(-1px);
}

.button-icon {
    transition: var(--transition);
}

.cta-button:hover .button-icon {
    transform: translateX(4px);
}

/* Footer bottom */
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.6s forwards;
}

.brand {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
}

.logo svg {
    width: 28px;
    height: 28px;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.copyright {
    font-size: 0.875rem;
    color: var(--text-lighter);
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-link {
    color: white;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: white;
    transition: width 0.3s ease;
}

.footer-link:hover {
    color: white;
}

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

/* Elementos decorativos */
.decorative-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

.circle-1 {
    width: 120px;
    height: 120px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.circle-2 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 15%;
    animation-delay: 2s;
}

.circle-3 {
    width: 60px;
    height: 60px;
    top: 30%;
    left: 5%;
    animation-delay: 4s;
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Responsividade */
@media (max-width: 768px) {
    .footer {
        padding: 60px 0 30px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 32px;
        margin-bottom: 40px;
    }
    
    .footer-title {
        font-size: 2rem;
    }
    
    .footer-subtitle {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 16px 28px;
        font-size: 1rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
    
    .footer-links {
        gap: 24px;
    }
}

@media (max-width: 480px) {
    .footer-container {
        padding: 0 16px;
    }
    
    .footer-title {
        font-size: 1.75rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 16px;
    }
    
    .circle-1, .circle-2, .circle-3 {
        display: none;
    }
}

/* Modo escuro - opcional */
@media (prefers-color-scheme: dark) {
    .footer {
        box-shadow: 0 20px 40px rgba(139, 44, 245, 0.4);
        background: linear-gradient(210deg, #03A9F4 75%, #ffffff 60%);
    }
}








/* CARROCEL DE IMAGENS */
/* Section Principal */
.clinic-hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(150deg, #03A9F4 0%, #000000 20%, #03A9F4 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-content1 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    z-index: 2;
    position: relative;
}

/* Dashboard Container */
.dashboard-container {
    position: relative;
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: transform 0.3s ease;
}

.dashboard-container:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.02);
}

.dashboard-frame {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.dashboard-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(135deg, #00d4ff, #00a8cc);
    border-radius: 16px 16px 0 0;
}

.dashboard-frame::after {
    content: '';
    position: absolute;
    top: 15px;
    left: 20px;
    width: 12px;
    height: 12px;
    background: #ff5f57;
    border-radius: 50%;
    box-shadow: 
        22px 0 0 #ffbd2e,
        44px 0 0 #28ca42;
}

.carousel-container {
    position: relative;
    background: #fff;
    border-radius: 12px;
    margin-top: 60px;
    overflow: hidden;
    height: 300px;
}

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

.carousel-slide.active {
    opacity: 1;
}

.dashboard-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

/* Indicadores do Carousel */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 1rem;
}

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

.indicator.active {
    background: #00d4ff;
    transform: scale(1.2);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.6);
}

/* Conteúdo Principal */
.content-main {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.text-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #fff, #f0f8ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    font-weight: 300;
}

/* Lista de Features */
.features-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.2rem 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.check-icon {
    width: 24px;
    height: 24px;
    color: #00ff94;
    flex-shrink: 0;
}

.feature-item span {
    color: white;
    font-weight: 500;
    font-size: 1.1rem;
}

/* Botões CTA */
.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
}

.btn-primary {
    background: linear-gradient(135deg, #00ff94, #00d4ff);
    color: #333;
    box-shadow: 0 10px 30px rgba(0, 255, 148, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 255, 148, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.1);
}

/* Container da Médica */
.doctor-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.doctor-image {
    position: relative;
    z-index: 2;
}

.doctor-img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
}

/* Elementos Flutuantes */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 1rem 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: float 6s ease-in-out infinite;
}

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

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

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

.card-icon {
    font-size: 1.5rem;
}

.floating-card span {
    font-weight: 600;
    color: #333;
}

/* Elementos de Background */
.bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    animation: rotate 20s linear infinite;
}

.bg-circle-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
    animation-direction: normal;
}

.bg-circle-2 {
    width: 600px;
    height: 600px;
    bottom: -200px;
    left: -200px;
    animation-direction: reverse;
}

.bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 70%, rgba(0, 255, 148, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(0, 212, 255, 0.1) 0%, transparent 50%);
}

/* Animações */
@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Responsividade */
@media (max-width: 1024px) {
    .hero-content1 {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .text-content h1 {
        font-size: 2.8rem;
    }
    
    .dashboard-container {
        transform: none;
        order: 2;
    }
    
    .content-main {
        order: 1;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .text-content h1 {
        font-size: 2.2rem;
    }
    
    .subtitle {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 280px;
    }
    
    .floating-card {
        display: none;
    }
    
    .dashboard-frame {
        padding: 1rem;
    }
    
    .carousel-container {
        height: 250px;
    }
}







.lead{
    font-size: 1.25rem;
    font-weight: 600;
}



.col-6 span {
  font-weight: bold;
}





/* Modulos sessão */
 