@charset "UTF-8";


:root {
--primary:#00AEEF;
--dark:#001E3C;
--light:#f8f9fa;
--text-dark:#111;
--text-light:#ddd;
}
body {
    font-family: 'Catamaran', sans-serif;
    scroll-behavior: smooth;
    overflow-x: hidden;
    transition: background .5s, color .5s;
}
nav.navbar {
    background: rgba(0,30,60,0.95);
    backdrop-filter: blur(8px);
}
nav .nav-link {
    color: #fff!important;
    margin: 0 8px;
    font-weight: 500;
}
nav .nav-link:hover {
    color: var(--primary)!important;
}
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at 30% 30%, #00254F, #001E3C 80%);
    color: #fff;
    text-align: center;
    overflow: hidden;
}
#particles-js {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}
.hero-content {
    z-index: 1;
    width: 100%;
}
.hero h1 {
    font-weight: 800;
    font-size: 2.8rem;
}
.hero p {
    font-size: 1.2rem;
    opacity: .9;
}
.btn-main {
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 40px;
    padding: 12px 32px;
    transition: .3s;
    font-weight: 600;
}
.btn-main:hover {
    background: #008ccf;
    color: #fff;
    transform: translateY(-2px);
}
.section-title h2 {
    font-weight: 700;
    text-align: center;
    margin-bottom: 2.5rem;
    color: var(--dark);
}
.service-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 6px 18px rgba(0,0,0,.05);
    text-align: center;
    transition: all .3s;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0,0,0,.1);
}
.service-card i {
    font-size: 2.3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}
.pricing-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: .3s;
}
.pricing-card:hover {
    transform: scale(1.03);
    border-color: var(--primary);
}
.pricing-card h4 {
    color: var(--primary);
    font-weight: 700;
}
.footer {
    background: var(--dark);
    color: #fff;
    padding: 3rem 0;
    transition: .5s;
}
.footer a {
    color: var(--primary);
    text-decoration: none;
}
.footer a:hover {
    text-decoration: underline;
}
.social a {
    color: #fff;
    margin-right: 10px;
    font-size: 1.3rem;
    transition: .3s;
}
.social a:hover {
    color: var(--primary);
}
/* Dark mode */
body.dark-mode {
    background: #0d1117;
    color: var(--text-light);
}
body.dark-mode .section-title h2 {
    color: #fff;
}
body.dark-mode .service-card, body.dark-mode .pricing-card {
    background: #161b22;
    color: #ccc;
    border-color: #222;
}
body.dark-mode nav.navbar {
    background: rgba(13,17,23,0.95);
}
body.dark-mode .footer {
    background: #0d1117;
    color: #ccc;
}


/* === HERO ANIMADO === */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #001E3C, #002A5C, #004B8A);
  background-size: 400% 400%;
  animation: gradientMove 12s ease infinite;
  position: relative;
  overflow: hidden;
}
@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.text-gradient {
  background: linear-gradient(90deg, #00AEEF, #00ffc6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* === BOTÕES === */
.btn-glow {
  position: relative;
  overflow: hidden;
  transition: all .3s;
}
.btn-glow::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.25) 0%, transparent 70%);
  transform: translate(-50%, -50%) scale(0);
  transition: transform .4s ease;
}
.btn-glow:hover::before {
  transform: translate(-50%, -50%) scale(1);
}
.btn-glow:hover {
  transform: translateY(-3px);
}

/* === TYPING EFFECT === */
#typing-text {
  border-right: 2px solid #00AEEF;
  white-space: nowrap;
  overflow: hidden;
  display: inline-block;
  animation: blink 0.8s infinite;
}
@keyframes blink {
  50% { border-color: transparent; }
}

/* === PARTICLES === */
#particles-js {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.hero-content {
  z-index: 2;
  position: relative;
}

/* === ANIMAÇÕES DE ENTRADA === */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: 0.3s; }
.delay-2 { transition-delay: 0.6s; }
.delay-3 { transition-delay: 0.9s; }
.delay-4 { transition-delay: 1.2s; }

@media (max-width: 768px) {
  .hero h1 { font-size: 2rem; }
  .lead { font-size: 1rem; }
}

@keyframes slideIn {
  from {
    transform: translateX(120%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
.toast.slide-in {
  animation: slideIn 0.5s ease-out;
}
/* ===== CONTAINER GERAL ===== */
.whatsapp-container {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ===== BOTÃO WHATSAPP ===== */
.whatsapp-float {
  width: 44px;
  height: 44px;
  background-color: #25D366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 24px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}
.whatsapp-float i {
  margin-top: 10px;
}
.whatsapp-float:hover {
  transform: scale(1.08);
  background-color: #1ebe5b;
}

/* ===== TEXTO LATERAL ===== */
.whatsapp-text {
  background: #fff;
  color: #111;
  font-weight: 600;
  font-size: 14px;
  padding: 6px 12px;
  border-radius: 20px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.15);
  animation: slideInText 0.8s ease-out;
  white-space: nowrap;
}

/* ===== ANIMAÇÕES ===== */
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
@keyframes slideInText {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}

/* ===== VERSÃO MOBILE ===== */
@media (max-width: 768px) {
  .whatsapp-float {
    width: 38px;
    height: 38px;
    font-size: 20px;
  }
  .whatsapp-float i {
    margin-top: 9px;
  }
  .whatsapp-text {
    display: none; /* oculta texto lateral no mobile */
  }
}


.icon-circle {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 45px;
  transition: all 0.3s ease;
	align-items: flex-end;
}
.service-card {
  border-radius: 16px;
  transition: all 0.3s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,.1);
}
.service-card:hover .icon-circle {
  transform: scale(1.1);
}
.pricing-card button {
  border-radius: 25px;
  font-weight: 600;
  margin-top: 10px;
}

.highlight-card {
  transform: scale(1.05);
  transition: all 0.3s ease;
  background: #ffffff;
}
.highlight-card:hover {
  transform: scale(1.07);
  box-shadow: 0 12px 35px rgba(0, 174, 239, 0.25);
}
.pricing-card h2 {
  font-weight: 700;
}
.pricing-card small {
  color: #555;
}
.badge {
  font-size: 0.75rem;
  letter-spacing: 0.4px;
}