@import url('globals.css');

/*********************************
* Hero Section
*********************************/
.hero {
  /* REMOVIDO 'display: flex' PARA SIMPLIFICAR E EVITAR CONFLITOS */
  width: 100%;
  text-align: center; /* Garante que o texto interno se alinhe ao centro por padrão */
  
  /* Mantém o controle do espaçamento vertical com padding */
  padding: 40px 20px 40px; 

  /* Estilos Padrão */
  position: relative;
  color: #ffffff;
  z-index: 8;
  overflow: hidden;
  box-sizing: border-box; 
}

.hero-content {
  /* --- APLICA A CENTRALIZAÇÃO HORIZONTAL MAIS CONFIÁVEL --- */
  margin-left: auto;
  margin-right: auto;

  /* Estilos Padrão do conteúdo */
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  max-width: 800px;
  width: 100%;
}

.hero-title {
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1.1;
}

.hero-title span {
  color: var(--color-primary);
}

.hero-description {
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.5;
  max-width: 800px;
}

/* NOVO ESTILO PARA A FRASE DE CHAMADA */
.hero-cta {
    font-weight: bold;
    margin-top: 1rem; /* Espaço acima da frase */
    margin-bottom: 0.5rem; /* Espaço pequeno entre a frase e os botões */
}

/* =============================================== */
/* ==       ESTILOS DOS BOTÕES (ATUALIZADO)     == */
/* =============================================== */

.hero-buttons {
  display: flex;
  gap: 2rem;
  /* margin-top: 40px; <-- REMOVIDO PARA APROXIMAR OS BOTÕES */
  justify-content: center;
  flex-wrap: wrap;
}

/* Estilo base para ambos os botões */
.hero-buttons a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 1.8rem 2.8rem; /* Altura aumentada para combinar com os outros botões */
  font-weight: 600;
  font-size: 1.2rem;      /* Tamanho da fonte aumentado para combinar */
  border-radius: 12px;
  border: none;
  text-decoration: none;
  transition: transform 0.3s ease;
  position: relative;
}

.button-icon {
  width: 24px;
  height: 24px;
}

.hero-buttons a:hover {
  transform: scale(1.05); /* Efeito de zoom ao passar o mouse */
}

/* --- Botão Primário (Telegram) --- */
.hero-buttons a.primary-button {
  background-color: #24A1DE; /* Azul do Telegram */
  color: #ffffff;
  /* Aplica a animação de brilho azul */
  animation: glow-pulse-telegram 3s infinite ease-in-out;
}

/* --- Botão Secundário (Whatsapp) --- */
.hero-buttons a.secondary-button {
  background-color: #25D366; /* Verde do WhatsApp */
  color: #ffffff;
  /* Aplica a animação de brilho verde com um pequeno atraso */
  animation: glow-pulse-whatsapp 3s infinite ease-in-out;
  animation-delay: 0.2s;
}

/* --- Animação de Brilho para o TELEGRAM --- */
@keyframes glow-pulse-telegram {
  0%, 100% {
    box-shadow: 0 0 20px rgba(36, 161, 222, 0.6), /* Brilho mais próximo */
                0 0 30px rgba(36, 161, 222, 0.4); /* Brilho mais afastado */
  }
  50% {
    box-shadow: 0 0 35px rgba(36, 161, 222, 0.8), /* Brilho mais intenso */
                0 0 50px rgba(36, 161, 222, 0.6); /* Brilho mais espalhado */
  }
}

/* --- Animação de Brilho para o WHATSAPP --- */
@keyframes glow-pulse-whatsapp {
  0%, 100% {
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.6),
                0 0 30px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 0 35px rgba(37, 211, 102, 0.8),
                0 0 50px rgba(37, 211, 102, 0.6);
  }
}

.gradient-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 40px 40px;
    background-image: var(--gradient-grid);
    z-index: 2;
}

.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.particle {
    position: absolute;
    background: white;
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
}

.main {
    width: 100%;
    z-index: 7;
    position: relative;
}

.links {
    width: 100%;
    min-height: 400px;
    padding: 4rem 0;
    background-color: var(--color-bg-primary);
    position: relative;
}

.links .vector-pattern {
    width: 100%;
    height: 340px;
    position: absolute;
    left: 0;
    top: -340px;
    z-index: -1;
    pointer-events: none;
    user-select: none;
    display: none;
}

.links .vector-pattern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.links .links-grid .link-card {
    background: transparent;
    border: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.links .links-grid .link-card .link-icon,
.links .links-grid .link-card .link-title,
.links .links-grid .link-card .link-description {
    display: none;
}

.links .links-grid .link-card.telegram .link-icon {
    background-color: var(--color-telegram-bg);
    color: var(--color-telegram);
}

.links .links-grid .link-card.whatsapp .link-icon {
    background-color: var(--color-whatsapp-bg);
    color: var(--color-whatsapp);
}

.links .links-grid .link-card .link-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text-primary);
    text-align: center;
}

.links .links-grid .link-card .link-description {
    font-size: 16px;
    color: var(--color-text-tertiary);
}

/* =============================================== */
/* ==       ESTILOS DOS BOTÕES DA SEÇÃO LINKS   == */
/* =============================================== */

.links .links-grid .link-card .link-button {
    width: 100%;
    padding: 1.8rem 1rem;
    color: #ffffff;
    font-weight: 600;
    font-size: 1.2rem;
    border-radius: 12px;
    margin-top: 0;
    text-decoration: none;
    border: none;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}


.links .links-grid .link-card .link-button:hover {
    transform: scale(1.05); /* Efeito de zoom ao passar o mouse */
}

/* Estilo específico e animação para o botão Telegram */
.links .links-grid .link-card.telegram .link-button {
    background-color: #24A1DE; /* Cor azul do Telegram */
    animation: glow-pulse-telegram 3s infinite ease-in-out;
}

/* Estilo específico e animação para o botão WhatsApp */
.links .links-grid .link-card.whatsapp .link-button {
    background-color: #25D366; /* Cor verde do WhatsApp */
    animation: glow-pulse-whatsapp 3s infinite ease-in-out;
    animation-delay: 0.2s; /* Mantém o mesmo atraso na animação */
}

.statistics {
    width: 100%;
    padding: 2.5rem 1rem 4rem 1rem; /* Padding superior reduzido */
    position: relative;
    box-sizing: border-box;
}

.statistics .statistics-grid {
    display: grid;
    /* Desktop: 4 colunas */
    grid-template-columns: repeat(4, 1fr); 
    gap: 2rem;
    width: 100%;
    margin: 0 auto;
    padding: 0;
}


.statistics .statistics-grid .statistic-card {
    background-color: var(--color-bg-secondary);
    border-radius: 1rem;
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
    text-align: center;
    border: 1px solid var(--color-border-primary);
    position: relative;
}

.statistics .statistics-grid .statistic-card .statistic-label {
    font-size: 1rem;
    color: var(--color-text-tertiary);
}

.statistics .statistics-grid .statistic-card .statistic-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    margin-bottom: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.statistics .statistics-grid .statistic-card .statistic-icon svg {
    color: white;
    transition: transform 0.3s ease;
}

.statistics .statistics-grid .statistic-card:hover .statistic-icon {
    transform: scale(1.1);
    box-shadow: var(--shadow-primary);
}

.statistics .statistics-grid .statistic-card:hover .statistic-icon svg {
    transform: rotate(5deg);
}

.offers {
    width: 100%;
    padding: 4rem 0;
    background-color: var(--color-bg-primary);
    position: relative;
}

.offers-swiper {
    width: 100%;
    padding: 2rem 20px 4rem 20px !important; /* Adicionado padding horizontal */
    position: relative;
    box-sizing: border-box; /* Garante que o padding não aumente o tamanho total */
}

.offers-swiper .swiper-slide {
    height: auto;
    display: flex;
    justify-content: center;
}

.offers-swiper .offer-card {
    background-color: var(--color-bg-secondary);
    border-radius: 1rem;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border: 1px solid var(--color-border-primary);
    width: 100%;
    max-width: 400px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.offers-swiper .offer-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-secondary);
}

.offers-swiper .offer-image {
    width: 100%;
    height: 200px;
    border-radius: 0.5rem;
    padding: 0.5rem;
    overflow: hidden;
    background-color: var(--color-bg-card);
}

.offers-swiper .offer-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.offers-swiper .offer-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.offers-swiper .offer-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-text-primary);
    line-height: 1.3;
}

.offers-swiper .offer-description {
    font-size: 0.9rem;
    color: var(--color-text-tertiary);
    line-height: 1.4;
}

.offers-swiper .offer-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: auto;
}

.offers-swiper .offer-old-price {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    text-decoration: line-through;
}

.offers-swiper .offer-current-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-primary);
}

.offers-swiper .offer-discount {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-success);
    background-color: var(--color-success-bg);
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    align-self: flex-start;
}

.offers-swiper .swiper-button-next,
.offers-swiper .swiper-button-prev {
    color: var(--color-primary);
    background-color: var(--color-primary-light);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-top: -25px;
    transition: all 0.3s ease;
}

.offers-swiper .swiper-button-next:hover,
.offers-swiper .swiper-button-prev:hover {
    background-color: var(--color-primary-hover);
    transform: scale(1.1);
}

.offers-swiper .swiper-button-next:after,
.offers-swiper .swiper-button-prev:after {
    font-size: 18px;
    font-weight: bold;
}

.offers-swiper .swiper-pagination {
    bottom: 0;
}

.offers-swiper .swiper-pagination-bullet {
    background-color: var(--color-text-muted);
    opacity: 0.5;
    transition: all 0.3s ease;
}

.offers-swiper .swiper-pagination-bullet-active {
    background-color: var(--color-primary);
    opacity: 1;
    transform: scale(1.2);
}

.testimonials {
    width: 100%;
    padding: 4rem 0;
    background-color: var(--color-bg-secondary);
    position: relative;
}

.testimonials-swiper {
    width: 100%;
    padding: 2rem 0 4rem 0 !important;
    position: relative;
}

.testimonials-swiper .swiper-slide {
    height: auto;
    display: flex;
    justify-content: center;
}

.testimonials-swiper .testimonial-card {
    background-color: var(--color-bg-tertiary);
    border-radius: 1rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    border: 1px solid var(--color-border-secondary);
    width: 100%;
    max-width: 400px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.testimonials-swiper .testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-tertiary);
}

.testimonials-swiper .testimonial-stars {
    text-align: center;
    font-size: 1.2rem;
}

.testimonials-swiper .testimonial-text {
    font-size: 1rem;
    color: var(--color-text-light);
    line-height: 1.6;
    text-align: center;
    font-style: italic;
    position: relative;
    padding: 0 0.8rem;
}

.testimonials-swiper .testimonial-text::before {
    content: '❝';
    font-size: 2rem;
    color: var(--color-primary);
    position: absolute;
    top: -10px;
    left: -10px;
    font-family: serif;
}

.testimonials-swiper .testimonial-text::after {
    content: '❞';
    font-size: 2rem;
    color: var(--color-primary);
    position: absolute;
    bottom: -20px;
    right: -10px;
    font-family: serif;
}

.testimonials-swiper .testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
}

.testimonials-swiper .author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--color-primary);
    flex-shrink: 0;
}

.testimonials-swiper .author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonials-swiper .author-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonials-swiper .author-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text-primary);
}

.testimonials-swiper .author-role {
    font-size: 0.85rem;
    color: var(--color-text-tertiary);
}

.testimonials-swiper .swiper-button-next,
.testimonials-swiper .swiper-button-prev {
    color: var(--color-primary);
    background-color: var(--color-primary-light);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-top: -25px;
    transition: all 0.3s ease;
}

.testimonials-swiper .swiper-button-next:hover,
.testimonials-swiper .swiper-button-prev:hover {
    background-color: var(--color-primary-hover);
    transform: scale(1.1);
}

.testimonials-swiper .swiper-button-next:after,
.testimonials-swiper .swiper-button-prev:after {
    font-size: 18px;
    font-weight: bold;
}

.testimonials-swiper .swiper-pagination {
    bottom: 0;
}

.testimonials-swiper .swiper-pagination-bullet {
    background-color: var(--color-text-muted);
    opacity: 0.5;
    transition: all 0.3s ease;
}

.testimonials-swiper .swiper-pagination-bullet-active {
    background-color: var(--color-primary);
    opacity: 1;
    transform: scale(1.2);
}

.faq {
    width: 100%;
    padding: 1rem 0;
    background-color: var(--color-bg-primary);
    position: relative;
}

.faq .faq-list {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
    width: 100%;
    box-sizing: border-box;
}

.faq .faq-item {
    background-color: var(--color-bg-secondary);
    border-radius: 1rem;
    margin-bottom: 1rem;
    border: 1px solid var(--color-border-primary);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

.faq .faq-item:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-card);
}

.faq .faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    user-select: none;
    outline: none;
    width: 100%;
    box-sizing: border-box;
}

.faq .faq-question:hover {
    background-color: var(--color-primary-light);
}

.faq .faq-question:focus {
    background-color: var(--color-primary-light);
    border-radius: 0.5rem;
}

.faq .faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin: 0;
    flex: 1;
    transition: color 0.3s ease;
    padding-right: 1rem;
    word-wrap: break-word;
    hyphens: auto;
}

.faq .faq-icon {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--color-primary);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.faq .faq-icon::before {
    content: '+';
    display: block;
    transition: transform 0.3s ease;
}

.faq .faq-item.active .faq-icon::before {
    content: '−';
    transform: rotate(0deg);
}

.faq .faq-answer {
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
    background-color: var(--color-bg-subtle);
    padding: 0 1.5rem;
    opacity: 0;
    width: 100%;
    box-sizing: border-box;
}

.faq .faq-item.active .faq-answer {
    padding: 1rem 1.5rem 1.5rem 1.5rem;
    opacity: 1;
}

.faq .faq-answer p {
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
    transition: opacity 0.3s ease;
    word-wrap: break-word;
    hyphens: auto;
}

.footer {
    width: 100%;
    padding: 2rem 0;
    background-color: var(--color-bg-primary);
    border-top: 1px solid var(--color-border-primary);
    position: relative;
    z-index: 7;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
}

.footer-copyright {
    color: var(--color-text-tertiary);
    font-size: 0.9rem;
    margin: 0;
}

.footer-developer {
    color: var(--color-text-muted);
    font-size: 0.8rem;
    margin: 0;
}

.developer-name {
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.developer-name:hover {
    color: var(--color-primary-dark);
    text-decoration: underline;
}

.mobile-menu-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-modal.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-bg-overlay);
    backdrop-filter: blur(4px);
}

.mobile-menu-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 320px;
    height: 100%;
    background-color: var(--color-bg-secondary);
    border-left: 1px solid var(--color-border-primary);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.mobile-menu-modal.active .mobile-menu-content {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--color-border-primary);
    background-color: var(--color-bg-primary);
}

.mobile-menu-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--color-text-primary);
    font-size: 1.2rem;
    font-weight: 700;
}

.mobile-menu-logo-img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: var(--color-text-tertiary);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-close:hover {
    color: var(--color-text-primary);
    background-color: var(--color-bg-card);
}

.mobile-menu-nav {
    flex: 1;
    padding: 1rem 0;
}

.mobile-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-menu-item {
    margin: 0;
}

.mobile-menu-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    color: var(--color-text-tertiary);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.mobile-menu-link:hover {
    color: var(--color-text-primary);
    background-color: var(--color-bg-tertiary);
    border-left-color: var(--color-primary);
}

.mobile-menu-link.active {
    color: var(--color-primary);
    background-color: var(--color-primary-light);
    border-left-color: var(--color-primary);
}

.mobile-menu-link svg {
    flex-shrink: 0;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.mobile-menu-link:hover svg,
.mobile-menu-link.active svg {
    opacity: 1;
}

.mobile-menu-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--color-border-primary);
    background-color: var(--color-bg-primary);
}

.mobile-menu-telegram {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 1.2rem 1rem;
    background-color: #24A1DE;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 12px;
    transition: transform 0.3s ease;
    border: none;
    animation: glow-pulse-telegram 3s infinite ease-in-out;
}

.mobile-menu-telegram:hover {
    transform: scale(1.05);
}

.mobile-menu-telegram svg {
    width: 24px;
    height: 24px;
}

/* =============================================== */
/* ==       ANIMAÇÃO DOURADA PARA "BUG"         == */
/* =============================================== */
.offer-card.bug-deal {
  position: relative;
  border-radius: 12px;
  box-shadow: 0 0 8px rgba(255, 215, 0, 0.6),
              0 0 15px rgba(255, 215, 0, 0.4);
  animation: subtle-gold-pulse 2.5s infinite ease-in-out;
}

/* =============================================== */
/* ==       ESTILO PARA O SELO DE "BUG"         == */
/* =============================================== */
.offer-card .bug-seal {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 90px;
  height: auto;
  z-index: 10;
  pointer-events: none;
}

@keyframes subtle-gold-pulse {
  0% {
    box-shadow: 0 0 8px rgba(255, 215, 0, 0.6),
                0 0 15px rgba(255, 215, 0, 0.4);
  }
  50% {
    box-shadow: 0 0 18px rgba(255, 215, 0, 0.9),
                0 0 30px rgba(255, 215, 0, 0.7);
  }
  100% {
    box-shadow: 0 0 8px rgba(255, 215, 0, 0.6),
                0 0 15px rgba(255, 215, 0, 0.4);
  }
}


/* =============================================== */
/* == ESTILOS PARA O CONTAINER DE ESTATÍSTICAS  == */
/* =============================================== */

/* O novo container que envolve a grade de estatísticas */
.statistics-container {
  max-width: 1200px; /* Largura máxima do container */
  margin: 2rem auto 0; /* Centraliza o container e adiciona margem no topo */
  padding: 2.5rem; /* Espaçamento interno */
  
  border: 1px solid rgba(0, 191, 255, 0.5); 
  border-radius: 30px; 
  
  background-color: rgba(14, 30, 53, 0.4); 
  backdrop-filter: blur(8px); 
  -webkit-backdrop-filter: blur(8px); 

  box-shadow: 0 0 20px rgba(0, 191, 255, 0.3), 
              0 0 40px rgba(0, 191, 255, 0.2);

  transition: all 0.3s ease-in-out;
}

.statistics-container:hover {
  transform: translateY(-5px); 
  box-shadow: 0 5px 30px rgba(0, 191, 255, 0.5), 
              0 0 50px rgba(0, 191, 255, 0.3);
  border-color: rgba(0, 191, 255, 0.8);
}

/* --- Responsividade --- */

@media (max-width: 992px) {
    .statistics .statistics-grid {
        /* Telas médias: ainda 4 colunas */
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ======================================================= */
/* ==  ANIMAÇÃO HOVER PARA ÍCONES DA SEÇÃO DE LINKS     == */
/* ======================================================= */

/* Transição suave para os ícones dentro dos cards */
.links .links-grid .link-card .link-icon {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Transição suave para a imagem dentro do ícone */
.links .links-grid .link-card .link-icon img {
    transition: transform 0.3s ease;
}

/* Efeito ao passar o mouse por cima do card de link */
.links .links-grid .link-card:hover .link-icon {
    transform: scale(1.1); /* Aumenta o tamanho do fundo do ícone */
}

/* Efeito específico para o ícone do Telegram */
.links .links-grid .link-card.telegram:hover .link-icon {
    box-shadow: 0 0 20px rgba(36, 161, 222, 0.7); /* Adiciona um brilho azul */
}

/* Efeito específico para o ícone do WhatsApp */
.links .links-grid .link-card.whatsapp:hover .link-icon {
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.7); /* Adiciona um brilho verde */
}

/* Efeito de rotação na imagem do ícone ao passar o mouse no card */
.links .links-grid .link-card:hover .link-icon img {
    transform: rotate(5deg); /* Rotaciona a imagem levemente */
}

/* ======================================================= */
/* ==       ANIMAÇÃO PARA TEXTOS DE CHAMADA             == */
/* ======================================================= */

/* Animação de brilho para o texto */
@keyframes text-glow {
  0%, 100% {
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
  }
  50% {
    text-shadow: 0 0 16px rgba(255, 255, 255, 0.8);
  }
}

/* Animação de pulo para os emojis */
@keyframes emoji-bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-8px);
  }
  60% {
    transform: translateY(-4px);
  }
}

/* Aplica a animação de brilho aos textos de chamada (no início e nos links) */
.hero-cta,
#links-subtitle {
  animation: text-glow 3s infinite ease-in-out;
}

/* Prepara os emojis para a animação de pulo (no início e nos links) */
.hero-cta span,
#links-subtitle span {
  display: inline-block; /* Necessário para a animação 'transform' funcionar */
  animation: emoji-bounce 2s infinite;
}

#links-subtitle {
    margin-bottom: 0.5rem;
    font-weight: bold; /* Adicionado para deixar em negrito */
}


/* ======================================================= */
/* ==       ESTILO PARA O LINK "VOLTAR AO TOPO"         == */
/* ======================================================= */

.footer-back-to-top {
  margin-top: 0.5rem;
}

.footer-back-to-top a {
  color: var(--color-text-tertiary); /* Cor sutil, igual ao copyright */
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease; /* Transição suave da cor no hover */
}

.footer-back-to-top a:hover {
  color: var(--color-primary); /* Muda para a cor primária ao passar o mouse */
  text-decoration: underline; /* Adiciona um sublinhado para feedback visual */
}

/* ======================================================= */
/* ==   AJUSTE PARA SEÇÃO DE LINKS (SEMPRE 2 COLUNAS)   == */
/* ======================================================= */

/* Altera a regra principal para forçar 2 colunas e ajusta o padding */
.links .links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* FORÇA 2 colunas de largura igual */
    gap: 2rem;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem; /* Garante padding lateral consistente */
    margin-top: 0; /* Removido para controlar o espaço pelo elemento acima */
}


/* =============================================== */
/* ==  ALINHAMENTO PARA NÚMEROS DE ESTATÍSTICA  == */
/* =============================================== */

.statistic-number {
    display: flex;
    justify-content: center;
    align-items: baseline; /* Alinha pela base do texto, ideal para tamanhos diferentes */
    gap: 0.25rem; /* Adiciona um pequeno espaço entre R$ e o número */
    font-size: 2rem; /* Define um tamanho base para o container */
    font-weight: 700;
    color: var(--color-primary);
}

.statistic-prefix {
    font-size: 1.5rem; /* Tamanho menor para o "R$" */
    font-weight: 600;
}

.statistic-value {
    font-size: 2rem; /* Mantém o tamanho original do número */
    font-weight: 700;
}

.statistic-suffix {
    font-size: 1.5rem; /* Tamanho menor para os centavos ",00" */
    font-weight: 600;
}

/* ======================================================= */
/* ==                 MEDIA QUERIES MOBILE              == */
/* ======================================================= */

@media (max-width: 768px) {
    .hero {
        padding: 40px 20px 40px;
    }

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

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

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
        padding: 0 1rem;
        box-sizing: border-box;
        gap: 1rem; /* Adicionado para espaçamento vertical */
    }

    .hero-buttons a {
        width: 100%;
        max-width: 450px;
        padding: 1.8rem 1rem;
        font-size: 1.2rem;
    }
    
    .footer {
        padding: 1.5rem 0;
    }

    .footer-content {
        gap: 0.25rem;
    }

    .footer-copyright {
        font-size: 0.8rem;
    }

    .footer-developer {
        font-size: 0.75rem;
    }
    
    .navbar-menu {
        display: none;
    }

    /* ================================================= */
    /* ==     CORREÇÃO PARA O LAYOUT MOBILE (STATS)   == */
    /* ================================================= */
    .statistics {
        padding: 2.5rem 1rem; /* Aumenta um pouco o espaçamento vertical da seção */
    }
    
    .statistics-container {
        padding: 1.5rem; /* Espaçamento interno uniforme */
        border-radius: 20px;
        max-width: 350px;  /* <<-- IMPORTANTE: Limita a largura do container */
        margin: 0 auto;    /* <<-- IMPORTANTE: Centraliza o container */
    }

    .statistics .statistics-grid {
        grid-template-columns: repeat(1, 1fr); /* <<-- Define para 1 coluna */
        gap: 1rem; /* Ajusta o espaço vertical entre os cards */
    }

    .statistics .statistics-grid .statistic-card {
        padding: 1rem 0.5rem;
    }

    .statistics .statistics-grid .statistic-card .statistic-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 0.5rem;
    }
    
    .statistics .statistics-grid .statistic-card .statistic-label {
        font-size: 0.85rem; 
    }
    
    .statistic-number,
    .statistic-value {
        font-size: 1.5rem;
    }
    .statistic-prefix,
    .statistic-suffix {
        font-size: 1.2rem;
    }
    
    /* =============================================== */
    /* ==   AJUSTES PARA SEÇÕES GERAIS (MOBILE)     == */
    /* =============================================== */

    /* Reduz o espaçamento vertical para as principais seções no modo mobile */
    .offers,
    .testimonials,
    .links,
    .faq {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
    
    /* == CORREÇÃO DO BUG MOBILE == */
    #links-subtitle {
        font-size: 0.9rem;
        padding: 0 1rem; /* Adiciona padding para evitar que o texto toque as bordas */
        box-sizing: border-box; /* Garante que o padding não aumente a largura total */
    }

    .offers-swiper .offer-card {
        padding: 1rem;
        gap: 0.75rem;
    }

    .offer-card .bug-seal {
        width: 70px;
        bottom: 1rem;
        right: 1rem;
    }

    .offers-swiper .offer-image {
        height: 160px;
    }

    .offers-swiper .offer-title {
        font-size: 1rem;
    }

    .offers-swiper .offer-description {
        font-size: 0.8rem;
    }

    .offers-swiper .offer-current-price {
        font-size: 1.1rem;
    }

    .offers-swiper .offer-old-price {
        font-size: 0.8rem;
    }
    
    /* ======================================================= */
    /* ==   AJUSTES PARA SEÇÃO DE LINKS (MOBILE - BOTÕES)   == */
    /* ======================================================= */

    /* Altera o grid para ter 1 coluna e limita a largura máxima */
    .links .links-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 450px;
    }

    /* Oculta os elementos do card que não são o botão */
    .links .links-grid .link-card .link-icon,
    .links .links-grid .link-card .link-title,
    .links .links-grid .link-card .link-description {
        display: none;
    }

    /* Remove o estilo do card para que ele seja apenas um container transparente */
    .links .links-grid .link-card {
        padding: 0;
        background: transparent;
        border: none;
    }
    
    /* Estiliza o botão para se parecer com os botões da seção inicial (hero) */
    .links .links-grid .link-card .link-button {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        padding: 1.8rem 1rem; /* Mesma altura e padding do hero */
        font-size: 1.2rem;    /* Mesma fonte do hero */
        margin-top: 0;        /* Remove a margem do desktop */
    }
}

@media (max-width: 480px) {
    .mobile-menu-content {
        width: 100%;
        border-left: none;
    }

    .mobile-menu-header {
        padding: 1rem;
    }

    .mobile-menu-link {
        padding: 1rem;
    }

    .mobile-menu-footer {
        padding: 1rem;
    }
    
    .statistics .statistics-grid .statistic-card .statistic-number {
        font-size: 1.3rem;
    }
    
    .statistic-number,
    .statistic-value {
        font-size: 1.3rem;
    }
    .statistic-prefix,
    .statistic-suffix {
        font-size: 1rem;
    }
}

/* =============================================== */
/* ==    EFEITO FLUTUANTE PARA O LOGO NO NAVBAR   == */
/* =============================================== */

/* Prepara o logo para a transição suave */
.navbar-logo a {
  display: inline-block; /* Garante que a transformação funcione corretamente */
  transition: transform 0.3s ease;
}

/* Aplica o efeito de flutuação ao passar o mouse */
.navbar-logo a:hover {
  transform: translateY(-5px); /* Move o logo 5 pixels para cima */
}
/* O '}' extra que estava aqui foi removido */

/* =============================================== */
/* ==       CÓDIGO PARA OCULTAR O BOTÃO         == */
/* =============================================== */

.mobile-menu-footer {
    display: none;
}