/*
Theme Name: idrivetheme V2
Description: A brief description of your theme
Version: 2.0
Author: Choky World
Text Domain: idrivetheme-v2
*/
/* Simple CSS Reset */



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html, body {
    height: 100%;
    margin:0;
    padding: 0 !important;
  }
  
  body {
    line-height: 1.5;
    background: #fff;
    color: #000;
    font-weight: 400;
    font-style: normal;
    font-family: 'Roboto', sans-serif;
  }


  
  img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
  }
  
  input, button, textarea, select {
    font: inherit;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  .wa_link img {
    width: 50px;
}
main {
    position: relative;
}

a.wa_link {
    position: fixed;
    bottom: 20px;
    right: 20px;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.7;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.wa_link img {
  width: 50px;
  animation: pulse 1.5s infinite;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.wa_link img:hover {
  animation: none;
  transform: scale(1); /* Resetuje na normalno */
  opacity: 1;
}