/* Estilos base */
:root {
  --primary-color: #2d4c63;
  --secondary-color: #1a2c3d;
  --accent-color: #ffc107;
  --silver-color: #c0c0c0;
  --gold-color: #ffd700;
  --diamond-color: #b9f2ff;
  --text-light: #ffffff;
  --text-dark: #333333;
  --border-radius: 10px;
  --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  --transition: all 0.3s ease;
  --custom-green: #2ba304;
}

body {
  font-family: "Poppins", sans-serif;
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  color: var(--text-light);
  min-height: 100vh;
  line-height: 1.6;
}

/* Animações */
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(255, 193, 7, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 193, 7, 0); }
}

@keyframes pulseGreen {
  0% { box-shadow: 0 0 0 0 rgba(43, 163, 4, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(43, 163, 4, 0); }
  100% { box-shadow: 0 0 0 0 rgba(43, 163, 4, 0); }
}

.animate-pulse-button {
  animation: pulse 2s infinite;
}

.animate-pulse-button:hover {
  animation: none;
}

.bg-glass {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

/* Estilos para animações GSAP */
.gsap-reveal {
  opacity: 0;
  visibility: hidden;
}

.gsap-fade-up {
  opacity: 0;
  transform: translateY(30px);
}

.gsap-fade-in {
  opacity: 0;
}

.gsap-scale-in {
  opacity: 0;
  transform: scale(0.9);
}

.gsap-stagger-item {
  opacity: 0;
  transform: translateY(20px);
}

/* Estilo para o logo grande */
.large-logo {
  width: auto !important;
  height: 120px !important;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3)) !important;
  animation: logoGlow 3s infinite alternate !important;
}

@keyframes logoGlow {
  from { filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.3)); }
  to { filter: drop-shadow(0 0 15px rgba(255, 193, 7, 0.5)); }
}

/* Estilo para o badge de lançamento */
.launch-badge {
  background: linear-gradient(135deg, #ff7e5f, #feb47b);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 1rem;
}

/* Estilo para os cards de recursos */
.feature-card {
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 193, 7, 0.3);
}

.feature-icon {
  color: #2ba304;
}

/* Estilo para a seção de chamada à ação */
.cta-section {
  background: linear-gradient(135deg, rgba(45, 76, 99, 0.8), rgba(26, 44, 61, 0.8)), url('img/pattern.png');
  background-size: cover;
  background-position: center;
}

/* Estilo para a seção de depoimentos */
.testimonial-card {
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 80px;
  color: rgba(255, 193, 7, 0.2);
  font-family: serif;
  line-height: 1;
}

/* Estilo para a timeline de lançamento */
.timeline-container {
  position: relative;
}

.timeline-container::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background-color: rgba(255, 193, 7, 0.5);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  background-color: #ffc107;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

/* Estilo para a seção de contato social */
.social-icon {
  transition: all 0.3s ease;
}

.social-icon:hover {
  transform: translateY(-3px) scale(1.1);
  color: #ffc107;
}

/* Melhorar a visualização em dispositivos móveis */
.container {
  width: 100%;
  padding-right: 1rem;
  padding-left: 1rem;
}

@media (min-width: 640px) {
  .container {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding-right: 2rem;
    padding-left: 2rem;
  }
}

/* Estilos para formulários */
.form-input {
  width: 100%;
  background-color: #ffffff !important;
  color: #000000 !important;
  border: 1px solid #d1d5db !important;
  border-radius: 0.5rem !important;
  padding: 0.75rem 1rem 0.75rem 2.5rem !important;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05) !important;
  outline: none;
  transition: all 0.2s ease !important;
}

.form-input:focus {
  border-color: #ffc107 !important;
  box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.25) !important;
  outline: none !important;
}

.form-input::placeholder {
  color: #9ca3af !important;
}

.form-label {
  display: block !important;
  font-size: 0.875rem !important;
  font-weight: 500 !important;
  color: #f3f4f6 !important;
  margin-bottom: 0.375rem !important;
}

.form-select {
  background-color: #ffffff !important;
  color: #000000 !important;
  border: 1px solid #d1d5db !important;
  border-radius: 0.5rem !important;
  padding: 0.75rem 1rem 0.75rem 2.5rem !important;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05) !important;
  transition: all 0.2s ease !important;
}

.form-select:focus {
  border-color: #ffc107 !important;
  box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.25) !important;
  outline: none !important;
}

/* Botões */
.btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--text-dark);
  font-weight: 600;
  padding: 10px 25px;
  border-radius: 30px;
  transition: var(--transition);
  animation: pulse 2s infinite;
}

.btn-primary:hover {
  background-color: #e0a800;
  border-color: #e0a800;
  transform: translateY(-3px);
  animation: none;
}

/* Botão verde personalizado */
.btn-green {
  background-color: #2ba304;
  border-color: #2ba304;
  color: white;
  font-weight: 600;
  padding: 10px 25px;
  border-radius: 30px;
  transition: var(--transition);
  animation: pulseGreen 2s infinite;
}

.btn-green:hover {
  background-color: #239003;
  border-color: #239003;
  transform: translateY(-3px);
  animation: none;
}

/* Estilo para o badge de pagamento seguro */
.secure-payment-badge {
  background-color: rgba(16, 185, 129, 0.1) !important;
  border: 1px solid rgba(16, 185, 129, 0.3) !important;
  border-radius: 0.5rem !important;
  padding: 0.75rem !important;
  display: flex !important;
  align-items: center !important;
  margin-top: 1rem !important;
}

.secure-payment-badge i {
  color: #10b981 !important;
  margin-right: 0.75rem !important;
}
/* carousel-section 
.clients-carousel-section {
  width: 100%;
  margin: 0 0 28px 0;
}

.clients-carousel-box {
  background: linear-gradient(180deg, #ffffff 0%, #fdfaf2 100%);
  border: 1px solid #e8d8ae;
  border-radius: 28px;
  box-shadow: 0 14px 30px rgba(129, 97, 30, 0.08);
  padding: 24px;
}

.clients-carousel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.clients-carousel-title {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1.2;
  color: #241f16;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.clients-carousel-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.clients-carousel-arrow {
  width: 42px;
  height: 42px;
  border: 1px solid #d9bd6b;
  border-radius: 999px;
  background: #fff8e8;
  color: #9a7421;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .2s ease;
}

.clients-carousel-arrow:hover {
  background: #d9bd6b;
  color: #241f16;
}

.clients-carousel-viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.clients-carousel-viewport::-webkit-scrollbar {
  display: none;
}

.clients-carousel-track {
  display: flex;
  align-items: stretch;
  gap: 18px;
}

.clients-carousel-item {
  flex: 0 0 220px;
  min-width: 220px;
}

.clients-carousel-link {
  width: 100%;
  height: 108px;
  padding: 16px 20px;
  border-radius: 20px;
  border: 1px solid #eee3c7;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(129, 97, 30, 0.05);
  transition: all .2s ease;
}

.clients-carousel-link:hover {
  transform: translateY(-2px);
  text-decoration: none;
}

.clients-carousel-image {
  max-width: 100%;
  max-height: 64px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  filter: grayscale(100%);
  opacity: .9;
  transition: all .2s ease;
}

.clients-carousel-link:hover .clients-carousel-image {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.03);
}

@media (max-width: 768px) {
  .clients-carousel-box {
    padding: 18px;
    border-radius: 22px;
  }

  .clients-carousel-title {
    font-size: 1rem;
  }

  .clients-carousel-arrow {
    width: 38px;
    height: 38px;
  }

  .clients-carousel-track {
    gap: 12px;
  }

  .clients-carousel-item {
    flex: 0 0 180px;
    min-width: 180px;
  }

  .clients-carousel-link {
    height: 92px;
    padding: 14px 16px;
    border-radius: 16px;
  }

  .clients-carousel-image {
    max-height: 52px;
  }
}

@media (max-width: 480px) {
  .clients-carousel-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .clients-carousel-actions {
    width: 100%;
    justify-content: flex-end;
  }
}*/
.clients-carousel-section {
  width: 100%;
  margin: 0 0 28px 0;
}

.clients-carousel-box {
  background: linear-gradient(180deg, #ffffff 0%, #fdfaf2 100%);
  border: 1px solid #e8d8ae;
  border-radius: 28px;
  box-shadow: 0 14px 30px rgba(129, 97, 30, 0.08);
  padding: 24px;
}

.clients-carousel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.clients-carousel-title {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1.2;
  color: #241f16;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.clients-carousel-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.clients-carousel-arrow {
  width: 42px;
  height: 42px;
  border: 1px solid #d9bd6b;
  border-radius: 999px;
  background: #fff8e8;
  color: #9a7421;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .2s ease;
}

.clients-carousel-arrow:hover {
  background: #d9bd6b;
  color: #241f16;
}

.clients-carousel-viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.clients-carousel-viewport::-webkit-scrollbar {
  display: none;
}

.clients-carousel-track {
  display: flex;
  align-items: stretch;
  gap: 18px;
}

.clients-carousel-item {
  flex: 0 0 220px;
  min-width: 220px;
}

.clients-carousel-link {
  width: 100%;
  height: 108px;
  padding: 16px 20px;
  border-radius: 20px;
  border: 1px solid #eee3c7;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(129, 97, 30, 0.05);
  transition: all .2s ease;
}

.clients-carousel-link:hover {
  transform: translateY(-2px);
  text-decoration: none;
}

.clients-carousel-image {
  max-width: 100%;
  max-height: 64px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  filter: grayscale(100%);
  opacity: .9;
  transition: all .2s ease;
}

.clients-carousel-link:hover .clients-carousel-image {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.03);
}

@media (max-width: 768px) {
  .clients-carousel-box {
    padding: 18px;
    border-radius: 22px;
  }

  .clients-carousel-title {
    font-size: 1rem;
  }

  .clients-carousel-arrow {
    width: 38px;
    height: 38px;
  }

  .clients-carousel-track {
    gap: 12px;
  }

  .clients-carousel-item {
    flex: 0 0 180px;
    min-width: 180px;
  }

  .clients-carousel-link {
    height: 92px;
    padding: 14px 16px;
    border-radius: 16px;
  }

  .clients-carousel-image {
    max-height: 52px;
  }
}

@media (max-width: 480px) {
  .clients-carousel-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .clients-carousel-actions {
    width: 100%;
    justify-content: flex-end;
  }
}


/* Estilo para o logo grande no footer */
.large-logo-footer {
  width: auto !important;
  height: 80px !important;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.2)) !important;
  animation: logoFooterGlow 3s infinite alternate !important;
}

@keyframes logoFooterGlow {
  from { filter: drop-shadow(0 0 3px rgba(255, 255, 255, 0.2)); }
  to { filter: drop-shadow(0 0 10px rgba(255, 193, 7, 0.4)); }
}

/* Estilos para o botão de busca */
.btn-search {
  background-color: #0F4C81;
  color: white;
  border: none;
  border-radius: 6px;
  padding: 0.5rem 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-search:hover {
  background-color: #0A3A62;
}

/* Estilos para o resumo do carrinho */
.cart-summary {
  background-color: #F8FAFC;
  border-radius: 8px;
  padding: 1rem;
}

.cart-summary-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.cart-summary-item.total {
  font-weight: 700;
  font-size: 1.1rem;
  border-top: 1px solid #CBD5E1;
  padding-top: 0.5rem;
  margin-top: 0.5rem;
}

/* Estilos para o campo de busca */
.search-container {
  position: relative;
}

.search-container input {
  padding-left: 2.5rem;
}

.search-icon {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: #94A3B8;
  pointer-events: none;
}

/* Estilos para categorias com imagens */
.category-pill {
  transition: all 0.3s ease;
  cursor: pointer;
  min-width: 80px;
}

.category-pill:hover {
  transform: translateY(-2px);
}

.category-pill.active {
  background-color: #0F4C81;
  color: white;
}

.category-pill.active .w-12 {
  background-color: rgba(255, 255, 255, 0.2);
}

.category-pill.active i {
  color: white;
}

/* Esconder a barra de rolagem mas manter a funcionalidade */
.hide-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.hide-scrollbar::-webkit-scrollbar {
  display: none;
}

/* Estilos para o carrinho */
.cart-item {
  transition: all 0.3s ease;
}

.cart-item:hover {
  background-color: rgba(203, 213, 225, 0.3);
}

/* Estilos para botões de ação */
.action-button {
  transition: all 0.3s ease;
}

.action-button:hover {
  transform: translateY(-2px);
}

/* Cor personalizada para os ícones */
.custom-green-icon {
  color: #2ba304 !important;
}

.ocultar_web {
  display: none;
}

/* =========================================================
   HOME / PRODUTOS / FOOTER
========================================================= */

.products-results-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 0 0 20px 0;
  padding: 22px 24px;
  background: linear-gradient(180deg, #fffdfa 0%, #f7efdc 100%);
  border: 1px solid #e8d8ae;
  border-radius: 24px;
  box-shadow: 0 14px 30px rgba(129, 97, 30, 0.08);
}

.products-results-info {
  width: 100%;
}

.products-results-title {
  margin: 10px 0 6px 0;
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1.2;
  color: #241f16;
}

.products-results-text {
  margin: 0;
  color: #6a634f;
  font-size: 14px;
  line-height: 1.7;
}

.products-results-grid {
  align-items: stretch;
  min-height: 120px;
}

.site-footer-section {
  width: 100%;
  margin-top: 28px;
  padding: 30px 0 22px 0;
  background: linear-gradient(180deg, #2f2515 0%, #17120b 100%);
}

.site-footer-section .footer-box {
  margin-bottom: 0;
}

.footer-bottom-bar {
  width: 100%;
  background: #000000;
  border-top: 1px solid rgba(217, 189, 107, 0.25);
  padding: 14px 20px;
  position: relative;
}

.footer-bottom-wrap {
  max-width: 1560px;
  margin: 0 auto;
  text-align: center;
  padding-right: 70px;
}

.footer-bottom-text {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
  color: #ffffff;
}

.footer-bottom-text .gold {
  color: #d4a63a;
}

.footer-bottom-text a {
  color: #ffffff;
  text-decoration: none;
  transition: opacity .2s ease;
}

.footer-bottom-text a:hover {
  opacity: .85;
  text-decoration: none;
}

.footer-back-top {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border: 2px solid #d4a63a;
  color: #d4a63a;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 18px;
  line-height: 1;
  transition: all .2s ease;
}

.footer-back-top:hover {
  background: #d4a63a;
  color: #000000;
  text-decoration: none;
}

@media (max-width: 768px) {
  .ocultar_web {
    display: block;
  }

  .products-results-head {
    padding: 18px;
    border-radius: 18px;
  }

  .products-results-title {
    font-size: 1.2rem;
  }

  .products-results-text {
    font-size: 13px;
  }

  .footer-bottom-wrap {
    padding-right: 0;
    padding-bottom: 52px;
  }

  .footer-bottom-text {
    font-size: 13px;
  }

  .footer-back-top {
    right: 50%;
    top: auto;
    bottom: 12px;
    transform: translateX(50%);
  }
}

@media (max-width: 640px) {
  .large-logo {
    height: 90px !important;
  }

  .bg-glass {
    border-radius: 1rem !important;
  }

  .form-input,
  .form-select {
    padding: 0.625rem 1rem 0.625rem 2.25rem !important;
  }

  .secure-payment-badge {
    padding: 0.5rem !important;
    margin-top: 0.75rem !important;
  }

  .large-logo-footer {
    height: 60px !important;
  }

  .feature-card {
    padding: 1rem !important;
  }

  .feature-icon {
    font-size: 2rem !important;
    margin-bottom: 0.75rem !important;
  }

  .plan-card .p-6 {
    padding: 1rem !important;
  }

  .category-pill {
    min-width: 70px;
  }

  .category-pill .w-12 {
    width: 2.5rem;
    height: 2.5rem;
  }

  .mb-20 {
    margin-bottom: 2.5rem !important;
  }

  .py-12 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }

  .gap-8 {
    gap: 1.5rem !important;
  }
}

@media (max-width: 360px) {
  .form-label {
    font-size: 0.75rem !important;
  }

  .form-input,
  .form-select {
    font-size: 0.875rem !important;
  }

  .btn-primary {
    font-size: 0.875rem !important;
    padding: 0.625rem !important;
  }

  .plan-price {
    flex-direction: row;
    align-items: baseline;
  }

  .amount {
    font-size: 28px;
  }

  .plan-features li {
    font-size: 14px;
  }
  
}