/* 
* Hipnologo.com - Estilos Principais
* Desenvolvido para otimização de SEO e conversão
*/

/* ===== Variáveis e Configurações Gerais ===== */
:root {
  --primary-color: #4a2c82; /* Roxo - cor principal */
  --primary-dark: #371f61;
  --primary-light: #6b42b8;
  --secondary-color: #00a0b0; /* Azul turquesa - cor secundária */
  --accent-color: #e94e77; /* Rosa - cor de destaque */
  --text-color: #333333;
  --text-light: #666666;
  --bg-light: #f8f9fa;
  --bg-dark: #2c2c2c;
  --white: #ffffff;
  --black: #000000;
  --gray-light: #f0f0f0;
  --gray: #cccccc;
  --success: #28a745;
  --warning: #ffc107;
  --danger: #dc3545;
  --border-radius: 5px;
  --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 1rem;
  line-height: 1.3;
  color: var(--primary-dark);
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
}

h2 {
  font-size: 2rem;
  font-weight: 600;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
}

p {
  margin-bottom: 1rem;
}

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

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

ul, ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

section {
  padding: 80px 0;
}

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

.section-header h2 {
  position: relative;
  display: inline-block;
  margin-bottom: 15px;
}

.section-header h2:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--secondary-color);
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
}

/* ===== Botões ===== */
.primary-button, .secondary-button {
  display: inline-flex; /* Alterado para inline-flex */
  align-items: center; /* Adicionado para centralizar verticalmente */
  justify-content: center; /* Adicionado para centralizar horizontalmente */
  padding: 12px 25px;
  min-height: 44px; /* Adicionado para garantir altura mínima */
  border-radius: var(--border-radius);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.9rem;
  box-sizing: border-box; /* Adicionado para incluir padding e border na altura/largura */
}

.primary-button {
  background-color: var(--primary-color);
  color: var(--white);
  border: 2px solid var(--primary-color);
}

.primary-button:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--box-shadow);
}

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

.secondary-button:hover {
  background-color: var(--primary-color);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--box-shadow);
}

.learn-more {
  display: inline-block;
  font-weight: 600;
  color: var(--secondary-color);
  position: relative;
  padding-right: 20px;
}

.learn-more:after {
  content: '→';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: var(--transition);
}

.learn-more:hover {
  color: var(--primary-color);
}

.learn-more:hover:after {
  right: -5px;
}

/* ===== Header e Navegação ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 15px 0;
}

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

.logo {
  max-width: 180px;
}

.logo img {
  width: 100%;
}

.main-nav {
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu li {
  position: relative;
  margin: 0 10px;
}

.nav-menu a {
  display: block;
  padding: 10px;
  color: var(--text-color);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
}

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

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--white);
  box-shadow: var(--box-shadow);
  min-width: 200px;
  border-radius: var(--border-radius);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 100;
  list-style: none;
  padding: 10px 0;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  margin: 0;
}

.dropdown-menu a {
  padding: 8px 15px;
  font-size: 0.85rem;
  text-transform: none;
}

.dropdown-menu a:hover {
  background-color: var(--gray-light);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.hamburger {
  display: block;
  position: relative;
  width: 24px;
  height: 2px;
  background-color: var(--text-color);
  transition: var(--transition);
}

.hamburger:before, .hamburger:after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background-color: var(--text-color);
  transition: var(--transition);
}

.hamburger:before {
  top: -8px;
}

.hamburger:after {
  bottom: -8px;
}

.menu-toggle.active .hamburger {
  background-color: transparent;
}

.menu-toggle.active .hamburger:before {
  transform: rotate(45deg);
  top: 0;
}

.menu-toggle.active .hamburger:after {
  transform: rotate(-45deg);
  bottom: 0;
}

.contact-info {
  display: flex;
  align-items: center;
}

.whatsapp-button, .appointment-button {
  display: inline-flex;
  align-items: center;
  padding: 8px 15px;
  border-radius: var(--border-radius);
  font-weight: 600;
  font-size: 0.85rem;
  margin-left: 10px;
}

.whatsapp-button {
  background-color: #25D366;
  color: var(--white);
}

.whatsapp-button:hover {
  background-color: #128C7E;
  color: var(--white);
}

.whatsapp-button i {
  margin-right: 5px;
}

.appointment-button {
  background-color: var(--accent-color);
  color: var(--white);
}

.appointment-button:hover {
  background-color: #d43d66;
  color: var(--white);
}

/* ===== Hero Section ===== */
.hero {
  padding: 150px 0 80px;
  background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
}

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

.hero-content {
  flex: 1;
  padding-right: 50px;
}

.hero-content h1 {
  margin-bottom: 20px;
  color: var(--primary-dark);
}

.hero-content h2 {
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--text-light);
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  align-items: center; /* Adicionado para alinhar verticalmente */
  gap: 15px;
  margin-top: 30px;
}

.hero-image {
  flex: 1;
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
}

/* ===== Treatments Section ===== */
.treatments {
  background-color: var(--white);
}

.treatments-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.treatment-card {
  background-color: var(--bg-light);
  border-radius: var(--border-radius);
  padding: 30px;
  text-align: center;
  transition: var(--transition);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

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

.treatment-icon {
  width: 100px; /* Increased size */
  height: 100px; /* Increased size */
  margin: 0 auto 25px; /* Adjusted margin */
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-light); /* Changed background */
  border-radius: var(--border-radius); /* Changed to square with rounded corners */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15); /* Enhanced shadow */
  transition: var(--transition); /* Added transition */
}
.treatment-icon:hover { /* Added hover effect */
    transform: scale(1.05);
    background-color: var(--primary-color);
}

.treatment-icon img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.treatment-card h3 {
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.treatment-card p {
  margin-bottom: 20px;
  color: var(--text-light);
  font-size: 0.9rem;
}

/* ===== How It Works Section ===== */
.how-it-works {
  background-color: var(--bg-light);
}

.process-steps {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.process-step {
  flex: 1;
  text-align: center;
  position: relative;
  padding: 30px;
  background-color: var(--white);
  border-radius: var(--border-radius);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.process-step:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow);
}

.step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
}

.step-icon {
  margin: 20px auto;
  width: 100px; /* Increased size */
  height: 100px; /* Increased size */
  display: flex; /* Added */
  align-items: center; /* Added */
  justify-content: center; /* Added */
  background-color: var(--primary-light); /* Changed background */
  border-radius: var(--border-radius); /* Changed to square */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15); /* Enhanced shadow */
  transition: var(--transition); /* Added transition */
}
.step-icon:hover { /* Added hover effect */
    transform: scale(1.05);
    background-color: var(--primary-color);
}

.step-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.process-step h3 {
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.process-step p {
  color: var(--text-light);
  font-size: 0.9rem;
}

.process-cta {
  text-align: center;
  margin-top: 50px;
}

/* ===== Differentials Section ===== */
.differentials {
  background-color: var(--white);
}

.differentials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.differential-card {
  text-align: center;
  padding: 30px;
  border-radius: var(--border-radius);
  transition: var(--transition);
  border: 1px solid var(--gray-light);
}

.differential-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow);
}

.differential-icon {
  margin: 0 auto 20px;
  width: 100px; /* Increased size */
  height: 100px; /* Increased size */
  display: flex; /* Added */
  align-items: center; /* Added */
  justify-content: center; /* Added */
  background-color: var(--primary-light); /* Changed background */
  border-radius: var(--border-radius); /* Changed to square */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15); /* Enhanced shadow */
  transition: var(--transition); /* Added transition */
}
.differential-icon:hover { /* Added hover effect */
    transform: scale(1.05);
    background-color: var(--primary-color);
}

.differential-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.differential-card h3 {
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.differential-card p {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* ===== Testimonials Section ===== */
.testimonials {
  background-color: var(--bg-light);
}

.testimonials-slider {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.testimonial {
  display: flex;
  align-items: center;
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--box-shadow);
  margin: 10px;
}

.testimonial-image {
  flex: 0 0 120px;
  margin-right: 30px;
}

.testimonial-image img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid var(--gray-light);
}

.testimonial-content {
  flex: 1;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 15px;
  position: relative;
  padding-left: 25px;
}

.testimonial-text:before {
  content: '"';
  position: absolute;
  left: 0;
  top: 0;
  font-size: 2rem;
  color: var(--primary-light);
  line-height: 1;
}

.testimonial-author {
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--primary-dark);
}

.testimonial-problem {
  font-size: 0.9rem;
  color: var(--secondary-color);
}

.testimonials-navigation {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  gap: 15px;
}

.prev-testimonial, .next-testimonial {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--white);
  border: 1px solid var(--gray);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.prev-testimonial:hover, .next-testimonial:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white);
}

.corporate-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.corporate-text {
    flex: 1;
    padding-right: 20px;
}

.corporate-image {
    flex: 1;
    text-align: right;
}

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

.service-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

.check-icon {
    color: #4CAF50;
    font-weight: bold;
    margin-right: 10px;
    font-size: 18px;
}

.primary-button {
    display: inline-block;
    background-color: #4B2E83;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    text-transform: uppercase;
    margin-top: 20px;
}

}

/* ===== Final CTA Section ===== */
.final-cta {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
  color: var(--white);
  text-align: center;
  padding: 80px 0;
}

.final-cta h2 {
  color: var(--white);
  margin-bottom: 20px;
}

.final-cta p {
  max-width: 700px;
  margin: 0 auto 15px; /* Reduzido margin-bottom */
  font-size: 1.1rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.final-cta .primary-button {
  background-color: var(--white);
  color: var(--primary-dark);
  border-color: var(--white);
}

.final-cta .primary-button:hover {
  background-color: transparent;
  color: var(--white);
}

.final-cta .secondary-button {
  border-color: var(--white);
  color: var(--white);
}

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

/* ===== Footer ===== */
.site-footer {
  background-color: var(--bg-dark);
  color: var(--white);
  padding: 80px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.footer-logo img {
  max-width: 150px;
  margin-bottom: 20px;
}

.footer-logo p {
  font-size: 0.9rem;
  color: var(--gray);
}

.footer-links h3, .footer-treatments h3, .footer-contact h3 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: 1.2rem;
}

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

.footer-links li, .footer-treatments li {
  margin-bottom: 10px;
}

.footer-links a, .footer-treatments a {
  color: var(--gray);
  transition: var(--transition);
}

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

.footer-contact p {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  color: var(--gray);
}

.footer-contact p i {
  margin-right: 10px;
  color: var(--primary-light);
}

.social-media {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-media a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  transition: var(--transition);
}

.social-media a:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: var(--gray);
}

.footer-bottom a {
  color: var(--gray);
}

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

/* ===== Responsividade ===== */
@media (max-width: 1200px) {
  .treatments-grid, .differentials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  section {
    padding: 60px 0;
  }
  
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .hero {
    padding: 120px 0 60px;
  }
  
  .hero .container {
    flex-direction: column;
  }
  
  .hero-content {
    padding-right: 0;
    margin-bottom: 40px;
    text-align: center;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .process-steps {
    flex-direction: column;
  }
  
  .treatments-grid, .differentials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .corporate-content {
    flex-direction: column;
  }
  
  .corporate-text {
    order: 2;
  }
  
  .corporate-image {
    order: 1;
    margin-bottom: 30px;
  }
  
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .site-header {
    padding: 10px 0;
  }
  
  .logo {
    max-width: 150px;
  }
  
  .menu-toggle {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 80%;
    height: calc(100vh - 70px);
    background-color: var(--white);
    flex-direction: column;
    padding: 20px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    overflow-y: auto;
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-menu li {
    margin: 0;
    width: 100%;
  }
  
  .nav-menu a {
    padding: 15px 10px;
    border-bottom: 1px solid var(--gray-light);
  }
  
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  
  .dropdown.active .dropdown-menu {
    max-height: 500px;
  }
  
  .dropdown-menu a {
    padding-left: 25px;
  }
  
  .contact-info {
    display: none;
  }
  
  .testimonial {
    flex-direction: column;
    text-align: center;
  }
  
  .testimonial-image {
    margin-right: 0;
    margin-bottom: 20px;
  }
  
  .testimonial-text {
    padding-left: 0;
  }
  
  .testimonial-text:before {
    position: static;
    display: block;
    text-align: center;
    margin-bottom: 10px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}

@media (max-width: 576px) {
  .treatments-grid, .differentials-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
}

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

.fade-in {
  animation: fadeIn 0.5s ease forwards;
}

/* ===== Acessibilidade ===== */
:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

.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;
}

/* ===== Utilitários ===== */
.text-center {
  text-align: center;
}

.mt-0 {
  margin-top: 0;
}

.mb-0 {
  margin-bottom: 0;
}

.mt-1 {
  margin-top: 1rem;
}

.mb-1 {
  margin-bottom: 1rem;
}

.mt-2 {
  margin-top: 2rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.mt-3 {
  margin-top: 3rem;
}

.mb-3 {
  margin-bottom: 3rem;
}

.pt-0 {
  padding-top: 0;
}

.pb-0 {
  padding-bottom: 0;
}

.pt-1 {
  padding-top: 1rem;
}

.pb-1 {
  padding-bottom: 1rem;
}

.pt-2 {
  padding-top: 2rem;
}

.pb-2 {
  padding-bottom: 2rem;
}

.pt-3 {
  padding-top: 3rem;
}

.pb-3 {
  padding-bottom: 3rem;
}


/* ===== Testimonials Slider Styles ===== */
.testimonials-slider-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden; /* Hide testimonials outside the container */
}

.testimonials-track {
  display: flex;
  transition: transform 0.5s ease-in-out; /* Smooth transition for sliding */
  margin-bottom: 20px; /* Space below track */
}

.testimonial {
  flex: 0 0 100%; /* Each testimonial takes full width of the container */
  display: flex;
  align-items: center;
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--box-shadow);
  margin: 10px; /* Keep margin for spacing if needed */
  box-sizing: border-box; /* Include padding in width calculation */
}

.testimonial-image {
  flex: 0 0 120px;
  margin-right: 30px;
}

.testimonial-image img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid var(--gray-light);
}

.testimonial-content {
  flex: 1;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 15px;
  position: relative;
  padding-left: 25px;
}

.testimonial-text:before {
  content: '"';
  position: absolute;
  left: 0;
  top: 0;
  font-size: 2rem;
  color: var(--primary-light);
  line-height: 1;
}

.testimonial-author {
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--primary-dark);
}

.testimonial-problem {
  font-size: 0.9rem;
  color: var(--secondary-color);
}

.prev-testimonial, .next-testimonial {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--gray);
  color: var(--primary-dark);
  width: 45px; /* Slightly larger */
  height: 45px; /* Slightly larger */
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem; /* Larger arrow */
  transition: var(--transition);
  z-index: 10;
}

.prev-testimonial {
  left: -15px; /* Position outside slightly */
}

.next-testimonial {
  right: -15px; /* Position outside slightly */
}

.prev-testimonial:hover, .next-testimonial:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white);
}

.prev-testimonial.disabled, .next-testimonial.disabled {
    cursor: default;
    opacity: 0.5;
    background-color: var(--gray-light);
    border-color: var(--gray);
    color: var(--text-light);
}

/* Responsive adjustments for slider buttons */
@media (max-width: 992px) {
    .prev-testimonial {
        left: 5px;
    }
    .next-testimonial {
        right: 5px;
    }
}




/* ===== Final CTA Section (Updated Styles) ===== */
.final-cta {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
  color: var(--white);
  padding: 60px 0; /* Reduzido padding vertical */
  display: flex; /* Adicionado */
  justify-content: center; /* Adicionado */
  align-items: center; /* Adicionado */
  min-height: 250px; /* Altura mínima para melhor visualização */
}

.final-cta .cta-content { /* Nova regra para o container interno */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 800px; /* Limita largura máxima */
  padding: 0 15px; /* Padding lateral */
}

.final-cta h2 {
  color: var(--white);
  margin-bottom: 15px; /* Reduzido margin-bottom */
  font-size: 2.2rem; /* Aumentado para destaque */
}

.final-cta p {
  max-width: 700px;
  margin: 0 auto 25px; /* Ajustado margin-bottom */
  font-size: 1.2rem; /* Aumentado para destaque */
  line-height: 1.5;
}

.final-cta .primary-button {
  background-color: var(--white);
  color: var(--primary-dark);
  border-color: var(--white);
  padding: 15px 35px; /* Aumentado padding */
  font-size: 1rem; /* Aumentado font-size */
}

.final-cta .primary-button:hover {
  background-color: transparent;
  color: var(--white);
}

