/* Component Styles for FCx Labs Website */
/*
  Desenvolvedor: Carlos Bertoldo
  Data: 2 de setembro de 2025
  Projeto: FCx Labs - Ferreira Costa
*/

/* Global body styles */
html {
  margin: 0;
  padding: 0;
}

body {
  margin: 0 !important;
  padding: 0 !important;
  font-family: 'Inter', sans-serif;
  font-size: 0.97rem;
  font-weight: 400;
  line-height: 1.55;
  color: var(--gray-900);
  background: var(--white);
  /* Remove blue highlight on mobile */
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Remove tap highlight from all interactive elements */
*, *:before, *:after {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

/* Allow text selection where needed */
p, span, div {
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}

/* Bidirectional Scroll Animations */
.animate-element {
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* PWA Install Button Styles */
.install-app-container {
  position: fixed;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: white;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 4px 12px rgba(122, 193, 67, 0.3);
  z-index: 9999;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
  max-width: 200px;
  display: flex;
  align-items: center;
}

.install-app-container:hover {
  background: #6ba836;
  transform: translateX(-50%) translateY(-2px);
  box-shadow: 0 6px 16px rgba(122, 193, 67, 0.4);
}

.install-app-container button:first-child {
  flex: 1;
}

.install-app-button {
  position: fixed;
  top: 20px;
  right: 20px;
  background: var(--primary);
  color: white;
  border: none;
  padding: 12px 16px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(122, 193, 67, 0.3);
  z-index: 1000;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
}

.install-app-button:hover {
  background: #6ba836;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(122, 193, 67, 0.4);
}

.install-app-button:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(122, 193, 67, 0.3);
}

/* Animação para mensagens de sucesso */
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsividade para o botão de instalação */
@media (max-width: 768px) {
  .install-app-container {
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 13px;
    max-width: 180px;
  }
  
  .install-app-container:hover {
    transform: translateX(-50%) translateY(-2px);
  }
  
  .install-app-container button:first-child {
    padding: 10px 12px;
    padding-right: 6px;
  }
  
  .install-app-button {
    top: 15px;
    right: 15px;
    padding: 10px 14px;
    font-size: 13px;
    border-radius: 20px;
  }
}

@media (max-width: 480px) {
  .install-app-container {
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    max-width: 160px;
  }
  
  .install-app-container:hover {
    transform: translateX(-50%) translateY(-2px);
  }
  
  .install-app-container button:first-child {
    padding: 8px 10px;
    padding-right: 4px;
  }
  
  .install-app-button {
    top: 10px;
    right: 10px;
    padding: 8px 12px;
    font-size: 12px;
    border-radius: 18px;
  }
}

.animate-hidden {
  opacity: 0;
  transform: translateY(40px) scale(0.95);
}

.animate-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Different animation styles for different elements */
.pilar-item.animate-hidden {
  transform: translateY(30px) scale(0.98);
}

.pilar-item.animate-visible {
  transform: translateY(0) scale(1);
}

.testimonial.animate-hidden {
  transform: translateY(25px) rotateX(10deg);
  opacity: 0.2;
}

.testimonial.animate-visible {
  transform: translateY(0) rotateX(0deg);
  opacity: 1;
}

/* Section animations */
section.animate-hidden {
  transform: translateY(20px);
  opacity: 0.6;
}

section.animate-visible {
  transform: translateY(0);
  opacity: 1;
}

.content-section.animate-hidden {
  transform: translateY(15px) scale(0.98);
  opacity: 0.5;
}

.content-section.animate-visible {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.section-title.animate-hidden {
  transform: translateY(10px);
  opacity: 0.3;
}

.section-title.animate-visible {
  transform: translateY(0);
  opacity: 1;
}

/* Exit animations when completely out of viewport */
.animate-exit {
  transform: translateY(60px) scale(0.9) !important;
  opacity: 0.1 !important;
  transition: all 0.8s ease !important;
}

/* Animation Keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Header Component */
.site-header {
  background: var(--white);
  padding: 15px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-logo img {
  height: 50px;
  width: auto;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

.main-nav a {
  text-decoration: none;
  color: var(--dark-color);
  font-weight: 500;
  transition: color 0.3s ease;
}

.main-nav a:hover {
  color: var(--primary-color);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  gap: 4px;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--dark-color);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 80px 0;
  min-height: 500px;
  display: flex;
  align-items: center;
}

.hero-section .row {
  align-items: center;
  gap: 60px;
}

.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--dark-color);
  font-weight: 700;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #6c757d;
  line-height: 1.6;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  max-width: 500px;
}

.hero-image svg {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  max-width: 500px;
}

/* Pilares Section */
.pilares-section {
  padding: 20px 0 80px 0;
  margin-top: 10px;
}

.pilares-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.pilares-grid-2cols {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 2.5rem;
  align-items: start;
  margin-top: 2.5rem;
}

.pilares-list {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.pilar-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  margin-bottom: 0.1rem;
  text-align: left;
  padding: 30px 20px;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pilar-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pilar-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #222;
}

.pilar-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: var(--dark-color);
}

.pilar-content p {
  font-size: 1rem;
  color: #222;
  line-height: 1.5;
}

.pilares-img {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
  position: relative;
}

.pilares-badges {
  position: relative;
  width: 200px;
  height: 200px;
  margin-top: -20px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none !important;
  box-shadow: none !important;
  overflow: visible;
}

.badge-x {
  position: relative;
  z-index: 2;
  width: 70px !important;
  height: 70px !important;
  background: none !important;
  box-shadow: none !important;
  pointer-events: none;
}

.badge-dream {
  position: absolute;
  z-index: 1;
  width: 150px !important;
  height: 150px !important;
  background: none !important;
  box-shadow: none !important;
  transition: transform 0.8s cubic-bezier(.4,2,.3,1);
}

.pilares-img img {
  width: 300px;
  height: 100%;
  object-fit: cover;
  display: block;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
}

/* Accordion Component */
.accordion-section {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  background: #f8f9fa;
}

.accordion-section .beneficios-destaque {
  animation: fadeInUp 0.6s ease-out;
}

.accordion-section h2 {
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.beneficios-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: flex-start;
}

.beneficios-info {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  padding: 1.5rem 1.2rem 1.2rem 1.2rem;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: slideInLeft 0.8s ease-out;
}

.beneficios-info:nth-child(2) {
  animation: slideInRight 0.8s ease-out;
}

.beneficios-info:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.beneficios-info h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 0.7rem;
}

.beneficios-info .beneficios-destaque {
  color: #e71c35;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

.beneficios-info p {
  font-size: 1.05rem;
  color: #444;
  margin-bottom: 0.7rem;
}

.accordion-container {
  background: none;
  box-shadow: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  width: 100%;
}

.accordion-item {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e9ecef;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  overflow: hidden;
  transition: all 0.3s ease;
  width: 100%;
  animation: slideInRight 0.6s ease-out;
}

.accordion-item:nth-child(1) { animation-delay: 0.1s; }
.accordion-item:nth-child(2) { animation-delay: 0.2s; }
.accordion-item:nth-child(3) { animation-delay: 0.3s; }
.accordion-item:nth-child(4) { animation-delay: 0.4s; }
.accordion-item:nth-child(5) { animation-delay: 0.5s; }
.accordion-item:nth-child(6) { animation-delay: 0.6s; }
.accordion-item:nth-child(7) { animation-delay: 0.7s; }
.accordion-item:nth-child(8) { animation-delay: 0.8s; }
.accordion-item:nth-child(9) { animation-delay: 0.9s; }

.accordion-item:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  border-color: #90d470;
  transform: translateY(-1px);
}

.accordion-header {
  margin: 0;
  padding: 0;
  width: 100%;
}

.accordion-button {
  width: 100%;
  padding: 1rem 1.2rem;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
  font-family: inherit;
  box-sizing: border-box;
}

.accordion-button:hover {
  background: #f8f9fa;
}

.accordion-button[aria-expanded="true"] {
  background: #f8f9fa;
  color: #6c757d;
}

.accordion-button[aria-expanded="true"] .accordion-toggle {
  transform: rotate(180deg);
}

.accordion-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7ac143;
  background: #f0f8e8;
  border-radius: 50%;
  flex-shrink: 0;
}

.accordion-title {
  font-size: 1.08rem;
  font-weight: 600;
  color: #222;
  flex: 1;
  margin: 0;
}

.accordion-toggle {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  color: #6c757d;
}

.accordion-panel {
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-panel[hidden] {
  max-height: 0;
}

.accordion-panel:not([hidden]) {
  max-height: 200px;
}

.accordion-content {
  padding: 0 1.2rem 1.2rem 1.2rem;
  color: #555;
  line-height: 1.6;
}

.beneficios-imagens {
  position: relative;
  width: 100%;
  margin: 1.2rem auto 0 auto;
  height: 445px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.beneficios-imagens:hover {
  transform: scale(1.01);
  box-shadow: 0 6px 24px rgba(0,0,0,0.14);
}

.beneficio-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  will-change: opacity;
}

.beneficio-img.active {
  opacity: 1;
  z-index: 2;
}

/* Specific override only for slideshow images */
.beneficio-img.animate-hidden,
.beneficio-img.animate-visible {
  opacity: 0;
  transform: none;
}

.beneficio-img.active.animate-hidden,
.beneficio-img.active.animate-visible {
  opacity: 1;
}

/* Benefícios - Animação de encontro das divs */
.beneficios-left,
.beneficios-right {
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.beneficios-left.animate-hidden {
  opacity: 0;
  transform: translateX(-60px);
}

.beneficios-left.animate-visible {
  opacity: 1;
  transform: translateX(0);
}

.beneficios-right.animate-hidden {
  opacity: 0;
  transform: translateX(60px);
}

.beneficios-right.animate-visible {
  opacity: 1;
  transform: translateX(0);
}

/* Staggered delay for the meeting effect */
.beneficios-left {
  transition-delay: 0.1s;
}

.beneficios-right {
  transition-delay: 0.3s;
}

/* Responsive Design - Mobile First Approach */

/* Small tablets and large phones */
@media (max-width: 992px) {
  .pilares-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
  }
  
  .pilares-grid-2cols {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .beneficios-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Mobile and small tablets */
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }
  
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
  }
  
  .main-nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .main-nav ul {
    flex-direction: column;
    gap: 0;
    padding: 20px 0;
  }
  
  .main-nav li {
    border-bottom: 1px solid #f0f0f0;
  }
  
  .main-nav li:last-child {
    border-bottom: none;
  }
  
  .main-nav a {
    display: block;
    padding: 15px 20px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
  }
  
  .main-nav a:hover {
    background: #f8f9fa;
    padding-left: 30px;
  }
  
  .hero-content h1 {
    font-size: 1.8rem;
    line-height: 1.3;
  }
  
  .pilares-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .pilar-item {
    padding: 20px 15px;
    text-align: left;
  }
  
  .pilar-content h3 {
    font-size: 1.05rem;
  }
  
  .pilar-content p {
    font-size: 0.95rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: left;
    padding: 0 20px 1.2rem 20px;
  }
  
  .footer-section:not(:first-child) {
    margin-bottom: 1rem;
  }
  
  .container {
    padding: 0 20px;
  }
}

@media (max-width: 900px) {
  .pilares-grid-2cols {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .pilares-img {
    justify-content: center;
    margin-top: 1.5rem;
    order: -1;
  }
  
  .pilares-img img {
    width: 100%;
    max-width: 400px;
  }
  
  .beneficios-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .beneficios-info {
    margin-bottom: 1rem;
  }
  
  .beneficios-imagens {
    width: 300px;
    height: 300px;
    margin-top: 1rem;
  }
  
  .pilares-badges {
    width: 150px;
    height: 150px;
  }
  
  .badge-x {
    width: 50px !important;
    height: 50px !important;
  }
  
  .badge-dream {
    width: 120px !important;
    height: 120px !important;
  }
}

/* Testimonial Section */
.testimonial-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 4rem 0;
  position: relative;
}

.testimonial-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 100 100"><circle cx="10" cy="10" r="1" fill="%23e9ecef" opacity="0.3"/><circle cx="50" cy="50" r="1" fill="%23e9ecef" opacity="0.3"/><circle cx="90" cy="10" r="1" fill="%23e9ecef" opacity="0.3"/></svg>') repeat;
  pointer-events: none;
}

/* Extra small devices (phones, 480px and down) */
@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
  
  .site-logo img {
    height: 40px;
  }
  
  .hero-overlay {
    position: static;
    margin: 20px auto;
    max-width: calc(100% - 40px);
    padding: 16px 12px;
    box-sizing: border-box;
  }
  
  .hero-overlay h1 {
    font-size: 1.2rem;
    line-height: 1.3;
  }
  
  .hero-overlay p {
    font-size: 0.9rem;
    margin-bottom: 15px;
  }
  
  .cta-black {
    padding: 6px 14px;
    font-size: 0.9rem;
  }
  
  .pilares-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .pilar-item {
    padding: 16px 12px;
    gap: 0.8rem;
  }
  
  .pilar-icon {
    width: 40px;
    height: 40px;
  }
  
  .pilar-content h3 {
    font-size: 1rem;
  }
  
  .pilar-content p {
    font-size: 0.9rem;
  }
  
  .accordion-item {
    margin: 0 -5px;
    border-radius: 8px;
  }
  
  .accordion-button {
    padding: 12px 15px;
    font-size: 0.95rem;
  }
  
  .accordion-title {
    font-size: 1rem;
  }
  
  .accordion-icon {
    width: 24px;
    height: 24px;
  }
  
  .beneficios-info {
    padding: 1.2rem 1rem;
  }
  
  .beneficios-info h2 {
    font-size: 1.4rem;
  }
  
  .beneficios-info p {
    font-size: 1rem;
  }
  
  .elementor-testimonial-wrapper {
    padding: 1rem 0.8rem;
    margin: 0 0.5rem;
  }
  
  .elementor-testimonial-wrapper::before {
    font-size: 3rem;
    top: -3px;
    left: 10px;
  }
  
  .elementor-testimonial-content blockquote {
    font-size: 0.9rem;
    line-height: 1.4;
  }
  
  .elementor-testimonial-avatar {
    width: 50px;
    height: 50px;
  }
  
  .elementor-testimonial-name {
    font-size: 1rem;
  }
  
  .elementor-testimonial-job {
    font-size: 0.85rem;
  }
}

/* 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 */
@media (prefers-contrast: high) {
  .accordion-button {
    border: 2px solid currentColor;
  }
  
  .pilar-item {
    border: 1px solid currentColor;
  }
}

/* =================================
   TESTIMONIAL SECTION (ELEMENTOR)
   ================================= */

.testimonial-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 4rem 0;
  position: relative;
}

.testimonial-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 100 100"><circle cx="10" cy="10" r="1" fill="%23e9ecef" opacity="0.3"/><circle cx="50" cy="50" r="1" fill="%23e9ecef" opacity="0.3"/><circle cx="90" cy="10" r="1" fill="%23e9ecef" opacity="0.3"/></svg>') repeat;
  pointer-events: none;
}

.elementor-testimonial-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  padding: 3rem 2.5rem;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.elementor-testimonial-wrapper:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 48px rgba(0,0,0,0.15);
}

.elementor-testimonial-wrapper::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 30px;
  font-size: 6rem;
  color: #7ac143;
  font-family: Georgia, serif;
  line-height: 1;
  opacity: 0.3;
}

.elementor-testimonial-content {
  margin-bottom: 2rem;
}

.elementor-testimonial-content blockquote {
  font-size: 1.2rem;
  line-height: 1.7;
  color: #333;
  font-style: italic;
  margin: 0;
  text-align: center;
}

.elementor-testimonial-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.elementor-testimonial-image {
  flex-shrink: 0;
}

.elementor-testimonial-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #7ac143;
  box-shadow: 0 4px 16px rgba(122, 193, 67, 0.2);
  transition: transform 0.3s ease;
}

.elementor-testimonial-avatar:hover {
  transform: scale(1.1);
}

.elementor-testimonial-details {
  text-align: left;
}

.elementor-testimonial-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 0.3rem;
}

.elementor-testimonial-job {
  font-size: 0.95rem;
  color: #7ac143;
  font-weight: 500;
}

/* Dark mode preference */
@media (prefers-color-scheme: dark) {
  /* Future dark mode styles can be added here */
}

/* Footer Component */
.site-footer {
  background: #2c2c2c;
  color: #f8f9fa;
  padding: 2.5rem 0 0 0;
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
}
.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 1.2rem 20px;
  box-sizing: border-box;
}

/* Desativa o container de links no desktop */
.footer-links-container {
  display: contents;
}
.footer-logo img {
  max-width: 120px;
  height: auto;
  margin-bottom: 1.2rem;
}
.footer-section {
  margin-bottom: 0.5rem;
}
.footer-section h3 {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: #f8f9fa;
}
.footer-section p, .footer-section a {
  font-weight: normal;
  font-size: 0.75rem;
  margin-bottom: 0.3rem;
  line-height: 1.4;
}
.footer-section a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-section a:hover {
  color: #7ac143;
}
.footer-bottom {
  border-top: none;
  margin: 1.1rem 0 0 0;
  padding: 0.7rem 0 1rem 0;
  text-align: center;
  font-size: 0.75rem;
  color: #999;
  background: #2c2c2c;
}

.footer-bottom p {
  margin: 0;
  padding: 0;
}

/* Footer responsive layout for mobile */
@media (max-width: 768px) {
  /* Testimonials */
  .testimonial-section {
    padding: 2rem 0;
  }
  
  .elementor-testimonial-wrapper {
    margin: 0 0.5rem;
    padding: 1.5rem 1rem;
  }
  
  .elementor-testimonial-wrapper::before {
    font-size: 3rem;
    top: -3px;
    left: 10px;
  }
  
  .elementor-testimonial-content blockquote {
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 1rem;
  }
  
  .elementor-testimonial-meta {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
  
  .elementor-testimonial-details {
    text-align: center;
  }
  
  .elementor-testimonial-avatar {
    width: 50px;
    height: 50px;
  }
  
  .elementor-testimonial-details h4 {
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
  }
  
  .elementor-testimonial-details p {
    font-size: 0.75rem;
  }
  
  /* Testemunhos */
  #testemunhos .elementor-testimonial-content {
    font-size: 0.8rem;
    line-height: 1.3;
  }
  
  /* Pilares */
  .pilares-section {
    padding: 0 0 0 0;
    margin-top: 0;
  }
  
  .pilares-grid {
    margin-top: 25px;
    gap: 20px;
  }
  
  .pilares-img {
    margin: 0 0;
  }
  
  .pilares-img img {
    margin: 1.5rem 0;
  }
  
  /* Footer */
  .footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    grid-template-columns: none;
    padding: 1rem 0.5rem;
  }
  
  .footer-section:first-child {
    order: -1;
    width: 100%;
    margin-bottom: 0.5rem;
    text-align: center;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #444;
  }
  
  .footer-section:first-child .footer-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 0.3rem;
  }
  
  .footer-section:first-child .footer-logo img {
    max-width: 120px;
    height: auto;
  }
  
  .footer-section:first-child p {
    font-size: 0.85rem;
    line-height: 1.3;
    margin-bottom: 1rem;
    display: block; /* Mostra o texto descritivo na versão mobile */
    color: #ccc;
  }
  
  .footer-links-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
    width: 100%;
    max-width: 350px;
    margin-top: 1rem;
    padding: 0 0;
  }
  
  .footer-links-container .footer-section {
    text-align: left;
    margin: 0;
    border: none !important;
    padding-bottom: 0 !important;
  }
  
  .footer-links-container .footer-section h3 {
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #fff;
    white-space: nowrap;
  }
  
  .footer-links-container .footer-section p {
    font-size: 0.7rem;
    line-height: 1.3;
    margin-bottom: 0.25rem;
    display: block !important;
  }
  
  .footer-links-container .footer-section p a {
    color: #ccc;
    text-decoration: none;
  }
  
  .footer-links-container .footer-section p a:hover {
    color: #fff;
  }
}

/* Typography improvements */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.section-header h2, .beneficios-destaque {
  font-weight: 700;
  font-size: 1.45rem;
}

.cta-black, .cta-basic {
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
}

.accordion-title {
  font-size: 1rem;
}
