@charset "UTF-8";
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Outfit", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #374151;
  background-color: #ffffff;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 1024px) {
  .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.section {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.bg-primary {
  background-color: #002060;
  color: #ffffff;
}

.bg-gray-50 {
  background-color: #f9fafb;
}

.text-white {
  color: #ffffff;
}

.text-primary {
  color: #002060;
}

.text-accent {
  color: #B1560F;
}

.text-center {
  text-align: center;
}

.max-w-2xl {
  max-width: 42rem;
}

.max-w-3xl {
  max-width: 48rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.opacity-80 {
  opacity: 0.8;
}

.opacity-90 {
  opacity: 0.9;
}

.grid {
  display: grid;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

@media (min-width: 768px) {
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .lg\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.gap-4 {
  gap: 1rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-8 {
  gap: 2rem;
}

.gap-12 {
  gap: 3rem;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 900;
  color: #002060;
  line-height: 1.2;
}

h1 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 1024px) {
  h1 {
    font-size: 3rem;
  }
}

h2 {
  font-size: 1.875rem;
  margin-bottom: 1rem;
}
@media (min-width: 1024px) {
  h2 {
    font-size: 2.25rem;
  }
}

h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
}

.text-lg {
  font-size: 1.125rem;
}

.text-xl {
  font-size: 1.25rem;
}

.text-sm {
  font-size: 0.875rem;
}

.leading-relaxed {
  line-height: 1.625;
}

.font-black {
  font-weight: 900;
}

.font-semibold {
  font-weight: 600;
}

.font-medium {
  font-weight: 500;
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.py-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.py-24 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

@media (min-width: 1024px) {
  .lg\:py-24 {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}
.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.p-4 {
  padding: 1rem;
}

.p-6 {
  padding: 1.5rem;
}

.p-8 {
  padding: 2rem;
}

.p-12 {
  padding: 3rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-3 {
  margin-bottom: 0.75rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mb-12 {
  margin-bottom: 3rem;
}

.mb-20 {
  margin-bottom: 5rem;
}

.mt-1 {
  margin-top: 0.25rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-8 {
  margin-top: 2rem;
}

.mt-12 {
  margin-top: 3rem;
}

.ml-2 {
  margin-left: 0.5rem;
}

.ml-4 {
  margin-left: 1rem;
}

.mr-2 {
  margin-right: 0.5rem;
}

.text-xs {
  font-size: 0.75rem;
}

.text-sm {
  font-size: 0.875rem;
}

.text-base {
  font-size: 1rem;
}

.text-lg {
  font-size: 1.125rem;
}

.text-xl {
  font-size: 1.25rem;
}

.text-2xl {
  font-size: 1.5rem;
}

.text-3xl {
  font-size: 1.875rem;
}

.text-4xl {
  font-size: 2.25rem;
}

.text-5xl {
  font-size: 3rem;
}

@media (min-width: 1024px) {
  .lg\:text-4xl {
    font-size: 2.25rem;
  }
  .lg\:text-5xl {
    font-size: 3rem;
  }
}
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.font-normal {
  font-weight: 400;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

.font-black {
  font-weight: 900;
}

.leading-normal {
  line-height: 1.5;
}

.leading-relaxed {
  line-height: 1.625;
}

.whitespace-pre-line {
  white-space: pre-line;
}

.bg-white {
  background-color: #ffffff;
}

.bg-gray-200 {
  background-color: #e5e7eb;
}

.bg-gray-50 {
  background-color: #f9fafb;
}

.bg-primary {
  background-color: #002060;
}

.bg-primary-dark {
  background-color: #001a50;
}

.bg-accent {
  background-color: #B1560F;
}

.bg-\[\#002060\] {
  background-color: #002060;
}

.text-\[\#002060\] {
  color: #002060;
}

.bg-\[\#002060\]\/5 {
  background-color: rgba(0, 32, 96, 0.05);
}

.text-\[\#B1560F\] {
  color: #B1560F;
}

.text-white {
  color: #ffffff;
}

.text-gray-400 {
  color: #9ca3af;
}

.text-gray-500 {
  color: #6b7280;
}

.text-gray-600 {
  color: #4b5563;
}

.text-gray-700 {
  color: #374151;
}

.text-primary {
  color: #002060;
}

.text-accent {
  color: #B1560F;
}

.text-white\/80 {
  color: rgba(255, 255, 255, 0.8);
}

.text-white\/90 {
  color: rgba(255, 255, 255, 0.9);
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-shrink-0 {
  flex-shrink: 0;
}

.items-center {
  align-items: center;
}

.items-start {
  align-items: flex-start;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-3 {
  gap: 0.75rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-8 {
  gap: 2rem;
}

.gap-12 {
  gap: 3rem;
}

.grid {
  display: grid;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

@media (min-width: 640px) {
  .sm\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 768px) {
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .lg\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .lg\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.z-0 {
  z-index: 0;
}

.z-10 {
  z-index: 10;
}

.overflow-hidden {
  overflow: hidden;
}

.sticky {
  position: sticky;
}

.top-20 {
  top: 5rem;
}

.top-24 {
  top: 6rem;
}

.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

.w-2 {
  width: 0.5rem;
}

.h-2 {
  height: 0.5rem;
}

.w-4 {
  width: 1rem;
}

.h-4 {
  height: 1rem;
}

.w-5 {
  width: 1.25rem;
}

.h-5 {
  height: 1.25rem;
}

.w-6 {
  width: 1.5rem;
}

.h-6 {
  height: 1.5rem;
}

.h-16 {
  height: 4rem;
}

.w-16 {
  width: 4rem;
}

.h-40 {
  height: 10rem;
}

.h-48 {
  height: 12rem;
}

.h-80 {
  height: 20rem;
}

.h-96 {
  height: 24rem;
}

.object-cover {
  object-fit: cover;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.max-w-2xl {
  max-width: 42rem;
}

.max-w-3xl {
  max-width: 48rem;
}

.max-w-4xl {
  max-width: 56rem;
}

.max-w-\[800px\] {
  max-width: 800px;
}

.max-w-\[1200px\] {
  max-width: 1200px;
}

.max-w-none {
  max-width: none;
}

.border {
  border: 1px solid #e5e7eb;
}

.border-b {
  border-bottom: 1px solid #e5e7eb;
}

.border-t {
  border-top: 1px solid #e5e7eb;
}

.border-gray-100 {
  border-color: #f3f4f6;
}

.border-gray-200 {
  border-color: #e5e7eb;
}

.ring-4 {
  box-shadow: 0 0 0 4px #ccc;
}

.ring-white\/10 {
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.1);
}

.opacity-30 {
  opacity: 0.3;
}

.opacity-80 {
  opacity: 0.8;
}

.opacity-90 {
  opacity: 0.9;
}

.rounded-md {
  border-radius: 0.375rem;
}

.rounded-lg {
  border-radius: 0.5rem;
}

.rounded-xl {
  border-radius: 0.75rem;
}

.rounded-2xl {
  border-radius: 1rem;
}

.rounded-3xl {
  border-radius: 1.5rem;
}

.rounded-full {
  border-radius: 9999px;
}

.shadow-sm {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.shadow-md {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.shadow-lg {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.shadow-2xl {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.shadow-inner {
  box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
}

.transition-shadow {
  transition-property: box-shadow;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-transform {
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.duration-200 {
  transition-duration: 200ms;
}

.duration-300 {
  transition-duration: 300ms;
}

.hover\:shadow-md:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.hover\:shadow-lg:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.prose {
  line-height: 1.6;
}
.prose p {
  margin-bottom: 1rem;
}
.prose ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.prose li {
  margin-bottom: 0.5rem;
}
.prose h2 {
  font-weight: 900;
  color: #002060;
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.prose h3 {
  font-weight: 900;
  color: #002060;
  font-size: 1.25rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.prose-lg {
  font-size: 1.125rem;
  line-height: 1.75;
}

.tab-btn {
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  font-weight: 600;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
  background-color: var(--color-gray-100, #f3f4f6);
  color: #002060;
}
.tab-btn.active {
  background-color: #002060;
  color: #fff;
}

.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
}

.btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 0.375rem;
  font-weight: 600;
  text-align: center;
  transition: all 0.2s;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn--primary {
  background-color: #B1560F;
  color: #ffffff;
}
.btn--primary:hover {
  background-color: #964A0C;
}
.btn--secondary {
  background-color: #002060;
  color: #ffffff;
}
.btn--secondary:hover {
  background-color: #001a50;
}
.btn--outline {
  background-color: transparent;
  color: #ffffff;
  border-color: #ffffff;
}
.btn--outline:hover {
  background-color: #ffffff;
  color: #002060;
}
.btn--outline-accent {
  background-color: transparent;
  color: #B1560F;
  border-color: #B1560F;
}
.btn--outline-accent:hover {
  background-color: #B1560F;
  color: #ffffff;
}

.block {
  display: block;
  width: 100%;
}

.service-card {
  background-color: #ffffff;
  padding: 1.5rem;
  border: 1px solid rgba(0, 32, 96, 0.1);
  border-radius: 0.5rem;
  transition: box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.service-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.service-card__icon {
  color: #002060;
  margin-bottom: 1rem;
  flex-shrink: 0;
}
.service-card__icon svg {
  width: 40px;
  height: 40px;
}
.service-card h3 {
  font-size: 1.25rem;
  font-weight: 900;
  margin-bottom: 0.75rem;
  color: #002060;
}
.service-card p {
  color: #374151;
  font-size: 1rem;
  margin-bottom: 1rem;
  line-height: 1.6;
  flex-grow: 1;
}
.service-card__link {
  color: #B1560F;
  font-weight: 600;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  transition: color 0.2s;
}
.service-card__link:hover {
  color: #964A0C;
  text-decoration: none;
}
.service-card__link::after {
  content: "→";
  margin-left: 0.5rem;
  transition: transform 0.2s;
}
.service-card__link:hover::after {
  transform: translateX(4px);
}

.formation-card {
  background-color: #ffffff;
  border: 1px solid rgba(0, 32, 96, 0.1);
  border-radius: 0.5rem;
  overflow: hidden;
  transition: box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.formation-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.formation-card__image {
  height: 10rem;
  width: 100%;
  overflow: hidden;
}
.formation-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.formation-card:hover .formation-card__image img {
  transform: scale(1.05);
}
.formation-card__content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.formation-card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}
.formation-card h3 {
  font-size: 1.125rem;
  font-weight: 900;
  color: #002060;
  margin: 0;
  flex: 1;
}
.formation-card__hours {
  color: #B1560F;
  font-weight: 600;
  font-size: 0.875rem;
  white-space: nowrap;
  margin-left: 1rem;
}
.formation-card__link {
  display: inline-block;
  margin-top: auto;
  background-color: #B1560F;
  color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  font-weight: 600;
  font-size: 0.875rem;
  text-align: center;
  transition: background-color 0.2s;
}
.formation-card__link:hover {
  background-color: #964A0C;
  color: #ffffff;
  text-decoration: none;
}

.bluereport-form {
  padding: 1rem 0;
}
.bluereport-form .form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .bluereport-form .form-row {
    grid-template-columns: 1fr 1fr;
  }
}
.bluereport-form .form-group {
  margin-bottom: 1.5rem;
  position: relative;
}
.bluereport-form .form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #002060;
  margin-bottom: 0.5rem;
}
.bluereport-form .form-group input[type=text],
.bluereport-form .form-group input[type=email],
.bluereport-form .form-group input[type=tel],
.bluereport-form .form-group input[type=url],
.bluereport-form .form-group input[type=number],
.bluereport-form .form-group input[type=date],
.bluereport-form .form-group input[type=file],
.bluereport-form .form-group select,
.bluereport-form .form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  font-family: inherit;
  font-size: 1rem;
  color: #374151;
  transition: all 0.2s;
  outline: none;
}
.bluereport-form .form-group input[type=text]:focus,
.bluereport-form .form-group input[type=email]:focus,
.bluereport-form .form-group input[type=tel]:focus,
.bluereport-form .form-group input[type=url]:focus,
.bluereport-form .form-group input[type=number]:focus,
.bluereport-form .form-group input[type=date]:focus,
.bluereport-form .form-group input[type=file]:focus,
.bluereport-form .form-group select:focus,
.bluereport-form .form-group textarea:focus {
  border-color: #B1560F;
  box-shadow: 0 0 0 3px rgba(177, 86, 15, 0.1);
}
.bluereport-form .form-group input[type=text]::placeholder,
.bluereport-form .form-group input[type=email]::placeholder,
.bluereport-form .form-group input[type=tel]::placeholder,
.bluereport-form .form-group input[type=url]::placeholder,
.bluereport-form .form-group input[type=number]::placeholder,
.bluereport-form .form-group input[type=date]::placeholder,
.bluereport-form .form-group input[type=file]::placeholder,
.bluereport-form .form-group select::placeholder,
.bluereport-form .form-group textarea::placeholder {
  color: #9ca3af;
}
.bluereport-form .form-group input[type=file] {
  padding: 0.6rem 1rem;
  font-size: 0.9rem;
}
.bluereport-form .form-group input[type=file]::file-selector-button {
  background: #002060;
  color: white;
  border: none;
  padding: 0.4rem 0.8rem;
  border-radius: 0.25rem;
  margin-right: 1rem;
  cursor: pointer;
}
.bluereport-form .form-group input[type=file]::file-selector-button:hover {
  background: #001a50;
}
.bluereport-form .form-group textarea {
  min-height: 120px;
  resize: vertical;
}
.bluereport-form .form-group .wpcf7-form-control-wrap {
  display: block;
}
.bluereport-form .wpcf7-submit {
  width: 100%;
}
@media (min-width: 768px) {
  .bluereport-form .wpcf7-submit {
    width: auto;
    min-width: 200px;
  }
}
.bluereport-form .wpcf7-not-valid-tip {
  font-size: 0.8rem;
  color: #dc2626;
  margin-top: 0.25rem;
}
.bluereport-form .wpcf7-response-output {
  margin: 2rem 0 0 !important;
  padding: 1rem !important;
  border-radius: 0.5rem !important;
  border: 2px solid transparent !important;
  font-size: 0.9rem !important;
  text-align: center !important;
}
.bluereport-form .wpcf7-mail-sent-ok {
  border-color: #059669 !important;
  color: #059669 !important;
  background-color: #ecfdf5 !important;
}
.bluereport-form .wpcf7-validation-errors {
  border-color: #dc2626 !important;
  color: #dc2626 !important;
  background-color: #fef2f2 !important;
}

body.admin-bar .site-header {
  top: 32px;
}

.site-header {
  background-color: #ffffff;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 50;
  height: 5rem;
  display: flex;
  align-items: center;
}
.site-header__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.site-header__logo {
  display: flex;
  align-items: center;
}
.site-header__logo img {
  height: 4rem;
  width: auto;
}
.site-header__logo .logo-text {
  color: #002060;
  font-size: 1.5rem;
  font-weight: 900;
}
.site-header__main-nav {
  display: none;
  align-items: center;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .site-header__main-nav {
    display: flex;
  }
}
.site-header__main-nav .site-header__nav-list {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-header__main-nav .site-header__nav-list li a {
  color: #002060;
  font-weight: 500;
  transition: color 0.2s;
  text-decoration: none;
}
.site-header__main-nav .site-header__nav-list li a:hover {
  color: #B1560F;
}
.site-header__main-nav .site-header__nav-list li.current-menu-item a {
  color: #B1560F;
}
.site-header__nav {
  display: none;
  align-items: center;
  gap: 1.5rem;
}
@media (min-width: 1024px) {
  .site-header__nav {
    display: flex;
  }
}
.site-header__nav .btn-client-area {
  background-color: #002060;
  color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.85rem;
  transition: background-color 0.2s;
}
.site-header__nav .btn-client-area:hover {
  background-color: #003193;
  color: #ffffff;
}
.site-header__nav .btn-header {
  padding: 0.75rem 1.25rem;
  font-size: 0.9rem;
}
.site-header__mobile-toggle {
  display: block;
  background: none;
  border: none;
  color: #002060;
  cursor: pointer;
  padding: 0.5rem;
}
@media (min-width: 1024px) {
  .site-header__mobile-toggle {
    display: none;
  }
}

.mobile-nav {
  position: fixed;
  top: 5rem;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #002060;
  z-index: 40;
  display: none;
  overflow-y: auto;
}
.mobile-nav.is-open {
  display: block;
}
.mobile-nav__content {
  display: flex;
  flex-direction: column;
  padding: 1rem 0;
}
.mobile-nav__content .mobile-nav-list li a {
  display: block;
  padding: 1rem 1.5rem;
  color: #ffffff;
  font-weight: 500;
  transition: background-color 0.2s;
}
.mobile-nav__content .mobile-nav-list li a:hover {
  background-color: #B1560F;
}
.mobile-nav__content .mobile-nav-list li.current-menu-item a {
  background-color: #B1560F;
}
.mobile-nav__content .btn-mobile-nav {
  margin: 1.5rem;
}

.site-footer {
  background-color: #002060;
  color: #ffffff;
}
.site-footer__main {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 768px) {
  .site-footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .site-footer__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.site-footer__col h3 {
  font-size: 1.25rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 1.5rem;
}
.site-footer__logo {
  background: white;
  margin-bottom: 1.5rem;
}
.site-footer__logo img {
  width: auto;
}
.site-footer__logo .logo-text {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 900;
}
.site-footer__about {
  color: #C7D2E2;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.site-footer__contact {
  color: #C7D2E2;
  font-size: 0.875rem;
}
.site-footer__contact p {
  margin-bottom: 1rem;
}
.site-footer__contact .label {
  font-weight: 600;
  color: #ffffff;
  display: block;
  margin-top: 1rem;
}
.site-footer__authority {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 3rem;
  padding-top: 2rem;
  text-align: center;
  color: #C7D2E2;
  font-style: italic;
}
.site-footer__bottom {
  background-color: #001532;
  padding: 1rem 0;
  color: #A8B7D1;
  font-size: 0.875rem;
}
.site-footer .footer-links {
  list-style: none;
  padding: 0;
}
.site-footer .footer-links li {
  margin-bottom: 0.75rem;
}
.site-footer .footer-links li a {
  color: #C7D2E2;
  transition: color 0.2s;
}
.site-footer .footer-links li a:hover {
  color: #B1560F;
}

.newsletter {
  background-color: #001a50;
  padding: 3rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.newsletter__wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .newsletter__wrapper {
    flex-direction: row;
    justify-content: space-between;
  }
}
.newsletter__content {
  max-width: 32rem;
}
.newsletter__content h3 {
  color: #ffffff;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.newsletter__content p {
  color: #C7D2E2;
  margin-bottom: 0;
}
.newsletter__form-wrapper {
  flex-grow: 1;
  max-width: 28rem;
  width: 100%;
}
.newsletter__form-wrapper .newsletter-subscription form, .newsletter__form-wrapper .tnp-subscription form, .newsletter__form-wrapper .tnp form {
  display: flex !important;
  flex-direction: row !important;
  gap: 0.5rem;
  align-items: stretch !important;
  width: 100%;
  margin: 0;
  padding: 0;
}
.newsletter__form-wrapper .newsletter-subscription label, .newsletter__form-wrapper .newsletter-subscription .tnp-label, .newsletter__form-wrapper .tnp-subscription label, .newsletter__form-wrapper .tnp-subscription .tnp-label, .newsletter__form-wrapper .tnp label, .newsletter__form-wrapper .tnp .tnp-label {
  display: none !important;
}
.newsletter__form-wrapper .newsletter-subscription .tnp-field, .newsletter__form-wrapper .newsletter-subscription .tnp-field-email, .newsletter__form-wrapper .newsletter-subscription .tnp-field-button, .newsletter__form-wrapper .tnp-subscription .tnp-field, .newsletter__form-wrapper .tnp-subscription .tnp-field-email, .newsletter__form-wrapper .tnp-subscription .tnp-field-button, .newsletter__form-wrapper .tnp .tnp-field, .newsletter__form-wrapper .tnp .tnp-field-email, .newsletter__form-wrapper .tnp .tnp-field-button {
  display: flex !important;
  flex-grow: 1;
  margin: 0 !important;
  padding: 0 !important;
  width: auto !important;
}
.newsletter__form-wrapper .newsletter-subscription .tnp-field.tnp-field-button, .newsletter__form-wrapper .newsletter-subscription .tnp-field-email.tnp-field-button, .newsletter__form-wrapper .newsletter-subscription .tnp-field-button.tnp-field-button, .newsletter__form-wrapper .tnp-subscription .tnp-field.tnp-field-button, .newsletter__form-wrapper .tnp-subscription .tnp-field-email.tnp-field-button, .newsletter__form-wrapper .tnp-subscription .tnp-field-button.tnp-field-button, .newsletter__form-wrapper .tnp .tnp-field.tnp-field-button, .newsletter__form-wrapper .tnp .tnp-field-email.tnp-field-button, .newsletter__form-wrapper .tnp .tnp-field-button.tnp-field-button {
  flex-grow: 0;
}
.newsletter__form-wrapper .newsletter-subscription .newsletter-email, .newsletter__form-wrapper .newsletter-subscription .tnp-email, .newsletter__form-wrapper .tnp-subscription .newsletter-email, .newsletter__form-wrapper .tnp-subscription .tnp-email, .newsletter__form-wrapper .tnp .newsletter-email, .newsletter__form-wrapper .tnp .tnp-email {
  flex-grow: 1;
  padding: 0.75rem 1rem !important;
  border-radius: 0.375rem !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  background-color: rgba(255, 255, 255, 0.05) !important;
  color: #ffffff !important;
  height: auto !important;
  font-size: 1rem !important;
  width: 100% !important;
}
.newsletter__form-wrapper .newsletter-subscription .newsletter-email::placeholder, .newsletter__form-wrapper .newsletter-subscription .tnp-email::placeholder, .newsletter__form-wrapper .tnp-subscription .newsletter-email::placeholder, .newsletter__form-wrapper .tnp-subscription .tnp-email::placeholder, .newsletter__form-wrapper .tnp .newsletter-email::placeholder, .newsletter__form-wrapper .tnp .tnp-email::placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.newsletter__form-wrapper .newsletter-subscription .newsletter-email:focus, .newsletter__form-wrapper .newsletter-subscription .tnp-email:focus, .newsletter__form-wrapper .tnp-subscription .newsletter-email:focus, .newsletter__form-wrapper .tnp-subscription .tnp-email:focus, .newsletter__form-wrapper .tnp .newsletter-email:focus, .newsletter__form-wrapper .tnp .tnp-email:focus {
  outline: none;
  border-color: #B1560F !important;
}
.newsletter__form-wrapper .newsletter-subscription .newsletter-submit, .newsletter__form-wrapper .newsletter-subscription .tnp-submit, .newsletter__form-wrapper .tnp-subscription .newsletter-submit, .newsletter__form-wrapper .tnp-subscription .tnp-submit, .newsletter__form-wrapper .tnp .newsletter-submit, .newsletter__form-wrapper .tnp .tnp-submit {
  flex-shrink: 0;
  background-color: #B1560F !important;
  color: #ffffff !important;
  border: none !important;
  padding: 0.75rem 1.5rem !important;
  border-radius: 0.375rem !important;
  font-weight: 700 !important;
  cursor: pointer;
  transition: background-color 0.2s, opacity 0.2s;
  height: 100% !important;
  min-height: 44px;
  white-space: nowrap;
}
.newsletter__form-wrapper .newsletter-subscription .newsletter-submit:hover, .newsletter__form-wrapper .newsletter-subscription .tnp-submit:hover, .newsletter__form-wrapper .tnp-subscription .newsletter-submit:hover, .newsletter__form-wrapper .tnp-subscription .tnp-submit:hover, .newsletter__form-wrapper .tnp .newsletter-submit:hover, .newsletter__form-wrapper .tnp .tnp-submit:hover {
  background-color: #964A0C !important;
  opacity: 1 !important;
}

.whatsapp-button {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 3.5rem;
  height: 3.5rem;
  background-color: #25D366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 100;
  transition: transform 0.2s;
}
.whatsapp-button:hover {
  transform: scale(1.1);
}

.overflow-hidden {
  overflow: hidden;
}

.hero {
  background-color: #002060;
  color: #ffffff;
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .hero {
    padding: 8rem 0;
  }
}
.hero__bg {
  position: absolute;
  inset: 0;
  opacity: 0.3;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__content {
  position: relative;
  z-index: 10;
  max-width: 48rem;
}
.hero h1 {
  color: white;
  font-size: 1.875rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
}
@media (min-width: 1024px) {
  .hero h1 {
    font-size: 3.5rem;
    line-height: 1;
  }
}
.hero p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
  line-height: 1.625;
}
@media (min-width: 1024px) {
  .hero p {
    font-size: 1.25rem;
  }
}
.hero p.small {
  font-size: 1rem;
  opacity: 0.8;
  margin-bottom: 2rem;
}
@media (min-width: 1024px) {
  .hero p.small {
    font-size: 1.125rem;
  }
}
.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 640px) {
  .hero__actions {
    flex-direction: row;
  }
}

.credibility {
  padding: 3rem 0;
  background-color: #ffffff;
  border-bottom: 1px solid #e5e7eb;
}
.credibility__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .credibility__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .credibility__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.credibility__item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.credibility__item svg {
  color: #B1560F;
  flex-shrink: 0;
}
.credibility__item p {
  font-weight: 600;
  color: #002060;
}

.intervention {
  padding: 5rem 0;
  background-color: #ffffff;
}
.intervention__header {
  text-align: center;
  margin-bottom: 3rem;
}
.intervention__header h2 {
  margin-bottom: 1rem;
}
.intervention__header p {
  font-size: 1.125rem;
  color: #374151;
  max-width: 42rem;
  margin: 0 auto;
}
.intervention__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .intervention__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .intervention__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.legislation {
  padding: 5rem 0;
  background-color: #002060;
  color: #ffffff;
}
.legislation__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .legislation__grid {
    grid-template-columns: 1fr 1fr;
  }
}
.legislation__card {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  padding: 2rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
}
.legislation__card .hours {
  font-size: 3rem;
  font-weight: 900;
  color: #B1560F;
  margin-bottom: 0.5rem;
}
.legislation__card .subtitle {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.legislation__card .source {
  font-size: 0.875rem;
  opacity: 0.8;
}

.featured-formations {
  padding: 5rem 0;
  background-color: #f9fafb;
}
.featured-formations__header {
  text-align: center;
  margin-bottom: 3rem;
}
.featured-formations__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .featured-formations__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .featured-formations__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.differentials {
  padding: 5rem 0;
  background-color: #ffffff;
}
.differentials__header {
  text-align: center;
  margin-bottom: 3rem;
}
.differentials__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 56rem;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .differentials__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .differentials__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
.differentials__list .item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.differentials__list .item::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  background-color: #B1560F;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.5rem;
}
.differentials__list .item p {
  color: #374151;
}

.cta-final {
  padding: 5rem 0;
  background-color: #002060;
  color: #ffffff;
  text-align: center;
}
.cta-final h2 {
  color: #ffffff;
  margin-bottom: 1.5rem;
}
.cta-final p {
  margin-bottom: 2rem;
  opacity: 0.9;
}

.location-section {
  padding: 5rem 0;
  background-color: #f9fafb;
}
.location-section__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .location-section__grid {
    grid-template-columns: 1fr 1fr;
  }
}
.location-section__info h2 {
  margin-bottom: 2rem;
}
.location-section__info .detail {
  margin-bottom: 1.5rem;
}
.location-section__info .detail label {
  display: block;
  font-weight: 600;
  color: #002060;
  margin-bottom: 0.25rem;
}
.location-section__info .detail p {
  color: #374151;
}
.location-section__map {
  background-color: #d1d5db;
  border-radius: 0.5rem;
  height: 20rem;
  display: flex;
  align-items: center;
  justify-center: center;
  overflow: hidden;
}
.location-section__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-info__grid .info-card {
  background-color: #ffffff;
  padding: 2.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.contact-info__grid .info-card h3 {
  margin-bottom: 1rem;
}
.contact-info__grid .info-card p, .contact-info__grid .info-card a {
  color: #374151;
  font-size: 1.125rem;
}

.contact-tabs .tab-btn {
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  font-weight: 600;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
  background-color: #f3f4f6;
  color: #002060;
}
.contact-tabs .tab-btn.active {
  background-color: #002060;
  color: #ffffff;
}
.contact-tabs .tab-btn:hover:not(.active) {
  background-color: #e5e7eb;
}

.contact-forms__container .tab-content {
  display: none;
}
.contact-forms__container .tab-content.active {
  display: block;
}

.location-map__grid {
  align-items: center;
}

.confidence-block h2 {
  color: #ffffff;
}

.sobre-nos-page section {
  position: relative;
}
.sobre-nos-page h2 {
  color: #002060;
  font-weight: 900;
}

.page-hero__bg img {
  filter: brightness(0.7);
}

.bg-\[\#002060\].w-16.h-16 {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.posicionamento h2 {
  color: white;
}

.intervention-areas__grid {
  align-items: stretch;
}
.intervention-areas__item {
  background-color: rgba(0, 32, 96, 0.05);
  padding: 1.5rem 2rem;
  border-radius: 1rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 110px;
  height: 100%;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}
.intervention-areas__item p {
  color: #002060;
  font-weight: 900;
  margin-bottom: 0;
  line-height: 1.25;
  font-size: 1.125rem;
}
.intervention-areas__item:hover {
  background-color: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border-color: rgba(177, 86, 15, 0.1);
  transform: translateY(-4px);
}

.formations-grid .formation-card {
  background-color: #ffffff;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border: 1px solid #f3f4f6;
  transition: box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.formations-grid .formation-card:hover {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.formations-grid .formation-card:hover .formation-card__image img {
  transform: scale(1.05);
}
.formations-grid .formation-card__image {
  height: 12rem;
  overflow: hidden;
  position: relative;
}
.formations-grid .formation-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.formations-grid .formation-card__content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.formations-grid .formation-card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  gap: 1rem;
}
.formations-grid .formation-card__header h3 {
  font-weight: 700;
  color: #002060;
  line-height: 1.25;
  margin: 0;
  font-size: 1.125rem;
  flex: 1;
}
.formations-grid .formation-card__hours {
  background-color: rgba(177, 86, 15, 0.1);
  color: #B1560F;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  white-space: nowrap;
}
.formations-grid .formation-card__link {
  background-color: #B1560F;
  color: #ffffff !important;
  font-weight: 700;
  font-size: 0.875rem;
  display: block;
  text-align: center;
  padding: 0.625rem 1rem;
  border-radius: 0.375rem;
  margin-top: auto;
  text-decoration: none;
  transition: background-color 0.2s ease;
}
.formations-grid .formation-card__link:hover {
  background-color: #964A0C;
  color: #ffffff !important;
}
.formations-grid .formation-card__link::after {
  content: none;
}

.formation-plan .plan-table-wrapper {
  overflow-x: auto;
  border-radius: 0.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.cta-final-formacao {
  background: #B1560F;
}

.services-intro {
  padding: 5rem 0;
}

.services-grid-section .grid .service-card--large {
  padding: 3rem;
}
.services-grid-section .grid .service-card--large h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}
.services-grid-section .grid .service-card--large p {
  font-size: 1.125rem;
  line-height: 1.6;
}

.news-filters a.active, .news-filters a.current {
  background-color: #002060 !important;
  color: #ffffff !important;
}
.news-filters a.inactive {
  background-color: #ffffff;
  color: #002060;
  border: 1px solid rgba(0, 32, 96, 0.2);
}
.news-filters a.inactive:hover {
  border-color: #B1560F;
}

.news-card {
  background-color: #ffffff;
  border: 1px solid rgba(0, 32, 96, 0.1);
  border-radius: 0.5rem;
  overflow: hidden;
  transition: box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}
.news-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.news-card:hover .news-card__image img {
  transform: scale(1.05);
}
.news-card:hover .news-card__title {
  color: #B1560F;
}
.news-card:hover .news-card__link svg {
  transform: translateX(4px);
}
.news-card__image {
  height: 12rem;
  overflow: hidden;
}
.news-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover !important;
  transition: transform 0.3s ease;
}
.news-card__content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.news-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}
.news-card__meta .date {
  font-size: 0.875rem;
  color: #4b5563;
}
.news-card__meta .category {
  font-size: 0.75rem;
  background-color: #B1560F;
  color: #ffffff;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
}
.news-card__title {
  font-size: 1.25rem;
  font-weight: 900;
  color: #002060;
  margin-bottom: 0.75rem;
  transition: color 0.2s ease;
  line-height: 1.3;
  margin-top: 0;
}
.news-card__excerpt {
  color: #374151;
  font-size: 0.875rem;
  margin-bottom: 1rem;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-card__excerpt p {
  margin: 0;
}
.news-card__link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  color: #B1560F;
  font-weight: 700;
  font-size: 0.875rem;
  transition: color 0.2s ease;
}
.news-card__link:hover {
  color: #964A0C;
}

.page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin: 0 0.25rem;
  border-radius: 0.375rem;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  color: #002060;
  font-weight: 600;
  transition: all 0.2s;
}
.page-numbers.current {
  background-color: #002060 !important;
  color: #ffffff !important;
  border-color: #002060 !important;
}
.page-numbers:hover:not(.current) {
  border-color: #B1560F;
  color: #B1560F;
}

.border-\[\#002060\]\/10 {
  border-color: rgba(0, 32, 96, 0.1) !important;
}

.border-\[\#002060\]\/20 {
  border-color: rgba(0, 32, 96, 0.2) !important;
}

.hover\:border-\[\#B1560F\]:hover {
  border-color: #B1560F !important;
}

.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card.group:hover .group-hover\:translate-x-1 {
  transform: translateX(0.25rem);
}
.news-card.group:hover .group-hover\:scale-105 {
  transform: scale(1.05);
}
.news-card.group:hover .group-hover\:text-\[\#B1560F\] {
  color: #B1560F !important;
}

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