@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;700;900&family=Rajdhani:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Rajdhani', sans-serif;
    background-color: #050510;
    color: white;
    overflow-x: hidden;
}

h1, h2, h3, h4, .font-orbitron {
    font-family: 'Orbitron', sans-serif;
}

.gradient-text {
    background: linear-gradient(90deg, #00f0ff, #ff00f0, #00f0ff);
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: text-gradient 8s linear infinite;
}

.glow {
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.7);
}

.card-hover {
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.3);
}

.card-hover:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 25px rgba(0, 240, 255, 0.7);
}

.neon-border {
    position: relative;
}

.neon-border::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, #00f0ff, #ff00f0);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.grid-pattern {
    background-image: 
        linear-gradient(rgba(0, 240, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 240, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    background: rgba(0, 240, 255, 0.5);
    border-radius: 50%;
    pointer-events: none;
}

.app-whats A:link {text-decoration:none;color:#ffffff;}
.app-whats A:visited {text-decoration:none;color:#ffffff;}
.app-whats A:active {text-decoration:none;color:#ffffff;}
.app-whats A:hover {text-decoration:none;color:#ffffff;}

.app-whats {
    display: block;
    position: fixed;
    bottom: 60px;
    left: 15px;
    font-family: arial;
}

.app-whats i {
  display: block;
  width: 110px;
  height: 36px;
  line-height: 36px;
  color: #fff;
  font-size: 13px;
  text-align: center;
  border-radius: 4px;
  background-color: #009688;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  z-index: 99999;
}


.pulse-button {
    display: block;
    position: fixed;
    bottom: 10px;
    right: 10px;
    font-family: arial;
    margin:15px;
    width: 60px;
    height: 60px;
    border: none;
    box-shadow: 0 0 0 0 rgba(0, 150, 102, 0.7);
    border-radius: 50%;
    background-color: #4caf50;
    background-image: url(../img/whatsapp.png);
    background-size:cover;
    background-repeat: no-repeat;
    cursor: pointer;
    -webkit-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -moz-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -ms-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    color:#ffffff;
    z-index:999;
}

.pulse-button:hover 
{
  -webkit-animation: none;-moz-animation: none;-ms-animation: none;animation: none;
}

@-webkit-keyframes pulse {to {box-shadow: 0 0 0 45px rgba(232, 76, 61, 0);}}
@-moz-keyframes pulse {to {box-shadow: 0 0 0 45px rgba(232, 76, 61, 0);}}
@-ms-keyframes pulse {to {box-shadow: 0 0 0 45px rgba(232, 76, 61, 0);}}
@keyframes pulse {to {box-shadow: 0 0 0 45px rgba(232, 76, 61, 0);}}

.pulse-btn {
    display: block;
    box-shadow: 0 0 0 0 rgba(232, 76, 61, 0.7);
    cursor: pointer;
    -webkit-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -moz-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -ms-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
}