/* Reset e configurações base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Otimizações de Performance para Imagens */
img {
  max-width: 100% !important;
  height: auto !important;
  display: block !important;
  /* Otimizações de performance */
  will-change: auto;
  backface-visibility: hidden;
  transform: translateZ(0);
  /* Transição suave para carregamento */
  opacity: 1;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Efeito de carregamento para imagens */
img:not(.loaded) {
  opacity: 0.8;
  filter: blur(1px);
}

img.loaded {
  opacity: 1;
  filter: blur(0);
}

/* Skeleton loading para imagens dos carrosséis */
.transformation-images img:not(.loaded),
.testimonial-image img:not(.loaded) {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
}

@keyframes loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/* Preload de imagens críticas */
.banner-image,
.header-logo-img {
  priority: high;
  will-change: auto;
  backface-visibility: hidden;
  transform: translateZ(0);
}

/* Otimização específica para logo e banner */
.header-logo-img {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
}

.banner-image {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
}

/* Remove animação quando imagem carrega */
.header-logo-img[src],
.banner-image[src] {
  animation: none;
  background: none;
}

html,
body {
  margin: 0;
  padding: 0;
  line-height: 1;
}

/* Desabilitar detecção automática de telefones no iOS */
a[href^="tel:"] {
  color: inherit !important;
  text-decoration: none !important;
}

/* Desabilitar detecção automática de telefones no iOS */
.location-details p {
  color: var(--gray-text) !important;
  text-decoration: none !important;
  -webkit-tap-highlight-color: transparent;
  pointer-events: none;
}

/* Desabilitar completamente a detecção de telefones */
* {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Permitir seleção de texto no footer */
.footer-section p,
.footer-section a {
  user-select: text;
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  color: var(--white) !important;
}

:root {
  /* Cores baseadas na logo e referências */
  --primary-orange: #ff8b3d;
  --primary-green: #4caf50;
  --dark-green: #2e7d32;
  --light-orange: #ffb74d;
  --cream: #fff8e1;
  --white: #ffffff;
  --dark-text: #2c2c2c;
  --gray-text: #666666;
  --light-gray: #f5f5f5;
  --shadow: rgba(0, 0, 0, 0.1);
  --shadow-strong: rgba(0, 0, 0, 0.2);

  /* Tipografia */
  --font-family: "Poppins", sans-serif;
  --h1-size: 2rem;
  --h2-size: 1.75rem;
  --h3-size: 1.5rem;
  --h4-size: 1.25rem;
  --body-size: 1rem;
  --small-size: 0.875rem;
}

body {
  font-family: var(--font-family);
  line-height: 1.6;
  color: var(--dark-text);
  background-color: var(--white);
  overflow-x: hidden;
}

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

/* Header Principal */
.main-header {
  background: white;
  padding: 20px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  margin-bottom: 0;
  position: relative;
  z-index: 100;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header-logo {
  text-align: center;
}

.header-logo-img {
  width: 60px;
  height: auto;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

/* Banner Principal */
.banner-section {
  width: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 1;
  transform: translateZ(0);
  will-change: transform;
}

.banner-container {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
  transform: translateZ(0);
}

.banner-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 0;
  padding: 0;
  transform: translateZ(0);
  will-change: transform;
}

/* Seções principais */
.main-content {
  background: linear-gradient(135deg, #f5f0e8 0%, #fdf8f0 100%);
  position: relative;
  z-index: 1;
}

section {
  padding: 30px 0;
}

.section-title {
  font-size: var(--h2-size);
  font-weight: 700;
  color: var(--dark-text);
  text-align: center;
  margin-bottom: 30px;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--primary-orange),
    var(--primary-green)
  );
  border-radius: 2px;
}

/* Seção do Vídeo */
.video-section {
  background: var(--white);
  padding: 10px 0;
  position: relative;
  z-index: 1;
}

/* Botão CTA após o vídeo */
.video-cta-container {
  text-align: center;
  padding: 20px 0;
  background: linear-gradient(135deg, #f0ebe0 0%, #e8e0d0 100%);
}

.video-cta-btn {
  background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
  color: var(--white);
  border: none;
  padding: 15px 40px;
  font-size: var(--h4-size);
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(76, 175, 80, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.video-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(76, 175, 80, 0.4);
}

.video-cta-btn:active {
  transform: translateY(-1px);
}

.video-wrapper {
  max-width: 600px;
  margin: 0 auto;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 32px var(--shadow);
}

/* Seção Quem Somos */
.about-section {
  background: linear-gradient(135deg, #e8e0d0 0%, #e0d8c8 100%);
}

.about-content {
  text-align: center;
  margin-bottom: 40px;
}

.about-content p {
  font-size: var(--body-size);
  margin-bottom: 20px;
  color: var(--gray-text);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 15px;
  max-width: 800px;
  margin: 0 auto;
}

.stat-item {
  background: linear-gradient(135deg, #ffffff 0%, #fdf8f0 100%);
  padding: 25px 15px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 32px var(--shadow);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 139, 61, 0.1);
  position: relative;
  overflow: hidden;
}

.stat-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-orange),
    var(--primary-green)
  );
}

.stat-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px var(--shadow);
  border-color: var(--primary-orange);
}

.stat-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 15px;
  color: var(--primary-orange);
  transition: all 0.3s ease;
}

.stat-icon svg {
  width: 100%;
  height: 100%;
}

.stat-item:hover .stat-icon {
  color: var(--primary-green);
  transform: scale(1.1);
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 8px;
  line-height: 1;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--gray-text);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Estilo especial para TikTok "em breve" */
.tiktok-soon {
  opacity: 0.7;
  font-style: italic;
}

/* Estilo para o recebedor PIX */
.pix-recipient {
  text-align: center;
  color: var(--gray-text);
  font-size: 0.9rem;
  margin-bottom: 15px;
  padding: 10px;
  background: rgba(76, 175, 80, 0.1);
  border-radius: 8px;
}

/* Seção Salve o Abrigo */
.save-shelter-section {
  background: var(--white);
  text-align: center;
}

.banner2-container {
  margin-bottom: 30px;
}

.banner2-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 32px var(--shadow);
}

.urgent-message h3 {
  color: var(--primary-orange);
  font-size: var(--h3-size);
  margin-bottom: 15px;
  font-weight: 600;
}

.urgent-message p {
  font-size: var(--body-size);
  color: var(--gray-text);
  margin-bottom: 10px;
}

.highlight {
  color: var(--primary-green) !important;
  font-weight: 600;
  font-size: 1.1rem !important;
}

/* Seção Impacto */
.impact-section {
  margin-top: 40px;
  padding: 30px;
  background: linear-gradient(
    135deg,
    rgba(255, 139, 61, 0.15),
    rgba(76, 175, 80, 0.15)
  );
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 139, 61, 0.3);
}

.impact-section h3 {
  color: var(--dark-text);
  text-align: center;
  margin-bottom: 30px;
  font-size: var(--h3-size);
}

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

.impact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 15px;
  border: 1px solid rgba(255, 139, 61, 0.2);
}

.impact-value {
  background: var(--primary-orange);
  color: var(--white);
  padding: 8px 15px;
  border-radius: 25px;
  font-weight: 600;
  font-size: var(--small-size);
  min-width: 70px;
  text-align: center;
  flex-shrink: 0;
}

.impact-description {
  color: var(--dark-text);
  font-size: var(--small-size);
  line-height: 1.4;
}

@media (min-width: 768px) {
  .impact-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media (min-width: 1024px) {
  .impact-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
}

/* Seção Doação PIX */
.donation-section {
  background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
  color: var(--white);
  overflow: visible !important;
  position: relative !important;
}

.donation-section .section-title {
  color: var(--white);
}

.donation-section .section-title::after {
  background: var(--white);
}

.pix-container {
  max-width: 700px !important;
  margin: 0 auto !important;
  padding: 25px !important;
  width: 100% !important;
  box-sizing: border-box !important;
  overflow: visible !important;
  position: relative !important;
}

.pix-logo {
  text-align: center;
  margin-bottom: 20px;
}

.pix-icon {
  width: 60px;
  height: 60px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.pix-instructions {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 15px;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
}

.pix-instructions h3 {
  margin-bottom: 15px;
  color: var(--cream);
}

.pix-instructions ol {
  padding-left: 20px;
}

.pix-instructions li {
  margin-bottom: 8px;
  color: var(--cream);
}

.pix-key-container {
  background: var(--white);
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  margin-bottom: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.pix-key {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark-text);
  background: var(--light-gray);
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 20px;
  word-break: break-all;
}

.copy-btn {
  background: linear-gradient(
    135deg,
    var(--primary-orange),
    var(--light-orange)
  );
  color: var(--white);
  border: none;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: var(--body-size);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 20px rgba(255, 139, 61, 0.3);
}

.copy-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 139, 61, 0.4);
}

.copy-btn:active {
  transform: translateY(0);
}

.copy-icon {
  font-size: 1.2rem;
}

.pix-image {
  text-align: center !important;
  margin: 30px 0 !important;
  width: 100% !important;
  overflow: visible !important;
  position: relative !important;
  display: block !important;
}

.pix-qr {
  max-width: 300px !important;
  width: auto !important;
  height: auto !important;
  border-radius: 15px !important;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
  display: block !important;
  margin: 0 auto !important;
  object-fit: contain !important;
  object-position: center !important;
  /* Garantir que a imagem seja exibida corretamente */
  min-width: 0 !important;
  min-height: 0 !important;
  flex-shrink: 0 !important;
  flex-grow: 0 !important;
}

.donation-values {
  background: rgba(255, 255, 255, 0.1);
  padding: 25px;
  border-radius: 15px;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
}

.donation-values h3 {
  margin-bottom: 20px;
  color: var(--cream);
  text-align: center;
}

.value-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  gap: 15px;
}

.value {
  background: var(--primary-orange);
  color: var(--white);
  padding: 8px 15px;
  border-radius: 25px;
  font-weight: 600;
  font-size: var(--small-size);
  min-width: 70px;
  text-align: center;
  flex-shrink: 0;
}

.description {
  color: var(--cream);
  font-size: var(--small-size);
  line-height: 1.4;
}

.donation-footer {
  text-align: center;
  font-style: italic;
  color: var(--cream);
  font-size: var(--small-size);
}

/* Seção Histórias de Transformação */
.transformation-section {
  background: linear-gradient(135deg, #f0ebe0 0%, #e8e0d0 100%);
  padding: 40px 0;
}

.transformation-subtitle {
  text-align: center;
  color: var(--gray-text);
  margin-bottom: 30px;
  font-size: var(--body-size);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.transformation-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.transformation-card {
  background: var(--light-gray);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 8px 32px var(--shadow);
  transition: all 0.3s ease;
}

.transformation-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px var(--shadow);
}

.transformation-images {
  margin-bottom: 25px;
}

.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.image-container {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  aspect-ratio: 1;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.image-container:hover img {
  transform: scale(1.05);
}

.image-label {
  position: absolute;
  bottom: 10px;
  left: 10px;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.before-label {
  background: rgba(255, 139, 61, 0.9);
  color: var(--white);
}

.after-label {
  background: rgba(76, 175, 80, 0.9);
  color: var(--white);
}

.transformation-content h3 {
  color: var(--primary-orange);
  font-size: var(--h3-size);
  margin-bottom: 15px;
  font-weight: 600;
}

.transformation-content p {
  color: var(--gray-text);
  line-height: 1.6;
  font-size: var(--body-size);
}

.transformation-message {
  text-align: center;
  padding: 20px 0;
}

.transformation-message p {
  color: var(--gray-text);
  font-size: var(--body-size);
  margin-bottom: 25px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.transformation-btn {
  background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
  color: var(--white);
  border: none;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: var(--body-size);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(76, 175, 80, 0.3);
}

.transformation-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(76, 175, 80, 0.4);
}

/* Responsividade para transformações */
@media (min-width: 768px) {
  .transformation-grid {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
  }

  .transformation-card {
    padding: 40px;
  }

  .before-after {
    gap: 20px;
  }
}

@media (min-width: 1024px) {
  .transformation-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Seção Depoimentos */
.testimonials-section {
  background: transparent;
  padding: 30px 0;
  position: relative;
}

.testimonials-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-orange) 0%,
    var(--primary-green) 100%
  );
}

.testimonials-subtitle {
  text-align: center;
  color: var(--gray-text);
  font-size: var(--body-size);
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.testimonials-carousel {
  position: relative;
  max-width: 800px;
  margin: 0 auto 20px;
  overflow: hidden;
  border-radius: 20px;
  cursor: grab;
  user-select: none;
}

.testimonials-carousel:active {
  cursor: grabbing;
}

.testimonial-item {
  display: none;
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  will-change: transform, opacity;
}

.testimonial-item.active {
  display: block;
  opacity: 1;
  transform: translateX(0);
  position: relative;
}

.testimonial-card {
  background: var(--light-gray);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 8px 32px var(--shadow);
  transition: all 0.3s ease;
  text-align: center;
  width: 100%;
  height: auto;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

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

.testimonial-image {
  width: 120px;
  height: 120px;
  margin: 0 auto 15px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--primary-orange);
  box-shadow: 0 4px 20px var(--shadow);
  transition: transform 0.3s ease;
}

.testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.testimonial-image:hover img {
  transform: scale(1.05);
}

.testimonial-content h4 {
  color: var(--primary-orange);
  font-size: var(--h3-size);
  margin-bottom: 8px;
  font-weight: 600;
}

.testimonial-content p {
  color: var(--gray-text);
  font-size: var(--body-size);
  line-height: 1.6;
  font-style: italic;
  margin: 0;
  flex: 1;
  display: flex;
  align-items: center;
  text-align: center;
}

.testimonial-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 15px 0;
  flex-wrap: nowrap;
}

.testimonial-btn {
  background: var(--primary-green);
  color: var(--white);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
  flex-shrink: 0;
  min-width: 50px;
  min-height: 50px;
}

.testimonial-btn:hover {
  background: var(--dark-green);
  transform: scale(1.1);
}

.testimonial-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.testimonial-indicators {
  display: flex;
  gap: 10px;
}

.testimonial-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gray-text);
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
  min-width: 12px;
  min-height: 12px;
}

.testimonial-indicator.active {
  background: var(--primary-green);
  transform: scale(1.2);
  width: 14px;
  height: 14px;
}

/* Responsividade para depoimentos */
@media (max-width: 768px) {
  .testimonial-card {
    padding: 25px;
    min-height: 320px;
  }

  .testimonial-content p {
    font-size: 0.95rem;
    line-height: 1.5;
  }
}

@media (max-width: 480px) {
  .testimonial-card {
    padding: 20px;
    min-height: 300px;
  }

  .testimonial-content p {
    font-size: 0.9rem;
    line-height: 1.4;
  }
}

/* Seção Localização */
.location-section {
  background: linear-gradient(135deg, #e8e0d0 0%, #e0d8c8 100%);
}

.location-subtitle {
  text-align: center;
  color: var(--gray-text);
  margin-bottom: 30px;
  font-size: var(--body-size);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.location-info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
}

.location-card {
  background: linear-gradient(135deg, #ffffff 0%, #fdf8f0 100%);
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 4px 20px var(--shadow);
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: all 0.3s ease;
}

.location-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px var(--shadow);
}

.location-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(
    135deg,
    var(--primary-orange),
    var(--primary-green)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}

.location-icon svg {
  width: 24px;
  height: 24px;
}

.location-details h3 {
  color: var(--dark-text);
  font-size: var(--h4-size);
  margin-bottom: 10px;
  font-weight: 600;
}

.location-details p {
  color: var(--gray-text);
  line-height: 1.5;
  margin-bottom: 5px;
}

.location-details small {
  color: var(--primary-green);
  font-style: italic;
  font-size: 0.8rem;
}

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

.nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px var(--shadow);
  width: fit-content;
  min-width: 200px;
  max-width: 300px;
  box-sizing: border-box;
}

.nav-btn.google-maps {
  background: #4285f4;
  color: var(--white);
}

.nav-btn.google-maps:hover {
  background: #3367d6;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(66, 133, 244, 0.4);
}

.nav-icon {
  width: 20px;
  height: 20px;
}

.map-container {
  display: grid;
  gap: 25px;
}

.map-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px var(--shadow);
}

.map-wrapper iframe {
  width: 100%;
  height: 400px;
  border: none;
}

.map-overlay {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.95);
  padding: 15px 20px;
  border-radius: 10px;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px var(--shadow);
}

.map-info h4 {
  color: var(--primary-orange);
  margin-bottom: 5px;
  font-size: 1rem;
}

.map-info p {
  color: var(--gray-text);
  font-size: 0.9rem;
  margin: 0;
}

.visit-info {
  background: var(--white);
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 4px 20px var(--shadow);
}

.visit-info h4 {
  color: var(--primary-green);
  margin-bottom: 15px;
  font-size: var(--h4-size);
}

.visit-info ul {
  list-style: none;
  padding: 0;
}

.visit-info li {
  color: var(--gray-text);
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
  line-height: 1.4;
}

.visit-info li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-green);
  font-weight: bold;
}

/* Responsividade para localização */
@media (min-width: 768px) {
  .location-content {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
  }

  .map-wrapper iframe {
    height: 450px;
  }
}

@media (min-width: 1024px) {
  .location-info {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .map-wrapper iframe {
    height: 500px;
  }

  .location-content {
    gap: 60px;
  }
}

/* Call to Action */
.cta-section {
  background: linear-gradient(
    135deg,
    var(--primary-orange),
    var(--light-orange)
  );
  color: var(--white);
  text-align: center;
  padding: 40px 0;
}

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

.cta-section p {
  font-size: var(--body-size);
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  color: var(--cream);
}

.cta-btn {
  background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
  color: var(--white);
  border: none;
  padding: 20px 40px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(76, 175, 80, 0.3);
  text-decoration: none;
  display: inline-block;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

/* Footer */
.footer {
  background: var(--dark-text);
  color: var(--white);
  padding: 50px 0 20px;
}

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

.footer-logo {
  text-align: center !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
}

.footer-logo img {
  width: 80px;
  height: auto;
  margin-bottom: 15px;
}

.footer-logo h3 {
  color: var(--primary-orange);
  font-size: var(--h3-size);
  margin-bottom: 10px;
}

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

.footer-section h4 {
  color: var(--primary-green);
  margin-bottom: 15px;
  font-size: var(--h4-size);
}

.footer-section p,
.footer-link,
.social-link {
  color: var(--white);
  text-decoration: none;
  margin-bottom: 8px;
  display: block;
  transition: color 0.3s ease;
}

.footer-link:hover,
.social-link:hover {
  color: var(--primary-orange);
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #444;
}

.footer-bottom p {
  color: var(--white);
  font-size: var(--small-size);
  margin-bottom: 5px;
}

/* Responsividade para mobile */
@media (max-width: 767px) {
  .testimonial-item {
    height: 300px;
    padding: 25px;
  }

  .testimonials-carousel {
    height: 300px;
  }
}

/* Responsividade para tablets */
@media (min-width: 768px) {
  .header-logo-img {
    width: 150px;
  }

  .main-header {
    padding: 15px 0;
  }

  section {
    padding: 40px 0;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .stats-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .stat-item {
    padding: 30px 20px;
  }

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

  .stat-number {
    font-size: 2.5rem;
  }

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

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

  .testimonial-item {
    padding: 40px;
    height: 350px;
  }

  .testimonials-carousel {
    height: 350px;
  }
}

/* Responsividade para desktop */
@media (min-width: 1024px) {
  .header-logo-img {
    width: 180px;
  }

  .main-header {
    padding: 20px 0;
  }

  section {
    padding: 50px 0;
  }

  .section-title {
    font-size: 3rem;
  }

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

  .footer-logo {
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
  }

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

  .value-item {
    align-items: center;
  }

  .testimonials-carousel {
    max-width: 700px;
  }

  .testimonial-item {
    padding: 50px;
    height: 450px;
  }

  .testimonials-carousel {
    height: 450px;
  }
}

/* Animações suaves */
.smooth-scroll {
  scroll-behavior: smooth;
}

/* Efeitos de hover para elementos interativos */
.testimonial-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px var(--shadow);
}

.stat-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px var(--shadow);
}

/* Feedback visual para cópia do PIX */
.copy-success {
  background: var(--primary-green) !important;
  transform: scale(1.05);
}

/* Removido para evitar duplicação do checkmark */

/* Otimizações para acessibilidade */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Estados de foco para navegação por teclado */
button:focus,
.footer-link:focus,
.social-link:focus {
  outline: 2px solid var(--primary-orange);
  outline-offset: 2px;
}

/* Loading states */
.loading {
  opacity: 0.7;
  pointer-events: none;
}

/* Botão WhatsApp Flutuante */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  animation: pulse 2s infinite;
}

.whatsapp-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: var(--white);
  padding: 15px 20px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: 0.9rem;
}

.whatsapp-btn:hover {
  background: #128c7e;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.whatsapp-text {
  display: none;
}

.whatsapp-tooltip {
  position: absolute;
  bottom: 70px;
  right: 0;
  background: var(--dark-text);
  color: var(--white);
  padding: 10px 15px;
  border-radius: 10px;
  font-size: 0.8rem;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px var(--shadow);
}

.whatsapp-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  right: 20px;
  border: 5px solid transparent;
  border-top-color: var(--dark-text);
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(-5px);
}

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

/* Responsividade do WhatsApp */
@media (min-width: 768px) {
  .whatsapp-btn {
    padding: 12px 18px;
  }

  .whatsapp-text {
    display: inline;
  }

  .whatsapp-btn {
    border-radius: 30px;
  }
}

/* Melhorias para telas pequenas */
@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .logo {
    width: 60px;
  }

  .logo-container {
    top: 15px;
    left: 15px;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .testimonial-item {
    padding: 20px;
  }

  .testimonial-image {
    width: 80px;
    height: 80px;
  }

  .pix-key {
    font-size: 0.9rem;
    padding: 10px;
  }

  .copy-btn {
    padding: 12px 20px;
    font-size: 0.9rem;
  }
}

/* ===== CARROSSEL DE TRANSFORMAÇÕES ===== */

.transformation-carousel {
  position: relative;
  overflow: hidden;
  margin: 40px 0;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.transformation-carousel:active {
  cursor: grabbing;
}

.transformation-item {
  display: none;
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  will-change: transform, opacity;
}

.transformation-item.active {
  display: block;
  opacity: 1;
  transform: translateX(0);
  position: relative;
}

.transformation-item.prev {
  display: block;
  opacity: 0;
  transform: translateX(-100%);
  position: absolute;
}

.transformation-item.next {
  display: block;
  opacity: 0;
  transform: translateX(100%);
  position: absolute;
}

.transformation-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 30px 0;
  flex-wrap: nowrap;
  width: 100%;
}

.transformation-btn {
  background: var(--primary-green);
  color: var(--white);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  line-height: 1;
}

.transformation-btn:hover {
  background: var(--dark-green);
  transform: scale(1.1);
}

.transformation-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.transformation-indicators {
  display: flex;
  gap: 10px;
}

.transformation-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gray-text);
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
  min-width: 12px;
  min-height: 12px;
}

.transformation-indicator.active {
  background: var(--primary-green);
  transform: scale(1.2);
  width: 14px;
  height: 14px;
}

.transformation-cta-btn {
  background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
  color: var(--white);
  border: none;
  padding: 25px 50px;
  border-radius: 50px;
  font-size: 1.3rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
  margin-top: 10px;
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.transformation-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

/* ===== REORGANIZAÇÃO DA SEÇÃO DE LOCALIZAÇÃO ===== */

.location-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.location-info {
  order: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.map-container {
  order: 2;
  width: 100%;
}

.location-card {
  background: var(--white);
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 4px 20px var(--shadow);
  text-align: center;
  max-width: 400px;
  width: 100%;
}

.navigation-buttons {
  margin-top: 20px;
}

/* ===== RESPONSIVIDADE PARA O CARROSSEL ===== */

@media (max-width: 768px) {
  .transformation-controls {
    gap: 15px;
  }

  .transformation-btn {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }

  .transformation-indicator {
    width: 10px;
    height: 10px;
  }

  .transformation-indicator.active {
    width: 12px;
    height: 12px;
  }

  .carousel-controls {
    gap: 15px;
  }

  .carousel-btn {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
  }

  .indicator {
    width: 12px;
    height: 12px;
  }

  .indicator.active {
    width: 14px;
    height: 14px;
  }

  .location-content {
    gap: 20px;
  }

  .location-card {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .transformation-btn {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }

  .transformation-controls {
    gap: 10px;
  }

  .transformation-indicator {
    width: 8px;
    height: 8px;
  }

  .transformation-indicator.active {
    width: 10px;
    height: 10px;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .carousel-controls {
    gap: 10px;
  }

  .indicator {
    width: 10px;
    height: 10px;
  }

  .indicator.active {
    width: 12px;
    height: 12px;
  }

  /* Ajustes para imagem PIX em telas pequenas */
  .pix-qr {
    max-width: 250px !important;
  }

  .pix-container {
    padding: 20px !important;
  }

  /* Ajustes para botão Transformar Mais Vidas em telas pequenas */
  .transformation-cta-btn {
    padding: 20px 40px;
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .pix-qr {
    max-width: 200px !important;
  }

  .pix-container {
    padding: 15px !important;
  }

  .pix-image {
    margin: 20px 0 !important;
  }

  /* Garantir que o logo do footer fique centralizado em mobile */
  .footer-logo {
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
  }
}
