:root {
  --primary-color: #00355e;
  --second-color: #f1f1f1;
  --color-white: #ffff;
  --color-dark: #000;
  --color-text: #4d4d4d;
  --color-input: #8b8b8b;
}

@import url("https://fonts.googleapis.com/css2?family=Sora:wght@100..800&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Sora", sans-serif;
}

body {
  background-color: var(--color-white);
}

.address {
  width: 100%;
  padding: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--primary-color);
}

.address .container span i {
  color: var(--color-white);
  font-size: 20px;
  margin-right: 9px;
}

.address .container span a {
  text-decoration: none;
  color: var(--color-white);
  font-size: 20px;
  margin: 30px;
  transition: color 0.8s;
}

.address .container span a:hover {
  color: var(--color-text);
}

@media (max-width: 600px) {
  .address {
    display: none;
  }

  .address .container span {
    line-height: 2;
  }

  .address .container span a i {
    font-size: 15px;
  }

  .address .container span a {
    font-size: 12px;
    margin: 0;
  }
}

/*PRE LOAD FORM*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Fundo semi-transparente */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999; /* Garante que o preloader fique sobre os outros elementos */
}

.loader {
  border: 4px solid #f3f3f3;
  border-top: 4px solid #3498db;
  border-radius: 50%;
  width: 90px;
  height: 90px;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Modern Header section */
.modern-header {
  background: rgba(241, 241, 241, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-bottom: 1px solid rgba(0, 53, 94, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
}

.header-logo img {
  height: 50px;
  width: auto;
  transition: transform 0.3s ease;
}

.header-logo img:hover {
  transform: scale(1.05);
}

.header-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2.5rem;
  align-items: center;
}

.nav-item {
  position: relative;
}

.nav-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.nav-link:hover {
  color: var(--primary-color);
  background: rgba(0, 53, 94, 0.1);
  transform: translateY(-2px);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--primary-color)
  );
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

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

.header-cta {
  display: flex;
  align-items: center;
}

.cta-btn {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  position: relative;
  overflow: hidden;
}

.cta-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.6s ease;
}

.cta-btn:hover::before {
  left: 100%;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.cta-btn i {
  font-size: 1.2rem;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--primary-color);
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
}

.hamburger-line {
  width: 20px;
  height: 2px;
  background-color: var(--primary-color);
  margin: 2px 0;
  transition: all 0.3s ease;
  display: block;
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Legacy menu cleanup */

/* Mobile Styles */
@media (max-width: 968px) {
  .header-container {
    padding: 1rem;
  }

  .header-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(241, 241, 241, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(0, 53, 94, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  }

  .header-nav.active {
    display: block;
  }

  .nav-menu {
    flex-direction: column;
    gap: 0;
    padding: 1rem 0;
  }

  .nav-item {
    width: 100%;
  }

  .nav-link {
    display: block;
    width: 100%;
    padding: 1rem 2rem;
    border-radius: 0;
    border-bottom: 1px solid rgba(0, 53, 94, 0.05);
  }

  .nav-link::after {
    display: none;
  }

  .nav-link:hover {
    background: rgba(0, 53, 94, 0.1);
    transform: none;
    padding-left: 2.5rem;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .header-cta {
    display: none;
  }
}

@media (max-width: 576px) {
  .header-container {
    padding: 0.75rem 1rem;
  }

  .header-logo img {
    height: 40px;
  }

  .cta-btn {
    padding: 0.5rem;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    justify-content: center;
  }
}
/* Header section */

/* Modern Hero Section - Premium UI/UX Design */
.modern-hero-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  padding: 100px 0 50px;
}

/* Hero Background */
.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-slider {
  width: 100%;
  height: 100%;
  position: relative;
}

.hero-slides {
  width: 100%;
  height: 100%;
  position: relative;
}

.hero-slide {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 2s ease-in-out;
  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
  z-index: 2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 53, 94, 0.85) 0%,
    rgba(0, 53, 94, 0.6) 50%,
    rgba(0, 53, 94, 0.8) 100%
  );
  z-index: 3;
}

/* Hero Container */
.hero-container {
  position: relative;
  z-index: 4;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Hero Content */
.hero-content {
  text-align: left;
  color: white;
  max-width: 650px;
  animation: fadeInUp 1s ease-out;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 2rem;
  font-size: 0.95rem;
  font-weight: 600;
  margin-top: clamp(0.5rem, 2vh, 1.5rem);
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-badge i {
  font-size: 1.1rem;
}

.hero-title {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.title-highlight {
  background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.title-emphasis {
  color: var(--second-color);
  text-shadow: 0 0 30px rgba(241, 241, 241, 0.5);
}

.hero-description {
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  line-height: 1.6;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  animation: fadeInUp 1s ease-out 0.6s both;
}

/* Hero Features */
.hero-features {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  animation: fadeInUp 1s ease-out 0.8s both;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: white;
  font-size: 0.95rem;
  font-weight: 500;
}

.feature-item i {
  color: var(--second-color);
  font-size: 1.1rem;
}

/* Hero Actions */
.hero-actions {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 3rem;
  animation: fadeInUp 1s ease-out 1s both;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 2rem;
  border-radius: 1rem;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.hero-btn.primary {
  background: linear-gradient(135deg, var(--primary-color), #1e40af);
  color: white;
  box-shadow: 0 8px 25px rgba(0, 53, 94, 0.4);
}

.hero-btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 53, 94, 0.6);
}

.hero-btn.secondary {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  border: none;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

.hero-btn.secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45);
}

/* Hero Stats */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
  animation: fadeInUp 1s ease-out 1.2s both;
}

.stat-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.stat-card:hover {
  background: rgba(255, 255, 255, 1);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 53, 94, 0.2);
}

.stat-icon {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, var(--primary-color), #1e40af);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.2rem;
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(33, 74, 135, 0.8);
  font-weight: 500;
}

/* Floating Services Cards */
.floating-services {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: nowrap;
  margin-top: 1.5rem;
  z-index: 5;
  animation: fadeInUp 1s ease-out 1.4s both;
}

.service-float-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 0.75rem;
  padding: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.4s ease;
  animation: fadeInUp 0.8s ease-out forwards;
  flex: 1 1 0;
  min-width: 0;
}

.service-float-card:nth-child(1) {
  animation-delay: 0.2s;
}
.service-float-card:nth-child(2) {
  animation-delay: 0.4s;
}
.service-float-card:nth-child(3) {
  animation-delay: 0.6s;
}
.service-float-card:nth-child(4) {
  animation-delay: 0.8s;
}
.service-float-card:nth-child(5) {
  animation-delay: 1s;
}

.service-float-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 53, 94, 0.3);
}

.service-icon {
  width: 2rem;
  height: 2rem;
  background: linear-gradient(135deg, var(--primary-color), #1e40af);
  color: white;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.9rem;
}

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

.service-info h4 {
  color: var(--primary-color);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.15rem;
  line-height: 1.2;
  text-align: left;
}

.service-info p {
  color: rgba(33, 74, 135, 0.7);
  font-size: 0.75rem;
  margin: 0;
  line-height: 1.2;
  text-align: left;
}

.service-link {
  color: var(--primary-color);
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-left: auto;
}

.service-link:hover {
  transform: translateX(4px);
  color: #1e40af;
}

/* Hero Indicators */
.hero-indicators {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
  z-index: 4;
  animation: fadeInUp 1s ease-out 1.6s both;
}

.hero-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
}

.hero-indicator.active {
  background-color: var(--primary-color);
  transform: scale(1.3);
  box-shadow: 0 0 20px rgba(0, 53, 94, 0.6);
}

.hero-indicator:hover {
  background-color: rgba(255, 255, 255, 0.7);
  transform: scale(1.1);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

/* Mobile Responsive */
@media screen and (max-width: 1200px) {
  .floating-services {
    gap: 0.75rem;
  }
}

@media screen and (max-width: 768px) {
  .modern-hero-section {
    min-height: 100vh;
    padding: 80px 0 30px;
  }

  .hero-container {
    text-align: center;
    gap: 2rem;
  }

  .hero-content {
    text-align: center;
    margin-top: 1rem;
    max-width: 100%;
  }

  .hero-features {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .floating-services {
    flex-direction: column;
  }

  .hero-indicators {
    margin-top: 1.5rem;
  }
}

@media screen and (max-width: 480px) {
  .modern-hero-section {
    padding: 60px 0 30px;
  }

  .hero-container {
    padding: 0 15px;
  }

  .hero-badge {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }

  .hero-features {
    gap: 0.75rem;
  }

  .feature-item {
    font-size: 0.85rem;
  }

  .stat-card {
    padding: 1rem;
  }

  .stat-icon {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1rem;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .floating-services {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
}

/* .content .name{
    font-size: 100px;
    text-transform: uppercase;
    font-weight: bold;
    line-height: 1;
    text-shadow: 3px 4px 4px rgba(255, 255, 255, 0.8);

    opacity: 0;
    animation: animate 1s ease-in-out 0.6s 1 forwards;
} */

.btn a {
  padding: 20px 30px 20px 30px;
  border: none;
  cursor: pointer;
  font-size: 16px;
  color: var(--color-white);
  background: #00355e;
  text-decoration: none;
  border-radius: 12px;
  transition: 0.8s;
}

.btn a:hover {
  opacity: 0.6;
}

/* .content .btn a:nth-child(1){
    margin-right: 15px;
}

.content .btn a:nth-child(2){
    background: transparent;
    color: var(--primary-color);
    border: 2px solid #fff;
    transition: 0.3s;
}

.content .btn a:nth-child(2):hover{
    background-color: var(--primary-color);
    color: #fff;
    border-color: #14ff72cb;
} */

@keyframes animate {
  from {
    opacity: 0;
    transform: translate(0, 20px);
  }

  to {
    opacity: 1;
    transform: translate(0);
  }
}

/* Carousel */
/* Evita animações lentas durante navegação do carrossel */

/* next prev arrows */

@keyframes runningTime {
  from {
    width: 0%;
  }

  to {
    width: 100%;
  }
}

/* Responsive Design */

/* Mobile Responsive - Hero Slider já tem suas próprias media queries */

/* Section About */

/* Modern About Section - Premium UI/UX Design */
.modern-about-section {
  position: relative;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  padding: 6rem 0;
  overflow: hidden;
}

.modern-about-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 80% 20%,
      rgba(33, 74, 135, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 20% 80%,
      rgba(33, 74, 135, 0.03) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

/* About Content Grid */
.about-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 6rem;
}

/* About Text Content */
.about-text-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  justify-content: center;
}

/* About Header */
.about-header .header-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(33, 74, 135, 0.1);
  color: var(--primary-color);
  padding: 0.75rem 1.5rem;
  border-radius: 2rem;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(33, 74, 135, 0.2);
}

.about-header .header-badge i {
  font-size: 1.1rem;
}

.about-header .section-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.about-header .section-subtitle {
  font-size: 1.3rem;
  color: rgba(33, 74, 135, 0.8);
  line-height: 1.6;
}

/* Company Stats */
.company-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.8);
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid rgba(33, 74, 135, 0.1);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(33, 74, 135, 0.15);
}

.stat-icon {
  width: 3rem;
  height: 3rem;
  background: var(--primary-color);
  color: white;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(33, 74, 135, 0.8);
  font-weight: 500;
}

/* Mission Values */
.mission-values h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 2rem;
  text-align: center;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.value-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem;
  background: rgba(33, 74, 135, 0.05);
  border-radius: 0.75rem;
  border: 1px solid rgba(33, 74, 135, 0.1);
  transition: all 0.3s ease;
}

.value-item:hover {
  background: rgba(33, 74, 135, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(33, 74, 135, 0.1);
}

.value-icon {
  width: 2rem;
  height: 2rem;
  background: var(--primary-color);
  color: white;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.value-content h4 {
  color: var(--primary-color);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.value-content p {
  color: rgba(33, 74, 135, 0.8);
  font-size: 0.9rem;
  line-height: 1.4;
  margin: 0;
}

/* About CTA */
.about-cta {
  display: flex;
  justify-content: flex-start;
}

.about-cta .cta-button {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: var(--primary-color);
  color: white;
  padding: 1.25rem 2rem;
  border-radius: 1rem;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(33, 74, 135, 0.3);
}

.about-cta .cta-button:hover {
  background: rgba(33, 74, 135, 0.9);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(33, 74, 135, 0.4);
}

.about-cta .cta-button i {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.about-cta .cta-button:hover i {
  transform: translateX(4px);
}

/* About Visual Content */
.about-visual-content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  justify-content: center;
}

.visual-card {
  position: relative;
}

.main-image {
  position: relative;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(33, 74, 135, 0.15);
}

.main-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.main-image:hover img {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(33, 74, 135, 0.9));
  padding: 2rem;
  color: white;
}

.founded-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.2);
  padding: 1rem 1.5rem;
  border-radius: 1rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

/* Floating Cards */
.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  padding: 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(33, 74, 135, 0.1);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(33, 74, 135, 0.15);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 180px;
  animation: float 3s ease-in-out infinite;
}

.floating-card.card-1 {
  top: 10%;
  right: -20px;
  animation-delay: 0s;
}

.floating-card.card-2 {
  top: 50%;
  left: -30px;
  animation-delay: 1s;
}

.floating-card.card-3 {
  bottom: 20%;
  right: -10px;
  animation-delay: 2s;
}

.floating-card .card-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--primary-color);
  color: white;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.floating-card .card-text h4 {
  color: var(--primary-color);
  font-size: 0.9rem;
  font-weight: 600;
  margin: 0 0 0.25rem 0;
}

.floating-card .card-text p {
  color: rgba(33, 74, 135, 0.8);
  font-size: 0.8rem;
  margin: 0;
}

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

/* Company Journey */
.company-journey {
  margin-top: 4rem;
}

.company-journey h3 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 3rem;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 3rem;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(
    to right,
    var(--primary-color),
    rgba(33, 74, 135, 0.3)
  );
}

.timeline-item {
  text-align: center;
  position: relative;
}

.timeline-year {
  width: 4rem;
  height: 4rem;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  margin: 0 auto 1.5rem;
  box-shadow: 0 4px 12px rgba(33, 74, 135, 0.3);
  position: relative;
  z-index: 2;
}

.timeline-content h4 {
  color: var(--primary-color);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.timeline-content p {
  color: rgba(33, 74, 135, 0.8);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
  .about-content-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .company-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .floating-card {
    position: static;
    margin: 1rem 0;
  }
}

@media (max-width: 768px) {
  .modern-about-section {
    padding: 4rem 0;
  }

  .about-header .section-title {
    font-size: 2.5rem;
  }

  .about-header .section-subtitle {
    font-size: 1.1rem;
  }

  .company-stats {
    grid-template-columns: 1fr;
  }

  .stat-item {
    flex-direction: column;
    text-align: center;
    padding: 1rem;
  }

  .stat-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .timeline {
    grid-template-columns: 1fr;
  }

  .timeline::before {
    display: none;
  }

  .company-journey h3 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .about-header {
    margin-bottom: 2rem;
  }

  .mission-values h3 {
    font-size: 1.5rem;
  }

  .value-item {
    padding: 1rem;
  }

  .about-cta .cta-button {
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }
}

/* Modern About Section Finish */

/* Section Services */
/* Modern Services Section - Premium UI/UX Design */
.modern-services-section {
  position: relative;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 6rem 0;
  overflow: hidden;
}

.modern-services-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 80%,
      rgba(33, 74, 135, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(33, 74, 135, 0.03) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

/* Services Header */
.services-header {
  text-align: center;
  margin-bottom: 5rem;
}

.services-header .header-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(33, 74, 135, 0.1);
  color: var(--primary-color);
  padding: 0.75rem 1.5rem;
  border-radius: 2rem;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(33, 74, 135, 0.2);
}

.services-header .header-badge i {
  font-size: 1.1rem;
}

.services-header .section-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.services-header .section-subtitle {
  font-size: 1.3rem;
  color: rgba(33, 74, 135, 0.8);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

/* Service Card */
.service-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 1.5rem;
  padding: 2rem;
  border: 1px solid rgba(33, 74, 135, 0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    transparent 0%,
    rgba(33, 74, 135, 0.02) 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(33, 74, 135, 0.15);
  border-color: rgba(33, 74, 135, 0.2);
}

.service-card:hover::before {
  opacity: 1;
}

/* Featured Service Card */
.service-card.featured {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    rgba(33, 74, 135, 0.9) 100%
  );
  color: white;
  border-color: var(--primary-color);
}

.service-card.featured .card-icon {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.service-card.featured .card-content h3,
.service-card.featured .card-content p {
  color: white;
}

.service-card.featured .service-features li {
  color: rgba(255, 255, 255, 0.9);
}

.service-card.featured .service-btn {
  background: white;
  color: var(--primary-color);
}

.service-card.featured .service-btn:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateX(8px);
}

/* Card Icon */
.card-icon {
  width: 4rem;
  height: 4rem;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    rgba(33, 74, 135, 0.8)
  );
  color: white;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.service-card:hover .card-icon {
  transform: scale(1.1) rotate(5deg);
}

/* Card Content */
.card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.card-content p {
  color: rgba(33, 74, 135, 0.8);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* Service Features */
.service-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  flex: 1;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(33, 74, 135, 0.8);
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
  position: relative;
  padding-left: 1.5rem;
}

.service-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: 700;
  font-size: 1rem;
}

/* Card Footer */
.card-footer {
  margin-top: auto;
  position: relative;
  z-index: 10;
  flex-shrink: 0;
}

.service-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--primary-color);
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 0.75rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(33, 74, 135, 0.3);
  cursor: pointer;
  pointer-events: auto;
  position: relative;
  z-index: 10;
}

.service-btn:hover {
  background: rgba(33, 74, 135, 0.9);
  transform: translateX(4px);
  box-shadow: 0 6px 20px rgba(33, 74, 135, 0.4);
}

.service-btn i {
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

.service-btn:hover i {
  transform: translateX(2px);
}

/* Services CTA */
.services-cta {
  background: rgba(33, 74, 135, 0.05);
  border-radius: 2rem;
  padding: 3rem;
  text-align: center;
  border: 1px solid rgba(33, 74, 135, 0.1);
  backdrop-filter: blur(10px);
}

.cta-content h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.1rem;
  color: rgba(33, 74, 135, 0.8);
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: var(--primary-color);
  color: white;
  padding: 1.25rem 2rem;
  border-radius: 1rem;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(33, 74, 135, 0.3);
}

.cta-button:hover {
  background: rgba(33, 74, 135, 0.9);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(33, 74, 135, 0.4);
}

.cta-button i {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.cta-button:hover i {
  transform: scale(1.1);
}

/* Mobile Responsive */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .modern-services-section {
    padding: 4rem 0;
  }

  .services-header .section-title {
    font-size: 2.5rem;
  }

  .services-header .section-subtitle {
    font-size: 1.1rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .service-card {
    padding: 1.5rem;
  }

  .services-cta {
    padding: 2rem;
  }

  .cta-content h3 {
    font-size: 1.5rem;
  }

  .cta-button {
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .services-header {
    margin-bottom: 3rem;
  }

  .card-icon {
    width: 3rem;
    height: 3rem;
    font-size: 1.2rem;
  }

  .card-content h3 {
    font-size: 1.3rem;
  }

  .service-card {
    padding: 1rem;
  }
}

/* Modern Services Section Finish */

/* Section Contact - Modern UI/UX Design */
.st-contact {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.contact-background {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
  padding: 6rem 0;
}

.contact-background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e2e8f0" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.4;
}

.st-contact .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

/* Hero Section */
.contact-hero {
  padding: 2rem 0;
}

.contact-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--primary-color), #1e40af);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 2rem;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 2rem;
  box-shadow: 0 4px 12px rgba(0, 53, 94, 0.3);
  animation: fadeInUp 0.8s ease-out;
}

.contact-badge i {
  font-size: 1.1rem;
}

.contact-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  line-height: 1.2;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.contact-subtitle {
  font-size: 1.25rem;
  color: var(--color-text);
  line-height: 1.6;
  margin-bottom: 3rem;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.contact-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 1rem;
  border: 1px solid rgba(0, 53, 94, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 25px rgba(0, 53, 94, 0.15);
  background: rgba(255, 255, 255, 0.95);
}

.feature-item i {
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(135deg, var(--primary-color), #1e40af);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.feature-item span {
  font-weight: 600;
  color: var(--primary-color);
  font-size: 1rem;
}

/* Form Section */
.contact-form-wrapper {
  animation: fadeInUp 0.8s ease-out 0.8s both;
}

.form-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 1.5rem;
  padding: 2.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(20px);
  position: relative;
}

.form-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), #1e40af, #059669);
  border-radius: 1.5rem 1.5rem 0 0;
}

.form-header {
  text-align: center;
  margin-bottom: 2rem;
}

.form-header h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.form-header p {
  color: var(--color-text);
  font-size: 1rem;
  opacity: 0.8;
}

/* Form Styles */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  position: relative;
}

.form-group label {
  display: block;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  text-align: left;
}

.input-wrapper,
.select-wrapper,
.textarea-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-wrapper i,
.select-wrapper i,
.textarea-wrapper i {
  position: absolute;
  left: 1rem;
  color: var(--primary-color);
  opacity: 0.6;
  z-index: 2;
  transition: all 0.3s ease;
}

.textarea-wrapper i {
  top: 1rem;
  align-self: flex-start;
}

.input-wrapper input,
.select-wrapper select,
.textarea-wrapper textarea {
  width: 100%;
  padding: 1rem 1rem 1rem 3rem;
  border: 2px solid #e2e8f0;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.9);
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  color: var(--color-dark);
  transition: all 0.3s ease;
  outline: none;
}

.input-wrapper input:focus,
.select-wrapper select:focus,
.textarea-wrapper textarea:focus {
  border-color: var(--primary-color);
  background: white;
  box-shadow: 0 0 0 3px rgba(0, 53, 94, 0.1);
  transform: translateY(-1px);
}

.input-wrapper input:focus + i,
.select-wrapper select:focus + i,
.textarea-wrapper textarea:focus + i {
  opacity: 1;
  color: var(--primary-color);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.textarea-wrapper textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.5;
}

.submit-btn {
  background: linear-gradient(135deg, var(--primary-color), #1e40af);
  color: white;
  border: none;
  padding: 1.25rem 2rem;
  border-radius: 0.75rem;
  font-family: "Sora", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  margin-top: 1rem;
}

.submit-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 53, 94, 0.4);
}

.submit-btn:hover::before {
  left: 100%;
}

.submit-btn:active {
  transform: translateY(0);
}

.form-disclaimer {
  text-align: center;
  font-size: 0.85rem;
  color: var(--color-text);
  opacity: 0.7;
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.form-disclaimer i {
  color: #10b981;
}

/* Message Box Styles */
#message-box {
  display: none;
  margin: 1rem 0;
  padding: 1rem;
  border-radius: 0.75rem;
  font-size: 0.95rem;
  text-align: center;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.success {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
}

.error {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: white;
}

.hidden {
  display: none;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile Responsive */
@media (max-width: 1024px) {
  .st-contact .container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .contact-features {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .feature-item {
    flex: 1;
    min-width: 200px;
  }
}

@media (max-width: 768px) {
  .contact-background {
    padding: 4rem 0;
  }

  .st-contact .container {
    padding: 0 1rem;
    gap: 2rem;
  }

  .contact-title {
    font-size: clamp(2rem, 6vw, 2.5rem);
  }

  .contact-subtitle {
    font-size: 1.1rem;
  }

  .contact-features {
    flex-direction: column;
  }

  .form-card {
    padding: 1.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .feature-item:hover {
    transform: translateY(-4px);
  }
}

/* Section Contact Finish*/

/* Modern Partners Section - Premium UI/UX Design */
.modern-partners-section {
  position: relative;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 6rem 0;
  overflow: hidden;
}

.modern-partners-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 80%,
      rgba(33, 74, 135, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(33, 74, 135, 0.03) 0%,
      transparent 50%
    );
  pointer-events: none;
}
.partners-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

/* Partners Header */
.partners-header {
  text-align: center;
  margin-bottom: 4rem;
}

/* Ensure partners subtitle centers within its container */
.partners-header .section-subtitle {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.header-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(33, 74, 135, 0.1);
  color: var(--primary-color);
  padding: 0.75rem 1.5rem;
  border-radius: 2rem;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(33, 74, 135, 0.2);
}

.header-badge i {
  font-size: 1.1rem;
}

.section-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.3rem;
  color: rgba(33, 74, 135, 0.8);
  max-width: 600px;
  margin: 2rem 0 2rem 0;
  line-height: 1.6;
}

/* Trust Stats */
.trust-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.stat-item {
  text-align: center;
  background: rgba(255, 255, 255, 0.8);
  padding: 2rem 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(33, 74, 135, 0.1);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(33, 74, 135, 0.15);
  background: rgba(255, 255, 255, 0.95);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.stat-label {
  font-size: 1rem;
  color: rgba(33, 74, 135, 0.8);
  font-weight: 500;
}

/* Partners Carousel */
.partners-carousel-wrapper {
  margin: 5rem 0;
  position: relative;
}

.partners-carousel {
  overflow: hidden;
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 2rem;
}

.carousel-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.partner-slide {
  position: relative;
  flex: 0 0 calc(25% - 1.125rem); /* 4 slides visíveis, considerando gaps (1.5rem * 3 / 4) */
  min-width: 0;
}

.partner-card {
  position: relative;
  background: white;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 4px 20px rgba(33, 74, 135, 0.1);
  transition: all 0.4s ease;
  overflow: hidden;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    transparent 0%,
    rgba(33, 74, 135, 0.05) 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.partner-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(33, 74, 135, 0.2);
}

.partner-card:hover::before {
  opacity: 1;
}

.partner-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(60%) opacity(0.8);
  transition: all 0.4s ease;
}

.partner-card:hover img {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.05);
}

.partner-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(33, 74, 135, 0.9));
  color: white;
  padding: 1rem;
  text-align: center;
  font-weight: 600;
  font-size: 0.9rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.partner-card:hover .partner-overlay {
  transform: translateY(0);
}

/* Carousel Controls */
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.carousel-btn {
  width: 3rem;
  height: 3rem;
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(33, 74, 135, 0.3);
}

.carousel-btn:hover {
  background: rgba(33, 74, 135, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(33, 74, 135, 0.4);
}

.carousel-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  transform: none;
  background: rgba(33, 74, 135, 0.3);
  box-shadow: none;
}

.carousel-dots {
  display: flex;
  gap: 0.5rem;
}

.dot {
  width: 0.75rem;
  height: 0.75rem;
  background: rgba(33, 74, 135, 0.3);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: var(--primary-color);
  transform: scale(1.2);
}

.dot:hover {
  background: var(--primary-color);
  opacity: 0.8;
}

/* Trust Section */
.partners-trust-section {
  margin-top: 5rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 2rem;
  padding: 3rem;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Constrain trust content to standard section width */
.partners-trust-section .trust-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.trust-content h3 {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 3rem;
}

.trust-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.trust-feature {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: rgba(33, 74, 135, 0.05);
  border-radius: 1rem;
  border: 1px solid rgba(33, 74, 135, 0.1);
  transition: all 0.3s ease;
}

.trust-feature:hover {
  background: rgba(33, 74, 135, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(33, 74, 135, 0.1);
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  background: var(--primary-color);
  color: white;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
}

.feature-content h4 {
  color: var(--primary-color);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.feature-content p {
  color: rgba(33, 74, 135, 0.8);
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
  .trust-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .partner-slide {
    flex: 0 0 calc(33.333% - 1rem); /* 3 slides visíveis */
  }

  .trust-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .modern-partners-section {
    padding: 4rem 0;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .section-subtitle {
    font-size: 1.1rem;
  }

  .trust-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .stat-item {
    padding: 1.5rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .carousel-track {
    gap: 1rem;
  }

  .partner-slide {
    flex: 0 0 calc(50% - 0.5rem); /* 2 slides visíveis */
  }

  .partners-carousel {
    padding: 1rem;
  }

  .partners-trust-section {
    padding: 2rem;
    margin-top: 3rem;
  }

  .trust-content h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .partner-slide {
    flex: 0 0 100%; /* 1 slide visível */
  }

  .trust-stats {
    gap: 1rem;
  }
}

/* Hide old swiper elements */
.swiper-slide {
  display: none !important;
}

/* Modern Partners Section Finish */

/* Modern Footer Design - Premium UI/UX */
.modern-footer {
  position: relative;
  overflow: hidden;
}

.footer-background {
  background: #ffffff;
  position: relative;
  padding: 4rem 0 0;
}

.footer-background::before {
  display: none;
}

.footer-decoration {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.1;
  pointer-events: none;
}

.security-pattern {
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="shield-pattern" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M10 2L16 6V14L10 18L4 14V6L10 2Z" fill="none" stroke="white" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23shield-pattern)"/></svg>');
}

.modern-footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

/* Main Footer Content */
.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

/* Company Section */
.footer-company {
  color: var(--primary-color);
}

.company-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.footer-logo {
  max-width: 180px;
  height: auto;
}

.company-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary-color);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid var(--primary-color);
}

.company-badge i {
  color: white;
}

.company-description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* Trust Indicators */
.trust-indicators {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: rgba(33, 74, 135, 0.1);
  border-radius: 0.75rem;
  border: 1px solid rgba(33, 74, 135, 0.15);
  transition: all 0.3s ease;
}

.trust-item:hover {
  background: rgba(33, 74, 135, 0.15);
  transform: translateX(8px);
}

.trust-item i {
  color: var(--primary-color);
  font-size: 1.1rem;
}

.trust-item span {
  font-weight: 500;
  font-size: 0.95rem;
}

/* Social Media */
.social-media {
  margin-top: 1.5rem;
}

.social-media h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(33, 74, 135, 0.1);
  border: 1px solid rgba(33, 74, 135, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(33, 74, 135, 0.3);
}

.social-link.whatsapp:hover {
  background: #25d366;
  border-color: #25d366;
}

/* Footer Sections */
.footer-services,
.footer-company-links {
  color: var(--primary-color);
}

.footer-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.footer-title i {
  color: var(--primary-color);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(33, 74, 135, 0.8);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
}

.footer-links a::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-color);
  transform: translateX(4px);
}

.footer-links a:hover::before {
  width: 100%;
}

/* Contact Section */
.footer-contact {
  color: var(--primary-color);
}

.contact-methods {
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: rgba(33, 74, 135, 0.05);
  border-radius: 0.75rem;
  border: 1px solid rgba(33, 74, 135, 0.1);
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: rgba(33, 74, 135, 0.1);
  transform: translateY(-2px);
}

.contact-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon i {
  color: white;
  font-size: 1.1rem;
}

.contact-info {
  flex: 1;
}

.contact-label {
  display: block;
  font-size: 0.85rem;
  opacity: 0.7;
  margin-bottom: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-value {
  color: var(--primary-color);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-value:hover {
  color: rgba(33, 74, 135, 0.7);
}

/* CTA Button */
.footer-cta {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--primary-color);
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 0.75rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(33, 74, 135, 0.3);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(33, 74, 135, 0.4);
  background: rgba(33, 74, 135, 0.9);
}

/* Newsletter Section */
.footer-newsletter {
  background: rgba(33, 74, 135, 0.1);
  border: 1px solid rgba(33, 74, 135, 0.15);
  border-radius: 1rem;
  padding: 2rem;
  margin-bottom: 3rem;
}

.newsletter-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.newsletter-text h3 {
  color: var(--primary-color);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.newsletter-text p {
  color: rgba(33, 74, 135, 0.8);
  font-size: 1rem;
}

.input-group {
  display: flex;
  background: rgba(33, 74, 135, 0.05);
  border: 1px solid rgba(33, 74, 135, 0.2);
  border-radius: 0.75rem;
  overflow: hidden;
}

.input-group input {
  flex: 1;
  padding: 1rem 1.25rem;
  background: transparent;
  border: none;
  color: var(--primary-color);
  font-size: 1rem;
  outline: none;
}

.input-group input::placeholder {
  color: rgba(33, 74, 135, 0.6);
}

.input-group button {
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 1rem 1.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.input-group button:hover {
  background: rgba(33, 74, 135, 0.9);
}

/* Footer Bottom */
.footer-bottom {
  background: rgba(33, 74, 135, 0.05);
  border-top: 1px solid rgba(33, 74, 135, 0.1);
  padding: 1.5rem 0;
}

.footer-bottom-content {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: center;
}

.copyright-info {
  color: rgba(33, 74, 135, 0.7);
}

.copyright-info p {
  margin: 0;
  font-size: 0.9rem;
}

.footer-links-bottom {
  display: flex;
  gap: 1.5rem;
  justify-self: center;
}

.footer-links-bottom a {
  color: rgba(33, 74, 135, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-links-bottom a:hover {
  color: var(--primary-color);
}

.developer-credit {
  justify-self: end;
  color: rgba(33, 74, 135, 0.7);
  font-size: 0.9rem;
}

.developer-credit a {
  color: var(--primary-color);
  text-decoration: none;
  margin-left: 0.5rem;
  transition: color 0.3s ease;
}

.developer-credit a:hover {
  color: rgba(33, 74, 135, 0.8);
}

/* Mobile Responsive */
@media (max-width: 1024px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .footer-company {
    grid-column: 1 / -1;
  }

  .trust-indicators {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .trust-item {
    flex: 1;
    min-width: 200px;
  }

  .newsletter-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .footer-background {
    padding: 3rem 0 0;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .company-brand {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .trust-indicators {
    flex-direction: column;
  }

  .social-links {
    justify-content: flex-start;
  }

  .contact-methods {
    display: grid;
    gap: 1rem;
  }

  .footer-bottom-content {
    grid-template-columns: 1fr;
    gap: 1rem;
    text-align: center;
  }

  .footer-links-bottom {
    justify-self: center;
    flex-wrap: wrap;
    justify-content: center;
  }

  .developer-credit {
    justify-self: center;
  }

  .newsletter-content {
    padding: 1.5rem;
  }

  .input-group {
    flex-direction: column;
  }

  .input-group button {
    justify-content: center;
  }
}

/* Finsh Section Footer*/
