/* Estilos específicos para a identidade visual do CryptoFlowAI */

:root {
  --primary-color: #2a71d0;
  --secondary-color: #6c63ff;
  --accent-color: #00d09c;
  --dark-color: #1a2b4a;
  --light-color: #f8f9fa;
  --text-color: #333;
  --text-light: #6c757d;
  --success-color: #28a745;
  --warning-color: #ffc107;
  --danger-color: #dc3545;
}

/* Animações para elementos da marca */
@keyframes flowAnimation {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0.7;
  }
  50% {
    transform: translateY(-10px) scale(1.05);
    opacity: 1;
  }
  100% {
    transform: translateY(0) scale(1);
    opacity: 0.7;
  }
}

.flow-animate {
  animation: flowAnimation 3s ease-in-out infinite;
}

/* Efeito de gradiente para botões e elementos destacados */
.gradient-bg {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  color: white;
  transition: all 0.3s ease;
}

.gradient-bg:hover {
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Estilo para cards com tema CryptoFlowAI */
.crypto-card {
  border-radius: 12px;
  overflow: hidden;
  background-color: white;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border-top: 4px solid var(--accent-color);
}

.crypto-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* Ícones temáticos */
.crypto-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(42, 113, 208, 0.1) 0%, rgba(0, 208, 156, 0.1) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--accent-color);
  font-size: 24px;
  transition: all 0.3s ease;
}

.crypto-icon:hover {
  transform: rotate(15deg) scale(1.1);
}

/* Efeito de destaque para textos importantes */
.highlight-text {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

/* Estilo para tabelas de dados */
.crypto-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

.crypto-table th {
  background-color: var(--dark-color);
  color: white;
  padding: 12px 15px;
  text-align: left;
}

.crypto-table td {
  padding: 12px 15px;
  border-bottom: 1px solid #eee;
}

.crypto-table tr:hover {
  background-color: rgba(0, 208, 156, 0.05);
}

/* Badges para status */
.crypto-badge {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.badge-success {
  background-color: rgba(40, 167, 69, 0.1);
  color: var(--success-color);
}

.badge-warning {
  background-color: rgba(255, 193, 7, 0.1);
  color: var(--warning-color);
}

.badge-danger {
  background-color: rgba(220, 53, 69, 0.1);
  color: var(--danger-color);
}

/* Efeito de partículas para fundos */
.particles-bg {
  position: relative;
  overflow: hidden;
}

.particles-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/crypto-pattern.png');
  background-size: cover;
  opacity: 0.05;
  z-index: -1;
}

/* Estilo para gráficos e visualizações */
.chart-container {
  background-color: white;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin: 20px 0;
}

/* Estilo para notificações */
.crypto-notification {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: white;
  border-left: 4px solid var(--accent-color);
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transform: translateX(120%);
  transition: transform 0.3s ease;
}

.crypto-notification.show {
  transform: translateX(0);
}

.crypto-notification-title {
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--dark-color);
}

.crypto-notification-message {
  color: var(--text-light);
  font-size: 14px;
}

/* Estilo para tooltips */
.crypto-tooltip {
  position: relative;
  display: inline-block;
  cursor: help;
}

.crypto-tooltip .tooltip-text {
  visibility: hidden;
  width: 200px;
  background-color: var(--dark-color);
  color: white;
  text-align: center;
  border-radius: 6px;
  padding: 10px;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.3s;
}

.crypto-tooltip:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}

/* Estilo para loader */
.crypto-loader {
  display: inline-block;
  width: 50px;
  height: 50px;
  border: 3px solid rgba(0, 208, 156, 0.3);
  border-radius: 50%;
  border-top-color: var(--accent-color);
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Estilo para switches */
.crypto-switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.crypto-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.crypto-switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: .4s;
  border-radius: 34px;
}

.crypto-switch .slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

.crypto-switch input:checked + .slider {
  background-color: var(--accent-color);
}

.crypto-switch input:checked + .slider:before {
  transform: translateX(26px);
}

/* Estilo para progress bars */
.crypto-progress {
  height: 8px;
  background-color: #e9ecef;
  border-radius: 4px;
  overflow: hidden;
  margin: 10px 0;
}

.crypto-progress-bar {
  height: 100%;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  border-radius: 4px;
  transition: width 0.5s ease;
}

/* Estilo para tags */
.crypto-tag {
  display: inline-block;
  padding: 5px 10px;
  background-color: rgba(108, 99, 255, 0.1);
  color: var(--secondary-color);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  margin-right: 5px;
  margin-bottom: 5px;
}

/* Estilo para alertas */
.crypto-alert {
  padding: 15px;
  border-radius: 8px;
  margin: 15px 0;
  border-left: 4px solid;
}

.crypto-alert-info {
  background-color: rgba(42, 113, 208, 0.1);
  border-left-color: var(--primary-color);
}

.crypto-alert-success {
  background-color: rgba(0, 208, 156, 0.1);
  border-left-color: var(--accent-color);
}

.crypto-alert-warning {
  background-color: rgba(255, 193, 7, 0.1);
  border-left-color: var(--warning-color);
}

.crypto-alert-danger {
  background-color: rgba(220, 53, 69, 0.1);
  border-left-color: var(--danger-color);
}

/* Estilo para avatares */
.crypto-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid white;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.crypto-avatar-group {
  display: flex;
}

.crypto-avatar-group .crypto-avatar {
  margin-left: -15px;
  transition: transform 0.3s ease;
}

.crypto-avatar-group .crypto-avatar:first-child {
  margin-left: 0;
}

.crypto-avatar-group .crypto-avatar:hover {
  transform: translateY(-5px);
  z-index: 1;
}

/* Estilo para estatísticas */
.crypto-stat {
  text-align: center;
  padding: 20px;
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.crypto-stat:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.crypto-stat-value {
  font-size: 36px;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 5px;
}

.crypto-stat-label {
  color: var(--text-light);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Estilo para timeline */
.crypto-timeline {
  position: relative;
  padding-left: 30px;
}

.crypto-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
  background-color: #eee;
}

.crypto-timeline-item {
  position: relative;
  margin-bottom: 30px;
}

.crypto-timeline-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -30px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--accent-color);
  border: 2px solid white;
  box-shadow: 0 0 0 2px var(--accent-color);
}

.crypto-timeline-date {
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 5px;
}

.crypto-timeline-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 5px;
}

.crypto-timeline-content {
  color: var(--text-light);
}

/* Estilo para preços */
.crypto-price {
  font-size: 24px;
  font-weight: 700;
  color: var(--dark-color);
}

.crypto-price-currency {
  font-size: 16px;
  color: var(--text-light);
  margin-right: 5px;
}

.crypto-price-period {
  font-size: 14px;
  color: var(--text-light);
  margin-left: 5px;
}

/* Estilo para botões de ação flutuantes */
.crypto-fab {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: var(--accent-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 999;
}

.crypto-fab:hover {
  transform: scale(1.1) rotate(90deg);
  background-color: var(--primary-color);
}

/* Estilo para divisores */
.crypto-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--accent-color), transparent);
  margin: 30px 0;
}

/* Estilo para citações */
.crypto-quote {
  padding: 20px;
  background-color: rgba(108, 99, 255, 0.05);
  border-left: 4px solid var(--secondary-color);
  margin: 20px 0;
  font-style: italic;
  color: var(--text-light);
}

.crypto-quote-author {
  margin-top: 10px;
  font-weight: 600;
  color: var(--dark-color);
  font-style: normal;
}

/* Estilo para listas */
.crypto-list {
  list-style: none;
  padding: 0;
}

.crypto-list li {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  position: relative;
  padding-left: 25px;
}

.crypto-list li:last-child {
  border-bottom: none;
}

.crypto-list li::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background-color: var(--accent-color);
  border-radius: 50%;
}

/* Estilo para cartões de perfil */
.crypto-profile-card {
  background-color: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.crypto-profile-header {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  padding: 30px 20px;
  text-align: center;
  color: white;
}

.crypto-profile-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 5px solid white;
  margin: 0 auto 15px;
  object-fit: cover;
}

.crypto-profile-name {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
}

.crypto-profile-title {
  font-size: 14px;
  opacity: 0.8;
}

.crypto-profile-body {
  padding: 20px;
}

.crypto-profile-stats {
  display: flex;
  justify-content: space-around;
  margin-bottom: 20px;
}

.crypto-profile-stat {
  text-align: center;
}

.crypto-profile-stat-value {
  font-size: 24px;
  font-weight: 700;
  color: var(--dark-color);
}

.crypto-profile-stat-label {
  font-size: 12px;
  color: var(--text-light);
  text-transform: uppercase;
}

/* Estilo para cartões de planos */
.crypto-plan-card {
  background-color: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.crypto-plan-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.crypto-plan-card.featured {
  border: 2px solid var(--accent-color);
}

.crypto-plan-card.featured::before {
  content: 'Recomendado';
  position: absolute;
  top: 15px;
  right: -30px;
  background-color: var(--accent-color);
  color: white;
  padding: 5px 30px;
  transform: rotate(45deg);
  font-size: 12px;
  font-weight: 600;
}

.crypto-plan-header {
  padding: 20px;
  text-align: center;
  border-bottom: 1px solid #eee;
}

.crypto-plan-name {
  font-size: 22px;
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 10px;
}

.crypto-plan-price {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.crypto-plan-period {
  font-size: 14px;
  color: var(--text-light);
}

.crypto-plan-features {
  padding: 20px;
}

.crypto-plan-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.crypto-plan-features li {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  position: relative;
  padding-left: 25px;
}

.crypto-plan-features li:last-child {
  border-bottom: none;
}

.crypto-plan-features li::before {
  content: '\2713';
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  color: var(--accent-color);
  font-weight: 600;
}

.crypto-plan-footer {
  padding: 20px;
  text-align: center;
}

/* Estilo para cartões de depoimentos */
.crypto-testimonial-card {
  background-color: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  position: relative;
}

.crypto-testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 60px;
  color: rgba(108, 99, 255, 0.1);
  font-family: Georgia, serif;
}

.crypto-testimonial-content {
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 20px;
}

.crypto-testimonial-author {
  display: flex;
  align-items: center;
}

.crypto-testimonial-author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  object-fit: cover;
}

.crypto-testimonial-author-name {
  font-size: 18px;
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 5px;
}

.crypto-testimonial-author-title {
  font-size: 14px;
  color: var(--text-light);
}

/* Estilo para cartões de recursos */
.crypto-feature-card {
  background-color: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
}

.crypto-feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.crypto-feature-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(42, 113, 208, 0.1) 0%, rgba(0, 208, 156, 0.1) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--accent-color);
  font-size: 30px;
  transition: all 0.3s ease;
}

.crypto-feature-card:hover .crypto-feature-icon {
  transform: rotate(15deg) scale(1.1);
}

.crypto-feature-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 15px;
}

.crypto-feature-description {
  color: var(--text-light);
}

/* Estilo para cartões de passos */
.crypto-step-card {
  display: flex;
  background-color: white;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.crypto-step-card:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.crypto-step-number {
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin-right: 20px;
  flex-shrink: 0;
}

.crypto-step-content {
  flex: 1;
}

.crypto-step-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 10px;
}

.crypto-step-description {
  color: var(--text-light);
}

/* Estilo para cartões de FAQ */
.crypto-faq-card {
  background-color: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 15px;
}

.crypto-faq-question {
  padding: 20px;
  background-color: white;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--dark-color);
}

.crypto-faq-question i {
  transition: all 0.3s ease;
}

.crypto-faq-question.active i {
  transform: rotate(180deg);
}

.crypto-faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  background-color: #f9f9f9;
}

.crypto-faq-answer.active {
  padding: 20px;
  max-height: 1000px;
}

/* Estilo para cartões de contato */
.crypto-contact-card {
  background-color: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.crypto-contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.crypto-contact-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(108, 99, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: var(--secondary-color);
  font-size: 20px;
  flex-shrink: 0;
}

.crypto-contact-content h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 5px;
}

.crypto-contact-content p {
  color: var(--text-light);
}

/* Estilo para formulários */
.crypto-form {
  background-color: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.crypto-form-group {
  margin-bottom: 20px;
}

.crypto-form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--dark-color);
}

.crypto-form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: inherit;
  font-size: 16px;
  transition: all 0.3s ease;
}

.crypto-form-control:focus {
  border-color: var(--primary-color);
  outline: none;
  box-shadow: 0 0 0 3px rgba(42, 113, 208, 0.1);
}

.crypto-form-control.error {
  border-color: var(--danger-color);
}

.crypto-form-error {
  color: var(--danger-color);
  font-size: 14px;
  margin-top: 5px;
}

.crypto-form-success {
  background-color: rgba(0, 208, 156, 0.1);
  color: var(--accent-color);
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-weight: 500;
}

/* Estilo para botões */
.crypto-btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.crypto-btn:hover {
  background-color: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.crypto-btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.crypto-btn-outline:hover {
  background-color: var(--primary-color);
  color: white;
}

.crypto-btn-accent {
  background-color: var(--accent-color);
}

.crypto-btn-accent:hover {
  background-color: #00b589;
}

.crypto-btn-block {
  display: block;
  width: 100%;
}

.crypto-btn-sm {
  padding: 8px 15px;
  font-size: 14px;
}

.crypto-btn-lg {
  padding: 15px 40px;
  font-size: 18px;
}

.crypto-btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.crypto-btn-icon i {
  margin-right: 10px;
}

/* Estilo para rodapé */
.crypto-footer {
  background-color: var(--dark-color);
  color: white;
  padding: 80px 0 30px;
}

.crypto-footer-logo {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  display: inline-block;
  color: white;
}

.crypto-footer-logo span {
  color: var(--accent-color);
}

.crypto-footer-about p {
  margin-bottom: 20px;
  opacity: 0.8;
}

.crypto-social-links {
  display: flex;
  gap: 15px;
}

.crypto-social-links a {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
}

.crypto-social-links a:hover {
  background-color: var(--accent-color);
  transform: translateY(-5px);
}

.crypto-footer-links h3 {
  font-size: 20px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
  color: white;
}

.crypto-footer-links h3::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 2px;
  background-color: var(--accent-color);
  bottom: 0;
  left: 0;
}

.crypto-footer-links ul li {
  margin-bottom: 10px;
}

.crypto-footer-links ul li a {
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

.crypto-footer-links ul li a:hover {
  color: var(--accent-color);
  padding-left: 5px;
}

.crypto-footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 50px;
}

.crypto-footer-bottom p {
  opacity: 0.8;
  font-size: 14px;
}

/* Estilo para newsletter */
.crypto-newsletter {
  background-color: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.crypto-newsletter h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 15px;
}

.crypto-newsletter p {
  color: var(--text-light);
  margin-bottom: 20px;
}

.crypto-newsletter-form {
  display: flex;
}

.crypto-newsletter-form input {
  flex: 1;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px 0 0 8px;
  font-family: inherit;
  font-size: 16px;
}

.crypto-newsletter-form button {
  background-color: var(--accent-color);
  color: white;
  border: none;
  padding: 0 20px;
  border-radius: 0 8px 8px 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.crypto-newsletter-form button:hover {
  background-color: #00b589;
}

/* Estilo para seção de chamada para ação */
.crypto-cta {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
  text-align: center;
  padding: 80px 0;
  border-radius: 12px;
}

.crypto-cta h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.crypto-cta p {
  font-size: 18px;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}

.crypto-cta .crypto-btn {
  background-color: white;
  color: var(--primary-color);
}

.crypto-cta .crypto-btn:hover {
  background-color: var(--accent-color);
  color: white;
}

/* Estilo para seção de estatísticas */
.crypto-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  margin: 50px 0;
}

.crypto-stat-box {
  flex: 1;
  min-width: 200px;
  text-align: center;
  padding: 30px;
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.crypto-stat-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.crypto-stat-value {
  font-size: 48px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.crypto-stat-label {
  color: var(--text-light);
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Estilo para seção de parceiros */
.crypto-partners {
  text-align: center;
  margin: 50px 0;
}

.crypto-partners h2 {
  font-size: 36px;
  margin-bottom: 50px;
  color: var(--dark-color);
}

.crypto-partners-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 50px;
}

.crypto-partners-logo {
  max-width: 150px;
  height: auto;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.crypto-partners-logo:hover {
  opacity: 1;
  transform: scale(1.1);
}

/* Estilo para seção de recursos */
.crypto-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 50px 0;
}

/* Estilo para seção de como funciona */
.crypto-how-it-works {
  margin: 50px 0;
}

.crypto-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  position: relative;
}

.crypto-steps::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #eee;
  z-index: -1;
}

.crypto-step {
  flex: 1;
  min-width: 250px;
  text-align: center;
  position: relative;
}

.crypto-step-icon {
  width: 100px;
  height: 100px;
  background-color: white;
  border: 2px solid var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 40px;
  color: var(--accent-color);
  position: relative;
  z-index: 1;
}

.crypto-step h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 15px;
}

.crypto-step p {
  color: var(--text-light);
}

/* Estilo para seção de depoimentos */
.crypto-testimonials {
  margin: 50px 0;
}

.crypto-testimonials-slider {
  display: flex;
  overflow-x: auto;
  gap: 30px;
  padding: 20px 0;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.crypto-testimonials-slider::-webkit-scrollbar {
  display: none;
}

.crypto-testimonial {
  flex: 0 0 350px;
  scroll-snap-align: start;
}

/* Estilo para seção de preços */
.crypto-pricing {
  margin: 50px 0;
}

.crypto-pricing-plans {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.crypto-pricing-plan {
  flex: 1;
  min-width: 300px;
  max-width: 350px;
}

/* Estilo para seção de FAQ */
.crypto-faqs {
  margin: 50px 0;
}

/* Estilo para seção de contato */
.crypto-contact {
  margin: 50px 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 50px;
}

/* Estilo para seção de blog */
.crypto-blog {
  margin: 50px 0;
}

.crypto-blog-posts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.crypto-blog-post {
  background-color: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.crypto-blog-post:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.crypto-blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.crypto-blog-content {
  padding: 20px;
}

.crypto-blog-date {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 10px;
}

.crypto-blog-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 10px;
}

.crypto-blog-excerpt {
  color: var(--text-light);
  margin-bottom: 20px;
}

/* Estilo para seção de download de app */
.crypto-app-download {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
  padding: 80px 0;
  border-radius: 12px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.crypto-app-content {
  flex: 1;
  min-width: 300px;
}

.crypto-app-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.crypto-app-content p {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.9;
}

.crypto-app-buttons {
  display: flex;
  gap: 20px;
}

.crypto-app-button {
  display: flex;
  align-items: center;
  background-color: white;
  color: var(--dark-color);
  padding: 10px 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.crypto-app-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.crypto-app-button i {
  font-size: 30px;
  margin-right: 10px;
}

.crypto-app-button-text {
  text-align: left;
}

.crypto-app-button-text span {
  display: block;
  font-size: 12px;
  opacity: 0.8;
}

.crypto-app-button-text strong {
  font-size: 18px;
  font-weight: 600;
}

.crypto-app-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.crypto-app-image img {
  max-width: 100%;
  height: auto;
}

/* Estilo para seção de equipe */
.crypto-team {
  margin: 50px 0;
}

.crypto-team-members {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.crypto-team-member {
  background-color: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.crypto-team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.crypto-team-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.crypto-team-info {
  padding: 20px;
  text-align: center;
}

.crypto-team-name {
  font-size: 20px;
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 5px;
}

.crypto-team-position {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 15px;
}

.crypto-team-social {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.crypto-team-social a {
  width: 30px;
  height: 30px;
  background-color: rgba(108, 99, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-color);
  transition: all 0.3s ease;
}

.crypto-team-social a:hover {
  background-color: var(--secondary-color);
  color: white;
  transform: translateY(-3px);
}

/* Estilo para seção de parceiros */
.crypto-clients {
  margin: 50px 0;
  text-align: center;
}

.crypto-clients h2 {
  font-size: 36px;
  margin-bottom: 50px;
  color: var(--dark-color);
}

.crypto-clients-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 50px;
}

.crypto-clients-logo {
  max-width: 150px;
  height: auto;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.crypto-clients-logo:hover {
  opacity: 1;
  transform: scale(1.1);
}

/* Estilo para seção de newsletter */
.crypto-newsletter-section {
  background-color: #f5f7fa;
  padding: 80px 0;
  text-align: center;
  margin: 50px 0;
}

.crypto-newsletter-section h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: var(--dark-color);
}

.crypto-newsletter-section p {
  font-size: 18px;
  margin-bottom: 30px;
  color: var(--text-light);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.crypto-newsletter-form {
  max-width: 500px;
  margin: 0 auto;
}

/* Estilo para seção de contato */
.crypto-contact-section {
  margin: 50px 0;
}

.crypto-contact-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 50px;
}

.crypto-contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.crypto-contact-form {
  background-color: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Estilo para seção de mapa */
.crypto-map {
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
  margin: 50px 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Estilo para seção de rodapé */
.crypto-footer-section {
  background-color: var(--dark-color);
  color: white;
  padding: 80px 0 30px;
}

.crypto-footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

/* Responsividade */
@media (max-width: 992px) {
  .crypto-app-download {
    text-align: center;
  }
  
  .crypto-app-buttons {
    justify-content: center;
  }
  
  .crypto-steps::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .crypto-newsletter-form {
    flex-direction: column;
  }
  
  .crypto-newsletter-form input {
    border-radius: 8px;
    margin-bottom: 10px;
  }
  
  .crypto-newsletter-form button {
    border-radius: 8px;
    width: 100%;
    padding: 12px;
  }
  
  .crypto-app-buttons {
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  .crypto-stat-value {
    font-size: 36px;
  }
  
  .crypto-cta h2 {
    font-size: 28px;
  }
  
  .crypto-cta p {
    font-size: 16px;
  }
}
