/* Estilos específicos da página Início (index.html) - VERSÃO MELHORADA */

/* ========================================
   HERO SECTION - Mais Dinâmico e Atraente
   ======================================== */

.logo img {
  height: 42px;
  width: auto;
}
.hero {
  padding: 4rem 0 3rem;
  background: #111c15;
  position: relative;
  overflow: hidden;
}

/* Padrão sutil de fundo */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: 
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(111, 169, 96, 0.02) 2px, rgba(111, 169, 96, 0.02) 4px),
    repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(244, 184, 68, 0.02) 2px, rgba(244, 184, 68, 0.02) 4px);
  pointer-events: none;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  align-items: center;
  gap: 4rem;
  position: relative;
  z-index: 1;
}

.hero__text {
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Tag redesenhada com mais personalidade */
.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, rgba(111, 169, 96, 0.15), rgba(111, 169, 96, 0.08));
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-weight: 700;
  border: 1.5px solid rgba(111, 169, 96, 0.3);
  box-shadow: 0 4px 12px rgba(111, 169, 96, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(5px);
}

.hero__tag::before {
  content: "✨";
  font-size: 1rem;
  animation: sparkle 2s ease-in-out infinite;
}

.hero__tag:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(111, 169, 96, 0.2);
  border-color: var(--primary);
}

/* Título com gradiente mais vibrante */
.hero h1 {
  font-size: clamp(2.5rem, 3.5vw + 2rem, 3.8rem);
  line-height: 1.1;
  margin: 0 0 1.2rem;
  color: var(--text);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hero h1 span {
  background: linear-gradient(135deg, #6FA960 0%, #8BC34A 50%, #7fb56e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
  display: inline-block;
  animation: gradientShift 3s ease-in-out infinite;
}

/* Parágrafo com melhor legibilidade */
.hero p {
  margin: 0 0 2rem;
  color: var(--muted);
  max-width: 36rem;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Botões de ação aprimorados */
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero__actions .btn {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.hero__actions .btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.hero__actions .btn:hover::before {
  width: 300px;
  height: 300px;
}

.hero__actions .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(111, 169, 96, 0.3);
}

/* Stats redesenhados */
.hero__stats {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  font-size: 0.9rem;
  padding: 1.5rem 0;
  border-top: 2px solid rgba(111, 169, 96, 0.15);
}

.hero__stats > div {
  position: relative;
  padding-left: 2.5rem;
  transition: transform 0.3s ease;
}

.hero__stats > div::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--primary), #8BC34A);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 4px 12px rgba(111, 169, 96, 0.3);
}

.hero__stats > div:hover {
  transform: translateX(5px);
}

.hero__stats strong {
  display: block;
  font-size: 1.15rem;
  color: var(--text);
  margin-bottom: 0.2rem;
  font-weight: 600;
}

.hero__stats span {
  color: var(--muted);
}

/* ========================================
   HERO IMAGE - Mais Dinâmica e Moderna
   ======================================== */
.hero__image {
  position: relative;
  min-height: 320px;
  animation: floatSimple 8s ease-in-out infinite;
}

/* Círculo com gradiente animado */
.hero__circle {
  position: absolute;
  width: 90%;
  height: 65%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);

  border-radius: 999px; /* efeito cilindro */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;



 
}

.hero__circle::before {
  content: "";
  position: absolute;
  inset: -50%;
  background: linear-gradient(
    135deg,
    #2E4A37 0%,
    #1F1A14 100%
  );
}

.hero__circle img {
  width: 85%;
  height: 85%;
  object-fit: contain;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 15px 40px rgba(111, 169, 96, 0.25));
  animation: imageFloat 6s ease-in-out infinite;
}

/* Cards flutuantes modernizados */
.hero__card {
  position: absolute;
  background: rgba(26, 31, 46, 0.98);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 1.3rem 1.5rem;
  color: var(--text);
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(111, 169, 96, 0.3);
  border: 2px solid var(--primary);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero__card:hover {
  transform: scale(1.05) !important;
  box-shadow: 
    0 15px 40px rgba(0, 0, 0, 0.5),
    0 0 0 2px var(--primary);
  border-color: #8BC34A;
}

.hero__card span {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 0.3rem;
}

.hero__card strong {
  font-size: 1.35rem;
  color: var(--primary);
  font-weight: 700;
  display: block;
  background: linear-gradient(135deg, var(--primary), #8BC34A);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__card--1 {
  top: 8%;
  right: 2%;
  transform: none;
  animation: cardFloat1 6s ease-in-out infinite;
}

.hero__card--1 span {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  animation: iconBounce 3s ease-in-out infinite;
  filter: drop-shadow(0 0 10px rgba(111, 169, 96, 0.5));
}

.hero__card--2 {
  bottom: 4%;
  left: 4%;
  transform: none;
  animation: cardFloat2 5s ease-in-out infinite;
}

/* ========================================
   SEÇÕES GERAIS - Features e Categorias
   ======================================== */
.features {
  padding: 3.5rem 0;
  background: linear-gradient(180deg, transparent 0%, rgba(111, 169, 96, 0.03) 100%);
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  background: rgba(26, 31, 46, 0.4);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  border: 2px solid rgba(111, 169, 96, 0.15);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(111, 169, 96, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
  box-shadow: 0 15px 40px rgba(111, 169, 96, 0.2);
  background: rgba(26, 31, 46, 0.6);
}

.feature-card__icon {
  font-size: 3.5rem;
  margin-bottom: 1.2rem;
  display: inline-block;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 4px 12px rgba(111, 169, 96, 0.3));
}

.feature-card:hover .feature-card__icon {
  transform: scale(1.15) rotate(5deg);
  filter: drop-shadow(0 8px 20px rgba(111, 169, 96, 0.5));
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  color: var(--text);
  font-weight: 600;
}

.feature-card p {
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Categorias Preview */
.categories-preview {
  padding: 3.5rem 0;
}

.categories__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.category-card {
  background: linear-gradient(135deg, rgba(26, 31, 46, 0.6) 0%, rgba(26, 31, 46, 0.4) 100%);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  text-align: center;
  border: 2px solid rgba(111, 169, 96, 0.2);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  display: block;
  position: relative;
  overflow: hidden;
}

.category-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(111, 169, 96, 0.15), rgba(244, 184, 68, 0.1));
  opacity: 0;
  transition: opacity 0.5s ease;
}

.category-card:hover::before {
  opacity: 1;
}

.category-card:hover {
  transform: translateY(-12px) scale(1.02);
  border-color: var(--primary);
  box-shadow: 0 20px 50px rgba(111, 169, 96, 0.3);
}

.category-card__icon {
  font-size: 4.5rem;
  margin-bottom: 1.5rem;
  display: inline-block;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
}

.category-card:hover .category-card__icon {
  transform: scale(1.2) rotate(-5deg);
  filter: drop-shadow(0 10px 25px rgba(111, 169, 96, 0.6));
}

.category-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
  color: var(--text);
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.category-card p {
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.95rem;
  position: relative;
  z-index: 1;
}

/* ========================================
   CONTATO - Mais Humanizado
   ======================================== */
.contact {
  padding: 3rem 0 4rem;
  background: linear-gradient(180deg, rgba(111, 169, 96, 0.03) 0%, transparent 100%);
}

.contact__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.contact-card {
  background: rgba(26, 31, 46, 0.5);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  border: 2px solid rgba(111, 169, 96, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: 0 15px 40px rgba(111, 169, 96, 0.25);
  background: rgba(26, 31, 46, 0.7);
}

.contact-card__icon {
  font-size: 3rem;
  margin-bottom: 1.2rem;
  display: inline-block;
  animation: iconPulseSubtle 3s ease-in-out infinite;
}

.contact-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--text);
  font-weight: 600;
}

.contact-card p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

/* Botão WhatsApp especial */
.contact-card .btn--primary {
  margin-top: 1.5rem;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  border: none;
  position: relative;
  overflow: hidden;
  animation: whatsappPulse 2s ease-in-out infinite;
}

.contact-card .btn--primary::before {
  content: "💬";
  margin-right: 0.5rem;
  font-size: 1.1rem;
}

.contact-card .btn--primary:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
}

.footer__column img {
  width: 300px;   /* ajuste o valor */
  height: auto;
}

/* ========================================
   ANIMAÇÕES
   ======================================== */
@keyframes sparkle {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: 1; }
  50% { transform: scale(1.2) rotate(180deg); opacity: 0.8; }
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes floatSimple {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

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

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

@keyframes imageFloat {
  0%, 100% { transform: translateY(0px) scale(1); }
  50% { transform: translateY(-15px) scale(1.02); }
}

@keyframes cardFloat1 {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

@keyframes cardFloat2 {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
}

@keyframes iconBounce {
  0%, 100% { transform: translateY(0px) scale(1); }
  50% { transform: translateY(-8px) scale(1.1); }
}

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

@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  50% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
}

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

/* ========================================
   RESPONSIVIDADE APRIMORADA
   ======================================== */
@media (max-width: 1024px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero h1 {
    font-size: clamp(2rem, 3vw + 1.5rem, 3rem);
  }

  .hero__image {
    order: -1;
    min-height: 280px;
  }

  .features__grid,
  .categories__grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 3rem 0 2rem;
  }

  .hero h1 {
    font-size: clamp(1.75rem, 2.5vw + 1rem, 2.5rem);
  }

  .hero__tag {
    font-size: 0.7rem;
    padding: 0.4rem 0.9rem;
  }

  .hero__stats {
    gap: 2rem;
  }

  .hero__image {
    min-height: 240px;
  }

  .feature-card,
  .category-card,
  .contact-card {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 2.5rem 0 1.5rem;
  }

  .hero h1 {
    font-size: clamp(1.5rem, 2vw + 0.8rem, 2.2rem);
  }

  .hero p {
    font-size: 0.95rem;
  }

  .hero__actions {
    flex-direction: column;
    width: 100%;
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero__stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .hero__image {
    min-height: 200px;
  }

  .hero__card {
    padding: 1rem 1.2rem;
    font-size: 0.85rem;
  }

  .features__grid,
  .categories__grid,
  .contact__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: clamp(1.3rem, 1.8vw + 0.6rem, 1.9rem);
  }

  .hero__tag {
    font-size: 0.65rem;
    padding: 0.35rem 0.75rem;
  }

  .hero__image {
    min-height: 180px;
  }

  .hero__card {
    padding: 0.9rem 1rem;
  }

  .hero__card--1 {
    top: 5%;
    right: 0%;
  }

  .hero__card--2 {
    bottom: 0%;
    left: 0%;
  }

  .feature-card__icon,
  .category-card__icon {
    font-size: 3rem;
  }
}