/* Estilos adicionais para melhorias visuais */

/* Seção de FAQ - Melhorada para maior visibilidade */
.faq-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 20px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.faq-section h2 {
  font-size: 2.5rem;
  color: var(--accent-color);
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  font-weight: 700;
}

.faq-section h2::after {
  content: '';
  width: 100px;
  height: 4px;
  background: linear-gradient(to right, var(--primary-gradient-start), var(--primary-gradient-end));
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

.faq-item {
  margin-bottom: 20px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  border-color: var(--accent-color);
}

.faq-item.active {
  border-color: var(--accent-color);
  box-shadow: 0 8px 30px rgba(142, 68, 173, 0.3);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 30px;
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
  cursor: pointer;
  transition: all 0.3s ease;
  color: white;
}

.faq-question:hover {
  background: linear-gradient(135deg, #9b59b6 0%, #f39c12 100%);
}

.faq-question h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
  color: white;
}

.faq-toggle {
  font-size: 1.8rem;
  font-weight: bold;
  color: white;
  transition: transform 0.3s ease;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  background: rgba(255, 255, 255, 0.3);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: white;
}

.faq-answer p {
  padding: 25px 30px;
  margin: 0;
  color: #000000;
  line-height: 1.6;
  font-size: 1.2rem;
  font-weight: 900;
  border-left: 4px solid var(--accent-color);
  background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
  text-shadow: 0.5px 0.5px 1px rgba(0,0,0,0.1);
  font-family: 'Poppins', sans-serif;
}

.faq-question h3 {
  margin: 0;
  font-size: 1.2rem;
  color: var(--text-dark);
}

.faq-toggle {
  font-size: 1.5rem;
  color: var(--accent-color);
  font-weight: bold;
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  background-color: white;
}

.faq-answer p {
  padding: 20px 0;
  margin: 0;
  color: var(--text-medium);
  line-height: 1.6;
}

.faq-answer.active {
  max-height: 500px;
}

/* Seção de CTA */
.cta-section {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(to right, rgba(142, 68, 173, 0.9), rgba(230, 126, 34, 0.9));
  color: white;
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  display: inline-block;
  padding: 15px 30px;
  background-color: white;
  color: var(--accent-color);
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  background-color: #f8f9fa;
}

/* Seção de Planos */
.plans-section {
  padding: 60px 20px;
  background-color: #f8f9fa;
}

.plans-section h2 {
  font-size: 2.5rem;
  color: var(--accent-color);
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.plans-section h2::after {
  content: '';
  width: 100px;
  height: 3px;
  background: linear-gradient(to right, var(--primary-gradient-start), var(--primary-gradient-end));
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
}

.plans-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.plan-card {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  width: 300px;
  text-align: center;
  transition: all 0.3s ease;
}

.plan-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.plan-card.featured {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  border: 2px solid var(--accent-color);
}

.plan-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.plan-card h3 {
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.plan-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 20px;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  text-align: left;
}

.plan-features li {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  color: var(--text-medium);
}

.plan-features li::before {
  content: '✓';
  color: var(--accent-color);
  margin-right: 10px;
  font-weight: bold;
}

.plan-button {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(to right, var(--primary-gradient-start), var(--primary-gradient-end));
  color: white;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.plan-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(142, 68, 173, 0.3);
}

/* Melhorias para cards de serviços */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.service-card {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 25px;
  transition: all 0.3s ease;
}

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

.service-card h3, .service-card h4 {
  color: var(--accent-color);
  margin-top: 0;
  margin-bottom: 15px;
}

.service-card p {
  color: var(--text-medium);
  line-height: 1.6;
  margin-bottom: 15px;
}

.service-card ul {
  padding-left: 20px;
  color: var(--text-medium);
}

.service-card ul li {
  margin-bottom: 8px;
}

/* Responsividade */
@media (max-width: 768px) {
  .plans-container {
    flex-direction: column;
    align-items: center;
  }
  
  .plan-card, .plan-card.featured {
    width: 100%;
    max-width: 350px;
    transform: none;
  }
  
  .plan-card.featured {
    order: -1;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
}



/* Estilos para página de Downloads */
.download-list {
  max-width: 800px;
  margin: 0 auto;
}

.download-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  margin-bottom: 15px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.download-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.download-info h3 {
  color: var(--accent-color);
  margin-bottom: 5px;
  font-size: 1.2rem;
}

.download-info p {
  color: var(--text-medium);
  margin-bottom: 5px;
}

.download-size {
  font-size: 0.9rem;
  color: var(--text-medium);
  font-weight: 500;
}

.download-btn {
  background: linear-gradient(to right, var(--primary-gradient-start), var(--primary-gradient-end));
  color: white;
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.download-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(142, 68, 173, 0.3);
  color: white;
}

/* Estilos para página de Contacto */
.contact-section {
  padding: 60px 20px;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info h2 {
  color: var(--accent-color);
  margin-bottom: 20px;
  font-size: 2.2rem;
}

.contact-methods {
  margin-top: 40px;
}

.contact-method {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  padding: 20px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.contact-method:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(to right, var(--primary-gradient-start), var(--primary-gradient-end));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
}

.contact-icon i {
  font-size: 1.5rem;
  color: white;
}

.contact-details h3 {
  color: var(--accent-color);
  margin-bottom: 5px;
  font-size: 1.1rem;
}

.contact-details p {
  color: var(--text-dark);
  font-weight: 500;
  margin-bottom: 3px;
}

.contact-details span {
  color: var(--text-medium);
  font-size: 0.9rem;
}

.contact-form-container {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.contact-form-container h2 {
  color: var(--accent-color);
  margin-bottom: 30px;
  font-size: 2rem;
  text-align: center;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: var(--font-primary);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(142, 68, 173, 0.1);
}

.checkbox-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 0.95rem;
}

.checkbox-label input[type="checkbox"] {
  width: auto;
  margin-right: 10px;
}

.submit-btn {
  width: 100%;
  background: linear-gradient(to right, var(--primary-gradient-start), var(--primary-gradient-end));
  color: white;
  padding: 15px 30px;
  border: none;
  border-radius: 25px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(142, 68, 173, 0.3);
}

.error-message {
  color: var(--danger-color);
  font-size: 0.9rem;
  margin-top: 5px;
  display: block;
}

.form-success {
  display: none;
  text-align: center;
  padding: 30px;
  background: #d4edda;
  border: 1px solid #c3e6cb;
  border-radius: 10px;
  color: #155724;
}

.form-success.show {
  display: block;
}

.form-success i {
  font-size: 3rem;
  color: var(--success-color);
  margin-bottom: 15px;
}

.form-success h3 {
  color: var(--success-color);
  margin-bottom: 10px;
}

/* Responsividade para contacto */
@media (max-width: 768px) {
  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .contact-form-container {
    padding: 25px;
  }
  
  .contact-method {
    flex-direction: column;
    text-align: center;
  }
  
  .contact-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }
}

/* Melhorias gerais para cards de serviços */
.service-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, var(--primary-gradient-start), var(--primary-gradient-end));
}

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

.service-card h3 {
  color: var(--accent-color);
  margin-bottom: 15px;
  font-size: 1.3rem;
}

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

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

.service-card ul li {
  padding: 5px 0;
  color: var(--text-medium);
  position: relative;
  padding-left: 20px;
}

.service-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success-color);
  font-weight: bold;
}

/* Seção CTA melhorada */
.cta-section {
  background: linear-gradient(135deg, var(--primary-gradient-start), var(--primary-gradient-end));
  color: white;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-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"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

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

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.cta-button {
  display: inline-block;
  background: white;
  color: var(--accent-color);
  padding: 15px 40px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  color: var(--accent-color);
}


/* Estilos para animações de entrada */
.service-card,
.gallery-item,
.faq-item,
.contact-method {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.service-card.animate-in,
.gallery-item.animate-in,
.faq-item.animate-in,
.contact-method.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Botão de voltar ao topo */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(to right, var(--primary-gradient-start), var(--primary-gradient-end));
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Menu mobile responsivo */
@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1001;
  }
  
  .nav-list {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: linear-gradient(135deg, var(--primary-gradient-start), var(--primary-gradient-end));
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 80px 30px 30px;
    transition: right 0.3s ease;
    z-index: 1000;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  }
  
  .nav-list.active {
    right: 0;
  }
  
  .nav-list li {
    width: 100%;
    margin-bottom: 20px;
  }
  
  .nav-list a {
    color: white;
    font-size: 1.1rem;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    display: block;
  }
  
  .nav-list a:hover,
  .nav-list a.active {
    background: rgba(255, 255, 255, 0.1);
    padding-left: 10px;
  }
}

/* Melhorias para lazy loading */
img.lazy {
  opacity: 0;
  transition: opacity 0.3s ease;
}

img:not(.lazy) {
  opacity: 1;
}

/* Estilos para estados de loading */
.loading {
  position: relative;
}

.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid #f3f3f3;
  border-top: 2px solid var(--accent-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

/* Melhorias para acessibilidade */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Focus styles para acessibilidade */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
}

/* Melhorias para impressão */
@media print {
  .mobile-menu-btn,
  .back-to-top,
  .gallery-modal {
    display: none !important;
  }
  
  .service-card,
  .faq-item {
    break-inside: avoid;
  }
  
  a[href^="http"]:after {
    content: " (" attr(href) ")";
    font-size: 0.8em;
    color: #666;
  }
}

/* Estilos para modo escuro (preparação futura) */
@media (prefers-color-scheme: dark) {
  :root {
    --text-dark: #ffffff;
    --text-medium: #cccccc;
    --background-light: #1a1a1a;
    --background-dark: #2d2d2d;
  }
  
  body {
    background-color: var(--background-light);
    color: var(--text-dark);
  }
  
  .service-card,
  .faq-item,
  .contact-method,
  .download-item,
  .contact-form-container {
    background: var(--background-dark);
    border: 1px solid #444;
  }
}

/* Melhorias para performance */
* {
  will-change: auto;
}

.gallery-item img,
.service-card,
.faq-item {
  will-change: transform;
}

/* Estilos para estados de erro */
.error {
  border-color: var(--danger-color) !important;
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1) !important;
}

.success {
  border-color: var(--success-color) !important;
  box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.1) !important;
}

/* Melhorias para tooltips */
[data-tooltip] {
  position: relative;
  cursor: help;
}

[data-tooltip]:hover::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--text-dark);
  color: white;
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 0.9rem;
  white-space: nowrap;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

[data-tooltip]:hover::before {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(100%);
  border: 5px solid transparent;
  border-top-color: var(--text-dark);
  z-index: 1000;
}

/* Responsividade adicional */
@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-form-container {
    padding: 20px;
  }
  
  .download-item {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
  }
  
  .cta-section h2 {
    font-size: 2rem;
  }
  
  .faq-section h2 {
    font-size: 2rem;
  }
}


/* Estilos para links de contacto direto */
.contact-link {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 15px;
  background: linear-gradient(to right, var(--primary-gradient-start), var(--primary-gradient-end));
  color: white;
  text-decoration: none;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contact-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(142, 68, 173, 0.3);
  color: white;
  text-decoration: none;
}

.contact-link i {
  margin-right: 5px;
}

/* Estilos específicos para WhatsApp */
.contact-method:nth-child(2) .contact-link {
  background: linear-gradient(to right, #25D366, #128C7E);
}

.contact-method:nth-child(2) .contact-link:hover {
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

/* Estilos específicos para Telegram */
.contact-method:nth-child(1) .contact-link {
  background: linear-gradient(to right, #0088cc, #005580);
}

.contact-method:nth-child(1) .contact-link:hover {
  box-shadow: 0 4px 15px rgba(0, 136, 204, 0.3);
}

/* Estilos específicos para Telefone */
.contact-method:nth-child(3) .contact-link {
  background: linear-gradient(to right, #28a745, #20c997);
}

.contact-method:nth-child(3) .contact-link:hover {
  box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

/* Estilos específicos para Email */
.contact-method:nth-child(4) .contact-link {
  background: linear-gradient(to right, #dc3545, #fd7e14);
}

.contact-method:nth-child(4) .contact-link:hover {
  box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

/* Melhorias adicionais para os métodos de contacto */
.contact-method {
  position: relative;
  overflow: hidden;
}

.contact-method::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--primary-gradient-start), var(--primary-gradient-end));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.contact-method:hover::before {
  opacity: 1;
}

/* Responsividade para links de contacto */
@media (max-width: 768px) {
  .contact-link {
    display: block;
    text-align: center;
    margin-top: 15px;
    padding: 10px 20px;
  }
  
  .contact-method {
    margin-bottom: 25px;
  }
}


/* Seção de Contacto Rápido */
.quick-contact {
  padding: 60px 20px;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  text-align: center;
}

.quick-contact h2 {
  font-size: 2.2rem;
  color: #ffffff;
  margin-bottom: 15px;
  font-weight: 700;
}

.quick-contact p {
  font-size: 1.1rem;
  color: #ffffff;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.quick-contact-buttons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  max-width: 900px;
  margin: 0 auto;
}

.quick-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 20px;
  background: white;
  border-radius: 15px;
  text-decoration: none;
  color: var(--text-dark);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.quick-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  transition: all 0.3s ease;
}

.quick-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  text-decoration: none;
  color: var(--text-dark);
}

.quick-btn i {
  font-size: 2.5rem;
  margin-bottom: 15px;
  padding: 15px;
  border-radius: 50%;
  color: white;
}

.quick-btn span {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--text-dark);
}

.quick-btn small {
  font-size: 0.9rem;
  color: var(--text-medium);
  text-align: center;
}

/* Estilos específicos para cada botão */
.quick-btn.telegram::before {
  background: linear-gradient(to right, #0088cc, #005580);
}

.quick-btn.telegram i {
  background: linear-gradient(to right, #0088cc, #005580);
}

.quick-btn.telegram:hover {
  border-color: #0088cc;
}

.quick-btn.whatsapp::before {
  background: linear-gradient(to right, #25D366, #128C7E);
}

.quick-btn.whatsapp i {
  background: linear-gradient(to right, #25D366, #128C7E);
}

.quick-btn.whatsapp:hover {
  border-color: #25D366;
}

.quick-btn.phone::before {
  background: linear-gradient(to right, #28a745, #20c997);
}

.quick-btn.phone i {
  background: linear-gradient(to right, #28a745, #20c997);
}

.quick-btn.phone:hover {
  border-color: #28a745;
}

/* Responsividade para contacto rápido */
@media (max-width: 768px) {
  .quick-contact-buttons {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .quick-btn {
    padding: 25px 15px;
  }
  
  .quick-contact h2 {
    font-size: 1.8rem;
  }
  
  .quick-contact p {
    font-size: 1rem;
  }
}


/* Botão WhatsApp Flutuante */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
  z-index: 1000;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  background-color: #128c7e;
  transform: scale(1.1);
  box-shadow: 2px 2px 15px rgba(0,0,0,0.4);
}

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

/* Tooltip do WhatsApp */
.whatsapp-float::before {
  content: "Fale Connosco";
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  background: #333;
  color: white;
  padding: 8px 12px;
  border-radius: 5px;
  font-size: 14px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.whatsapp-float:hover::before {
  opacity: 1;
}

/* Responsivo para mobile */
@media (max-width: 768px) {
  .whatsapp-float {
    width: 55px;
    height: 55px;
    bottom: 15px;
    right: 15px;
    font-size: 26px;
  }
}


/* ===== BOTÃO WHATSAPP FLUTUANTE ===== */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 30px;
  right: 30px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
  background: linear-gradient(135deg, #128c7e, #25d366);
}

.whatsapp-float:active {
  transform: scale(0.95);
}

/* Animação de pulso para chamar atenção */
@keyframes pulse {
  0% {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.7);
  }
  100% {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  }
}

/* Tooltip para o botão WhatsApp */
.whatsapp-float::before {
  content: "Fale Connosco";
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 14px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  font-family: var(--font-primary);
}

.whatsapp-float:hover::before {
  opacity: 1;
  visibility: visible;
  right: 75px;
}

/* Responsividade para mobile */
@media (max-width: 768px) {
  .whatsapp-float {
    width: 55px;
    height: 55px;
    bottom: 20px;
    right: 20px;
    font-size: 26px;
  }
  
  .whatsapp-float::before {
    font-size: 12px;
    padding: 6px 10px;
  }
}

/* ===== MELHORIAS FAQ - VISIBILIDADE MÁXIMA ===== */
.faq-answer {
  color: #000000 !important;
  font-weight: 900 !important;
  font-size: 1.3rem !important;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8) !important;
  font-family: 'Poppins', sans-serif !important;
  line-height: 1.6 !important;
  margin-top: 10px !important;
  background: linear-gradient(135deg, rgba(142, 68, 173, 0.1), rgba(230, 126, 34, 0.1)) !important;
  padding: 15px !important;
  border-radius: 8px !important;
  border-left: 4px solid var(--primary-gradient-start) !important;
}

.faq-item {
  background: linear-gradient(135deg, #c0c0c0, #a0a0a0) !important;
  border-radius: 10px !important;
  margin-bottom: 15px !important;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2) !important;
}

/* Estilo adicional para garantir máxima visibilidade */
.faq-answer p {
  color: #000000 !important;
  font-weight: 900 !important;
  font-size: 1.3rem !important;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8) !important;
}

.faq-answer strong {
  color: #000000 !important;
  font-weight: 900 !important;
}



/* ===== SEÇÃO DE TESTEMUNHOS ===== */
.testimonials-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.testimonials-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"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23000" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  pointer-events: none;
}

.testimonials-section h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary-gradient-start), var(--primary-gradient-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 50px;
  position: relative;
}

.testimonials-section h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, var(--primary-gradient-start), var(--primary-gradient-end));
  border-radius: 2px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.testimonial-card {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: all 0.3s ease;
  border: 1px solid rgba(142, 68, 173, 0.1);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 30px;
  font-size: 80px;
  font-weight: bold;
  color: var(--primary-gradient-start);
  opacity: 0.2;
  font-family: serif;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(142, 68, 173, 0.2);
}

.testimonial-stars {
  display: flex;
  gap: 5px;
  margin-bottom: 20px;
  justify-content: center;
}

.testimonial-stars i {
  color: #ffd700;
  font-size: 1.2rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.testimonial-card p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-medium);
  margin-bottom: 25px;
  font-style: italic;
  text-align: center;
}

.testimonial-author {
  text-align: center;
  border-top: 1px solid #eee;
  padding-top: 20px;
}

.testimonial-author strong {
  display: block;
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 5px;
  font-weight: 600;
}

.testimonial-author span {
  color: var(--primary-gradient-start);
  font-size: 0.9rem;
  font-weight: 500;
}

/* Responsividade para testemunhos */
@media (max-width: 768px) {
  .testimonials-section {
    padding: 60px 0;
  }
  
  .testimonials-section h2 {
    font-size: 2rem;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .testimonial-card {
    padding: 30px 20px;
  }
  
  .testimonial-card::before {
    font-size: 60px;
    top: -5px;
    left: 20px;
  }
}


/* ===== SEÇÃO COMO FUNCIONA ===== */
.how-it-works-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 80px 0;
  color: white;
  position: relative;
  overflow: hidden;
}

.how-it-works-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"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23fff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
  pointer-events: none;
}

.how-it-works-section h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-top: 50px;
  position: relative;
  z-index: 1;
}

.step-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.step-card:hover::before {
  opacity: 1;
}

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

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-gradient-start), var(--primary-gradient-end));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 2;
}

.step-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #fff;
  opacity: 0.9;
}

.step-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #fff;
}

.step-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

/* Linha conectora entre os passos (apenas em desktop) */
@media (min-width: 1024px) {
  .steps-grid {
    position: relative;
  }
  
  .steps-grid::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3), transparent);
    z-index: 0;
  }
}

/* Responsividade para Como Funciona */
@media (max-width: 768px) {
  .how-it-works-section {
    padding: 60px 0;
  }
  
  .how-it-works-section h2 {
    font-size: 2rem;
  }
  
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .step-card {
    padding: 30px 20px;
  }
  
  .step-number {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }
  
  .step-icon {
    font-size: 2rem;
  }
}






/* Estilo para as imagens dentro dos service-cards */
.service-card-img {
    width: 100%;
    height: 200px; /* Altura fixa para padronizar */
    object-fit: cover; /* Garante que a imagem cubra o espaço sem distorcer */
    border-radius: 8px; /* Bordas arredondadas */
    margin-bottom: 15px; /* Espaçamento abaixo da imagem */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Sombra suave */
}

/* Ajustes para responsividade */
@media (max-width: 768px) {
    .service-card-img {
        height: 150px;
    }
}


