/* 
===========================================
   MORDOMIZE - Estilo principal
   Paleta baseada em #E8791F
===========================================
*/

/* --------- Variáveis & Reset --------- */
:root {
  /* Cores principais */
  --primary: #E8791F;
  --primary-dark: #C25E0B;
  --primary-light: #F9A759;
  --primary-transparent: rgba(232, 121, 31, 0.05);
  
  /* Cores secundárias */
  --secondary: #2D4B8E;
  --secondary-dark: #1A2C54;
  --secondary-light: #526FA7;
  
  /* Tons neutros */
  --dark: #222222;
  --gray-dark: #444444;
  --gray: #777777;
  --gray-light: #BBBBBB;
  --light-bg: #F8F9FA;
  --white: #FFFFFF;
  
  /* Utilitários */
  --success: #5CB85C;
  --info: #5BC0DE;
  --warning: #F0AD4E;
  --danger: #D9534F;
  
  /* Espaçamento */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem; 
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  
  /* Fontes */
  --font-main: 'Montserrat', sans-serif;
  --font-secondary: 'Poppins', sans-serif;
  
  /* Outros */
  --border-radius: 8px;
  --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  --transition: all 0.3s ease;
}

/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-secondary);
  color: var(--gray-dark);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul, ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button, input, textarea {
  font-family: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-main);
  color: var(--dark);
  font-weight: 700;
  line-height: 1.3;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* --------- Utilitários --------- */
.accent {
  color: var(--primary);
}

/* --------- Botões --------- */
.btn {
  display: inline-block;
  padding: 12px 24px;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  font-size: 1rem;
  border: none;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 10px rgba(232, 121, 31, 0.3);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  box-shadow: 0 6px 14px rgba(232, 121, 31, 0.4);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-subtle {
  background-color: transparent;
  color: var(--primary);
}

.btn-subtle:hover {
  background-color: var(--primary-transparent);
  color: var(--primary-dark);
}

.btn-light {
  background-color: var(--white);
  color: var(--primary);
}

.btn-light:hover {
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.btn-large {
  padding: 14px 28px;
  font-size: 1.1rem;
}

.btn-block {
  display: block;
  width: 100%;
}

/* --------- Navegação --------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--white);
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

.navbar.sticky {
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  padding: 15px 0;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 40px;
}

.menu-container {
  display: flex;
  align-items: center;
}

.menu {
  display: flex;
}

.menu li {
  margin-left: 30px;
}

.menu a {
  position: relative;
  font-weight: 500;
  color: var(--gray-dark);
}

.menu a:hover {
  color: var(--primary);
}

.menu a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--primary);
  transition: var(--transition);
}

.menu a:hover::after {
  width: 100%;
}

.nav-buttons {
  margin-left: 30px;
  display: flex;
  gap: 10px;
}

.hamburger {
  display: none;
  cursor: pointer;
}

.hamburger .bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px 0;
  background-color: var(--dark);
  transition: var(--transition);
}

/* --------- Hero Section --------- */
.hero {
  padding: 140px 0 20px;
  position: relative;
  overflow: hidden;
  background-color: var(--light-bg);
}

.hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 5;
}

.hero-content {
  max-width: 550px;
}

.hero h1 {
  margin-bottom: var(--spacing-md);
  font-size: 3.2rem;
  line-height: 1.2;
}

.hero p {
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: var(--spacing-lg);
}

.hero-cta {
  display: flex;
  gap: 15px;
  margin-bottom: var(--spacing-md);
}

.hero-features {
  display: flex;
  gap: 20px;
}

.feature-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
}

.feature-tag i {
  color: var(--success);
}

.hero-image {
  position: relative;
  flex: 1;
  text-align: right;
}

.hero-image img {
  max-width: 90%;
  
  margin-left: auto;
}

.image-decoration {
  position: absolute;
  width: 300px;
  height: 300px;
  background-color: var(--primary-transparent);
  border-radius: 50%;
  top: -50px;
  right: -100px;
  z-index: -1;
}

.shape-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.shape-divider svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 70px;
}

.shape-divider .shape-fill {
  fill: var(--white);
}

.shape-divider-bottom {
  top: 0;
  transform: rotate(180deg);
}

/* --------- Stats Section --------- */
.stats {
  padding: var(--spacing-xl) 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.stat-card {
  text-align: center;
  padding: var(--spacing-md);
  transition: var(--transition);
  border-radius: var(--border-radius);
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: var(--spacing-xs);
}

.stat-label {
  font-size: 1rem;
  color: var(--gray);
}

/* --------- Section Headers --------- */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--spacing-xl);
}

.section-subtitle {
  display: block;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: var(--spacing-xs);
  letter-spacing: 1px;
}

.section-title {
  margin-bottom: var(--spacing-sm);
  position: relative;
  padding-bottom: var(--spacing-sm);
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--primary);
}

.section-description {
  color: var(--gray);
  font-size: 1.1rem;
}

/* --------- Features Section --------- */
.features {
  padding: var(--spacing-xl) 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature-card {
  background-color: var(--white);
  padding: var(--spacing-lg);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: var(--primary-transparent);
  z-index: -1;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-10px);
}

.feature-card:hover::before {
  height: 100%;
}

.feature-icon {
  width: 60px;
  height: 60px;
  background-color: var(--primary-transparent);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.5rem;
  margin-bottom: var(--spacing-md);
}

.feature-card h3 {
  margin-bottom: var(--spacing-sm);
  font-size: 1.4rem;
}

.feature-card p {
  color: var(--gray);
}

/* --------- How It Works Section --------- */
.how-it-works {
  background-color: var(--light-bg);
  padding: var(--spacing-xl) 0;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.step {
  display: flex;
  align-items: center;
  gap: 50px;
}

.step.reverse {
  flex-direction: row-reverse;
}

.step-content {
  flex: 1;
}

.step-number {
  display: inline-block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--primary);
  color: var(--white);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-sm);
}

.step-content h3 {
  margin-bottom: var(--spacing-sm);
  font-size: 1.8rem;
}

.step-content p {
  margin-bottom: var(--spacing-md);
  color: var(--gray);
}

.check-list li {
  margin-bottom: var(--spacing-xs);
  position: relative;
  padding-left: 30px;
}

.check-list li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--success);
}

.step-image {
  flex: 1;
}

.step-image img {
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.step-image img:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* --------- Pricing Section --------- */
.pricing {
  padding: var(--spacing-xl) 0;
}

.pricing-card {
  max-width: 500px;
  margin: 0 auto;
  background-color: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: var(--spacing-lg);
  transition: var(--transition);
  border-top: 5px solid var(--primary);
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.pricing-header {
  text-align: center;
  margin-bottom: var(--spacing-md);
}

.pricing-badge {
  display: inline-block;
  padding: 5px 15px;
  background-color: var(--primary);
  color: var(--white);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.8rem;
  margin-bottom: var(--spacing-sm);
}

.pricing-title {
  font-size: 1.8rem;
}

.pricing-price {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.price {
  font-size: 3rem;
  font-weight: 700;
  color: var(--dark);
}

.period {
  font-size: 1rem;
  color: var(--gray);
}

.pricing-features {
  margin-bottom: var(--spacing-lg);
}

.pricing-features li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features i {
  color: var(--primary);
  margin-right: 10px;
}

.pricing-action {
  text-align: center;
}

.pricing-note {
  text-align: center;
  margin-top: var(--spacing-sm);
  font-size: 0.9rem;
  color: var(--gray-light);
}

/* --------- Testimonials Section --------- */
.testimonials {
  background-color: var(--light-bg);
  padding: var(--spacing-xl) 0;
}

.testimonials-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: var(--spacing-lg);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.testimonial:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
  margin-bottom: var(--spacing-md);
  position: relative;
}

.quote-icon {
  color: var(--primary);
  font-size: 1.5rem;
  opacity: 0.3;
  margin-bottom: var(--spacing-xs);
}

.testimonial-content p {
  font-style: italic;
  color: var(--gray);
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-info h4 {
  margin-bottom: 0;
  font-size: 1.1rem;
}

.testimonial-info p {
  margin-bottom: 0;
  color: var(--gray);
  font-size: 0.9rem;
}

/* --------- CTA Section --------- */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  padding: var(--spacing-xl) 0;
  position: relative;
  overflow: hidden;
}

.cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  color: var(--white);
  margin-bottom: var(--spacing-sm);
  font-size: 2.5rem;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--spacing-md);
  font-size: 1.1rem;
}

.cta-price {
  margin-bottom: var(--spacing-md);
}

.cta-price .price {
  font-size: 3rem;
  color: var(--white);
}

.cta-price .period {
  color: rgba(255, 255, 255, 0.8);
}

.cta-note {
  margin-top: var(--spacing-sm);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

/* --------- Footer --------- */
.footer {
  background-color: var(--dark);
  color: var(--white);
  padding: var(--spacing-xl) 0 var(--spacing-lg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: var(--spacing-lg);
}

.footer-description {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--spacing-md);
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  transition: var(--transition);
}

.social-link:hover {
  background-color: var(--primary);
  transform: translateY(-3px);
}

.footer-title {
  font-size: 1.2rem;
  margin-bottom: var(--spacing-md);
  position: relative;
  padding-bottom: var(--spacing-xs);
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--primary);
}

.footer-links li {
  margin-bottom: var(--spacing-xs);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: var(--spacing-md);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
}

/* --------- Responsividade --------- */
@media (max-width: 1200px) {
  .container {
    max-width: 992px;
  }
}

@media (max-width: 992px) {
  .container {
    max-width: 768px;
  }
  
  html {
    font-size: 15px;
  }
  
  .hero .container {
    flex-direction: column;
  }
  
  .hero-content {
    max-width: 100%;
    text-align: center;
    margin-bottom: var(--spacing-xl);
  }
  
  .hero-cta {
    justify-content: center;
  }
  
  .hero-features {
    justify-content: center;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .step, .step.reverse {
    flex-direction: column;
  }
  
  .step-content {
    order: 2;
  }
  
  .step-image {
    order: 1;
    margin-bottom: var(--spacing-md);
  }
  
  .testimonials-container {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .container {
    max-width: 576px;
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .hamburger {
    display: block;
  }
  
  .menu-container {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--white);
    flex-direction: column;
    transition: var(--transition);
    box-shadow: var(--box-shadow);
    padding: var(--spacing-lg) 0;
  }
  
  .menu-container.active {
    left: 0;
  }
  
  .menu {
    flex-direction: column;
    margin-right: 0;
    margin-bottom: var(--spacing-lg);
  }
  
  .menu li {
    margin: var(--spacing-xs) 0;
  }
  
  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  
  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonials-container {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .social-links {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .container {
    max-width: 100%;
    padding: 0 20px;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-features {
    flex-direction: column;
    align-items: center;
  }
}

/* Adições de estilo para os planos de preço */

/* Layout para múltiplos cards de preço */
.pricing-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-card {
  flex: 1;
  max-width: 450px;
}

/* Estilo para card em destaque */
.pricing-card.featured {
  border-top: 5px solid var(--primary);
  transform: scale(1.05);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 2;
}

/* Badge de desconto */
.discount-badge {
  position: absolute;
  top: -15px;
  right: -15px;
  background-color: var(--danger);
  color: white;
  font-weight: 700;
  padding: 8px 15px;
  border-radius: 50px;
  font-size: 1rem;
  box-shadow: 0 4px 10px rgba(217, 83, 79, 0.3);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

/* Preço original riscado */
.original-price {
  margin-bottom: 10px;
}

.old-price {
  font-size: 1.5rem;
  color: var(--gray-light);
  text-decoration: line-through;
  font-weight: 400;
}

/* Valor equivalente mensal */
.monthly-equivalent {
  display: block;
  font-size: 0.9rem;
  color: var(--success);
  margin-top: 5px;
  font-weight: 600;
}

/* Responsividade */
@media (max-width: 768px) {
  .pricing-cards {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  
  .pricing-card {
    width: 100%;
  }
  
  .pricing-card.featured {
    transform: scale(1);
  }

  h1 {
    margin-bottom: var(--spacing-md);
    font-size: 2.2rem;
    line-height: 1.2;
  }

  .hero h1 {
    margin-bottom: var(--spacing-md);
    font-size: 2.2rem;
    line-height: 1.2;
  }
}

/* --------- Demo Video Section --------- */
.demo-video {
  padding: var(--spacing-xl) 0;
  background-color: var(--light-bg);
}

.video-container {
  max-width: 900px;
  margin: 0 auto var(--spacing-lg);
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* Proporção 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  cursor: pointer;
}

.video-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.video-thumbnail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--border-radius);
}

.play-button {
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: rgba(232, 121, 31, 0.9);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.play-button:hover {
  transform: scale(1.1);
  background-color: var(--primary);
}

.play-button i {
  margin-left: 5px; /* Para centralizar visualmente o ícone de play */
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-cta {
  text-align: center;
  margin-top: var(--spacing-lg);
}

.video-cta p {
  font-size: 1.2rem;
  margin-bottom: var(--spacing-sm);
  color: var(--gray-dark);
}

/* Estilos para a seção de WhatsApp */
.whatsapp-support {
  background-color: #f8f9fa;
  padding: 60px 0;
}

.whatsapp-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  padding: 40px 30px;
  max-width: 800px;
  margin: 0 auto;
  transition: transform 0.3s ease;
}

.whatsapp-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
}

.whatsapp-icon img {
  width: 100%;
  height: auto;
}

.whatsapp-content h3 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #333;
}

.whatsapp-content p {
  font-size: 16px;
  color: #666;
  margin-bottom: 25px;
  max-width: 600px;
}

.btn-whatsapp {
  background-color: #25D366;
  color: white;
  border: none;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
  font-size: 16px;
}

.btn-whatsapp:hover {
  background-color: #20ba5a;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp i {
  margin-right: 8px;
  font-size: 18px;
}

@media (max-width: 768px) {
  .whatsapp-card {
      padding: 30px 20px;
  }
  
  .whatsapp-content h3 {
      font-size: 24px;
  }
}









.pricing-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.pricing-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin: 50px auto;
  max-width: 1140px;
  align-items: center;
}

.pricing-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 40px 30px;
  width: 100%;
  max-width: 340px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #eaeaea;
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.pricing-card.featured {
  background: linear-gradient(135deg, #fff, #fff9f6);
  border: none;
  box-shadow: 0 15px 40px rgba(255, 107, 53, 0.15);
  transform: scale(1.05);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.popular-badge, .best-value-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  padding: 5px 15px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
  color: white;
}

.popular-badge {
  background: #FF6B35;
}

.best-value-badge {
  background: #20c997;
}

.plan-header {
  text-align: center;
  padding-bottom: 25px;
  margin-bottom: 25px;
  border-bottom: 1px solid #f1f1f1;
}

.plan-name {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}

.plan-price {
  font-size: 2.8rem;
  font-weight: 700;
  color: #FF6B35;
  margin-bottom: 5px;
  line-height: 1.2;
}

.plan-price span {
  font-size: 1rem;
  font-weight: 400;
  color: #6c757d;
}

.plan-details {
  color: #6c757d;
  margin-bottom: 10px;
}

.plan-save {
  display: inline-block;
  background: rgba(32, 201, 151, 0.15);
  color: #20c997;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

.plan-features {
  margin-bottom: 30px;
}

.plan-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.plan-features li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.plan-features li i {
  color: #28a745;
  margin-right: 12px;
}

.plan-cta {
  text-align: center;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: #FF6B35;
  color: white;
  border: 2px solid #FF6B35;
}

.btn-primary:hover {
  background-color: #e55a25;
  border-color: #e55a25;
}

.btn-outline {
  background-color: transparent;
  color: #FF6B35;
  border: 2px solid #FF6B35;
}

.btn-outline:hover {
  background-color: #FF6B35;
  color: white;
}

.features-list {
  text-align: center;
  max-width: 900px;
  margin: 60px auto 40px;
}

.features-list h3 {
  margin-bottom: 30px;
  font-size: 1.5rem;
  color: #333;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.feature-item {
  background: white;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
}

.feature-item i {
  color: #FF6B35;
  font-size: 1.2rem;
  margin-right: 10px;
}

.pricing-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 30px;
  max-width: 700px;
  margin: 0 auto;
}

.guarantee-badge {
  width: 60px;
  height: 60px;
  background: rgba(32, 201, 151, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
}

.guarantee-badge i {
  color: #20c997;
  font-size: 1.8rem;
}

.guarantee-text h4 {
  font-size: 1.3rem;
  margin-bottom: 5px;
  color: #333;
}

.guarantee-text p {
  margin: 0;
  color: #6c757d;
}

/* Responsividade */
@media (max-width: 992px) {
  .pricing-card.featured {
      transform: none;
      order: -1;
  }
  
  .pricing-card.featured:hover {
      transform: translateY(-10px);
  }
  
  .features-grid {
      grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .pricing-cards {
      flex-direction: column;
      align-items: center;
  }
  
  .pricing-card {
      max-width: 100%;
  }
  
  .features-grid {
      grid-template-columns: repeat(2, 1fr);
  }
  
  .pricing-guarantee {
      flex-direction: column;
      text-align: center;
  }
  
  .guarantee-badge {
      margin-right: 0;
      margin-bottom: 15px;
  }
}

@media (max-width: 576px) {
  .features-grid {
      grid-template-columns: 1fr;
  }
}






/* Ajuste para exibir 3 itens por linha na seção de recursos */
.features-grid, 
.recursos-grid, 
.resource-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

/* Responsividade - ajusta para 2 itens em telas médias */
@media (max-width: 992px) {
    .features-grid, 
    .recursos-grid, 
    .resource-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Responsividade - ajusta para 1 item em telas pequenas */
@media (max-width: 576px) {
    .features-grid, 
    .recursos-grid, 
    .resource-grid {
        grid-template-columns: 1fr;
    }
}


/* CSS para inverter a ordem na versão mobile do hero */
@media (max-width: 768px) {
  .hero .container {
    display: flex;
    flex-direction: column;
  }
  
  .hero-content {
    order: 2;
    text-align: center;
    margin-top: 30px;
  }
  
  .hero-image {
    order: 1;
    margin-bottom: 8px;
    margin-left: 0;
    margin-right: 0;
  }

  .hero-image img{
    order: 1;
    margin: 0 auto;
  }

  .whatsapp-support, .pricing-section, .demo-video, .testimonials {
    padding: 40px 0;
  }
  
  .hero-cta, .hero-features {
    justify-content: center;
  }
}

/* Aplicar a títulos de seção e subtítulos */
.section-title, h2, h3, h4 {
  white-space: nowrap; /* Para títulos curtos */
}

/* OU esta opção para títulos mais longos */
.section-title, h2, h3, h4 {
  text-wrap: balance; /* Propriedade mais moderna que equilibra as linhas */
}


@media (max-width: 768px) {
  .pricing-cards {
    flex-direction: column;
  }
  
  .pricing-card {
    /* Resetar qualquer propriedade order que possa estar aplicada */
    order: unset !important;
  }
  
  /* Certifique-se que o plano featured não está usando transform que mude sua posição no fluxo */
  .pricing-card.featured {
    transform: none !important;
  }
}







  /* Estilos para a seção "Como Funciona" */
  .how-it-works .steps {
    margin-top: 50px;
}

.step {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 80px;
    gap: 40px;
}

.step.reverse {
    flex-direction: row-reverse;
}

.step-content {
    flex: 1;
    max-width: 50%;
    width: 50%;
}

.step-video {
    flex: 1;
    max-width: 50%;
    width: 50%;
    position: relative;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-radius: 12px;
    overflow: hidden;
}

/* Proporção personalizada para vídeo 938x800 (117.25% em vez de 56.25% para 16:9) */
.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 85.29%; /* 800/938 = 0.8529 = 85.29% */
    background-color: #000;
    border-radius: 12px;
    overflow: hidden;
}

.play-indicator {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: rgba(255, 107, 53, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 5;
    opacity: 1;
}

.video-wrapper.playing .play-indicator {
    opacity: 0;
    pointer-events: none;
}

.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.step-number {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
}

.step-content h3 {
    font-size: 24px;
    margin-bottom: 16px;
    font-weight: 600;
}

.step-content p {
    margin-bottom: 16px;
    color: #555;
    line-height: 1.6;
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.check-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    line-height: 1.5;
}

.check-list li:before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: #FF6B35;
}

/* Responsividade */
@media (max-width: 768px) {
    .step {
        flex-direction: column;
        gap: 30px;
    }
    
    .step.reverse {
        flex-direction: column;
    }
    
    .step-content, .step-video {
        max-width: 100%;
        width: 100%;
    }
}






/* Estilos para a seção de demonstração do WhatsApp */
.whatsapp-demo {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.whatsapp-demo-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 50px;
  gap: 40px;
}

/* Estilos do telefone */
.whatsapp-phone {
  background-color: #fff;
  width: 340px;
  min-width: 340px;
  height: 600px;
  border-radius: 30px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  position: relative;
  border: 8px solid #333;
}

.phone-header {
  background-color: #128C7E;
  color: white;
  padding: 12px 15px;
}

.phone-contact {
  display: flex;
  align-items: center;
}

.contact-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 10px;
  background-color: #f0f0f0;
}

.contact-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-info h4 {
  font-size: 16px;
  margin-bottom: 2px;
  color: white;
}

.contact-info p {
  font-size: 12px;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
}

.chat-container {
  display: flex;
  flex-direction: column;
  height: calc(100% - 64px);
  background-color: #E5DDD5;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23bbb' fill-opacity='0.15' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.chat-messages {
  flex: 1;
  padding: 15px;
  overflow-y: auto;
}

.message {
  margin-bottom: 10px;
  max-width: 80%;
  position: relative;
}

.message p {
  padding: 8px 12px;
  border-radius: 10px;
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
}

.message.user {
  margin-left: auto;
}

.message.user p {
  background-color: #DCF8C6;
  border-top-right-radius: 0;
}

.message.bot p {
  background-color: #fff;
  border-top-left-radius: 0;
}

.message.json p {
  background-color: #EFF3FE;
  border-radius: 10px;
  font-family: monospace;
  font-size: 11px;
  padding: 10px;
  white-space: pre-wrap;
}

.message.json {
  max-width: 95%;
  margin-left: auto;
  margin-right: auto;
}

.chat-input {
  padding: 10px 15px;
  background-color: #F0F0F0;
}

.input-container {
  display: flex;
  align-items: center;
  background-color: white;
  border-radius: 20px;
  padding: 5px 10px;
  margin-bottom: 10px;
}

#message-input {
  flex: 1;
  border: none;
  padding: 8px;
  font-size: 14px;
  outline: none;
}

.send-button {
  background-color: #128C7E;
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.demo-options {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 10px;
}

.demo-button {
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 15px;
  border: 1px solid #128C7E;
  background-color: white;
  color: #128C7E;
  cursor: pointer;
}

.demo-button:hover {
  background-color: #128C7E;
  color: white;
}

/* Estilos da explicação */
.demo-explanation {
  flex: 1;
  padding: 25px;
}

.demo-explanation h3 {
  font-size: 24px;
  margin-bottom: 25px;
  color: #333;
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.step-icon {
  width: 36px;
  height: 36px;
  background-color: #FF6B35;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.step-content h4 {
  font-size: 18px;
  margin-bottom: 5px;
  color: #333;
}

.step-content p {
  color: #555;
  margin: 0;
}

.demo-cta {
  margin-top: 30px;
  text-align: center;
}

.demo-cta p {
  margin-bottom: 15px;
  font-weight: 500;
  color: #333;
}

/* Responsividade */
@media (max-width: 992px) {
  .whatsapp-demo-container {
      flex-direction: column;
      align-items: center;
  }
  
  .whatsapp-phone {
      margin-bottom: 30px;
  }
  
  .demo-explanation {
      width: 100%;
  }
}

@media (max-width: 480px) {
  .whatsapp-phone {
      width: 300px;
      min-width: 300px;
      height: 550px;
  }
}









/* Estilos para a seção de demonstração do Dashboard */
.dashboard-demo {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.dashboard-container {
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 30px;
  max-width: 1100px;
  margin: 0 auto;
  overflow: hidden;
  transition: all 0.3s ease;
}

/* Estilo para modo escuro */
.dashboard-container.dark-mode {
  background-color: #202124;
  color: #e8eaed;
}

.dark-mode .stat-card,
.dark-mode .transaction-item {
  background-color: #303134;
  color: #e8eaed;
}

.dark-mode .stat-card p,
.dark-mode .transaction-details p {
  color: #9aa0a6;
}

.dark-mode .profile-info p {
  color: #9aa0a6;
}

.dark-mode .transactions-header {
  border-bottom-color: #3c4043;
}

.dark-mode .dashboard-header,
.dark-mode .dashboard-footer {
  border-color: #3c4043;
}

/* Cabeçalho do Dashboard */
.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eaeaea;
}

.dashboard-profile {
  display: flex;
  align-items: center;
}

.profile-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #FF6B35;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 600;
  margin-right: 15px;
}

.profile-info h4 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
}

.profile-info p {
  margin: 0;
  color: #777;
  font-size: 0.9rem;
}

.dashboard-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.period-selector {
  display: flex;
  background-color: #f5f6f8;
  border-radius: 8px;
  padding: 4px;
}

.period-btn {
  border: none;
  background: none;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.period-btn.active {
  background-color: #FF6B35;
  color: white;
  font-weight: 500;
}

.dark-mode .period-selector {
  background-color: #3c4043;
}

.dark-mode .period-btn {
  color: #e8eaed;
}

.add-transaction-btn {
  background-color: #FF6B35;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 8px 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.add-transaction-btn:hover {
  background-color: #e55a25;
}

/* Cards de estatísticas */
.dashboard-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.stat-card {
  background-color: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.stat-card p {
  color: #777;
  margin: 0 0 8px 0;
  font-size: 0.9rem;
}

.stat-card h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 0 12px 0;
  color: #333;
}

.dark-mode .stat-card h3 {
  color: #e8eaed;
}

.percentage {
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 5px;
}

.percentage.up {
  color: #28a745;
}

.percentage.down {
  color: #dc3545;
}

.badge {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  color: white;
}

.bg-info {
  background-color: #17a2b8;
}

.bg-success {
  background-color: #28a745;
}

.bg-warning {
  background-color: #ffc107;
  color: #212529;
}

.bg-danger {
  background-color: #dc3545;
}

/* Transações */
.dashboard-transactions {
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  padding: 20px;
  margin-bottom: 30px;
}

.dark-mode .dashboard-transactions {
  background-color: #303134;
}

.transactions-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #f0f0f0;
}

.transactions-header h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.view-all-btn {
  border: none;
  background: none;
  color: #FF6B35;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
}

.transactions-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.transaction-item {
  display: flex;
  align-items: center;
  padding: 15px;
  border-radius: 8px;
  background-color: #f9f9f9;
  transition: all 0.2s ease;
}

.transaction-item:hover {
  background-color: #f0f0f0;
}

.dark-mode .transaction-item:hover {
  background-color: #3c4043;
}

.transaction-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-right: 15px;
}

.transaction-item.income .transaction-icon {
  background-color: rgba(40, 167, 69, 0.1);
  color: #28a745;
}

.transaction-item.expense .transaction-icon {
  background-color: rgba(220, 53, 69, 0.1);
  color: #dc3545;
}

.transaction-details {
  flex: 1;
}

.transaction-details h4 {
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
}

.transaction-details p {
  margin: 0;
  font-size: 0.85rem;
  color: #777;
}

.transaction-category {
  margin-right: 20px;
}

.category-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
  color: white;
  font-weight: 500;
}

.transaction-amount {
  font-weight: 600;
  font-size: 1.1rem;
}

.transaction-item.income .transaction-amount {
  color: #28a745;
}

.transaction-item.expense .transaction-amount {
  color: #dc3545;
}

/* Rodapé do Dashboard */
.dashboard-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid #eaeaea;
}

.profile-switcher {
  display: flex;
  gap: 10px;
}

.profile-btn {
  border: 1px solid #eaeaea;
  background-color: white;
  border-radius: 6px;
  padding: 8px 15px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.dark-mode .profile-btn {
  border-color: #3c4043;
  background-color: #303134;
  color: #e8eaed;
}

.profile-btn.active {
  background-color: #f0f0f0;
  font-weight: 500;
}

.dark-mode .profile-btn.active {
  background-color: #3c4043;
}

.mode-toggle {
  border: 1px solid #eaeaea;
  background-color: white;
  border-radius: 6px;
  padding: 8px 15px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.dark-mode .mode-toggle {
  border-color: #3c4043;
  background-color: #303134;
  color: #e8eaed;
}

/* Efeito de transição durante a mudança */
.stat-card, .transaction-item, .dashboard-container, .dashboard-transactions,
.profile-btn, .mode-toggle, .transactions-header {
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

/* Animação de mudança de valores */
@keyframes numberChange {
  0% {
      opacity: 0.5;
      transform: translateY(5px);
  }
  100% {
      opacity: 1;
      transform: translateY(0);
  }
}

.value-changing {
  animation: numberChange 0.5s ease forwards;
}

/* Responsividade */
@media (max-width: 992px) {
  .dashboard-cards {
      grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .dashboard-header {
      flex-direction: column;
      align-items: flex-start;
      gap: 20px;
  }
  
  .dashboard-actions {
      width: 100%;
      flex-direction: column;
      align-items: flex-start;
  }
  
  .period-selector {
      width: 100%;
      justify-content: space-between;
  }
  
  .add-transaction-btn {
      width: 100%;
      justify-content: center;
  }
  
  .transaction-item {
      flex-wrap: wrap;
  }
  
  .transaction-category {
      margin-right: 0;
      margin-top: 10px;
      width: 100%;
  }
  
  .transaction-amount {
      width: 100%;
      text-align: right;
      margin-top: 10px;
  }
  
  .dashboard-footer {
      flex-direction: column;
      gap: 20px;
      align-items: flex-start;
  }
  
  .profile-switcher {
      width: 100%;
  }
  
  .profile-btn {
      flex: 1;
      justify-content: center;
  }

  .hero {
    padding: 100px 0 20px !important;
  }
}

@media (max-width: 576px) {
  .dashboard-cards {
      grid-template-columns: 1fr;
  }
  section {
    padding: 20px 0 !important;
  }
  .steps {
    gap: 0px !important;
  }
}


/* Estilo para navegadores baseados em WebKit (Chrome, Safari, Edge) */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1; /* Cor de fundo da trilha */
}

::-webkit-scrollbar-thumb {
  background: #ff7300; /* Cor laranja para a "alça" da barra de rolagem */
}

::-webkit-scrollbar-thumb:hover {
  background: #e66a00; /* Cor um pouco mais escura ao passar o mouse */
}

/* Para Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: #ff7300 #f1f1f1;
}



/* Correção para problemas do botão de envio no Safari iOS */

/* Garantir que o input container não encolha o botão */
.input-container {
  display: flex !important;
  align-items: center !important;
  width: 100% !important;
  position: relative !important; /* Importante para posicionamento absoluto alternativo */
}

/* Fazer o input ocupar apenas o espaço disponível */
#message-input {
  flex: 1 !important;
  width: calc(100% - 40px) !important; /* Descontar espaço do botão */
  margin-right: 40px !important; /* Espaço para o botão */
  -webkit-appearance: none !important; /* Remover estilo padrão do iOS */
  appearance: none !important;
}

/* Garantir que o botão seja exibido corretamente */
.send-button {
  min-width: 30px !important;
  min-height: 30px !important;
  width: 30px !important;
  height: 30px !important;
  flex-shrink: 0 !important; /* Impedir que o botão encolha */
  position: absolute !important; /* Posicionamento absoluto como alternativa */
  right: 10px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  z-index: 2 !important; /* Garantir que esteja acima do input */
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

/* Correção específica para Safari no iOS */
@supports (-webkit-touch-callout: none) {
  .send-button {
    /* Garantir que o botão seja visível */
    opacity: 1 !important;
    visibility: visible !important;
  }
  
  /* Melhorar a aparência do ícone dentro do botão */
  .send-button i {
    font-size: 14px !important;
    line-height: 1 !important;
    display: block !important;
  }
}

/* Corrigir botão em telas pequenas */
@media (max-width: 480px) {
  .input-container {
    padding-right: 5px !important;
  }
  
  .send-button {
    right: 5px !important;
  }
}

.hero {
  background-color: #FFF !important;
}

@media (max-width: 768px) {
  .hero {
    background-color: #FFF !important;
  }
}
