/*
 * ANDT Angola - Stylesheet
 */

/* ==================== FONTS ==================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/* ==================== VARIÁVEIS E RESET ==================== */
:root {
  --primary-blue: #003B73;
  --secondary-blue: #005A9C;
  --light-blue: #0074C1;
  --dark-gray: #2C3E50;
  --metallic-gray: #5C6B73;
  --light-gray: #ECF0F1;
  --white: #FFFFFF;
  --success-green: #27AE60;
  --warning-orange: #E67E22;
  --text-dark: #2C3E50;
  --text-light: #7F8C8D;
  --border-color: #DFE6E9;
  --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.08);
  --shadow-medium: 0 5px 20px rgba(0, 0, 0, 0.15);
  --shadow-heavy: 0 10px 40px rgba(0, 0, 0, 0.2);
  --navbar-height: 107px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', "Montserrat", sans-serif;
  line-height: 1.7;
  color: var(--text-dark);
  background-color: var(--white);
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul,
ol {
  list-style: none;
}

/* ==================== TIPOGRAFIA ==================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--primary-blue);
}

h1 {
  font-size: 3rem;
  font-weight: 700;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 2rem;
}

h4 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1.2rem;
  color: var(--text-dark);
}

.text-muted {
  color: var(--text-light);
}

/* ==================== BOTÕES ==================== */
.btn {
  display: inline-block;
  padding: 12px 20px;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  border-radius: 6px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary {
  background-color: var(--primary-blue);
  color: var(--white);
  border-color: var(--primary-blue);
}

.btn-primary:hover {
  background-color: var(--secondary-blue);
  border-color: var(--secondary-blue);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-blue);
  border-color: var(--primary-blue);
}

.btn-outline:hover {
  background-color: var(--primary-blue);
  color: var(--white);
}

.btn-white {
  background-color: var(--white);
  color: var(--primary-blue);
  border-color: var(--white);
}

.btn-white:hover {
  background-color: transparent;
  color: var(--white);
  border-color: var(--white);
}

/* ==================== NAVEGAÇÃO ==================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-height: var(--navbar-height);
  background-color: var(--white);
  box-shadow: var(--shadow-light);
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  box-shadow: var(--shadow-medium);
}

.navbar .container-fluid {
  padding: 1rem 2rem;
}

.navbar-brand {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-blue);
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: var(--text-dark);
  font-weight: 500;
  font-size: 1rem;
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background-color: var(--primary-blue);
  transition: width 0.3s ease;
}

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

.nav-link:hover {
  color: var(--primary-blue);
}

/* ==================== HERO SECTION ==================== */
.hero {
  position: relative;
  min-height: calc(100vh - var(--navbar-height));
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(rgba(0, 59, 115, 0.356), rgba(0, 91, 156, 0.432)),
    url('../images/img03.jpg') center/cover no-repeat;
  /* background: url('../images/img-3.jpeg') center/cover no-repeat; */
  background-attachment: fixed;
  color: var(--white);
  text-align: center;
  padding: 6rem 1rem;
  margin-top: 80px;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  animation: fadeInUp 1s ease;
}

.hero h1 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero .lead {
  font-size: 1.5rem;
  margin-bottom: 2.5rem;
  color: var(--white);
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

.hero .btn-group {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ==================== SECTIONS ==================== */
section {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  font-size: 2.8rem;
  color: var(--primary-blue);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--secondary-blue);
}

.section-title p {
  color: var(--text-light);
  font-size: 1.2rem;
  max-width: 700px;
  margin: 1.5rem auto 0;
}

/* Background Alternado */
.bg-light-section {
  background-color: var(--light-gray);
}

/* ==================== CARDS ==================== */
.card {
  background: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow-light);
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
  border: none;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-medium);
}

.card-img-top {
  height: 250px;
  object-fit: cover;
}

.card-body {
  padding: 2rem;
}

.card-title {
  color: var(--primary-blue);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.card-text {
  color: var(--text-dark);
  line-height: 1.7;
}

/* ==================== SERVIÇOS ==================== */
.service-card {
  text-align: center;
  padding: 2.5rem;
  background: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow-light);
  transition: all 0.3s ease;
  height: 100%;
}

.service-card:hover {
  box-shadow: var(--shadow-medium);
  transform: translateY(-5px);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 1.5rem;
}

.service-card h4 {
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--text-dark);
}

/* ==================== VALORES ==================== */
.values-grid {
  display: grid;
  gap: 2rem;
  margin-top: 3rem;
}

.value-item {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  background: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow-light);
  transition: all 0.3s ease;
}

.value-item:hover {
  box-shadow: var(--shadow-medium);
  transform: translateY(-5px);
}

.value-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
  color: var(--white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.value-content h4 {
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
}

.value-content p {
  color: var(--text-dark);
  margin: 0;
}

/* ==================== CLIENTES ==================== */
.clients-section {
  padding: 4rem 0;
  background-color: var(--white);
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  align-items: center;
  justify-items: center;
}

.client-logo {
  max-width: 180px;
  height: auto;
  opacity: 0.7;
  transition: all 0.3s ease;
  filter: grayscale(100%);
}

.client-logo:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.1);
}

/* ==================== FORMULÁRIO DE CONTATO ==================== */
.contact-form {
  background: var(--white);
  padding: 3rem;
  border-radius: 10px;
  box-shadow: var(--shadow-medium);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--primary-blue);
  font-weight: 600;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border-color);
  border-radius: 6px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(0, 59, 115, 0.1);
}

textarea.form-control {
  resize: vertical;
  min-height: 150px;
}

.alert {
  padding: 1rem;
  border-radius: 6px;
  margin-bottom: 1.5rem;
}

.alert-success {
  background-color: #D4EDDA;
  color: #155724;
  border: 1px solid #C3E6CB;
}

.alert-danger {
  background-color: #F8D7DA;
  color: #721C24;
  border: 1px solid #F5C6CB;
}

/* ==================== CONTACT INFO ==================== */
.contact-info {
  background: var(--primary-blue);
  color: var(--white);
  padding: 3rem;
  border-radius: 10px;
  height: 100%;
}

.contact-item {
  display: flex;
  align-items: start;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.contact-item h4 {
  color: var(--white);
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.contact-item p,
.contact-item a {
  color: var(--white);
  margin: 0;
}

.contact-item a:hover {
  text-decoration: underline;
}

/* ==================== FOOTER ==================== */
footer {
  background-color: var(--dark-gray);
  color: var(--white);
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h3 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.footer-section p,
.footer-section a {
  color: #BDC3C7;
  line-height: 2;
}

.footer-section a:hover {
  color: var(--white);
}

.footer-section ul li {
  margin-bottom: 0.8rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--primary-blue);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #95A5A6;
}

/* ==================== WHATSAPP BUTTON ==================== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: var(--shadow-heavy);
  z-index: 999;
  transition: all 0.3s ease;
  cursor: pointer;
}

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

/* ==================== ANIMAÇÕES ==================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

.fade-in {
  animation: fadeInUp 0.8s ease;
}

/* ==================== PORTFOLIO FILTER ==================== */
.portfolio-filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 24px;
  background: var(--white);
  border: 2px solid var(--border-color);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  color: var(--text-dark);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary-blue);
  color: var(--white);
  border-color: var(--primary-blue);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: var(--shadow-light);
  cursor: pointer;
  transition: all 0.3s ease;
}

.portfolio-item:hover {
  box-shadow: var(--shadow-medium);
  transform: translateY(-5px);
}

.portfolio-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: all 0.3s ease;
  display: block;

}

.portfolio-item:hover img {
  transform: scale(1.1);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 59, 115, 0.7), rgba(0, 90, 156, 0.9));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
  padding: 2rem;
  text-align: center;
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-overlay h4 {
  color: var(--white);
  margin-bottom: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
}

.portfolio-overlay p {
  color: var(--white);
  margin: 0;
  font-size: 0.85rem;
}

/* ==================== TEAM CARDS ==================== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.team-member {
  text-align: center;
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: all 0.3s ease;
}

.team-member:hover {
  box-shadow: var(--shadow-medium);
  transform: translateY(-5px);
}

.team-photo {
  width: 100%;
  height: 300px;
  object-fit: cover;
  background: var(--light-gray);
}

.team-info {
  padding: 2rem;
}

.team-info h4 {
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
}

.team-info .position {
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 1rem;
}

.team-info p {
  color: var(--text-dark);
  font-size: 0.95rem;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 992px) {
  .navbar-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero .lead {
    font-size: 1.2rem;
  }

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

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero {
    padding: 4rem 1rem;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero .lead {
    font-size: 1.1rem;
  }

  section {
    padding: 3rem 0;
  }

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

  .footer-content {
    grid-template-columns: 1fr;
  }

  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
}

@media (max-width: 576px) {
  .contact-form {
    padding: 2rem;
  }

  .contact-info {
    padding: 2rem;
  }

  .portfolio-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }
}

/* ==================== UTILITY CLASSES ==================== */
.mt-1 {
  margin-top: 0.5rem;
}

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

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

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

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

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

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

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

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

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

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

.text-white {
  color: var(--white) !important;
}

.text-primary {
  color: var(--primary-blue) !important;
}

.d-none {
  display: none;
}

.d-block {
  display: block;
}

.d-flex {
  display: flex;
}

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

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

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

.gap-1 {
  gap: 0.5rem;
}

.gap-2 {
  gap: 1rem;
}

.gap-3 {
  gap: 1.5rem;
}


/* ================ SCROLL BOTTOM ============== */

.scroll-top-btn {
  position: fixed;
  left: 20px;
  bottom: 20px;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(135deg, #003B73, #005A9C);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: none;
  z-index: 9999;
  box-shadow: 0 6px 18px rgba(13, 110, 253, 0.35);
  transition: all 0.3s ease;
}

.scroll-top-btn:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 10px 22px rgba(13, 110, 253, 0.45);
  background: linear-gradient(135deg, #0b5ed7, #084298);
}

.scroll-top-btn:active {
  transform: scale(0.95);
}

.scroll-top-btn i {
  pointer-events: none;
}

.scroll-top-btn {
  animation: fadeInUp 0.3s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }

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



/* Timeline */
.timeline {
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 22px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary-blue), var(--secondary-blue));
}

.timeline-item {
  position: relative;
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-marker {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: white;
  border: 2px solid var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
  margin-left: -2.35rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.timeline-marker.active {
  background: var(--primary-blue);
  color: white;
}

.timeline-content {
  padding-bottom: 0.5rem;
}

.timeline-year {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary-blue);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.25rem;
}

.timeline-content h5 {
  margin-bottom: 0.35rem;
  font-weight: 600;
}

@media (min-width: 768px) {
  .values-grid {
    grid-template-columns: repeat(auto-fit, minmax(600px, 1fr));
  }
}

/* Clients Carousel */
.cc-wrapper {
  overflow: hidden;
  padding: 1.5rem 0;
  position: relative;
}

.cc-track {
  display: flex;
  align-items: center;
  gap: 3rem;
  width: max-content;
  will-change: transform;
}

.cc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 0 1rem;
}

.cc-item .client-logo {
  height: 60px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.55;
  transition: filter 0.3s ease, opacity 0.3s ease;
}

.cc-item .client-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
}

.cc-fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.cc-fade--left {
  left: 0;
  background: linear-gradient(to right, #ffffff, transparent);
}

.cc-fade--right {
  right: 0;
  background: linear-gradient(to left, #ffffff, transparent);
}

/* Portfolio Lightbox */
.portfolio-overlay .btn-lightbox {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: #fff;
  font-size: 0.8rem;
  padding: 6px 18px;
  border-radius: 20px;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
  margin-top: 1.5rem;
}

.portfolio-overlay .btn-lightbox:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* Lightbox Modal */
.lb-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  animation: lbFadeIn 0.2s ease;
}

@keyframes lbFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.lb-box {
  background: #111827;
  border-radius: 12px;
  max-width: 860px;
  width: 100%;
  overflow: hidden;
  animation: lbSlideUp 0.25s ease;
}

@keyframes lbSlideUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }

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

.lb-img {
  width: 100%;
  max-height: 70vh;
  object-fit: contain;
  display: block;
  background: #000;
}

.lb-info {
  padding: 1rem 1.25rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.lb-info h4 {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 4px;
}

.lb-info p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  margin: 0;
}

.lb-close {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.lb-close:hover {
  background: rgba(255, 255, 255, 0.25);
}

/* Swiper - Inspeções Especializadas */
.inspecoes-swiper {
    padding: 1rem 0.5rem 3.5rem !important;
}

.inspecoes-swiper .swiper-slide {
    height: auto;
}

.inspecoes-swiper .card {
    height: 100%;
}

.inspecoes-swiper .swiper-button-prev,
.inspecoes-swiper .swiper-button-next {
    color: var(--primary-blue);
    top: 45%;
}

.inspecoes-swiper .swiper-button-prev::after,
.inspecoes-swiper .swiper-button-next::after {
    font-size: 1.2rem;
    font-weight: 700;
}

.inspecoes-swiper .swiper-pagination-bullet-active {
    background: var(--primary-blue);
}

/* Espaço lateral para as setas não sobreporem os cards */
@media (min-width: 992px) {
    .inspecoes-swiper {
        /* padding-left: 2.5rem !important;
        padding-right: 2.5rem !important; */
    }
}

/* Paginação do Portfolio */
.pagination-btn {
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    border: 1px solid var(--primary-blue, #003b73);
    background: transparent;
    color: var(--primary-blue, #003b73);
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 500;
    transition: background 0.2s, color 0.2s;
}

.pagination-btn:hover:not(:disabled) {
    background: var(--primary-blue, #003b73);
    color: #fff;
}

.pagination-btn.active {
    background: var(--primary-blue, #003b73);
    color: #fff;
    pointer-events: none;
}

.pagination-btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}