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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, sans-serif;
  background-color: #ffffff;
  color: #1a1a1a;
  overflow-x: hidden;
  position: relative;
}

/* Blue border lines */
body::before,
body::after {
  content: "";
  position: fixed;
  top: 0;
  bottom: 0;
  width: 8px;
  z-index: 9999;
}

body::before {
  left: 0;
}

body::after {
  right: 0;
}

/* Header Styles */
header {
  background-color: #ffffff;
  padding: 20px 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.logo {
  font-size: 2rem;
  font-weight: 700;
  color: #3e1e6f;
  text-decoration: none;
}

.logo img {
  max-width: 60%;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: #1a1a1a;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #3e1e6f;
}

.cta-header {
  background-color: #3e1e6f;
  color: white !important;
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cta-header:hover {
  background-color: #5a2580;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(107, 45, 153, 0.3);
}

/* Mobile Menu */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #3e1e6f;
  cursor: pointer;
}

/* Hero Section */
.hero-section {
  margin-top: 80px;
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  padding: 40px 20px;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  max-width: 500px;
}

.hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #3e1e6f;
}

.hero-content .subtitle {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 400;
  color: #1a1a1a;
  margin-bottom: 30px;
}

.hero-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #4a4a4a;
  margin-bottom: 40px;
}

.hero-content strong {
  color: #1a1a1a;
}

.cta-button {
  background-color: #ff1e79;
  color: white;
  padding: 16px 32px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.cta-button:hover {
  background-color: #e61a6b;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 30, 121, 0.3);
}

.hero-image {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Partners Section */
.partners-section {
  background-color: #f8f9fa;
  padding: 60px 20px;
  margin-top: 80px;
}

.partners-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.partners-slider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  overflow: hidden;
}

.partner-logo {
  height: 50px;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.partner-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 2rem;
  color: #3e1e6f;
  cursor: pointer;
  transition: color 0.3s ease;
}

.slider-arrow:hover {
  color: #5a2580;
}

.slider-arrow.prev {
  left: 0;
}

.slider-arrow.next {
  right: 0;
}

/* Testimonials - ATUALIZADA */
.testimonials-section {
  padding: 80px 20px;
  background-color: #f8f9fa;
}

.testimonials-section h2 {
  text-align: center;
  font-size: clamp(2rem, 4vw, 2.5rem);
  color: #3e1e6f;
  margin-bottom: 60px;
  font-weight: 700;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.testimonial-avatar {
  width: 80px;
  height: 80px;
  background-color: #f0f0f0;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #3e1e6f;
  overflow: hidden;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #4a4a4a;
  margin-bottom: 20px;
  font-style: italic;
  flex: 1;
}

.testimonial-author {
  font-size: 1rem;
  color: #3e1e6f;
  font-weight: 600;
  margin-bottom: 5px;
}

.testimonial-role {
  font-size: 0.875rem;
  color: #666;
  line-height: 1.4;
}

.testimonial-role span {
  display: block;
  font-weight: 600;
  color: #3e1e6f;
  margin-top: 5px;
}

/* Para garantir 3-4 por linha em desktop */
@media (min-width: 1200px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Responsive Design */
@media (max-width: 968px) {
  .nav-links {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-content {
    text-align: center;
    margin: 0 auto;
  }

  .hero-image {
    height: 400px;
  }

  .partners-slider {
    gap: 30px;
  }

  .partner-logo {
    height: 40px;
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .hero-section {
    padding: 20px 15px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content .subtitle {
    font-size: 1.25rem;
  }

  .hero-image {
    height: 300px;
  }

  .partners-section {
    padding: 40px 15px;
  }

  .partners-slider {
    gap: 20px;
  }

  .partner-logo {
    height: 30px;
  }

  .slider-arrow {
    font-size: 1.5rem;
  }

  /* Testimonials */
  .testimonials-section {
    padding: 60px 15px;
  }

  .testimonials-section h2 {
    font-size: 1.75rem;
    margin-bottom: 40px;
  }

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

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

  .testimonial-text {
    font-size: 0.9rem;
  }
}

/* Products Section Styles */
.products-section {
  padding: 80px 20px;
  background-color: #ffffff;
}

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

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

.product-card {
  background-color: #ffffff;
  border: 2px solid #e0e0e0;
  border-radius: 20px;
  padding: 30px;
  transition: all 0.3s ease;
}

.product-card.featured {
  background-color: #3e1e6f;
  color: white;
  border-color: #3e1e6f;
}

.product-card h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.product-card .s-plus {
  color: #ff1e79;
}

.product-card .s-plus img {
  max-height: 28px;
  width: auto;
  vertical-align: middle;
}

.product-card.featured h3 {
  color: white;
}

.product-card p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #4a4a4a;
}

.product-card.featured p {
  color: rgba(255, 255, 255, 0.9);
}

.product-cta {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.product-card.featured .product-cta {
  background-color: #ff1e79;
  color: white;
}

.product-card.featured .product-cta:hover {
  background-color: #e61a6b;
  transform: translateY(-2px);
}

.product-cta.outline {
  background-color: transparent;
  color: #ff1e79;
  border: 2px solid #ff1e79;
}

.product-cta.outline:hover {
  background-color: #ff1e79;
  color: white;
}

/* Omnichannel Section Styles */
.omnichannel-section {
  padding: 80px 20px;
  background-color: #f8f9fa;
}

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

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  color: #3e1e6f;
  text-align: center;
  margin-bottom: 60px;
  font-weight: 700;
}

.omnichannel-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.omnichannel-left h3 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  color: #1a1a1a;
  margin-bottom: 40px;
  font-weight: 700;
  line-height: 1.2;
}

.omnichannel-left .highlight {
  color: #3e1e6f;
}

.omnichannel-image {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

.omnichannel-image img {
  width: 100%;
  height: auto;
}

.omnichannel-right {
  max-width: 500px;
}

.omnichannel-desc {
  font-size: 1.25rem;
  color: #4a4a4a;
  margin-bottom: 20px;
}

.omnichannel-right p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #4a4a4a;
  margin-bottom: 40px;
}

.omnichannel-right strong {
  color: #1a1a1a;
}

/* Responsive updates for new sections */
@media (max-width: 968px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .omnichannel-left h3 {
    text-align: center;
  }

  .omnichannel-right {
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .products-section {
    padding: 60px 15px;
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .product-card {
    padding: 25px;
  }

  .omnichannel-section {
    padding: 60px 15px;
  }

  .section-title {
    font-size: 2rem;
    margin-bottom: 40px;
  }

  .omnichannel-left h3 {
    font-size: 1.75rem;
  }

  .omnichannel-image {
    max-width: 300px;
  }
}

/* Activate Customers Section Styles */
.activate-section {
  background: linear-gradient(135deg, #3d2e7c 0%, #2a1f5e 100%);
  padding: 80px 20px;
  position: relative;
}

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

.activate-content {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 60px;
  align-items: center;
  color: white;
}

.activate-left h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.activate-left p {
  font-size: 1.1rem;
  line-height: 1.6;
  opacity: 0.9;
}

.activate-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse 2s ease-in-out infinite;
}

.activate-arrow img {
  max-width: 50%;
}

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

.activate-right p {
  font-size: 1rem;
  margin-bottom: 30px;
  line-height: 1.6;
}

.activate-channels {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.channel-item {
  text-align: center;
}

.channel-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  transition: all 0.3s ease;
}

.channel-icon:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-3px);
}

.channel-icon img {
  width: 32px;
  height: 32px;
}

.channel-item span {
  font-size: 0.875rem;
  font-weight: 500;
  display: block;
  line-height: 1.3;
}

.activate-cta {
  background: #ff4a6a;
  color: white;
  padding: 16px 40px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
  width: 100%;
  text-align: center;
}

.activate-cta:hover {
  background: #e63754;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 74, 106, 0.3);
}

/* Responsive for Activate Section */
@media (max-width: 968px) {
  .activate-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .activate-arrow {
    display: none;
  }

  .activate-channels {
    grid-template-columns: repeat(2, 1fr);
    max-width: 300px;
    margin: 0 auto 40px;
  }
}

@media (max-width: 640px) {
  .activate-section {
    padding: 60px 15px;
  }

  .activate-left h2 {
    font-size: 2rem;
  }

  .activate-channels {
    gap: 15px;
  }

  .channel-icon {
    width: 50px;
    height: 50px;
  }
}

/* Features Section Styles */
.features-section {
  padding: 80px 20px;
  background-color: #ffffff;
}

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

.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 10px;
  position: relative;
}

.feature-block:last-child {
  margin-bottom: 0;
}

.arrow-indicator {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
}

.feature-content h3 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  color: #3e1e6f;
  margin-bottom: 20px;
  font-weight: 700;
}

.feature-content p {
  font-size: 1.25rem;
  color: #1a1a1a;
  margin-bottom: 20px;
  line-height: 1.6;
}

.feature-content .feature-description {
  font-size: 1rem;
  color: #4a4a4a;
  margin-bottom: 40px;
}

.feature-cta {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  background-color: #3e1e6f;
  color: white;
}

.feature-cta:hover {
  background-color: #5a2580;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(107, 45, 153, 0.3);
}

.feature-cta.pink {
  background-color: #ff1e79;
}

.feature-cta.pink:hover {
  background-color: #e61a6b;
  box-shadow: 0 8px 20px rgba(255, 30, 121, 0.3);
}

.feature-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-image img {
  width: 100%;
  max-width: 400px;
  height: auto;
  position: relative;
  z-index: 2;
}

/* Responsive for Features Section */
@media (max-width: 968px) {
  .feature-block {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 80px;
    text-align: center;
  }

  .feature-block.business-block {
    display: flex;
    flex-direction: column-reverse;
  }

  .feature-image::before {
    display: none;
  }

  .arrow-indicator {
    display: none;
  }

  .feature-content h3 {
    font-size: 2rem;
  }
}

@media (max-width: 640px) {
  .features-section {
    padding: 60px 15px;
  }

  .feature-block {
    margin-bottom: 60px;
  }

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

  .feature-content .feature-description {
    font-size: 0.95rem;
  }

  .feature-image img {
    max-width: 300px;
  }
}

/* Soul Bot Section Styles */
.soulbot-section {
  padding: 80px 20px;
  background-color: #f8f9fa;
}

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

/* Soul Bot Banner */
.soulbot-banner {
  background-color: #3e1e6f;
  border-radius: 20px;
  padding: 40px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  margin-bottom: 60px;
  overflow: visible;
}

.soulbot-character {
  position: absolute;
  left: -38px;
  bottom: -15px;
  width: 225px;
  height: auto;
  z-index: 2;
}

.soulbot-content {
  flex: 1;
  color: white;
  margin-left: 150px;
}

.soulbot-content h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.soulbot-content p {
  font-size: 1.1rem;
  opacity: 0.9;
}

.soulbot-cta {
  background-color: #ff1e79;
  color: white;
  padding: 14px 32px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.soulbot-cta:hover {
  background-color: #e61a6b;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 30, 121, 0.3);
}

/* Cases Carousel */
.cases-carousel {
  margin-bottom: 40px;
}

.cases-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.case-card {
  background-color: #3e1e6f;
  color: white;
  padding: 40px 30px;
  border-radius: 20px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 250px;
}

.case-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(107, 45, 153, 0.3);
}

.case-description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  font-weight: 400;
}

.case-author {
  font-size: 0.875rem;
  opacity: 0.8;
  margin-top: auto;
}

.view-all-cases {
  display: block;
  text-align: center;
  background-color: #ff1e79;
  color: white;
  padding: 14px 32px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  width: fit-content;
  margin: 0 auto;
  transition: all 0.3s ease;
}

.view-all-cases:hover {
  background-color: #e61a6b;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 30, 121, 0.3);
}

/* Footer Styles */
.site-footer {
  background-color: #3d2e7c;
  color: white;
  padding: 60px 20px 20px;
  margin-top: 80px;
}

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

.footer-content {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 60px;
  margin-bottom: 40px;
}

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

.footer-logo {
  font-size: 2rem;
  font-weight: 700;
  color: white;
  text-decoration: none;
}

.footer-logo img {
  max-width: 60%;
}

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

.social-links a {
  color: white;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.social-links a:hover {
  opacity: 1;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

a.footer-link {
  color: white;
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer-column h4 {
  font-size: 1.1rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 12px;
}

.footer-column a {
  color: white;
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer-column a:hover {
  opacity: 1;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.contact-item svg {
  flex-shrink: 0;
  margin-top: 2px;
  opacity: 0.7;
}

.contact-item p {
  margin: 0;
  line-height: 1.5;
  font-size: 0.95rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  opacity: 0.7;
}

.footer-bottom a {
  color: white;
  text-decoration: underline;
}

/* Responsive for Soul Bot and Footer */
@media (max-width: 968px) {
  .soulbot-banner {
    flex-direction: column;
    text-align: center;
    padding: 40px 30px;
  }

  .soulbot-character {
    position: static;
    margin-bottom: 20px;
  }

  .soulbot-content {
    margin-left: 0;
    margin-bottom: 20px;
  }

  .cases-carousel {
    flex-direction: column;
  }

  .cases-wrapper {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .soulbot-section {
    padding: 60px 15px;
  }

  .soulbot-banner {
    padding: 30px 20px;
  }

  .soulbot-content h2 {
    font-size: 1.5rem;
  }

  .case-card {
    padding: 30px 20px;
  }

  .case-description {
    font-size: 1.1rem;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .site-footer {
    padding: 40px 30px 20px;
  }
}

/* Companies Section */

.companies {
  margin-top: 20px;
  padding: 0 45px;
}

.companies-title {
  color: var(--dark-gray);
}

.companies-carousel {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
}

.carousel-container {
  overflow: hidden;
  border-radius: 15px;
  background: rgba(0, 0, 0, 0.02);
  padding: 30px 0;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  gap: 10px;
}

.carousel-slide {
  min-width: 120px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.company-logo {
  max-width: 80px;
  max-height: 80px;
  transition: all 0.3s ease;
}

.company-logo:hover {
  opacity: 1;
  transform: scale(1.2);
}

/* Botões de navegação */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(62, 30, 111, 0.8);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.carousel-btn:hover {
  background: #3e1e6f;
  transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
  left: -25px;
}

.carousel-btn.next {
  right: -25px;
}

/* Extra small devices */
@media (max-width: 480px) {
  .hero-btn,
  .benefit-cta,
  .pabx-cta a,
  .cta-btn-large {
    padding: 12px 24px;
    font-size: 0.9rem;
  }

  .testimonial-avatar {
    width: 60px;
    height: 60px;
  }

  .form-submit {
    padding: 14px 28px;
    font-size: 1rem;
  }
}
