/* Fontes Lufga */
@font-face {
  font-family: "Lufga";
  src: url("./lufga/LufgaRegular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Lufga";
  src: url("./lufga/LufgaItalic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
}

@font-face {
  font-family: "Lufga";
  src: url("./lufga/LufgaThin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
}

@font-face {
  font-family: "Lufga";
  src: url("./lufga/LufgaThinItalic.ttf") format("truetype");
  font-weight: 100;
  font-style: italic;
}

@font-face {
  font-family: "Lufga";
  src: url("./lufga/LufgaExtraLight.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
}

@font-face {
  font-family: "Lufga";
  src: url("./lufga/LufgaExtraLightItalic.ttf") format("truetype");
  font-weight: 200;
  font-style: italic;
}

@font-face {
  font-family: "Lufga";
  src: url("./lufga/LufgaLight.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Lufga";
  src: url("./lufga/LufgaLightItalic.ttf") format("truetype");
  font-weight: 300;
  font-style: italic;
}

@font-face {
  font-family: "Lufga";
  src: url("./lufga/LufgaMedium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Lufga";
  src: url("./lufga/LufgaMediumItalic.ttf") format("truetype");
  font-weight: 500;
  font-style: italic;
}

@font-face {
  font-family: "Lufga";
  src: url("./lufga/LufgaSemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Lufga";
  src: url("./lufga/LufgaSemiBoldItalic.ttf") format("truetype");
  font-weight: 600;
  font-style: italic;
}

@font-face {
  font-family: "Lufga";
  src: url("./lufga/LufgaBold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Lufga";
  src: url("./lufga/LufgaBoldItalic.ttf") format("truetype");
  font-weight: 700;
  font-style: italic;
}

@font-face {
  font-family: "Lufga";
  src: url("./lufga/LufgaExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
}

@font-face {
  font-family: "Lufga";
  src: url("./lufga/LufgaExtraBoldItalic.ttf") format("truetype");
  font-weight: 800;
  font-style: italic;
}

@font-face {
  font-family: "Lufga";
  src: url("./lufga/LufgaBlack.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: "Lufga";
  src: url("./lufga/LufgaBlackItalic.ttf") format("truetype");
  font-weight: 900;
  font-style: italic;
}

:root {
  --primary-color: #0055a4;
  --secondary-color: #3bb54a;
  --accent-color: #00a8e8;
  --dark-color: #231f20;
  --light-color: #f8f9fa;
}

* {
  /* font-family: "Lufga", montserrat, sans-serif; */
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  /* font-family: montserrat, sans-serif; */
}

h1,
h2,
h3,
h4,
h5,
h6,
h1 *,
h2 *,
h3 *,
h4 *,
h5 *,
h6 * {
  font-family: "Lufga", montserrat, sans-serif !important;
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--dark-color);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Background Colors */
.bg-primary {
  background-color: var(--primary-color);
}

.bg-secondary {
  background-color: var(--secondary-color);
}

.bg-light {
  background-color: var(--light-color);
}

/* Text Colors */
.text-primary {
  color: var(--primary-color);
}

.text-secondary {
  color: var(--secondary-color);
}

.text-white {
  color: white;
}

/* Botões base */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-weight: 600;
  text-align: center;
  color: white;
  transition: all 0.3s ease;
  background: #003d75; /* fallback */
}

.btn-primary {
  background: #0f58d0
}
.btn-primary:hover {
  background-color: #003d75;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
  background-color: var(--secondary-color);
}
.btn-secondary:hover {
  background-color: #2a9d39;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Cards */
.card {
  transition: box-shadow 0.3s, background 0.3s;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  background-color: white;
  padding: 2rem;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Icons */
.service-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.social-icon {
  transition: all 0.3s ease;
  color: var(--dark-color);
}

.social-icon:hover {
  transform: scale(1.2);
  color: var(--primary-color);
}

/* Navigation */
.nav-link {
  position: relative;
  transition: all 0.3s ease;
  color: var(--dark-color);
  text-decoration: none;
  font-weight: 500;
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -3px;
  left: 50%;
  background-color: var(--secondary-color);
  transition: all 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
  left: 0;
}

/* Sticky Elements */
.sticky-social {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 100;
}

.chat-bubble {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 100;
}

/* Animations */
.animate-float {
  animation: float 3s ease-in-out infinite;
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  background-color: #128c7e;
  transform: scale(1.1);
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

.fade-in {
  animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Form Elements */
.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.form-input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(0, 85, 164, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }

  .card {
    padding: 1.5rem;
  }

  .service-icon {
    font-size: 2.5rem;
  }
}

/* Print Styles */
@media print {
  body {
    width: 100%;
    margin: 0;
    padding: 0;
    background-color: white;
  }

  .container {
    width: 100%;
    max-width: none;
  }

  .sticky-social,
  .chat-bubble,
  .navbar {
    display: none;
  }

  section {
    page-break-inside: avoid;
    margin-bottom: 1rem;
  }

  .btn-primary,
  .btn-secondary {
    border: 1px solid #000;
    color: #000;
    background: none;
  }
}

.group {
  transition: box-shadow 0.3s, background 0.3s;
}

.bg-white.p-6 {
  transition: box-shadow 0.3s, background 0.3s;
}

.bg-gray-50.p-8 {
  transition: box-shadow 0.3s, background 0.3s;
}

/* Gradiente horizontal customizado (azul para branco) */
.bg-gradient-custom-horizontal {
  background: linear-gradient(to right, #3e45ab, #0f58d0, #130035);
}

/* Gradiente vertical customizado (azul para transparente) */
.bg-gradient-custom-vertical {
  background: linear-gradient(to top, #130035, #0f58d0, #3e45ab);
}

/* Navbar - cor da fonte branca */
nav#navbar,
nav#navbar a,
nav#navbar .text-gray-800,
nav#navbar .font-medium,
nav#navbar .btn-primary,
.bg-gradient-custom-vertical,
.bg-gradient-custom-vertical a,
.bg-gradient-custom-vertical .text-gray-700,
.bg-gradient-custom-vertical .font-medium,
.bg-gradient-custom-vertical .btn-primary {
  color: #fff;
}
nav#navbar .btn-primary {
  background: linear-gradient(to left, #3e45ab, #0f58d0);
}

#about div a {
  color:  #0f58d0;
}

/* Transição suave para todos os elementos em hover */
*:hover {
  transition: all 0.3s ease;
}