/* RESET E CONFIGURAÇÕES GERAIS */
html {
  scroll-behavior: smooth;
}

html, body {
  overflow-x: hidden;
}

/* HEADER E LOGO */
.header-logo img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 767.98px) {
  .header-container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  .header-logo img {
    max-height: 40px;
  }
  
  .header-nav-main .nav > li {
    white-space: normal;
  }
}

/* CARDS DE PRODUTOS */
.recent-posts article {
  min-height: 420px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.recent-posts article:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.recent-posts img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.recent-posts article:hover img {
  transform: scale(1.05);
}

/* CARROSSEL */
.owl-carousel .img-thumbnail {
  border-radius: 15px;
  overflow: hidden;
}

.owl-carousel .img-thumbnail img {
  border-radius: 15px;
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.owl-carousel-container {
  border-radius: 20px;
  overflow: hidden;
}

.owl-carousel .owl-stage-outer {
  border-radius: 20px;
  overflow: hidden;
}

/* BOTÃO WHATSAPP */
#whatsapp-button {
  -webkit-user-drag: none !important;
  user-drag: none !important;
  -webkit-user-select: none !important;
  user-select: none !important;
  -webkit-tap-highlight-color: transparent !important;
  -webkit-touch-callout: none !important;
  touch-action: manipulation !important;
  outline: none !important;
}

#whatsapp-button:focus {
  outline: none !important;
}

.scroll-to-top {
  display: none !important;
}

/* ÍCONES DE REDES SOCIAIS - VERSÃO CORRIGIDA */
.social-icons {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 15px;
}

.social-icons li {
  margin: 0;
  padding: 0;
  line-height: 1;
}

.social-icons li a {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
  opacity: 1 !important;
  visibility: visible !important;
}

.social-icons li a i {
  color: white !important;
  font-size: 18px;
  display: inline-block !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.social-icons-youtube a { 
  background: #FF0000 !important;
}
.social-icons-facebook a { 
  background: #4267B2 !important;
}
.social-icons-linkedin a { 
  background: #0077B5 !important;
}
.social-icons-instagram a { 
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%) !important;
  position: relative;
  overflow: hidden;
}

/* Correção para o hover do Instagram */
.social-icons-instagram a:hover {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%) !important;
  transform: scale(1.1);
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.social-icons li a:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

@media (max-width: 767px) {
  .social-icons {
    gap: 10px;
  }
  
  .social-icons li a {
    width: 36px;
    height: 36px;
  }
  
  .social-icons li a i {
    font-size: 16px;
  }
}

/* ANIMAÇÕES */
@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
  }
  70% {
    transform: scale(1.02);
    box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.pulse-animation {
  animation: pulse 2s infinite;
}

/* ESTILOS PARA FORMULÁRIOS */
.form-control {
  border-radius: 4px;
  border: 1px solid #ddd;
  padding: 10px 15px;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: #1CD8B2;
  box-shadow: 0 0 0 0.2rem rgba(28, 216, 178, 0.25);
}

.btn-primary {
  background-color: #133034;
  border-color: #133034;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #1CD8B2;
  border-color: #1CD8B2;
  transform: translateY(-2px);
}

