*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #2c3e50;
  background-color: #ffffff;
  overflow-x: hidden;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1 0 auto;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

ul,
ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
}

.container {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }
}

.section {
  padding: 6rem 0;
}
@media (min-width: 768px) {
  .section {
    padding: 6rem 0;
  }
}

.section-title {
  font-family: "Outfit", "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #0f4d6e;
  margin-bottom: 1rem;
  text-align: center;
}
@media (min-width: 768px) {
  .section-title {
    font-size: 2.25rem;
  }
}

.section-subtitle {
  font-size: 1rem;
  color: #5a6c7d;
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #ffffff;
  transition: box-shadow 0.3s ease, background 0.3s ease;
}
.header.scrolled {
  box-shadow: 0 4px 24px rgba(15, 77, 110, 0.12);
}
.header.scrolled .header-main {
  padding: 1rem 0;
}

.header-top {
  background: #3257CA;
  padding: 1rem 0;
}

.header-top-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 2rem;
  text-align: center;
}

.header-top-text {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: 0.02em;
  line-height: 1.4;
}

.header-top-phone {
  font-size: 0.875rem;
  font-weight: 600;
  color: white;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}
.header-top-phone:hover {
  color: white;
  opacity: 0.9;
}

.header-main {
  background: #ffffff;
  border-bottom: 1px solid rgba(26, 107, 158, 0.1);
  padding: 1.5rem 0;
  transition: padding 0.3s ease;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-height: 64px;
}
@media (min-width: 992px) {
  .header-inner {
    min-height: 72px;
  }
}

.header-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  transition: opacity 0.2s ease;
}
.header-logo:hover {
  opacity: 0.9;
}

.header-logo-img {
  height: 44px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
}
@media (min-width: 992px) {
  .header-logo-img {
    height: 52px;
    max-width: 220px;
  }
}

.header-logo-text {
  font-family: "Outfit", "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f4d6e;
  letter-spacing: -0.02em;
}

.header-nav {
  display: none;
}
@media (min-width: 992px) {
  .header-nav {
    display: flex;
    align-items: center;
    gap: 0;
  }
}

.header-link {
  font-weight: 500;
  font-size: 0.9375rem;
  color: #2c3e50;
  padding: 1rem 1.5rem;
  margin: 0 2px;
  border-radius: 8px;
  transition: color 0.2s ease, background 0.2s ease;
}
.header-link:hover {
  color: #0f4d6e;
  background: rgba(26, 107, 158, 0.06);
}
.header-link.active {
  color: #0f4d6e;
  font-weight: 600;
}

.header-right {
  display: none;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 992px) {
  .header-right {
    display: flex;
  }
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: rgba(26, 107, 158, 0.08);
  border-radius: 10px;
  color: #0f4d6e;
  font-weight: 600;
  font-size: 0.9375rem;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}
.header-phone .header-phone-icon {
  display: flex;
  color: #1a6b9e;
}
.header-phone:hover {
  background: rgba(26, 107, 158, 0.14);
  color: #0f4d6e;
}

.header-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 48px;
  height: 48px;
  padding: 0;
  background: transparent;
  border: 2px solid #1a6b9e;
  border-radius: 8px;
  transition: background 0.2s ease, border-color 0.2s ease;
}
@media (min-width: 992px) {
  .header-toggle {
    display: none;
  }
}
.header-toggle:hover {
  background: rgba(26, 107, 158, 0.06);
  border-color: #0f4d6e;
}
.header-toggle span {
  width: 20px;
  height: 2px;
  background: #0f4d6e;
  border-radius: 1px;
  transition: transform 0.3s ease, opacity 0.2s ease;
  display: block;
}
.header-toggle.active {
  border-color: #0f4d6e;
  background: transparent;
}
.header-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.header-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.header-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.header-mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ffffff;
  padding: 116px 3rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 998;
  overflow-y: auto;
}
.header-mobile-nav.active {
  transform: translateX(0);
}
@media (min-width: 992px) {
  .header-mobile-nav {
    display: none;
  }
}

.header-mobile-close {
  position: absolute;
  top: 92px;
  right: 3rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: rgba(26, 107, 158, 0.1);
  color: #0f4d6e;
  border: 2px solid #1a6b9e;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.header-mobile-close svg {
  flex-shrink: 0;
}
.header-mobile-close:hover {
  background: #1a6b9e;
  color: white;
}

.header-mobile-info {
  padding: 2rem 1rem 1.5rem;
  margin-bottom: 1rem;
  background: rgba(26, 107, 158, 0.06);
  border-radius: 12px;
  border-left: 4px solid #1a6b9e;
}

.header-mobile-phrase {
  margin: 0 0 0.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #0f4d6e;
  line-height: 1.4;
}

.header-mobile-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: #1a6b9e;
  transition: opacity 0.2s ease;
}
.header-mobile-phone:hover {
  color: #0f4d6e;
  opacity: 0.9;
}

.header-mobile-link {
  font-size: 1.25rem;
  font-weight: 500;
  color: #2c3e50;
  padding: 1.5rem 1rem;
  border-bottom: 1px solid rgba(26, 107, 158, 0.08);
  transition: background 0.2s ease, color 0.2s ease;
}
.header-mobile-link:hover {
  background: rgba(26, 107, 158, 0.06);
  color: #0f4d6e;
}

.header-mobile-social {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(26, 107, 158, 0.1);
  display: flex;
  gap: 1.5rem;
}
.header-mobile-social a {
  color: #1a6b9e;
  font-weight: 500;
  font-size: 0.9375rem;
}

.slider {
  position: relative;
  width: 100%;
  margin-top: 0;
  padding-top: 116px;
  background: #ffffff;
}
@media (min-width: 992px) {
  .slider {
    padding-top: 128px;
  }
}

.slider-inner {
  position: relative;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  max-height: 600px;
  height: 600px;
  overflow: hidden;
  background: #ffffff;
}
@media (max-width: 768px) {
  .slider-inner {
    height: 50vh;
    min-height: 280px;
    max-height: none;
  }
}

.slider-track {
  position: absolute;
  inset: 0;
}

.slider-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.slider-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}
.slider-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}
@media (max-width: 768px) {
  .slider-slide img {
    object-fit: cover;
  }
}

.slider-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  gap: 1rem;
}

.slider-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.slider-dot:hover {
  background: rgba(255, 255, 255, 0.8);
}
.slider-dot.is-active {
  background: white;
  transform: scale(1.2);
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  color: #0f4d6e;
  cursor: pointer;
  box-shadow: none;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.slider-arrow:hover {
  background: white;
  color: #0f4d6e;
  transform: translateY(-50%) scale(1.05);
}
@media (max-width: 576px) {
  .slider-arrow {
    width: 40px;
    height: 40px;
  }
  .slider-arrow svg {
    width: 20px;
    height: 20px;
  }
}

.slider-prev {
  left: 6rem;
}
@media (max-width: 768px) {
  .slider-prev {
    left: 3rem;
  }
}

.slider-next {
  right: 6rem;
}
@media (max-width: 768px) {
  .slider-next {
    right: 3rem;
  }
}

.services {
  background: #ffffff;
}

.services-grid {
  display: grid;
  gap: 2rem;
  margin-top: 3rem;
}
@media (min-width: 576px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
}

.services-card {
  background: white;
  padding: 3rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.services-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.services-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(26, 107, 158, 0.1);
  border-radius: 12px;
  margin-bottom: 1.5rem;
  padding: 10px;
  box-sizing: border-box;
}
.services-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.services-title {
  font-family: "Outfit", "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f4d6e;
  margin-bottom: 0.5rem;
}

.services-desc {
  font-size: 0.9375rem;
  color: #5a6c7d;
  line-height: 1.6;
}

.depoimentos {
  background: #f8f9fa;
}

.depoimentos-slider {
  margin-top: 3rem;
  padding: 0 6rem;
}
.depoimentos-slider .slick-list {
  margin: 0 -20px !important;
}
.depoimentos-slider .slick-slide {
  padding: 0 20px !important;
  height: inherit;
  box-sizing: border-box;
}
.depoimentos-slider .slick-slide > div {
  height: 100%;
}

.depoimentos-slider .depoimentos-card {
  margin: 0 16px !important;
  min-width: 0;
  width: 100%;
}

.depoimentos-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  height: 360px;
  display: flex;
  flex-direction: column;
}

.depoimentos-avatar-wrap {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(26, 107, 158, 0.2);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.depoimentos-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.depoimentos-name {
  font-family: "Outfit", "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #0f4d6e;
  margin: 0 0 0.5rem;
  line-height: 1.3;
}

.depoimentos-role {
  font-size: 0.75rem;
  color: #5a6c7d;
  margin: 0 0 1.5rem;
  font-weight: 500;
}

.depoimentos-quote {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #2c3e50;
  margin: 0;
  font-style: italic;
  flex: 1;
  min-height: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  padding-bottom: 43px;
}

.depoimentos-slider .slick-prev,
.depoimentos-slider .slick-next {
  width: 48px;
  height: 48px;
  z-index: 2;
}
.depoimentos-slider .slick-prev::before,
.depoimentos-slider .slick-next::before {
  display: none;
}

.depoimentos-slider .slick-prev {
  left: -8px;
}
@media (min-width: 992px) {
  .depoimentos-slider .slick-prev {
    left: -16px;
  }
}

.depoimentos-slider .slick-next {
  right: -8px;
}
@media (min-width: 992px) {
  .depoimentos-slider .slick-next {
    right: -16px;
  }
}

.depoimentos-slick-prev,
.depoimentos-slick-next {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  background: #ffffff !important;
  border: 2px solid #3257CA !important;
  border-radius: 50%;
  color: #3257CA !important;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  transition: background 0.2s ease, color 0.2s ease;
}
.depoimentos-slick-prev:hover,
.depoimentos-slick-next:hover {
  background: #3257CA !important;
  color: white !important;
  border-color: #3257CA !important;
}
.depoimentos-slick-prev svg,
.depoimentos-slick-next svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
}

.faq {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: linear-gradient(180deg, #ffffff 0%, rgba(248, 249, 250, 0.6) 50%, #ffffff 100%);
}

.faq-header {
  text-align: center;
  margin-bottom: 4rem;
}

.faq-title {
  font-family: "Outfit", "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  color: #2c3e50;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.faq-accent {
  display: block;
  width: 40px;
  height: 2px;
  background: rgba(50, 87, 202, 0.6);
  margin: 0 auto 1.5rem;
  border-radius: 2px;
}

.faq-subtitle {
  margin: 0;
  font-size: 1.0625rem;
  color: #5a6c7d;
  line-height: 1.6;
  font-weight: 400;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.faq-item {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: box-shadow 0.4s ease, border-color 0.35s ease;
}
.faq-item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  border-color: rgba(50, 87, 202, 0.12);
}
.faq-item.is-open {
  box-shadow: 0 4px 20px rgba(50, 87, 202, 0.08);
  border-color: rgba(50, 87, 202, 0.2);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem 3rem;
  background: none;
  border: none;
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.0625rem;
  font-weight: 600;
  color: #2c3e50;
  text-align: left;
  cursor: pointer;
  transition: color 0.35s ease;
}
.faq-question:hover {
  color: #3257CA;
}
.faq-question:focus-visible {
  outline: 2px solid #3257CA;
  outline-offset: 2px;
}

.faq-question-text {
  flex: 1;
  line-height: 1.45;
  padding-right: 1rem;
}

.faq-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(50, 87, 202, 0.08);
  color: #3257CA;
  border-radius: 50%;
  transition: transform 0.4s ease, background 0.35s ease, color 0.35s ease;
}
.faq-icon svg {
  display: block;
}

.faq-question:hover .faq-icon,
.faq-item.is-open .faq-icon {
  background: #3257CA;
  color: white;
}

.faq-item.is-open .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 3rem 2rem;
}
.faq-answer p {
  margin: 0;
  padding: 1rem 2rem 1.5rem;
  padding-left: 3rem;
  font-size: 1rem;
  line-height: 1.75;
  color: #5a6c7d;
  border-left: 2px solid rgba(50, 87, 202, 0.45);
  background: rgba(50, 87, 202, 0.02);
  border-radius: 0 8px 8px 0;
}

.faq-item:not(.is-open) .faq-answer {
  display: none;
}

section.blog {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: #ffffff;
}

.blog-title {
  font-family: "Outfit", "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  color: #2c3e50;
  margin: 0 0 1rem;
  text-align: center;
  letter-spacing: -0.02em;
}

.blog-subtitle {
  text-align: center;
  font-size: 1.0625rem;
  color: #5a6c7d;
  line-height: 1.5;
  margin: 0 0 4rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.blog-grid {
  display: grid;
  gap: 3rem;
  margin-bottom: 4rem;
}
@media (min-width: 768px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.blog-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.blog-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.blog-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.blog-card-image-wrap {
  position: relative;
  aspect-ratio: 5/3;
  overflow: hidden;
  background: #f8f9fa;
}

.blog-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-image {
  transform: scale(1.03);
}

.blog-card-body {
  padding: 2rem;
}

.blog-card-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.blog-meta-icon {
  flex-shrink: 0;
  vertical-align: middle;
  margin-right: 0.25rem;
}

.blog-card-date,
.blog-card-reading {
  font-size: 0.8125rem;
  color: #5a6c7d;
  display: inline-flex;
  align-items: center;
}

.blog-card-title {
  font-family: "Outfit", "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #2c3e50;
  margin: 0 0 1rem;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-link:hover .blog-card-title {
  color: #3257CA;
}

.blog-card-excerpt {
  font-size: 0.9375rem;
  color: #5a6c7d;
  line-height: 1.6;
  margin: 0 0 1.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.blog-card-author {
  font-size: 0.8125rem;
  color: #5a6c7d;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.blog-author-icon {
  flex-shrink: 0;
  color: #5a6c7d;
}

.blog-card-cta {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #3257CA;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: gap 0.2s ease;
}

.blog-card-link:hover .blog-card-cta {
  gap: 0.5rem;
}

.blog-card-cta svg {
  flex-shrink: 0;
}

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

.blog-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.5rem 3rem;
  background: #3257CA;
  color: white;
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  box-shadow: 0 4px 14px rgba(50, 87, 202, 0.35);
}
.blog-btn:hover {
  background: rgb(41.9047619048, 72.9142857143, 169.2952380952);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(50, 87, 202, 0.4);
}
.blog-btn:focus-visible {
  outline: 2px solid #3257CA;
  outline-offset: 2px;
}
.blog-btn svg {
  flex-shrink: 0;
}

.contact-popup {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.contact-popup.is-open {
  opacity: 1;
  visibility: visible;
}
.contact-popup.is-open .contact-popup-box {
  transform: scale(1);
  opacity: 1;
}

.contact-popup-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 77, 110, 0.4);
  backdrop-filter: blur(4px);
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-popup:hover .contact-popup-overlay {
  background: rgba(15, 77, 110, 0.5);
}

.contact-popup-box {
  position: relative;
  width: 100%;
  max-width: 400px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 32px 64px rgba(15, 77, 110, 0.2), 0 0 0 1px rgba(26, 107, 158, 0.08);
  overflow: hidden;
  transform: scale(0.95);
  opacity: 0;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
}

.contact-popup-header {
  height: 6px;
  background: linear-gradient(90deg, #1a6b9e 0%, #2d8fc7 100%);
}

.contact-popup-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 2;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
  border: none;
  border-radius: 50%;
  color: #5a6c7d;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.contact-popup-close:hover {
  color: #0f4d6e;
  background: rgba(26, 107, 158, 0.1);
  transform: rotate(90deg);
}

.contact-popup-body {
  padding: 4rem 3rem 3rem;
  text-align: center;
}

.contact-popup-title {
  margin: 0 0 0.5rem;
  font-family: "Outfit", "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f4d6e;
  letter-spacing: -0.02em;
}

.contact-popup-text {
  margin: 0 0 1.5rem;
  font-size: 0.9375rem;
  color: #5a6c7d;
  line-height: 1.5;
}

.contact-popup-number {
  margin: 0 0 3rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a6b9e;
  letter-spacing: 0.02em;
}

.contact-popup-actions {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-popup-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.5rem 3rem;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  border-radius: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.contact-popup-btn .contact-popup-btn-icon {
  display: flex;
  flex-shrink: 0;
}
.contact-popup-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.contact-popup-btn-call {
  background: #1a6b9e;
  color: white;
  box-shadow: 0 4px 14px rgba(26, 107, 158, 0.35);
}
.contact-popup-btn-call:hover {
  color: white;
  background: #0f4d6e;
  box-shadow: 0 8px 24px rgba(15, 77, 110, 0.4);
}

.contact-popup-btn-whatsapp {
  background: #25d366;
  color: white;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}
.contact-popup-btn-whatsapp:hover {
  color: white;
  background: #20bd5a;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
}

.footer {
  color: #2c3e50;
}

.footer-top {
  background: #ffffff;
  padding: 4rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.footer-inner {
  display: grid;
  gap: 4rem;
  text-align: center;
}
@media (min-width: 992px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr 1fr;
    text-align: left;
    gap: 4rem 6rem;
    align-items: start;
    justify-items: start;
  }
}

.footer-col-company {
  max-width: 320px;
  margin: 0 auto;
}
@media (min-width: 992px) {
  .footer-col-company {
    margin: 0;
    max-width: none;
  }
}

.footer-logo-wrap {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: #2c3e50;
  margin-bottom: 1.5rem;
}

.footer-logo-img {
  width: 169px;
  object-fit: contain;
  flex-shrink: 0;
}

.footer-logo-text {
  font-family: "Outfit", "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  color: #2c3e50;
}
.footer-logo-text span {
  color: #3257CA;
}

.footer-desc {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #5a6c7d;
  margin: 0 0 2rem;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
@media (min-width: 992px) {
  .footer-social {
    justify-content: flex-start;
  }
}

.footer-social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(50, 87, 202, 0.1);
  color: #3257CA;
  border-radius: 10px;
  border: 1px solid rgba(50, 87, 202, 0.25);
  transition: background 0.2s ease, color 0.2s ease;
}
.footer-social-link:hover {
  background: #3257CA;
  color: white;
}

.footer-heading {
  font-family: "Outfit", "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #3257CA;
  margin: 0 0 1.5rem;
}

.footer-contact-item,
.footer-address {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  color: #5a6c7d;
  text-decoration: none;
  font-size: 0.9375rem;
  line-height: 1.5;
  margin-bottom: 1rem;
  transition: color 0.2s ease;
}
.footer-contact-item:last-child,
.footer-address:last-child {
  margin-bottom: 0;
}

.footer-contact-item:hover {
  color: #3257CA;
}

.footer-contact-icon {
  flex-shrink: 0;
  color: #3257CA;
  margin-top: 2px;
}

.footer-address {
  flex-direction: row;
}
.footer-address .footer-contact-icon {
  margin-top: 4px;
}
.footer-address div {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

@media (min-width: 992px) {
  .footer-col-contact,
  .footer-col-location {
    text-align: left;
  }
}

.footer-bottom {
  background: #f8f9fa;
  padding: 2rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.footer-bottom-inner {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
}
@media (min-width: 768px) {
  .footer-bottom-inner {
    padding: 0 2rem;
  }
}

.footer-copy {
  font-size: 0.8125rem;
  color: #5a6c7d;
  margin: 0;
  text-align: center;
  max-width: 100%;
}

.whatsapp-float {
  position: fixed;
  right: 2.5rem;
  bottom: 2.5rem;
  z-index: 9999;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: white;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.whatsapp-float:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
  color: white;
}

.whatsapp-float-icon {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-float-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25d366;
  animation: whatsapp-pulse 2s ease-out infinite;
  z-index: 1;
}

@keyframes whatsapp-pulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

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