/* 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 {
  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: #005787;
  --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: #005787;
  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: linear-gradient(135deg, #f0ebe0 0%, #e8e0d0 100%);
  padding: 10px 0 0 0;
  position: relative;
  z-index: 1;
}

/* Seção Informações da Organização */
.organization-info-section {
  background: linear-gradient(135deg, #f0ebe0 0%, #e8e0d0 100%);
  padding: 0 0 25px 0;
  position: relative;
  z-index: 1;
}

.org-info-card {
  max-width: 400px;
  margin: 0 auto;
  background: #f5f5f5;
  border-radius: 12px;
  padding: 16px 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.org-header {
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e5e7eb;
  text-align: center;
}

.org-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark-text);
  margin: 0;
  line-height: 1.2;
  text-align: center;
}

.org-info-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: space-between;
}

.org-info-content {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.org-logo-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #fff4f0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(255, 107, 53, 0.15);
  overflow: hidden;
  position: relative;
}

.org-logo-img {
  width: 120%;
  height: 120%;
  object-fit: cover;
  object-position: center;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: high-quality;
  image-rendering: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  will-change: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
}

.org-info-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.org-info-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff4f0;
  color: #005787;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.org-info-icon svg {
  width: 14px;
  height: 14px;
}

.org-info-text {
  flex: 1;
}

.org-info-label {
  font-size: 10px;
  font-weight: 600;
  color: #374151;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 3px;
}

.org-info-value {
  font-size: 14px;
  font-weight: 600;
  color: #005787;
  line-height: 1.3;
}

/* Responsividade */
@media (max-width: 480px) {
  .organization-info-section {
    padding: 20px 0;
  }

  .org-info-card {
    padding: 14px 16px;
    margin: 0 15px;
    max-width: calc(100% - 30px);
  }

  .org-header {
    margin-bottom: 12px;
    padding-bottom: 10px;
  }

  .org-name {
    font-size: 15px;
  }

  .org-info-wrapper {
    gap: 12px;
  }

  .org-info-content {
    gap: 12px;
    flex: 1;
  }

  .org-logo-circle {
    width: 60px;
    height: 60px;
    padding: 5px;
    flex-shrink: 0;
  }

  .org-info-item {
    gap: 9px;
  }

  .org-info-icon {
    width: 26px;
    height: 26px;
    margin-top: 1px;
  }

  .org-info-icon svg {
    width: 13px;
    height: 13px;
  }

  .org-info-label {
    font-size: 9px;
    margin-bottom: 2px;
  }

  .org-info-value {
    font-size: 13px;
  }
}

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

.video-cta-btn {
  background: #24ca67;
  color: var(--white);
  border: none;
  padding: 18px 50px;
  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(36, 202, 103, 0.4);
  background: #1a9b4f;
}

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

.heartbeat-animation {
  animation: heartbeat 3s infinite;
}

/* Seção Meta de Doação */
.donation-goal-section {
  background: linear-gradient(135deg, #f0ebe0 0%, #e8e0d0 100%);
  padding: 20px 0;
  text-align: center;
}

/* Mensagens de doação */
.donation-messages {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  max-width: 300px;
}

.donation-message {
  background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
  color: var(--white);
  padding: 15px 20px;
  border-radius: 10px;
  margin-bottom: 10px;
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
  transform: translateX(100%);
  opacity: 0;
  transition: all 0.5s ease;
  font-size: 0.9rem;
  font-weight: 600;
}

.donation-message.show {
  transform: translateX(0);
  opacity: 1;
}

.donation-message.hide {
  transform: translateX(100%);
  opacity: 0;
}

.goal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.goal-header {
  margin-bottom: 30px;
}

.goal-title {
  font-size: 1.4rem;
  color: #8b4513;
  margin-bottom: 10px;
  font-weight: 400;
  line-height: 1.3;
}

.goal-subtitle {
  font-size: 0.95rem;
  color: var(--gray-text);
  margin-bottom: 0;
  line-height: 1.4;
}

.goal-subtitle strong {
  font-weight: 700;
  color: var(--dark-text);
}

.goal-target {
  color: var(--dark-text);
  font-weight: 600;
}

.goal-progress-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--white);
  border-radius: 15px;
  padding: 25px 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  max-width: 700px;
  margin: 0 auto;
  gap: 30px;
}

.goal-stats {
  flex: 1;
  text-align: left;
}

.goal-header-row {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 15px;
}

.goal-amount {
  margin-bottom: 0;
  text-align: left;
}

.amount-raised {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark-text);
  line-height: 1;
}

.amount-label {
  display: block;
  font-size: 0.9rem;
  color: var(--gray-text);
  margin-top: 5px;
}

.expenses-details {
  margin: 15px 0;
  padding: 12px 0;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
}

.expense-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  font-size: 0.85rem;
}

.expense-label {
  color: var(--gray-text);
  font-weight: 500;
}

.expense-value {
  color: var(--dark-text);
  font-weight: 600;
}

.goal-details {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.goal-target {
  font-size: 0.9rem;
  color: var(--dark-text);
  text-decoration: none;
  font-weight: 600;
}

.expenses-details-btn {
  width: 100%;
  max-width: 400px;
  margin: 15px auto 0;
  padding: 12px 20px;
  background: #24ca67;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 2px 8px rgba(36, 202, 103, 0.3);
}

.expenses-details-btn:hover {
  background: #1a9b4f;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(36, 202, 103, 0.4);
}

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

/* Modal de Detalhes das Despesas */
.expenses-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  animation: fadeIn 0.3s ease;
}

.expenses-modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.expenses-modal-content {
  background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
  margin: 20px;
  padding: 0;
  border-radius: 15px;
  max-width: 550px;
  width: 100%;
  max-height: 85vh;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  animation: slideUp 0.3s ease;
  border: 1px solid #e8e8e8;
  position: relative;
}

@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.expenses-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px 18px 20px;
  border-bottom: 2px solid #005787;
  background: linear-gradient(135deg, #fff5f0 0%, #ffffff 100%);
  position: relative;
  border-radius: 15px 15px 0 0;
}

.expenses-modal-header h2 {
  margin: 0;
  font-size: 1.3rem;
  color: var(--dark-text);
  font-weight: 700;
  flex: 1;
}

.expenses-modal-header .close-btn {
  background: #005787;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 1;
  color: white;
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(255, 139, 61, 0.3);
}

.expenses-modal-header .close-btn:hover {
  background: #ff7700;
  transform: scale(1.05);
  box-shadow: 0 3px 12px rgba(255, 139, 61, 0.5);
}

.expenses-modal-header .close-btn svg {
  width: 20px;
  height: 20px;
  stroke-width: 3;
}

.expenses-modal-body {
  padding: 18px 20px;
  background: #ffffff;
  max-height: calc(85vh - 80px);
  overflow-y: auto;
}

.expenses-intro {
  color: var(--gray-text);
  font-size: 0.85rem;
  margin-bottom: 15px;
  line-height: 1.5;
}

.expenses-detailed-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 15px;
}

.expense-detail-item {
  padding: 14px 16px;
  background: linear-gradient(135deg, #fefefe 0%, #f8f8f8 100%);
  border-radius: 8px;
  border: 1px solid #e8e8e8;
  border-left: 4px solid #005787;
  transition:
    background-color 0.2s ease,
    box-shadow 0.2s ease,
    border-left-color 0.2s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  cursor: default;
  user-select: none;
}

.expense-detail-item:hover {
  background: linear-gradient(135deg, #fff5f0 0%, #fefefe 100%);
  box-shadow: 0 4px 8px rgba(255, 139, 61, 0.15);
  border-left-color: #ff7700;
}

.expense-detail-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
  width: 100%;
}

.expense-detail-icon {
  font-size: 1.3rem;
  width: 24px;
  text-align: center;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.expense-detail-title {
  flex: 1;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark-text);
  text-align: left;
  min-width: 0;
}

.expense-detail-amount {
  font-size: 0.95rem;
  font-weight: 700;
  color: #4caf50;
  text-align: right;
  flex-shrink: 0;
  white-space: nowrap;
  min-width: 110px;
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, sans-serif;
  letter-spacing: 0.2px;
}

.expense-detail-description {
  margin: 0;
  padding-left: 36px;
  color: var(--gray-text);
  font-size: 0.8rem;
  line-height: 1.4;
  text-align: left;
}

.expenses-total {
  padding: 14px 16px;
  background: #24ca67;
  border-radius: 8px;
  text-align: center;
  font-size: 0.95rem;
  color: white;
  border: none;
  box-shadow: 0 4px 12px rgba(36, 202, 103, 0.3);
  margin-top: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.expenses-total:hover {
  background: #1a9b4f;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(36, 202, 103, 0.4);
}

.expenses-total strong {
  color: white;
  font-size: 1rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.donations-count {
  font-size: 0.9rem;
  color: var(--gray-text);
}

.circular-progress-small {
  position: relative;
  flex-shrink: 0;
}

.progress-ring-small {
  transform: rotate(-90deg);
}

.progress-ring-circle {
  transition: stroke-dashoffset 0.5s ease-in-out;
  stroke-linecap: round;
}

.progress-text-small {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.progress-percentage-small {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-orange);
  line-height: 1;
}

/* Carrossel Quem Somos */
.about-carousel {
  position: relative;
  max-width: 800px;
  margin: 0 auto 30px;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 8px 32px var(--shadow);
}

.about-slide {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.about-slide.active {
  display: block;
  opacity: 1;
}

.about-slide-content {
  display: flex;
  align-items: center;
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  min-height: 300px;
}

.about-slide-image {
  flex: 1;
  height: 300px;
  min-height: 300px;
  max-height: 300px;
  overflow: hidden;
}

.about-slide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-slide-text {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-slide-text h3 {
  font-size: 1.8rem;
  color: var(--primary-orange);
  margin-bottom: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-slide-text p {
  font-size: var(--body-size);
  color: var(--gray-text);
  line-height: 1.6;
  margin: 0;
}

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

.about-btn {
  background: var(--primary-orange);
  color: var(--white);
  border: none;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.1s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

.about-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

.about-complementary-text {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 0 20px;
}

.about-complementary-text p {
  font-size: var(--body-size);
  color: var(--gray-text);
  line-height: 1.6;
  margin-bottom: 20px;
}

.about-complementary-text p:last-child {
  margin-bottom: 0;
}

/* Seção Impacto - Texto introdutório */
.impact-intro {
  text-align: center;
  margin-bottom: 30px;
  padding: 0 20px;
}

.impact-intro p {
  font-size: 1.1rem;
  color: var(--gray-text);
  line-height: 1.6;
  margin: 0;
}

.impact-intro .highlight-number,
.urgent-message .highlight-number {
  color: var(--primary-green);
  font-weight: 700;
  font-size: 1.2em;
}

.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%);
  padding-top: 10px;
  padding-bottom: 10px;
}

.about-section .section-title {
  margin-top: 0;
}

/* Seção Impacto da Doação */
.impact-donation-section {
  padding-top: 10px;
}

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

/* Seção Banner 3 */
.banner3-section {
  background: transparent;
  padding: 0;
  text-align: center;
  width: 100%;
  margin: 0;
}

.banner3-container {
  width: 100%;
  margin: 0;
  padding: 0;
}

.banner3-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
  box-shadow: none;
}

.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);
  transition: all 0.3s ease;
}

.impact-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 139, 61, 0.15);
}

.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;
  white-space: nowrap;
}

.impact-description {
  color: var(--dark-text);
  font-size: var(--small-size);
  line-height: 1.4;
  flex: 1;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

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

  .impact-item {
    padding: 20px;
  }

  .impact-description {
    font-size: 0.9rem;
  }
}

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

  .impact-item {
    padding: 25px;
  }

  .impact-description {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .impact-item {
    padding: 12px;
    gap: 12px;
  }

  .impact-description {
    font-size: 0.8rem;
    line-height: 1.3;
  }

  .impact-value {
    padding: 6px 12px;
    font-size: 0.8rem;
    min-width: 60px;
  }
}

/* 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: green;
  color: var(--white);
  border: none;
  padding: 18px 50px;
  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: 10px 0 10px 0;
}

.transformation-subtitle {
  text-align: center;
  color: var(--gray-text);
  margin-bottom: 15px;
  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: 0;
  margin-top: 0;
}

.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: 20px;
  margin-top: 0;
  font-weight: 600;
  text-align: center;
}

.transformation-content p {
  color: var(--gray-text);
  line-height: 1.6;
  font-size: var(--body-size);
  margin-top: 20px;
  margin-bottom: 0;
}

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

/* 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: 15px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.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;
  height: auto;
  min-height: auto;
}

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

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

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

.testimonial-image {
  width: 100%;
  max-width: 500px;
  max-height: 500px;
  height: auto;
  margin: 0 auto;
  border-radius: 0;
  overflow: hidden;
  border: none;
  box-shadow: none;
  transition: transform 0.3s ease;
  position: relative;
}

.testimonial-image img {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: contain;
  transition: transform 0.3s ease;
  display: block;
  border-radius: 12px;
}

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

.testimonial-content {
  margin-bottom: 0;
  padding-bottom: 0;
}

.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: 0.95rem;
  line-height: 1.6;
  font-style: italic;
  margin: 0;
  padding-bottom: 0;
  text-align: center;
}

.testimonial-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 30px 0 15px 0;
  flex-wrap: nowrap;
  position: relative;
  z-index: 10;
}

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

.testimonial-btn:hover {
  background: var(--dark-orange);
  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: #ddd;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
  min-width: 12px;
  min-height: 12px;
}

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

/* Responsividade para depoimentos */
@media (max-width: 768px) {
  /* Responsividade para seção de meta de doação */
  .goal-title {
    font-size: 1.2rem;
    line-height: 1.4;
  }

  .goal-subtitle {
    font-size: 0.9rem;
  }

  .goal-progress-container {
    flex-direction: row;
    gap: 15px;
    padding: 20px;
    max-width: 100%;
  }

  .goal-header-row {
    flex-direction: row;
    gap: 15px;
    align-items: center;
  }

  .goal-stats {
    text-align: center;
    width: 100%;
  }

  .expenses-details {
    max-width: 100%;
  }

  .expenses-details-btn {
    max-width: 100%;
    font-size: 1.1rem;
    padding: 10px 15px;
    margin-top: 10px;
  }

  .expenses-modal-content {
    margin: 10px;
    max-height: 90vh;
    max-width: 95%;
  }

  .expenses-modal-header {
    padding: 15px;
  }

  .expenses-modal-header h2 {
    font-size: 1.1rem;
  }

  .expenses-modal-header {
    padding: 18px 15px 15px 15px;
  }

  .expenses-modal-header .close-btn {
    width: 32px;
    height: 32px;
    top: 8px;
    right: 8px;
  }

  .expenses-modal-header .close-btn svg {
    width: 18px;
    height: 18px;
  }

  .expense-detail-amount {
    min-width: 100px;
    font-size: 0.9rem;
  }

  .expenses-modal-body {
    padding: 15px;
  }

  .expenses-intro {
    font-size: 0.8rem;
    margin-bottom: 12px;
  }

  .expense-detail-item {
    padding: 12px;
  }

  .expense-detail-header {
    flex-wrap: nowrap;
    gap: 10px;
    margin-bottom: 4px;
  }

  .expense-detail-icon {
    font-size: 1.1rem;
    width: 20px;
  }

  .expense-detail-title {
    font-size: 0.9rem;
    flex: 1;
    min-width: 0;
  }

  .expense-detail-amount {
    font-size: 0.9rem;
    white-space: nowrap;
  }

  .expense-detail-description {
    padding-left: 30px;
    margin-top: 4px;
    font-size: 0.75rem;
  }

  .expenses-total {
    padding: 12px;
    font-size: 0.9rem;
  }

  .expenses-total strong {
    font-size: 0.95rem;
  }

  .circular-progress-small {
    flex-shrink: 0;
    transform: scale(0.8);
  }

  .amount-raised {
    font-size: 1.6rem;
  }

  .expenses-details {
    margin: 12px 0;
    padding: 10px 0;
  }

  .expense-item {
    font-size: 0.8rem;
    padding: 5px 0;
  }

  .progress-percentage-small {
    font-size: 1.2rem;
  }

  /* Responsividade para carrossel Quem Somos */
  .about-slide-content {
    flex-direction: column;
    min-height: auto;
  }

  .about-slide-image {
    height: 200px;
    min-height: 200px;
    max-height: 200px;
  }

  .about-slide-text {
    padding: 30px 20px;
  }

  .about-slide-text h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
  }

  .about-slide-text p {
    font-size: 0.95rem;
  }

  .about-btn {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

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

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

  /* Responsividade para botões de depoimentos */
  .testimonial-btn {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

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

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

  /* Responsividade para texto introdutório do impacto */
  .impact-intro p {
    font-size: 1rem;
  }

  .impact-intro .highlight-number {
    font-size: 1.1em;
  }

  .testimonial-card {
    padding: 25px 25px 15px 25px;
    min-height: auto;
  }

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

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

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

/* Seção Redes Sociais */
.social-section {
  text-align: center;
  background: linear-gradient(135deg, #e8e0d0 0%, #e0d8c8 100%);
  padding: 40px 0;
  width: 100%;
  position: relative;
}

.social-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%
  );
}

.social-section .container {
  background: #ffffff;
  border: 1px solid rgba(16, 36, 60, 0.08);
  border-radius: 20px;
  padding: 30px 20px;
  box-shadow: 0 16px 28px rgba(16, 36, 60, 0.12);
  max-width: 800px;
  margin: 0 auto;
}

.social-section h2 {
  color: var(--dark-text);
  margin-bottom: 20px;
}

.social-section .social-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 20px;
  width: 100%;
}

.social-section .social-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 16px;
  background: #ffffff;
  color: #2a2a2a;
  font-weight: 600;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  border: 1px solid rgba(16, 36, 60, 0.12);
  box-shadow: 0 12px 24px rgba(16, 36, 60, 0.08);
}

.social-section .social-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 32px rgba(16, 36, 60, 0.16);
}

.si {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}

.si-ig {
  background-image: url("../images/Instagram_icon.png");
}

.si-tk {
  background-image: url("../images/3046121.png");
  background-size: cover;
}

.si-yt {
  background-image: url("https://upload.wikimedia.org/wikipedia/commons/thumb/4/42/YouTube_icon_%282013-2017%29.png/240px-YouTube_icon_%282013-2017%29.png");
}

.si-fb {
  background-image: url("../images/Facebook_Logo.png");
}

/* Responsividade para seção de redes sociais */
@media (max-width: 480px) {
  .social-section {
    padding: 30px 0;
    width: 100%;
  }

  .social-section .container {
    margin: 0 15px;
    padding: 25px 15px;
  }

  .social-section .social-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

/* Seção Comunidade WhatsApp */
.whatsapp-community-section {
  text-align: center;
  background: linear-gradient(135deg, #e8e0d0 0%, #e0d8c8 100%);
  padding: 40px 0;
  width: 100%;
  position: relative;
}

.whatsapp-community-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%
  );
}

.whatsapp-community-section .container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.whatsapp-card {
  background: #ffffff;
  border: 1px solid rgba(16, 36, 60, 0.08);
  border-radius: 20px;
  padding: 35px 30px;
  box-shadow: 0 16px 28px rgba(16, 36, 60, 0.12);
  margin-top: 20px;
}

.whatsapp-header {
  text-align: center;
  margin-bottom: 25px;
}

.whatsapp-header h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 8px;
}

.whatsapp-subtitle {
  font-size: 1rem;
  color: var(--gray-text);
  font-weight: 500;
}

.whatsapp-image {
  margin: 25px 0;
  text-align: center;
  border-radius: 15px;
  overflow: hidden;
}

.whatsapp-image img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 15px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(16, 36, 60, 0.1);
}

.whatsapp-description {
  margin-bottom: 30px;
  padding: 20px;
  background: linear-gradient(135deg, #f5f0e8 0%, #fdf8f0 100%);
  border-radius: 12px;
  border-left: 4px solid var(--primary-green);
}

.whatsapp-description p {
  color: var(--gray-text);
  line-height: 1.6;
  margin: 0;
  font-size: 0.95rem;
}

/* Carrossel WhatsApp */
.whatsapp-groups-carousel {
  margin-bottom: 30px;
}

.whatsapp-groups-wrapper {
  overflow: hidden;
  border-radius: 16px;
  margin-bottom: 20px;
  position: relative;
  width: 100%;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}

.whatsapp-groups-wrapper:active {
  cursor: grabbing;
}

.whatsapp-groups-track {
  display: flex;
  transition: transform 0.4s ease;
  gap: 0;
  width: 100%;
}

.group-item {
  min-width: 100%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 25px 20px;
  background: linear-gradient(135deg, #ffffff 0%, #fdf8f0 100%);
  border-radius: 16px;
  border: 1px solid rgba(16, 36, 60, 0.08);
  box-shadow: 0 4px 12px rgba(16, 36, 60, 0.06);
  transition: all 0.3s ease;
  height: auto;
  min-height: 180px;
  justify-content: center;
}

.group-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(16, 36, 60, 0.12);
}

.group-icon {
  font-size: 2.5rem;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(255, 139, 61, 0.1),
    rgba(76, 175, 80, 0.1)
  );
  border-radius: 16px;
  margin-bottom: 15px;
}

.group-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.group-content h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark-text);
  margin: 0;
  text-align: center;
}

/* Controles do carrossel */
.whatsapp-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.whatsapp-carousel-btn {
  background: var(--primary-orange);
  color: var(--white);
  border: none;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.1s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.whatsapp-carousel-btn svg {
  width: 24px;
  height: 24px;
  stroke-width: 3;
}

.whatsapp-carousel-btn:hover {
  background: var(--dark-orange, #e67a2e);
  transform: scale(1.1);
}

.whatsapp-carousel-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
}

.whatsapp-carousel-dots {
  display: flex;
  gap: 8px;
}

.whatsapp-carousel-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: all 0.3s ease;
}

.whatsapp-carousel-dots .dot.active {
  background: var(--primary-orange);
  transform: scale(1.2);
  width: 12px;
  height: 12px;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 32px;
  background: #24ca67;
  color: #ffffff;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  border-radius: 50px;
  box-shadow: 0 8px 20px rgba(36, 202, 103, 0.3);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.whatsapp-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(36, 202, 103, 0.4);
  background: #1a9b4f;
}

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

/* Responsividade para seção WhatsApp */
@media (max-width: 768px) {
  .whatsapp-card {
    padding: 30px 20px;
  }

  .whatsapp-header h3 {
    font-size: 1.5rem;
  }

  .whatsapp-image {
    margin: 20px 0;
  }

  .whatsapp-image img {
    max-width: 100%;
  }

  .group-item {
    padding: 20px 18px;
    min-height: 160px;
  }

  .group-content h4 {
    font-size: 1.2rem;
  }

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

  .whatsapp-carousel-btn svg {
    width: 20px;
    height: 20px;
  }

  .whatsapp-btn {
    padding: 14px 28px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .whatsapp-community-section {
    padding: 30px 0;
  }

  .whatsapp-card {
    margin: 0 15px;
    padding: 25px 18px;
  }

  .whatsapp-header h3 {
    font-size: 1.3rem;
  }

  .whatsapp-image {
    margin: 15px 0;
  }

  .whatsapp-image img {
    max-width: 100%;
    border-radius: 12px;
  }

  .whatsapp-description {
    padding: 15px;
  }

  .group-item {
    padding: 20px 15px;
    min-height: 150px;
  }

  .group-icon {
    width: 60px;
    height: 60px;
    font-size: 2rem;
    margin-bottom: 12px;
  }

  .group-content h4 {
    font-size: 1.1rem;
  }

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

  .whatsapp-carousel-btn svg {
    width: 18px;
    height: 18px;
  }

  .whatsapp-btn {
    width: 100%;
    padding: 14px 24px;
  }
}

/* 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: 20px 0;
}

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

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

.cta-section .video-cta-container {
  background: transparent;
}

.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 100px; /* Espaço extra para o botão fixo */
}

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

.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: 20px;
}

.footer-section {
  text-align: center;
}

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

.footer-whatsapp-contact {
  display: inline-flex;
  align-items: center;
}

.footer-whatsapp-contact svg {
  flex-shrink: 0;
}

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

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

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

.footer-whatsapp-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  padding: 8px;
  background: rgba(37, 211, 102, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-whatsapp-link:hover {
  background: rgba(37, 211, 102, 0.2);
  transform: scale(1.1);
}

.footer-whatsapp-link svg {
  width: 20px;
  height: 20px;
  display: block;
}

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

  .testimonials-carousel {
    height: auto;
    min-height: auto;
    margin-bottom: 30px;
  }
}

/* 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: auto;
    min-height: auto;
  }

  .testimonials-carousel {
    height: auto;
    min-height: auto;
    margin-bottom: 40px;
  }
}

/* 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: auto;
    min-height: auto;
  }

  .testimonials-carousel {
    height: auto;
    min-height: auto;
    margin-bottom: 50px;
  }
}

/* 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: 100px;
  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;
  }

  .whatsapp-float {
    bottom: 85px;
  }

  .logo {
    width: 60px;
  }

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

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

  .testimonial-item {
    padding: 20px;
  }

  .testimonial-image {
    max-width: 100%;
    width: 100%;
  }

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

  .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: 0 0 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: 0 0 15px 0;
  flex-wrap: nowrap;
  width: 100%;
}

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

.transformation-btn:hover {
  background: var(--dark-orange);
  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: #ddd;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
  min-width: 12px;
  min-height: 12px;
}

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

.transformation-cta-btn {
  background: #24ca67;
  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(36, 202, 103, 0.3);
  margin-top: 10px;
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.transformation-cta-btn:hover {
  transform: translateY(-2px);
  background: #1a9b4f;
  box-shadow: 0 6px 20px rgba(36, 202, 103, 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;
}

/* ===== BOTÃO FIXO DE DOAÇÃO ===== */
.fixed-donation-btn {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.fixed-donation-btn.show {
  opacity: 1;
  visibility: visible;
}

.fixed-btn-container {
  background: transparent;
  border-radius: 8px;
  padding: 0;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border: none;
  width: 280px;
  height: 60px;
}

.fixed-btn-container:hover {
  transform: translateY(-2px);
}

.fixed-btn-text {
  background: #24ca67;
  color: white;
  padding: 12px 40px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(36, 202, 103, 0.3);
  transition: all 0.3s ease;
  white-space: nowrap;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: heartbeat 3s infinite;
  margin: 0;
}

@media (max-width: 768px) {
  .fixed-donation-btn {
    bottom: 15px;
    left: 15px;
    right: 15px;
    transform: none;
  }

  .fixed-btn-container {
    justify-content: center;
    padding: 0;
    width: 100%;
    height: 55px;
  }

  .fixed-btn-text {
    padding: 10px 30px;
    font-size: 13px;
    width: 100%;
    height: 100%;
    margin: 0;
  }
}

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

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

  .transformation-btn {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .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: 45px;
    height: 45px;
    font-size: 1.1rem;
  }

  .transformation-controls {
    gap: 10px;
  }

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

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

  /* Responsividade para botões de depoimentos em telas pequenas */
  .testimonial-btn {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }

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

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

  /* Responsividade para indicadores de Quem Somos em telas pequenas */
  .about-indicator {
    width: 8px;
    height: 8px;
  }

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

/* ===== MODAL DE DOAÇÃO ===== */
.donation-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  backdrop-filter: blur(8px);
  animation: fadeIn 0.3s ease-out;
}

/* Sistema de Abas */
.donation-tabs {
  display: flex;
  background: #f5f5f5;
  border-radius: 0;
  padding: 0;
  gap: 0;
  border-bottom: 2px solid #e5e7eb;
  margin-top: 0;
}

.donation-tab {
  flex: 1;
  background: transparent;
  border: none;
  padding: 16px 20px;
  font-size: 16px;
  font-weight: 600;
  color: #6b7280;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  border-bottom: 3px solid transparent;
}

.donation-tab:hover {
  background: rgba(255, 107, 53, 0.05);
  color: #005787;
}

.donation-tab.active {
  color: #005787;
  background: white;
  border-bottom-color: #005787;
  font-weight: 1000;
}

.donation-tab:first-child {
  border-radius: 0;
}

.donation-tab:last-child {
  border-radius: 0;
}

/* Indicador de Tipo de Doação (apenas texto, sem abas clicáveis) */
.donation-type-indicator {
  background: #f5f5f5;
  border-radius: 0;
  padding: 12px 20px;
  text-align: center;
  border-bottom: 2px solid #e5e7eb;
  margin-top: 0;
}

.donation-type-indicator span {
  font-size: 16px;
  font-weight: 600;
  color: #005787;
}

.recurring-note {
  font-size: 0.85em;
  color: #666;
  margin-top: 5px;
  font-style: italic;
}

/* Eliminar qualquer linha branca no modal de doação */
.donation-modal *,
.donation-modal::before,
.donation-modal::after,
.modal-content *,
.modal-content::before,
.modal-content::after {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

.modal-content {
  border: none !important;
  outline: none !important;
}

/* Restaurar bordas dos botões de doação */
.donation-btn {
  border: 2px solid #e5e7eb !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05) !important;
}

.donation-btn:hover {
  border-color: #005787 !important;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.2) !important;
}

.donation-btn.selected {
  border-color: #005787 !important;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3) !important;
}

.donation-btn:active {
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.2) !important;
}

/* Restaurar borda do campo de input personalizado */
.custom-donation {
  border: 2px solid #e5e7eb !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05) !important;
}

.custom-donation:hover {
  border-color: #005787 !important;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.1) !important;
}

.custom-donation input {
  border: none !important;
  outline: none !important;
}

.custom-donation input:focus {
  outline: none !important;
}

/* Loading no Modal - DESIGN CORRIGIDO */
.donation-loading {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  outline: none;
  box-shadow: none;
  z-index: 10;
  margin: 0;
  padding: 0;
}

.loading-box {
  background: linear-gradient(135deg, #005787 0%, #005787 100%);
  border-radius: 20px;
  padding: 80px 40px;
  text-align: center;
  box-shadow: 0 25px 50px rgba(255, 107, 26, 0.5);
  width: 95%;
  max-width: 95%;
  margin: 0 auto;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.loading-box::before {
  display: none;
}

.loading-logo {
  width: 120px;
  height: 120px;
  margin: 10px auto 40px auto;
  display: block !important;
  object-fit: contain;
  object-position: center;
  image-rendering: auto;
  filter: none !important;
  opacity: 1 !important;
  border-radius: 15px;
  text-align: center;
  background: transparent !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  position: relative;
  z-index: 5;
}

.loading-spinner {
  width: 60px;
  height: 60px;
  border: 6px solid rgba(255, 255, 255, 0.3);
  border-top: 6px solid white;
  border-right: 6px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 30px auto;
  display: block !important;
  position: relative;
  z-index: 20;
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.5);
  background: transparent;
  opacity: 1 !important;
  visibility: visible !important;
}

.loading-message {
  color: white;
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.5px;
  animation: pulse 2s ease-in-out infinite;
}

/* Eliminar qualquer linha branca - EXCETO SPINNER */
.donation-loading *:not(.loading-spinner),
.donation-loading::before,
.donation-loading::after,
.loading-box *:not(.loading-spinner),
.loading-box::before,
.loading-box::after {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  background-image: none !important;
  background-color: transparent !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Eliminar especificamente qualquer linha entre logo e spinner */
.loading-logo + * {
  border-top: none !important;
  border-bottom: none !important;
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.loading-logo::after {
  display: none !important;
  content: none !important;
  height: 0 !important;
  width: 0 !important;
  border: none !important;
  background: none !important;
}

/* Garantir que o spinner mantenha suas propriedades */
.loading-spinner {
  border: 6px solid rgba(255, 255, 255, 0.3) !important;
  border-top: 6px solid white !important;
  border-right: 6px solid rgba(255, 255, 255, 0.9) !important;
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.5) !important;
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.loading-box {
  box-shadow: 0 20px 40px rgba(255, 107, 26, 0.4) !important;
  background: #005787 !important;
  border: none !important;
  outline: none !important;
}

/* Eliminar qualquer elemento que possa causar linha branca */
.donation-loading::after {
  content: none !important;
  display: none !important;
}

.donation-loading::before {
  content: none !important;
  display: none !important;
}

/* Garantir que o modal de doação não tenha elementos que causem linhas brancas */
.donation-modal {
  overflow: hidden !important;
}

.donation-modal * {
  box-sizing: border-box !important;
}

/* Remover qualquer pseudo-elemento que possa causar problemas */
.donation-loading .loading-box::before,
.donation-loading .loading-box::after,
.donation-loading .loading-logo::before,
.donation-loading .loading-logo::after,
.donation-loading .loading-spinner::before,
.donation-loading .loading-spinner::after,
.donation-loading .loading-message::before,
.donation-loading .loading-message::after {
  display: none !important;
  content: none !important;
}

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

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

/* Responsividade do Loading */
@media (max-width: 768px) {
  .loading-box {
    padding: 60px 30px;
    width: 96%;
    max-width: 96%;
    min-height: 350px;
  }

  .loading-logo {
    width: 100px;
    height: 100px;
    margin: 10px auto 35px auto;
    object-fit: contain;
    object-position: center;
    image-rendering: auto;
    filter: none !important;
    opacity: 1 !important;
  }

  .loading-spinner {
    width: 50px;
    height: 50px;
    border-width: 5px;
    margin-bottom: 25px;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .loading-message {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .loading-box {
    padding: 50px 25px;
    width: 98%;
    max-width: 98%;
    min-height: 320px;
  }

  .loading-logo {
    width: 90px;
    height: 90px;
    margin: 10px auto 30px auto;
    filter: none !important;
    opacity: 1 !important;
  }

  .loading-spinner {
    width: 45px;
    height: 45px;
    border-width: 5px;
    margin-bottom: 20px;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .loading-message {
    font-size: 15px;
  }
}

.donation-modal.show {
  display: flex !important;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.modal-content {
  background: white;
  border-radius: 20px;
  width: 90%;
  max-width: 380px;
  max-height: 85vh;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  animation: modalSlideIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: none;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.modal-header {
  background: linear-gradient(135deg, #005787, #005787);
  color: white;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.modal-header::before {
  display: none;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

.modal-header h2 {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.close-btn {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  transition: all 0.2s ease;
  position: absolute;
  top: 10px;
  right: 15px;
  z-index: 1;
  backdrop-filter: blur(10px);
}

.close-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.close-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.modal-body {
  padding: 20px;
  background: #f5f5f5;
}

.donation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}

.donation-btn {
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  padding: 16px 12px;
  font-size: 17px;
  font-weight: 700;
  color: #374151;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.donation-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 107, 53, 0.1),
    transparent
  );
  transition: left 0.5s ease;
}

.donation-btn:hover {
  border-color: #005787;
  background: linear-gradient(135deg, #fff5f0, #ffffff);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.15);
  color: #005787;
}

.donation-btn:hover::before {
  left: 100%;
}

.donation-btn:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.2);
}

.donation-btn.selected {
  background: linear-gradient(135deg, #005787, #005787);
  color: white;
  border-color: #005787;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.custom-donation {
  text-align: center;
  margin-bottom: 20px;
  background: white;
  padding: 16px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.custom-donation p {
  color: #6b7280;
  font-weight: 500;
  margin-bottom: 16px;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.custom-donation .heart {
  font-size: 18px;
  animation: heartbeat 2s infinite;
}

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

.input-container {
  position: relative;
  display: flex;
  align-items: center;
  background: #f9fafb;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  padding: 4px;
  transition: all 0.3s ease;
}

.input-container:focus-within {
  border-color: #005787;
  background: white;
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.currency-symbol {
  color: #6b7280;
  font-weight: 600;
  font-size: 16px;
  padding: 0 12px;
  border-right: 1px solid #e5e7eb;
}

.custom-donation input {
  flex: 1;
  padding: 12px 16px;
  border: none;
  background: transparent;
  font-size: 16px;
  font-weight: 600;
  color: #374151;
  text-align: left;
  outline: none;
}

.custom-donation input::placeholder {
  color: #9ca3af;
  font-weight: 400;
}

.modal-footer {
  padding: 0 20px 20px;
  background: white;
}

.donate-btn {
  width: 100%;
  background: #24ca67;
  color: white;
  border: none;
  border-radius: 12px;
  padding: 14px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(36, 202, 103, 0.3);
}

.donate-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.donate-btn:hover {
  background: #1a9b4f;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(36, 202, 103, 0.4);
}

.donate-btn:hover::before {
  left: 100%;
}

.donate-btn:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

/* Estilos para etapas do modal */
.donation-step {
  display: block;
}

/* Estilos para etapa 2 - Formulário de dados */
.selected-amount-display {
  background: linear-gradient(135deg, #005787, #005787);
  color: white;
  padding: 12px 16px;
  border-radius: 12px;
  text-align: center;
  margin: 0 auto 20px auto;
  max-width: 200px;
}

.selected-amount-display .amount-label {
  font-size: 12px;
  font-weight: 500;
  margin: 0 0 4px 0;
  opacity: 0.9;
}

.selected-amount-display .amount-value {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

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

.checkbox-label-turbine {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  padding: 12px;
  background: #ffffff;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
  margin: 0 0 8px 0;
}

.checkbox-label-turbine:hover {
  background: #ffffff;
  border-color: #005787;
}

.checkbox-label-turbine input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #005787;
  flex-shrink: 0;
}

.turbine-title {
  font-weight: 600;
  color: #374151;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.heart-icon {
  width: 16px;
  height: 16px;
  fill: #005787;
  flex-shrink: 0;
  display: inline-block;
}

.turbine-description {
  margin: 8px 0 0 28px;
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.4;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 8px;
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"],
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #d1d5db;
  border-radius: 12px;
  font-size: 16px;
  font-family: inherit;
  color: #1f2937;
  background: #ffffff;
  transition: all 0.3s ease;
  box-sizing: border-box;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.form-group input[type="text"]:focus,
.form-group input[type="tel"]:focus,
.form-group input[type="email"]:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #005787;
  background: #ffffff;
  box-shadow:
    0 0 0 3px rgba(255, 107, 53, 0.1),
    0 2px 4px rgba(0, 0, 0, 0.1);
}

.form-group input[type="text"]:disabled {
  background: #f9fafb;
  color: #6b7280;
  cursor: not-allowed;
  border-color: #e5e7eb;
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
  font-family: inherit;
}

.input-with-checkbox {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #6b7280;
  cursor: pointer;
  user-select: none;
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #005787;
  margin: 0;
}

.char-count {
  display: block;
  text-align: right;
  font-size: 12px;
  color: #9ca3af;
  margin-top: 4px;
}

.back-btn {
  width: 100%;
  background: white;
  color: #6b7280;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  padding: 12px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 12px;
}

.back-btn:hover {
  background: #f9fafb;
  border-color: #d1d5db;
  color: #374151;
}

.modal-footer {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Responsividade do modal */
@media (max-width: 480px) {
  .modal-content {
    width: 95%;
    margin: 10px;
    max-width: none;
  }

  .modal-header {
    padding: 16px;
  }

  .modal-header h2 {
    font-size: 16px;
  }

  .modal-body {
    padding: 16px;
  }

  .donation-grid {
    gap: 10px;
  }

  .donation-btn {
    padding: 14px 10px;
    font-size: 16px;
  }

  .custom-donation {
    padding: 14px;
  }

  .custom-donation p {
    font-size: 13px;
  }

  .donate-btn {
    padding: 12px;
    font-size: 14px;
  }

  .modal-footer {
    padding: 0 16px 16px;
  }

  .selected-amount-display {
    padding: 10px 14px;
  }

  .selected-amount-display .amount-label {
    font-size: 11px;
  }

  .selected-amount-display .amount-value {
    font-size: 18px;
  }

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

  .form-group input[type="text"],
  .form-group input[type="tel"],
  .form-group input[type="email"],
  .form-group textarea {
    padding: 10px 14px;
    font-size: 15px;
  }
}

/* Modal de Confirmação de Telefone */
.phone-confirmation-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 20px;
  animation: fadeIn 0.3s ease-out;
}

.phone-confirmation-content {
  background: white;
  border-radius: 20px;
  max-width: 450px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  animation: slideUp 0.3s ease-out;
}

.phone-confirmation-header {
  background: linear-gradient(135deg, #005787 0%, #005787 100%);
  padding: 30px 25px 20px;
  text-align: center;
  color: white;
}

.phone-confirmation-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 15px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.phone-confirmation-header h3 {
  font-size: 22px;
  font-weight: 700;
  margin: 0;
  color: white;
}

.phone-confirmation-body {
  padding: 25px;
  text-align: center;
}

.phone-confirmation-body p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin: 0 0 15px 0;
}

.phone-confirmation-subtitle {
  font-weight: 600;
  color: #005787 !important;
  margin-top: 20px !important;
  font-size: 14px !important;
}

.phone-confirmation-footer {
  padding: 0 25px 25px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.phone-confirmation-btn {
  width: 100%;
  padding: 16px 24px;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.phone-confirmation-btn-primary {
  background: #24ca67;
  color: white;
}

.phone-confirmation-btn-primary:hover {
  background: #1a9b4f;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(36, 202, 103, 0.4);
}

.phone-confirmation-btn-secondary {
  background: #f5f5f5;
  color: #666;
  border: 2px solid #e0e0e0;
}

.phone-confirmation-btn-secondary:hover {
  background: #e8e8e8;
  border-color: #d0d0d0;
  transform: translateY(-1px);
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 480px) {
  .phone-confirmation-content {
    max-width: 100%;
    border-radius: 15px;
  }

  .phone-confirmation-header {
    padding: 25px 20px 15px;
  }

  .phone-confirmation-icon {
    width: 56px;
    height: 56px;
  }

  .phone-confirmation-header h3 {
    font-size: 20px;
  }

  .phone-confirmation-body {
    padding: 20px;
  }

  .phone-confirmation-body p {
    font-size: 15px;
  }

  .phone-confirmation-footer {
    padding: 0 20px 20px;
  }

  .phone-confirmation-btn {
    padding: 14px 20px;
    font-size: 15px;
  }
}
