:root {
  --primary-color: #663399; /* Deep purple from logo */
  --secondary-color: #4B0082; /* Darker purple */
  --accent-color: #8A2BE2; /* Brighter purple */
  --gradient-start: #9370DB; /* Light purple */
  --gradient-end: #483D8B; /* Dark slate blue */
  --text-color: #333;
  --light-text: #666;
  --background: #fff;
  --section-bg: #F8F7FE; /* Very light purple tint */
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
}

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

/* Header */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--background);
  padding: 1.56rem 1.56rem; 
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  z-index: 1000;
}

.logo {
  position: absolute;
  left: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-img {
  width: 160px;
  height: 160px;
  object-fit: contain;
  margin-right: 1rem;
  border-radius: 10px;
}

.footer-logo .logo-img {
  width: 100%; 
  height: auto; 
  max-width: 400px; 
  border-radius: 10px;
}

.brand {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary-color);
  text-shadow: 1px 1px 1px rgba(0,0,0,0.1);
}

.slogan {
  color: var(--secondary-color);
  font-size: 0.9rem;
  opacity: 0.9;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  justify-content: center;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: #61308f;
  font-weight: 500;
  transition: color 0.3s;
  text-transform: uppercase;
}

.nav-links a:hover {
  color: var(--accent-color);
}

.mobile-menu-btn {
  display: none;
  width: 30px;
  height: 24px;
  flex-direction: column;
  justify-content: space-between;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 10;
}

.mobile-menu-btn span {
  width: 100%;
  height: 3px;
  background-color: #663399; /* Purple color matching the site */
  border-radius: 3px;
  transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

@media (max-width: 768px) {
  .navbar {
    justify-content: center;
    padding: 1.7rem;
  }
  
  .logo-img {
    width: 250px;
    height: 250px;
    margin-top: -27px;
  }

  .logo {
    position: static;
    margin: 0 auto;
  }

  .mobile-menu-btn {
    position: fixed;
    top: 2rem;
    right: 2rem;
    display: flex;
    z-index: 1001;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(102, 51, 153, 0.95);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
    z-index: 1000;
  }

  .nav-links.active {
    left: 0;
  }

  .nav-links a {
    color: white;
    font-size: 1.5rem;
    margin: 1rem 0;
  }

  .footer-logo .logo-img {
    width: 100%; 
    height: auto; 
    max-width: 400px; 
    border-radius: 10px;
    margin: 0 auto;
    display: block;
  }
}

/* Hero Section */
.hero {
  height: 100vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  text-align: center;
  padding-top: 80px;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(102, 51, 153, 0.6); /* Adjust opacity here */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  background: rgba(102, 51, 153, 0.2);
  border-radius: 15px;
  backdrop-filter: blur(5px);
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  color: #fff;
  font-weight: 700;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
  color: #fff;
  line-height: 1.8;
}

/* About Section */
.about {
  padding: 5rem 0;
  background: white;
}

.about .container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: center;
}

.profile-image {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(43, 87, 151, 0.2);
}

.profile-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}

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

.placeholder-image {
  display: none;
}

.certifications {
  margin-top: 2rem;
  padding: 1.5rem;
  background: rgba(43, 87, 151, 0.05);
  border-radius: 10px;
}

.certifications h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.certifications ul {
  list-style: none;
  padding-left: 0;
}

.certifications li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.5rem;
}

.certifications li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
}

/* Treatment Cards Enhancement */
.treatment-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.card {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  border-top: 3px solid var(--accent-color);
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

.card .icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-align: center;
}

.card h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 600;
}

.card p {
  color: var(--text-color);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.treatment-features {
  list-style: none;
  padding: 0;
  margin-top: auto;
}

.treatment-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  color: var(--text-color);
  font-size: 0.95rem;
}

.treatment-features li:last-child {
  border-bottom: none;
}

@media (max-width: 768px) {
  .treatment-cards {
    grid-template-columns: 1fr;
    padding: 0 1rem;
  }
  
  .card {
    margin-bottom: 1rem;
  }
}

/* Testimonials Section */
.testimonials {
  padding: 5rem 0;
  background: var(--section-bg);
}

.swiper {
  padding: 2rem 0;
}

.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  text-align: center;
  border-top: 3px solid var(--primary-color);
}

.testimonial-card p {
  color: var(--text-color);
  font-style: italic;
  line-height: 1.8;
}

.testimonial-card .author {
  color: var(--primary-color);
  font-weight: bold;
  display: block;
  margin-top: 1rem;
}

.testimonial-avatar {
  width: 80px;
  height: 80px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  overflow: hidden;
}

/* Scheduling Section */
.scheduling {
  padding: 5rem 0;
  text-align: center;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
}

.scheduling h2,
.scheduling p {
  color: white;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.scheduling-options {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

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

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

/* Contact Section */
.contact {
  padding: 5rem 0;
  background: white;
}

.contact .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  padding: 1rem;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.contact-form textarea {
  height: 150px;
  resize: vertical;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

/* Map Container */
.map-container {
  margin-bottom: 2rem;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #25D366; /* WhatsApp brand color */
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transition: all 0.3s ease;
  text-decoration: none;
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background: #128C7E; /* Darker WhatsApp color on hover */
}

.whatsapp-float svg {
  width: 35px;
  height: 35px;
  fill: white;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@media (max-width: 768px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-float svg {
    width: 30px;
    height: 30px;
  }
}

/* Footer */
footer {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 2rem 0;
}

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

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

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

.footer-links a:hover {
  color: white;
}

.footer-hours {
  color: rgba(255,255,255,0.9);
}

.footer-hours h3 {
  color: white;
  margin-bottom: 1rem;
  font-weight: 600;
}

.copyright {
  color: rgba(255,255,255,0.8);
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* Buttons */
.cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  border: none;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
  background: linear-gradient(135deg, var(--gradient-end), var(--gradient-start));
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(102, 51, 153, 0.3);
}

.submit-button {
  padding: 1rem;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s;
}

.submit-button:hover {
  background: linear-gradient(135deg, var(--gradient-end), var(--gradient-start));
}

/* New styles */
.online-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.9);
  color: var(--primary-color);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.cta-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

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

.cta-button.secondary {
  background: white;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

.benefit-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 1rem;
  border-radius: 10px;
}

.benefit-item svg {
  color: white;
}

.benefit-item span {
  font-weight: 500;
  color: white;
}

/* Online Consultation Section */
.online-consultation {
  padding: 5rem 0;
  background: white;
}

.consultation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.consultation-step {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.consultation-step:hover {
  transform: translateY(-5px);
}

.step-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.consultation-step h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.3rem;
  font-weight: 600;
}

.consultation-step p {
  color: var(--text-color);
  line-height: 1.6;
}

.consultation-benefits {
  margin-top: 4rem;
  text-align: center;
}

.consultation-benefits h3 {
  margin-bottom: 2rem;
  color: var(--primary-color);
  font-size: 1.5rem;
  font-weight: 600;
}

.scheduling-widget {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  margin-top: 2rem;
  overflow: hidden;
}

.scheduling-widget iframe {
  border-radius: 8px;
  background: white;
}

.online-session-info {
  margin-top: 2rem;
  padding: 1.5rem;
  background: rgba(43, 87, 151, 0.05);
  border-radius: 10px;
}

.online-session-info ul {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
}

.online-session-info li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.5rem;
}

.online-session-info li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
}

/* Neuropsicanálise Section */
.neuropsicoanalise {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  color: white;
  position: relative;
  overflow: hidden;
}

.neuropsicoanalise::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2v-4h4v-2h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.1;
}

.neuropsicoanalise .container {
  position: relative;
  z-index: 1;
}

.neuropsicoanalise h2 {
  font-size: 2.8rem;
  text-align: center;
  margin-bottom: 3rem;
  color: white;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
  position: relative;
  padding-bottom: 1.5rem;
}

.neuropsicoanalise h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: rgba(255,255,255,0.5);
  border-radius: 2px;
}

.neuro-section {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 2.5rem;
  margin-bottom: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255,255,255,0.1);
}

.neuro-section:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.neuro-section h3 {
  display: flex;
  align-items: center;
  color: white;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  position: relative;
}

.neuro-section h3 svg {
  flex-shrink: 0;
}

.neuro-section ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.neuro-section ul li {
  display: flex;
  align-items: center;
  color: rgba(255,255,255,0.9);
  padding: 0.75rem 1rem;
  background: rgba(255,255,255,0.05);
  border-radius: 10px;
  margin-bottom: 0.5rem;
  transition: transform 0.2s ease;
}

.neuro-section ul li svg {
  flex-shrink: 0;
}

.neuro-section ul li:hover {
  transform: translateX(5px);
  background: rgba(255,255,255,0.1);
}

.neuro-section ul li::before {
  content: "✓";
  color: white;
  position: absolute;
  left: 1rem;
  font-weight: bold;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.benefit-item {
  background: rgba(255,255,255,0.1);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  transition: transform 0.3s ease;
  border: 1px solid rgba(255,255,255,0.1);
}

.benefit-item:hover {
  transform: translateY(-5px);
  background: rgba(255,255,255,0.15);
}

.benefit-item svg {
  width: 40px;
  height: 40px;
  margin-bottom: 1rem;
  fill: white;
}

.benefit-item span {
  font-size: 1.2rem;
  font-weight: 500;
  color: white;
}

@media (max-width: 768px) {
  .neuropsicoanalise h2 {
    font-size: 2.2rem;
  }

  .neuro-section {
    padding: 1.5rem;
  }

  .neuro-section h3 {
    font-size: 1.3rem;
  }

  .neuro-section ul {
    grid-template-columns: 1fr;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

/* FAQ Section */
.faq {
  padding: 5rem 0;
  background: var(--section-bg);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.faq-card {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  cursor: pointer;
  background: white;
  border-top: 3px solid var(--accent-color);
}

.faq-question h3 {
  color: var(--primary-color);
  margin: 0;
  font-size: 1.1rem;
}

.faq-toggle {
  background: none;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.faq-toggle svg {
  width: 24px;
  height: 24px;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 1rem;
  background: rgba(243, 243, 243, 0.5);
}

.faq-answer p {
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  color: var(--text-color);
  line-height: 1.6;
}

.faq-card.active .faq-answer {
  max-height: 500px;
  padding: 1rem;
}

.faq-card.active .faq-answer p {
  opacity: 1;
  transform: translateY(0);
}

.faq-card.active .faq-toggle svg {
  transform: rotate(180deg);
}

/* Scheduling Form Styles */
.scheduling-form {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  max-width: 500px;
  margin: 2rem auto;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-color);
  font-weight: 500;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--primary-color);
  outline-color: var(--primary-color);
}

.scheduling-info {
  text-align: left;
  background: rgba(255, 255, 255, 0.9);
  padding: 1.5rem;
  border-radius: 10px;
  margin-bottom: 2rem;
}

.scheduling-info ul {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
}

.scheduling-info li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-color);
}

.scheduling-info li::before {
  content: "✓";
  color: var(--primary-color);
}

.scheduling-info h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-weight: 600;
}

section h2 {
  color: var(--primary-color);
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  text-align: center;
  font-weight: 700;
}

.card h3 {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.card p {
  color: var(--text-color);
  line-height: 1.6;
}

.contact h2 {
  margin-bottom: 2rem;
  color: var(--primary-color);
}

input, 
select, 
textarea {
  color: var(--text-color);
  border-color: #ddd;
}

input:focus, 
select:focus, 
textarea:focus {
  border-color: var(--primary-color);
  outline-color: var(--primary-color);
}

label {
  color: var(--text-color);
  font-weight: 500;
}

.text-primary {
  color: var(--primary-color);
}

.text-secondary {
  color: var(--secondary-color);
}

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

.text-white {
  color: white;
}

/* New Styles for Treatment Details */
.treatment-details {
  margin: 4rem 0;
}

.treatment-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.treatment-card h3 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
  font-weight: 600;
}

.treatment-card ul {
  list-style: none;
  padding: 0;
}

.treatment-card li {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  color: var(--text-color);
  line-height: 1.6;
}

.treatment-card li:last-child {
  border-bottom: none;
}

/* CTA Section Styles */
.cta-section {
  text-align: center;
  margin: 4rem 0;
  padding: 3rem;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  border-radius: 15px;
  color: white;
}

.cta-section h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: white;
}

.cta-section p {
  margin-bottom: 2rem;
  font-size: 1.1rem;
  line-height: 1.8;
}

/* Enhanced Benefits Grid */
.benefits-grid {
  margin: 3rem 0;
  gap: 2rem;
}

.benefit-item {
  background: white;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.benefit-item svg {
  width: 30px;
  height: 30px;
  color: var(--primary-color);
}

.benefit-item span {
  font-size: 1.1rem;
  color: var(--primary-color);
  font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .container {
    max-width: 90%;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 15px;
    width: 100%;
  }

  .hero {
    min-height: 100vh;
    padding-top: 120px;
  }

  .hero h1 {
    font-size: 2rem;
    line-height: 1.3;
  }

  .hero p {
    font-size: 1rem;
    line-height: 1.5;
  }

  .cta-group {
    flex-direction: column;
    gap: 1rem;
  }

  .cta-button {
    width: 100%;
    text-align: center;
  }

  .about .container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .profile-image {
    width: 80%;
    margin: 0 auto;
  }

  .treatment-cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .card {
    margin: 0;
  }

  .consultation-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .contact .container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .footer-links, .footer-hours {
    margin: 0 auto;
  }

  section {
    padding: 3rem 0;
  }

  section h2 {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
  }

  .neuro-section {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .neuro-section h3 {
    font-size: 1.3rem;
    padding-left: 1.5rem;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .scheduling-form {
    padding: 1.5rem;
  }

  .scheduling-info {
    padding: 1rem;
  }

  .testimonial-card {
    padding: 1.5rem;
  }

  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-float svg {
    width: 30px;
    height: 30px;
  }

  .hero-content {
    padding: 1.5rem;
  }

  .online-badge {
    font-size: 0.9rem;
    padding: 0.4rem 0.8rem;
  }

  .benefits-grid .benefit-item {
    padding: 1rem;
  }

  .info-item {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  .nav-links.active {
    padding: 2rem;
  }

  .nav-links a {
    font-size: 1.2rem;
    padding: 0.8rem;
  }

  .mobile-menu-btn {
    top: 1.5rem;
    right: 1.5rem;
  }

  .navbar {
    padding: 1rem;
  }

  .logo-img {
    width: 180px;
    height: 180px;
    margin-top: -27px;
  }

  .treatment-features li {
    padding: 0.8rem 0;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 0.8rem;
  }

  .scheduling-form .form-group {
    margin-bottom: 1rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.8rem;
  }

  .hero p {
    font-size: 0.9rem;
  }

  .cta-button {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }

  .profile-image {
    width: 100%;
  }

  section h2 {
    font-size: 1.6rem;
  }

  .card h3 {
    font-size: 1.3rem;
  }

  .whatsapp-float {
    width: 45px;
    height: 45px;
  }

  .whatsapp-float svg {
    width: 25px;
    height: 25px;
  }
}

/* Section Backgrounds */
.treatments {
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  color: white;
  padding: 5rem 0;
}

.treatments h2,
.treatments h3,
.treatments p {
  color: white;
}

.treatments .card {
  background: rgba(255, 255, 255, 0.95);
}

.treatments .card h3,
.treatments .card p {
  color: var(--text-color);
}

/* Enhance section transitions */
section {
  position: relative;
  overflow: hidden;
}

section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50px;
  background: inherit;
  transform: skewY(-1deg);
  transform-origin: right;
  z-index: 1;
}

section:last-of-type::after {
  display: none;
}

/* Add subtle texture overlay to gradient sections */
.treatments,
.scheduling,
.faq {
  position: relative;
}

.treatments::before,
.scheduling::before,
.faq::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

/* Adjust card backgrounds in colored sections */
.treatments .card,
.faq-card {
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.treatments .card:hover,
.faq-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.neuropsicoanalise .neuro-section {
  margin-bottom: 3rem;
}

.neuropsicoanalise .neuro-section h3 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.neuropsicoanalise .neuro-section p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.neuropsicoanalise .neuro-section ul {
  list-style-type: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.neuropsicoanalise .neuro-section ul li {
  color: rgba(255, 255, 255, 0.9);
  padding: 0.5rem 0;
  position: relative;
  padding-left: 30px;
}

.neuropsicoanalise .neuro-section ul li::before {
  content: "✓";
  color: white;
  position: absolute;
  left: 0;
}