@charset "UTF-8";
/* Reset e configurações globais */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
/* Variáveis de cores — IglooCode: tema neve/gelo */
:root {
  --primary-blue: #0EA5E9;
  --primary-dark: #0F172A;
  --accent-light: #38BDF8;
  --secondary-orange: #0EA5E9;
  --secondary-yellow: #38BDF8;
  --whatsapp-green: #25d366;
  --text-dark: #0F172A;
  --text-light: #64748B;
  --white: #ffffff;
  --gray-light: #F1F5F9;
  --gray-medium: #E2E8F0;
  --background: #F8FAFC;
}
/* Estilos globais */
body {
  font-family: "Montserrat", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-dark);
  background-color: #020d1a;
  line-height: 1.6;
  overflow-x: hidden;
}
/* Títulos */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 1rem;
}
h1 {
  font-size: 2.5rem;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.5rem;
}
/* Links */
a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}
/* Botões */
button {
  cursor: pointer;
  border: none;
  outline: none;
  transition: all 0.3s ease;
}
.btn-primary {
  background: linear-gradient(135deg, var(--secondary-orange), var(--secondary-yellow));
  color: var(--white);
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 4px 15px rgba(255, 138, 0, 0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 138, 0, 0.4);
}
.btn-whatsapp {
  background-color: var(--whatsapp-green);
  color: var(--white);
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 1rem;
}
.btn-whatsapp:hover {
  background-color: #1faa52;
  transform: translateY(-2px);
}
/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
/* Seções */
section {
  padding: 80px 0;
}
.section-title {
  text-align: center;
  margin-bottom: 50px;
}
.section-title h2 {
  font-size: 2.5rem;
  color: var(--primary-blue);
  margin-bottom: 15px;
}
.section-title p {
  color: var(--text-light);
  font-size: 1.1rem;
}
/* Cards */
.card {
  background: var(--white);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
/* Animações */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* Responsividade */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  section {
    padding: 50px 0;
  }

  .section-title h2 {
    font-size: 2rem;
  }
}

/*# sourceMappingURL=styles.css.map*/