/*--------------------------------------------------------------
# Certificate Styles - Mac Dock Inspired
--------------------------------------------------------------*/
.certificates-section {
  margin-top: 3rem;
  padding: 2rem 0;
}

/* Dock Container */
.dock-container {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 1.5rem;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, rgba(26, 47, 115, 0.03) 0%, rgba(46, 146, 208, 0.03) 100%);
  border-radius: 30px;
  position: relative;
  perspective: 1000px;
  min-height: 500px;
}

.dock-container::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 5%;
  right: 5%;
  height: 4px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(26, 47, 115, 0.2) 20%,
    rgba(46, 146, 208, 0.4) 50%,
    rgba(26, 47, 115, 0.2) 80%,
    transparent 100%);
  border-radius: 2px;
  box-shadow: 0 2px 20px rgba(46, 146, 208, 0.3);
}

.certificate-card {
  flex: 0 0 280px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  border: 2px solid rgba(26, 47, 115, 0.1);
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.1),
    0 1px 8px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  position: relative;
  transform-origin: bottom center;
  transform: scale(1) translateY(0);
  z-index: 1;
}

.certificate-card:hover {
  transform: scale(1.25) translateY(-40px);
  z-index: 100;
  box-shadow:
    0 30px 60px rgba(26, 47, 115, 0.25),
    0 10px 30px rgba(46, 146, 208, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  border-color: rgba(46, 146, 208, 0.4);
  background: linear-gradient(135deg, #1A2F73 0%, #2E92D0 100%);
}

.certificate-card.selected {
  border-color: #1A2F73;
  background: linear-gradient(135deg, #F4F6FA 0%, #e8f0ff 100%);
  box-shadow: 0 10px 30px rgba(26, 47, 115, 0.2);
}

/* Card Icon */
.certificate-card .icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  filter: drop-shadow(0 4px 8px rgba(26, 47, 115, 0.15));
}

.certificate-card .icon i {
  background: linear-gradient(135deg, #1A2F73 0%, #2E92D0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.certificate-card:hover .icon {
  transform: scale(1.15) rotateY(10deg);
  filter: drop-shadow(0 8px 16px rgba(255, 255, 255, 0.4));
}

.certificate-card:hover .icon i {
  background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Card Title */
.certificate-card h4 {
  color: #1A2F73;
  font-weight: 700;
  font-size: 1.35rem;
  transition: all 0.3s ease;
  margin-bottom: 1rem;
  text-align: center;
}

.certificate-card:hover h4 {
  color: #ffffff;
  transform: scale(1.05);
}

.certificate-card h4 a {
  color: inherit;
  text-decoration: none;
}

/* Card Text */
.certificate-card p {
  color: #495057;
  font-size: 0.9rem;
  transition: color 0.3s ease;
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.certificate-card:hover p {
  color: rgba(255, 255, 255, 0.95);
}

.certificate-card:hover p strong {
  color: #ffffff;
  font-weight: 600;
}

/* Validity Selector in Hover State */
.certificate-card:hover .validity-selector .form-label {
  color: #ffffff !important;
}

.certificate-card:hover .validity-selector .form-label strong {
  color: #ffffff !important;
}

.certificate-card:hover .validity-select {
  background-color: rgba(255, 255, 255, 0.98);
  border-color: rgba(255, 255, 255, 0.8);
  color: #1A2F73;
  font-weight: 600;
}

/* Price in Hover State */
.certificate-card:hover .product-price {
  color: #ffffff !important;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.3);
  transform: scale(1.1);
}

/* Button in Hover State */
.certificate-card:hover .add-to-cart-btn {
  background: #ffffff;
  color: #1A2F73;
  border: none;
  font-weight: 700;
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
}

.certificate-card:hover .add-to-cart-btn:hover {
  background: rgba(255, 255, 255, 0.92);
  transform: scale(1.05);
}

/* Responsive Dock Layout */
@media (max-width: 1200px) {
  .dock-container {
    gap: 1rem;
    padding: 2.5rem 1.5rem;
  }

  .certificate-card {
    flex: 0 0 240px;
    padding: 1.5rem 1.25rem;
  }

  .certificate-card:hover {
    transform: scale(1.2) translateY(-35px);
  }
}

@media (max-width: 992px) {
  .dock-container {
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    min-height: auto;
    padding: 2rem 1rem;
  }

  .certificate-card {
    flex: 0 0 280px;
  }

  .certificate-card:hover {
    transform: scale(1.15) translateY(-20px);
  }
}

@media (max-width: 768px) {
  .dock-container {
    gap: 1.5rem;
    padding: 1.5rem 1rem;
  }

  .certificate-card {
    flex: 0 0 100%;
    max-width: 350px;
  }

  .certificate-card:hover {
    transform: scale(1.08) translateY(-15px);
  }
}

@media (max-width: 480px) {
  .dock-container {
    padding: 1rem 0.5rem;
  }

  .certificate-card {
    padding: 1.5rem 1rem;
  }

  .certificate-card .icon {
    font-size: 2.5rem;
  }

  .certificate-card h4 {
    font-size: 1.15rem;
  }
}

.certificate-form-section {
  margin-top: 3rem;
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
}

.progress {
  height: 8px;
  border-radius: 4px;
}

.progress-bar {
  background-color: #1A2F73;
  transition: width 0.3s ease;
}

.btn-group .btn {
  margin: 0 5px;
}

.alert-info {
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
  border-left: 4px solid #2196f3;
  border-radius: 8px;
  color: #0d47a1;
  padding: 1rem 1.25rem;
  box-shadow: 0 2px 8px rgba(33, 150, 243, 0.1);
}

.alert-success {
  background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
  border-left: 4px solid #28a745;
  border-radius: 8px;
  color: #155724;
  box-shadow: 0 4px 12px rgba(40, 167, 69, 0.2);
}

.alert .btn-close {
  filter: brightness(0.8);
}

/* Global Button Styles */
.btn {
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0.625rem 1.25rem;
}

.btn-primary {
  background: linear-gradient(135deg, #1A2F73 0%, #2E92D0 100%);
  border: none;
  color: white;
  box-shadow: 0 4px 10px rgba(26, 47, 115, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(26, 47, 115, 0.3);
  background: linear-gradient(135deg, #152859 0%, #2581b8 100%);
}

.btn-primary:focus,
.btn-primary:active {
  background: linear-gradient(135deg, #152859 0%, #2581b8 100%);
  box-shadow: 0 0 0 0.2rem rgba(26, 47, 115, 0.25);
}

.btn-secondary {
  background: linear-gradient(135deg, #6c757d 0%, #5a6268 100%);
  border: none;
  color: white;
  box-shadow: 0 4px 10px rgba(108, 117, 125, 0.2);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(108, 117, 125, 0.3);
  background: linear-gradient(135deg, #5a6268 0%, #545b62 100%);
}

.btn-success {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  border: none;
  color: white;
  box-shadow: 0 4px 10px rgba(40, 167, 69, 0.2);
}

.btn-success:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(40, 167, 69, 0.3);
  background: linear-gradient(135deg, #218838 0%, #1aa67d 100%);
}

.btn-outline-primary {
  border: 2px solid #1A2F73;
  color: #1A2F73;
  background: transparent;
}

.btn-outline-primary:hover {
  background: linear-gradient(135deg, #1A2F73 0%, #2E92D0 100%);
  border-color: #1A2F73;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(26, 47, 115, 0.25);
}

.btn-outline-secondary {
  border: 2px solid #6c757d;
  color: #6c757d;
  background: transparent;
}

.btn-outline-secondary:hover {
  background: linear-gradient(135deg, #6c757d 0%, #5a6268 100%);
  border-color: #6c757d;
  color: white;
  transform: translateY(-2px);
}

.btn-outline-danger {
  border: 2px solid #dc3545;
  color: #dc3545;
  background: transparent;
}

.btn-outline-danger:hover {
  background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
  border-color: #dc3545;
  color: white;
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.375rem 0.75rem;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 0.875rem 1.75rem;
  font-size: 1.125rem;
}

.form-control.is-invalid {
  border-color: #D62B2B;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.certificate-card .btn {
  margin-top: auto;
}

.icon-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 320px;
  height: 100%;
  padding: 2rem;
}

.services .row {
  display: flex;
  align-items: stretch;
}

.services .row > div {
  display: flex;
}

.initial-state {
  text-align: center;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #F4F6FA 0%, #e8f0ff 100%);
  border-radius: 15px;
  margin: 2rem 0;
  border: 2px dashed #1A2F73;
}

.initial-state .icon {
  font-size: 4rem;
  color: #1A2F73;
  margin-bottom: 1.5rem;
}

.initial-state h3 {
  color: #1A2F73;
  margin-bottom: 1rem;
  font-weight: 600;
}

.initial-state p {
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.initial-state .features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.initial-state .feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 200px;
}

.initial-state .feature i {
  font-size: 2rem;
  color: #1A2F73;
  margin-bottom: 0.5rem;
}

.initial-state .feature span {
  color: #666;
  font-size: 0.9rem;
  text-align: center;
}

/* Validation Info Section - Compact Design */
.validation-info {
  animation: fadeInUp 0.6s ease-out 0.3s both;
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.validation-box {
  background: rgba(248, 249, 250, 0.5);
  border: 1px solid rgba(26, 47, 115, 0.08);
  border-radius: 10px;
  padding: 0.875rem 1.25rem;
  text-align: center;
  transition: all 0.3s ease;
  display: inline-block;
  margin: 0 auto;
}

.validation-box:hover {
  border-color: rgba(46, 146, 208, 0.2);
  background: rgba(248, 249, 250, 0.8);
  box-shadow: 0 2px 10px rgba(46, 146, 208, 0.08);
}

.validation-option {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.75rem;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 6px;
  border: 1px solid rgba(26, 47, 115, 0.06);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.validation-option:hover {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(46, 146, 208, 0.15);
  box-shadow: 0 2px 6px rgba(26, 47, 115, 0.08);
}

.validation-option i {
  font-size: 1.1rem;
  color: #2E92D0;
  opacity: 0.8;
}

.validation-option .label {
  font-size: 0.85rem;
  font-weight: 500;
  color: #495057;
  white-space: nowrap;
}

.validation-divider {
  font-size: 0.75rem;
  font-weight: 500;
  color: #adb5bd;
  padding: 0 0.5rem;
  text-transform: lowercase;
}

.validation-note {
  display: block;
  margin-top: 0.625rem;
  color: #868e96;
  font-size: 0.75rem;
  font-style: italic;
  opacity: 0.85;
}

.validation-note i {
  color: #6c757d;
  font-size: 0.75rem;
  opacity: 0.7;
}

/* Responsividade */
@media (max-width: 576px) {
  .validation-box {
    padding: 0.875rem 1rem;
  }

  .validation-option {
    padding: 0.4rem 0.75rem;
    font-size: 0.85rem;
  }

  .validation-option i {
    font-size: 1.1rem;
  }

  .validation-option .label {
    font-size: 0.8rem;
  }

  .validation-note {
    font-size: 0.75rem;
  }
}

#certificatesPF .row {
  max-width: 800px;
  margin: 0 auto;
}

#certificatesPJ .row {
  justify-content: center;
}

.certificate-selector {
  background: linear-gradient(135deg, #F4F6FA 0%, #e8f0ff 100%);
  padding: 3rem 2rem;
  border-radius: 15px;
  margin: 2rem auto;
  max-width: 600px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.certificate-selector h3 {
  color: #1A2F73;
  font-weight: 600;
  margin-bottom: 2rem;
}

.btn-group-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn-group .btn {
  padding: 1rem 2rem;
  font-weight: 600;
  border-width: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 8px;
}

.btn-group .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(26, 47, 115, 0.25);
}

.btn-group .btn.btn-primary {
  background: linear-gradient(135deg, #1A2F73 0%, #2E92D0 100%);
  border-color: #1A2F73;
  color: white;
}

.btn-group .btn.btn-outline-primary:hover {
  background: linear-gradient(135deg, #1A2F73 0%, #2E92D0 100%);
  border-color: #1A2F73;
  color: white;
}

.alert-sm {
  padding: 0.375rem 0.75rem;
  font-size: 0.875rem;
}

#selectedCertificateInfo {
  background: rgba(4, 19, 86, 0.02);
  border-radius: 8px;
  padding: 1rem;
}

#selectedCertificateInfo .bg-light {
  border: 1px solid rgba(4, 19, 86, 0.1);
}

.certificate-form-section {
  margin-top: 2rem;
}

.cnpj-loading {
  display: none;
  color: #1A2F73;
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

.cnpj-loading.show {
  display: block;
}

/*--------------------------------------------------------------
# Cart and Login Styles - Modernized
--------------------------------------------------------------*/
.cart-icon, .login-icon {
  position: relative;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cart-icon:hover, .login-icon:hover {
  color: #2E92D0 !important;
  transform: scale(1.1);
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: linear-gradient(135deg, #D62B2B 0%, #ff4757 100%);
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  box-shadow: 0 2px 8px rgba(214, 43, 43, 0.4);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.login-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  display: none;
  align-items: flex-start;
  justify-content: center;
  overflow-y: auto;
  padding: 20px 0;
}

.login-overlay.show {
  display: flex;
}

.login-modal {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  max-width: 400px;
  width: 90%;
  position: relative;
  margin-top: 50px;
  max-height: calc(100vh - 100px);
  overflow-y: auto;
}

.login-modal .close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #666;
  transition: color 0.3s ease;
}

.login-modal .close-btn:hover {
  color: #1A2F73;
}

.login-step {
  display: none;
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.login-step.active {
  display: block;
  opacity: 1;
  transform: translateX(0);
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.site-fade > *:not(.login-overlay) {
  filter: blur(3px);
  pointer-events: none;
  transition: filter 0.3s ease;
}

.cart-sidebar {
  position: fixed;
  top: 0;
  right: -500px;
  width: 480px;
  height: 100%;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
  box-shadow: -10px 0 40px rgba(26, 47, 115, 0.2);
  z-index: 9998;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(10px);
}

.cart-sidebar.show {
  right: 0;
  animation: slideInCart 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideInCart {
  from {
    right: -500px;
    opacity: 0;
  }
  to {
    right: 0;
    opacity: 1;
  }
}

.cart-sidebar .cart-header {
  padding: 2rem 1.5rem;
  border-bottom: none;
  background: linear-gradient(135deg, #1A2F73 0%, #2E92D0 100%);
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
  box-shadow: 0 4px 20px rgba(26, 47, 115, 0.3);
  position: relative;
}

.cart-sidebar .cart-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.3) 20%,
    rgba(255, 255, 255, 0.5) 50%,
    rgba(255, 255, 255, 0.3) 80%,
    transparent 100%);
}

.cart-sidebar .cart-header h5 {
  color: white;
  font-weight: 700;
  font-size: 1.35rem;
  margin-bottom: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cart-sidebar .cart-header .btn {
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  border-radius: 8px;
  padding: 0.5rem 0.75rem;
}

.cart-sidebar .cart-header .btn:hover {
  background: white;
  color: #1A2F73;
  border-color: white;
  transform: rotate(90deg);
}

.cart-sidebar .cart-content {
  padding: 1.5rem;
  flex: 1;
  overflow-y: auto;
}

.cart-item-individual {
  padding: 0;
  margin-bottom: 1.5rem;
  border: 2px solid rgba(26, 47, 115, 0.1);
  border-radius: 16px;
  background: white;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.cart-item-individual:hover {
  border-color: rgba(46, 146, 208, 0.4);
  box-shadow: 0 8px 24px rgba(26, 47, 115, 0.15);
  transform: translateY(-2px);
}

.cart-item-individual:last-child {
  margin-bottom: 0;
}

.cart-item-header {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 1.25rem;
  border-bottom: 1px solid rgba(26, 47, 115, 0.08);
  transition: all 0.3s ease;
}

.cart-item-header:hover {
  background: linear-gradient(135deg, #e8f4f8 0%, #f0f8ff 100%);
}

.cart-item-header h6 {
  color: #1A2F73;
  font-weight: 700;
  font-size: 1.05rem;
}

.certificate-data-form {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
}

.certificate-data-form.show {
  max-height: 600px;
  padding: 1rem;
  border-top: 2px solid #e9ecef;
}

.form-status-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  font-size: 1.1rem;
}

.toggle-icon {
  font-size: 0.9rem;
  color: #6c757d;
  transition: transform 0.3s ease;
}

.form-label-sm {
  font-size: 0.85rem;
  font-weight: 600;
  color: #495057;
  margin-bottom: 0.25rem;
}

.certificate-data-form .form-control-sm {
  border-radius: 6px;
  border: 1.5px solid #ced4da;
  transition: all 0.3s ease;
}

.certificate-data-form .form-control-sm:focus {
  border-color: #1A2F73;
  box-shadow: 0 0 0 0.2rem rgba(26, 47, 115, 0.15);
}

.cart-footer {
  padding: 2rem 1.5rem;
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
  border-top: 1px solid rgba(26, 47, 115, 0.1);
  flex-shrink: 0;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.05);
}

.cart-footer strong {
  font-size: 1.4rem;
  color: #1A2F73;
  font-weight: 700;
}

#cartTotal {
  color: #2E92D0;
  font-size: 1.75rem;
  font-weight: 800;
  background: linear-gradient(135deg, #2E92D0 0%, #1A2F73 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .cart-sidebar {
    width: 100%;
    right: -100%;
  }

  .cart-sidebar.show {
    right: 0;
  }
}


.cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9997;
  display: none;
}

.cart-overlay.show {
  display: block;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

a {
  color: #2E92D0;
  text-decoration: none;
}

a:hover {
  color: #145C82;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #1A2F73;
  border-top-color: white;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #1A2F73;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #575555;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
  min-height: 70px;
}

#header.header-scrolled {
  padding: 10px 0;
  min-height: 60px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header .container {
  align-items: center;
  position: relative;
}

#header .logo {
  font-size: 26px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
  z-index: 1001;
}

#header .logo a {
  color: #1A2F73;
  display: flex;
  align-items: center;
  position: relative;
}

#header .logo img {
  height: 125px;
  width: 125px;
  object-fit: contain;
  display: block;
  background: #fff;
  padding: 10px;
  border-radius: 15px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  margin-top: -25px;
  margin-bottom: -25px;
}

#header.header-scrolled .logo img {
  height: 110px;
  width: 110px;
  margin-top: -18px;
  margin-bottom: -18px;
}

#header .logo img:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
  gap: 5px;
}

.navbar li {
  position: relative;
  margin: 0;
}

.navbar .nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  font-size: 15px;
  font-weight: 600;
  color: #1A2F73;
  white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 6px;
  position: relative;
  text-decoration: none;
}

.navbar .nav-link::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 50%;
  height: 2px;
  background: linear-gradient(135deg, #1A2F73 0%, #2E92D0 100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
  transform: translateX(-50%) scaleX(1);
}

.navbar .nav-link i {
  font-size: 20px;
  line-height: 1;
  transition: transform 0.3s ease;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: #2E92D0;
  background: rgba(26, 47, 115, 0.05);
}

.navbar .nav-link:hover i {
  transform: scale(1.15);
}

.navbar .cart-icon,
.navbar .login-icon {
  position: relative;
  padding: 10px 15px;
}

.navbar .cart-icon i,
.navbar .login-icon i {
  margin: 0;
}

.navbar .getstarted {
  background: linear-gradient(135deg, #1A2F73 0%, #2E92D0 100%);
  padding: 10px 24px;
  margin-left: 10px;
  border-radius: 8px;
  color: #fff !important;
  box-shadow: 0 4px 10px rgba(26, 47, 115, 0.2);
  font-weight: 600;
}

.navbar .getstarted::after {
  display: none;
}

.navbar .getstarted:hover {
  background: linear-gradient(135deg, #152859 0%, #2581b8 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(26, 47, 115, 0.3);
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 0;
  top: calc(100% + 15px);
  margin: 0;
  padding: 12px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: white;
  box-shadow: 0 8px 30px rgba(26, 47, 115, 0.15);
  border-radius: 10px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateY(-10px);
  border: 1px solid rgba(26, 47, 115, 0.1);
}

.navbar .dropdown ul li {
  min-width: 220px;
}

.navbar .dropdown ul a {
  padding: 12px 20px;
  text-transform: none;
  font-weight: 500;
  border-radius: 0;
}

.navbar .dropdown ul a::after {
  display: none;
}

.navbar .dropdown ul a i {
  font-size: 14px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #2E92D0;
  background: rgba(26, 47, 115, 0.08);
  padding-left: 24px;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
  transform: translateY(0);
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation
*/
.mobile-nav-toggle {
  color: #1A2F73;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: all 0.3s ease;
  padding: 5px;
  border-radius: 6px;
}

.mobile-nav-toggle:hover {
  background: rgba(26, 47, 115, 0.1);
}

.mobile-nav-toggle.bi-x {
  color: #1A2F73;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(4, 12, 21, 0.96);
  backdrop-filter: blur(10px);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 1001;
  background: white;
  padding: 8px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.navbar-mobile ul {
  display: block !important;
  position: absolute;
  top: 70px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 20px 15px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  overflow-y: auto;
}

.navbar-mobile .nav-link {
  padding: 15px 18px;
  font-size: 15px;
  font-weight: 600;
  color: #1A2F73;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 6px;
  text-decoration: none;
  background: transparent;
}

.navbar-mobile .nav-link::after {
  display: none;
}

.navbar-mobile .nav-link:hover,
.navbar-mobile .nav-link.active {
  color: #fff;
  background: linear-gradient(135deg, #1A2F73 0%, #2E92D0 100%);
  transform: translateX(5px);
  box-shadow: 0 4px 12px rgba(26, 47, 115, 0.25);
}

.navbar-mobile .nav-link i {
  font-size: 18px;
  margin-right: 10px;
  margin-left: 0;
}

.navbar-mobile .cart-icon,
.navbar-mobile .login-icon {
  padding: 15px 18px;
  position: relative;
}

.navbar-mobile .cart-count {
  position: absolute;
  top: 8px;
  right: 8px;
  background: #D62B2B;
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  box-shadow: 0 2px 6px rgba(214, 43, 43, 0.4);
}

.navbar-mobile .getstarted {
  margin: 15px 0 10px;
  background: linear-gradient(135deg, #1A2F73 0%, #2E92D0 100%);
  color: white !important;
  text-align: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(26, 47, 115, 0.3);
}

.navbar-mobile .getstarted:hover {
  transform: translateX(0) translateY(-2px);
  box-shadow: 0 8px 25px rgba(26, 47, 115, 0.4);
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 6px 0 6px 15px;
  padding: 10px 0;
  background: rgba(26, 47, 115, 0.05);
  border-radius: 8px;
  box-shadow: none;
  border-left: 3px solid #1A2F73;
}

.navbar-mobile .dropdown ul li {
  min-width: auto;
}

.navbar-mobile .dropdown ul .nav-link {
  padding: 12px 15px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 4px;
}

.navbar-mobile .dropdown ul .nav-link:hover {
  color: #2E92D0;
  background: white;
  transform: translateX(4px);
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 580px;
  background-color: transparent;
  overflow: hidden;
  position: relative;
}

#hero .hero-single {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

#hero .hero-single::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: transparent;
  z-index: 1;
}

#hero .hero-container {
  display: flex;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 120px 30px 60px;
}

#hero .hero-container .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

#hero h2 {
  color: #fff;
  margin: 0;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.7), 0 4px 25px rgba(0, 0, 0, 0.5);
}

#hero p {
  animation-delay: 0.4s;
  color: rgba(255, 255, 255, 0.95);
  margin-top: 1rem;
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 600px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6), 0 3px 20px rgba(0, 0, 0, 0.4);
}

#hero .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: center top;
}

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  opacity: 0;
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
  opacity: 1;
  transition: 0.5s;
}

#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  left: 0;
  transform: translate3d(0, 0, 0);
}

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
  background: none;
  font-size: 30px;
  line-height: 0;
  width: auto;
  height: auto;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  transition: 0.3s;
  color: rgba(255, 255, 255, 0.5);
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#hero .carousel-control-next-icon:hover,
#hero .carousel-control-prev-icon:hover {
  background: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.8);
}

#hero .carousel-indicators li {
  list-style-type: none;
  cursor: pointer;
  background: #fff;
  overflow: hidden;
  border: 0;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  opacity: 0.6;
  transition: 0.3s;
}

#hero .carousel-indicators li.active {
  opacity: 1;
  background: #1A2F73;
}

#hero .btn-get-started {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 14px 32px;
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  line-height: 1;
  color: #fff;
  animation-delay: 0.8s;
  background: linear-gradient(135deg, #1A2F73 0%, #2E92D0 100%);
  margin-top: 15px;
  border: none;
  box-shadow: 0 4px 15px rgba(26, 47, 115, 0.3);
}

#hero .btn-get-started:hover {
  background: linear-gradient(135deg, #152859 0%, #2581b8 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(26, 47, 115, 0.4);
}

/* SD - Small Devices (Mobile Portrait) - 480px to 640px */
@media (max-width: 640px) {
  #hero {
    height: 500px;
  }

  #hero .hero-container {
    padding: 100px 20px 40px;
  }

  #hero h2 {
    font-size: 1.75rem;
  }

  #hero p {
    font-size: 0.95rem;
    margin-top: 0.75rem;
  }

  #hero .btn-get-started {
    padding: 12px 24px;
    font-size: 13px;
  }
}

/* Mobile Landscape / Small Tablets - 641px to 768px */
@media (min-width: 641px) and (max-width: 768px) {
  #hero {
    height: 520px;
  }

  #hero .hero-container {
    padding: 110px 25px 50px;
  }

  #hero h2 {
    font-size: 2rem;
  }

  #hero p {
    font-size: 1rem;
  }
}

/* Tablets / Small Laptops - 769px to 992px */
@media (min-width: 769px) and (max-width: 992px) {
  #hero {
    height: 560px;
  }

  #hero .hero-container {
    padding: 120px 30px 60px;
  }

  #hero h2 {
    font-size: 2.25rem;
  }

  #hero p {
    font-size: 1.05rem;
  }
}

/* HD - 1280x720 and similar - 993px to 1366px */
@media (min-width: 993px) and (max-width: 1366px) {
  #hero {
    height: 600px;
  }

  #hero .hero-container {
    padding: 130px 40px 70px;
  }

  #hero .hero-container .container {
    max-width: 1140px;
  }

  #hero h2 {
    font-size: 2.75rem;
  }

  #hero p {
    font-size: 1.15rem;
    max-width: 650px;
  }
}

/* FHD - 1920x1080 - 1367px to 1920px */
@media (min-width: 1367px) and (max-width: 1920px) {
  #hero {
    height: 650px;
  }

  #hero .hero-container {
    padding: 140px 50px 80px;
  }

  #hero .hero-container .container {
    max-width: 1400px;
  }

  #hero h2 {
    font-size: 3.25rem;
  }

  #hero p {
    font-size: 1.25rem;
    max-width: 700px;
  }

  #hero .btn-get-started {
    padding: 16px 36px;
    font-size: 15px;
  }
}

/* QHD - 2560x1440 and above - 1921px+ */
@media (min-width: 1921px) {
  #hero {
    height: 720px;
  }

  #hero .hero-container {
    padding: 160px 60px 90px;
  }

  #hero .hero-container .container {
    max-width: 1600px;
  }

  #hero h2 {
    font-size: 3.75rem;
  }

  #hero p {
    font-size: 1.35rem;
    max-width: 800px;
  }

  #hero .btn-get-started {
    padding: 18px 40px;
    font-size: 16px;
  }
}

/* Ultra-wide and 4K+ */
@media (min-width: 2560px) {
  #hero {
    height: 800px;
  }

  #hero .hero-container {
    padding: 180px 80px 100px;
  }

  #hero .hero-container .container {
    max-width: 1800px;
  }

  #hero h2 {
    font-size: 4.5rem;
  }

  #hero p {
    font-size: 1.5rem;
    max-width: 900px;
  }

  #hero .btn-get-started {
    padding: 20px 44px;
    font-size: 17px;
  }
}

/* Carousel Controls */
@media (min-width: 1024px) {
  #hero .carousel-control-prev,
  #hero .carousel-control-next {
    width: 5%;
  }
}

/* Short Screens */
@media (max-height: 500px) {
  #hero {
    height: auto;
    min-height: 450px;
  }

  #hero .hero-container {
    padding: 90px 30px 40px;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
}

.section-bg {
  background-color: #F4F6FA;
}

.section-title {
  padding-bottom: 40px;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 5px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaaaaa;
  font-family: "Poppins", sans-serif;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: #757575;
  margin: 4px 10px;
}

.section-title p {
  margin: 0;
  margin: 0;
  font-size: 26px;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  color: #1A2F73;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 600;
  font-size: 26px;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-left: 28px;
  position: relative;
}

.about .content ul li+li {
  margin-top: 10px;
}

.about .content ul i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
  color: #1A2F73;
  line-height: 1;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .content .btn-learn-more {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  line-height: 1;
  color: #1A2F73;
  animation-delay: 0.8s;
  margin-top: 6px;
  border: 2px solid #1A2F73;
  background: transparent;
}

.about .content .btn-learn-more:hover {
  background: linear-gradient(135deg, #1A2F73 0%, #2E92D0 100%);
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(26, 47, 115, 0.25);
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  padding-top: 0;
}

.counts .count-box {
  box-shadow: -10px -5px 40px 0 rgba(0, 0, 0, 0.1);
  padding: 30px;
  width: 100%;
}

.counts .count-box i {
  display: block;
  font-size: 30px;
  color: #ed502e;
  float: left;
}

.counts .count-box span {
  font-size: 42px;
  line-height: 24px;
  display: block;
  font-weight: 700;
  color: #0b2341;
  margin-left: 50px;
}

.counts .count-box p {
  padding: 30px 0 0 0;
  margin: 0;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
}

.counts .count-box a {
  font-weight: 600;
  display: block;
  margin-top: 20px;
  color: #164682;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  transition: ease-in-out 0.3s;
}

.counts .count-box a:hover {
  color: #2169c4;
}

/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us {
  padding: 0;
}

.why-us .content {
  padding: 60px 100px 0 100px;
}

.why-us .content h3 {
  font-weight: 400;
  font-size: 34px;
  color: #1A2F73;
}

.why-us .content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
}

.why-us .content p {
  font-size: 15px;
  color: #848484;
}

.why-us .video-box {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  min-height: 400px;
  position: relative;
}

.why-us .accordion-list {
  padding: 0 100px 60px 100px;
}

.why-us .accordion-list ul {
  padding: 0;
  list-style: none;
}

.why-us .accordion-list li+li {
  margin-top: 15px;
}

.why-us .accordion-list li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
}

.why-us .accordion-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding-right: 30px;
  outline: none;
  color: #0b2341;
  cursor: pointer;
}

.why-us .accordion-list span {
  color: #1A2F73;
  font-weight: 600;
  font-size: 18px;
  padding-right: 10px;
}

.why-us .accordion-list i {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.why-us .accordion-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.why-us .accordion-list .icon-show {
  display: none;
}

.why-us .accordion-list a.collapsed {
  color: #0b2341;
}

.why-us .accordion-list a.collapsed:hover {
  color: #1A2F73;
}

.why-us .accordion-list a.collapsed .icon-show {
  display: inline-block;
}

.why-us .accordion-list a.collapsed .icon-close {
  display: none;
}

.why-us .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#1A2F73 50%, rgba(138, 126, 123, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}

.why-us .play-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.why-us .play-btn::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(212, 209, 208, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.why-us .play-btn:hover::after {
  border-left: 15px solid #1A2F73;
  transform: scale(20);
}

.why-us .play-btn:hover::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

@media (max-width: 1024px) {

  .why-us .content,
  .why-us .accordion-list {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 992px) {
  .why-us .content {
    padding-top: 30px;
  }

  .why-us .accordion-list {
    padding-bottom: 30px;
  }
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  text-align: center;
  background: #fefefe;
  box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.1);
  padding: 80px 20px;
  transition: all ease-in-out 0.3s;
}

.services .icon-box .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: #1A2F73;
  border-radius: 5px;
  transition: all 0.3s ease-out 0s;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transform-style: preserve-3d;
  position: relative;
  z-index: 2;
}

.services .icon-box .icon i {
  color: #fff;
  font-size: 28px;
}

.services .icon-box .icon::before {
  position: absolute;
  content: "";
  left: -8px;
  top: -8px;
  height: 100%;
  width: 100%;
  background: #d6d5d4;
  border-radius: 5px;
  transition: all 0.3s ease-out 0s;
  transform: translateZ(-1px);
  z-index: 1;
}

.services .icon-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
}

.services .icon-box h4 a {
  color: #0b2341;
}

.services .icon-box p {
  line-height: 20px;
  font-size: 14px;
  padding: 1em;  
}

.services .icon-box:hover {
  background: #1A2F73;
  border-color: #1c1a30;
}

.services .icon-box:hover .icon {
  background: #fff;
}

.services .icon-box:hover .icon i {
  color: #1A2F73;
}

.services .icon-box:hover .icon::before {
  background: #c0bebd;
}

.services .icon-box:hover h4 a,
.services .icon-box:hover p {
  color: #fff;
}

.services .getstarted,
.services .getstarted:focus {
  background: #1A2F73;
  padding: 8px 20px;
  border-radius: 4px;
  color: #fff;
}

.services .getstarted:hover,
.services .getstarted:focus:hover {
  color: #fff;
  background: #9e9ca1;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonial-wrap {
  padding-left: 50px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 30px 30px 30px 60px;
  margin: 30px 15px;
  min-height: 200px;
  box-shadow: 0px 0px 20px 0px rgba(11, 35, 65, 0.1);
  position: relative;
  background: #fff;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 10px;
  border: 6px solid #fff;
  position: absolute;
  left: -45px;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #111;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #fdedea;
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 15px auto 15px auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #1A2F73;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #727170;
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  padding: 80px 0;
  background: #0b2341;
}

.cta h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.cta p {
  color: #fff;
  margin-top: 20px;
  font-size: 20px;
}

.cta .cta-btn {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 35px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #8d8988;
  color: #fff;
}

.cta .cta-btn:hover {
  background: #363636;
  border: 2px solid #3d3c3c;
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 25px auto;
  list-style: none;
  text-align: center;
  border-radius: 50px;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 10px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #0b2341;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: #ed502e;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(255, 255, 255, 0.9);
  padding: 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  color: #0b2341;
}

.portfolio .portfolio-item .portfolio-info p {
  color: #1a5298;
  font-size: 14px;
  margin-bottom: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 40px;
  font-size: 24px;
  top: calc(50% - 18px);
  color: #123a6d;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: #ed502e;
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 10px;
}

.portfolio .portfolio-item .portfolio-links {
  opacity: 0;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 3;
  position: absolute;
  transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-item .portfolio-links a {
  color: #fff;
  margin: 0 2px;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.portfolio .portfolio-item .portfolio-links a:hover {
  color: #f59f8c;
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 20px;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #ed502e;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #ed502e;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(11, 35, 65, 0.08);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team .member {
  text-align: center;
  margin-bottom: 20px;
  background: #343a40;
  position: relative;
  overflow: hidden;
}

.team .member .member-info {
  opacity: 0;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  transition: 0.2s;
}

.team .member .member-info-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  transition: bottom 0.4s;
}

.team .member .member-info-content h4 {
  margin-top: 8px;
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
  color: #fff;
}

.team .member .member-info-content span {
  font-style: italic;
  display: block;
  font-size: 13px;
  color: #fff;
}

.team .member .social {
  position: absolute;
  left: -50px;
  top: 0;
  bottom: 60px;
  width: 50px;
  transition: left ease-in-out 0.3s;
  /*background: rgba(11, 35, 65, 0.5);*/
  text-align: center;
}

.team .member .social a {
  transition: color 0.3s;
  display: block;
  color: #fff;
  margin-top: 15px;
}

.team .member .social a:hover {
  color: #797372;
}

.team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

.team .member .member-info {
  /*background: linear-gradient(0deg, rgba(11, 35, 65, 0.9) 0%, rgba(11, 35, 65, 0.8) 20%, rgba(0, 212, 255, 0) 100%);*/
  opacity: 1;
  transition: 0.4s;
}

.team .member .member-info-content {
  background: rgba(11, 35, 65, 0.5);
  bottom: 0;
  opacity: 1;
  transition: bottom 0.4s;
  height: 80px;
}

.team .member .social {
  left: 0;
  transition: left ease-in-out 0.3s;
}

/*-------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .row {
  padding-top: 40px;
}

.pricing .box {
  padding: 80px 40px;
  margin-bottom: 30px;
  box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.1);
  background: #fff;
  text-align: center;
}

.pricing h3 {
  font-weight: 300;
  margin-bottom: 15px;
  font-size: 28px;
}

.pricing h4 {
  font-size: 46px;
  color: #0b2341;
  font-weight: 400;
  font-family: "Open Sans", sans-serif;
  margin-bottom: 25px;
}

.pricing h4 span {
  color: #bababa;
  font-size: 18px;
  display: block;
}

.pricing ul {
  padding: 0;
  list-style: none;
  color: #999;
  text-align: left;
  line-height: 20px;
}

.pricing ul li {
  padding-bottom: 12px;
}

.pricing ul i {
  color: #0f0535;
  font-size: 18px;
  padding-right: 4px;
}

.pricing ul .na {
  color: #ccc;
}

.pricing ul .na i {
  color: #ccc;
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing .get-started-btn {
  display: inline-block;
  padding: 10px 40px 11px 40px;
  border-radius: 4px;
  color: #0b2341;
  transition: none;
  font-size: 14px;
  font-weight: 600;
  transition: 0.3s;
  border: 2px solid #0b2341;
  background: #fff;
}

.pricing .get-started-btn:hover {
  background: #0b2341;
  color: #fff;
}

.pricing .featured {
  z-index: 10;
  padding: 100px 40px;
  border: 4px solid #1A2F73;
}

.pricing .featured .get-started-btn {
  background: #1A2F73;
  color: #fff;
  border-color: #1A2F73;
}

.pricing .featured .get-started-btn:hover {
  background: #7e7d7d;
  border-color: #7e7d7d;
}

@media (max-width: 992px) {
  .pricing .box {
    max-width: 60%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 767px) {
  .pricing .box {
    max-width: 80%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 420px) {
  .pricing .box {
    max-width: 100%;
    margin: 0 auto 30px auto;
  }
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq .faq-item {
  margin: 20px 0;
  padding: 20px 0;
  border-bottom: 1px solid #e9f1fb;
}

.faq .faq-item i {
  color: #669ee5;
  font-size: 20px;
  float: left;
  line-height: 0;
  padding: 13px 0 0 0;
  margin: 0;
}

.faq .faq-item h4 {
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  margin: 0 0 10px 28px;
  font-family: "Poppins", sans-serif;
}

.faq .faq-item p {
  font-size: 15px;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
  color: #0b2341;
  text-align: center;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 20px 0 30px 0;
  background: #fff;
}

.contact .info-box i {
  font-size: 32px;
  color: #1A2F73;
  border-radius: 50%;
  padding: 8px;
  border: 2px dotted #fbdad2;
}

.contact .lk_contact {
  color: #0b2341;
  text-decoration: none;
}

.contact .info-box h3 {
  font-size: 20px;
  color: #777777;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .php-email-form {
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 30px;
  background: #fff;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #1A2F73;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #1A2F73;
}

.contact .php-email-form input {
  padding: 10px 15px;
}

.contact .php-email-form textarea {
  padding: 12px 15px;
}

.contact .php-email-form button[type=submit] {
  background: #1A2F73;
  border: 0;
  padding: 10px 30px;
  border-radius: 4px;
  color: #fff;
  transition: 0.4s;
}

.contact .php-email-form button[type=submit]:hover {
  background: #9b9898;
}


/*--------------------------------------------------------------
# loginout
--------------------------------------------------------------*/
.loginout .info-box {
  color: #0b2341;
  text-align: center;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 20px 0 30px 0;
  background: #fff;
}

.loginout .info-box i {
  font-size: 32px;
  color: #1A2F73;
  border-radius: 50%;
  padding: 8px;
  border: 2px dotted #fbdad2;
}

.loginout .info-box h3 {
  font-size: 20px;
  color: #777777;
  font-weight: 700;
  margin: 10px 0;
}

.loginout .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.loginout .php-email-form {
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 30px;
  background: #fff;
}

.loginout .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #1A2F73;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.loginout .php-email-form .error-message br+br {
  margin-top: 25px;
}

.loginout .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.loginout .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.loginout .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.loginout .php-email-form input,
.loginout .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
}

.loginout .php-email-form input:focus,
.loginout .php-email-form textarea:focus {
  border-color: #1A2F73;
}

.loginout .php-email-form input {
  padding: 10px 15px;
}

.loginout .php-email-form textarea {
  padding: 12px 15px;
}

.loginout .php-email-form button[type=button] {
  background: #1A2F73;
  border: 0;
  padding: 10px 30px;
  border-radius: 4px;
  color: #fff;
  transition: 0.4s;
}

.loginout .php-email-form button[type=button]:hover {
  background: #a1a0a0;
}


@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #F4F6FA;
  min-height: 40px;
  margin-top: 82px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 74px;
  }
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 600;
  color: #0b2341;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #123a6d;
  content: "/";
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #071527;
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 14px;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 15px;
  background: #05101e;
  border-top: 4px solid #666564;
  text-align: center;
  padding: 30px 20px;
}

#footer .footer-top .footer-info h3 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  background: #0a1e38;
}

#footer .footer-top .social-links a:hover {
  color: #fff;
  background: #666564;
  text-decoration: none;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #666564;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  color: #666564;
}

#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
}

#footer .footer-top .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px;
  width: calc(100% - 110px);
}

#footer .footer-top .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: -2px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px 2px 20px;
  background: #666564;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

#footer .footer-top .footer-newsletter form input[type=submit]:hover {
  background: #c7c5c4;
}

#footer .copyright {
  border-top: 1px solid #0f2f57;
  text-align: center;
  padding-top: 30px;
}

#footer .copyright a {
  color: #fff;
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}

@media (max-width: 575px) {
  #footer .footer-top .footer-info {
    margin: -20px 0 30px 0;
  }
}

/* Associados */
#portfolio .portfolio-item {
  right: 0;
  margin: 0 0 15px;
}

#portfolio .portfolio-item .portfolio-link {
  position: relative;
  display: block;
  max-width: 400px;
  margin: 0 auto;
  cursor: pointer;
}

#portfolio .portfolio-item .portfolio-link .portfolio-hover {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  opacity: 0;
  background: rgba(29, 35, 93, 0.9);
}

#portfolio .portfolio-item .portfolio-link .portfolio-hover:hover {
  opacity: 1;
}

#portfolio .portfolio-item .portfolio-link .portfolio-hover .portfolio-hover-content {
  font-size: 20px;
  position: absolute;
  top: 50%;
  width: 100%;
  height: 20px;
  margin-top: -12px;
  text-align: center;
  color: white;
}

#portfolio .portfolio-item .portfolio-link .portfolio-hover .portfolio-hover-content i {
  margin-top: -12px;
}

#portfolio .portfolio-item .portfolio-link .portfolio-hover .portfolio-hover-content h3,
#portfolio .portfolio-item .portfolio-link .portfolio-hover .portfolio-hover-content h4 {
  margin: 0;
}

#portfolio .portfolio-item .portfolio-caption {
  max-width: 400px;
  margin: 0 auto;
  padding: 25px;
  text-align: center;
  background-color: #fff;
}

#portfolio .portfolio-item .portfolio-caption h4 {
  margin: 0;
  text-transform: none;
}

#portfolio .portfolio-item .portfolio-caption p {
  font-size: 16px;
  font-style: italic;
  margin: 0;
  font-family: 'Droid Serif', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
}

#portfolio * {
  z-index: 2;
}

@media (min-width: 767px) {
  #portfolio .portfolio-item {
    margin: 0 0 30px;
  }
}

.portfolio-modal {
  padding-right: 0px !important;
}

.portfolio-modal .modal-dialog {
  margin: 1rem;
  max-width: 100vw;
}

.portfolio-modal .modal-content {
  padding: 100px 0;
  text-align: center;
}

.portfolio-modal .modal-content h2 {
  font-size: 3em;
  margin-bottom: 15px;
}

.portfolio-modal .modal-content p {
  margin-bottom: 30px;
}

.portfolio-modal .modal-content p.item-intro {
  font-size: 16px;
  font-style: italic;
  margin: 20px 0 30px;
  font-family: 'Droid Serif', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
}

.portfolio-modal .modal-content ul.list-inline {
  margin-top: 0;
  margin-bottom: 30px;
}

.portfolio-modal .modal-content img {
  margin-bottom: 30px;
}

.portfolio-modal .modal-content button {
  cursor: pointer;
}

.portfolio-modal .close-modal {
  position: absolute;
  top: 25px;
  right: 25px;
  width: 75px;
  height: 75px;
  cursor: pointer;
  background-color: transparent;
}

.portfolio-modal .close-modal:hover {
  opacity: 0.3;
}

.portfolio-modal .close-modal .lr {
  /* Safari and Chrome */
  z-index: 1051;
  width: 1px;
  height: 75px;
  margin-left: 35px;
  /* IE 9 */
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  background-color: #212529;
}

.portfolio-modal .close-modal .lr .rl {
  /* Safari and Chrome */
  z-index: 1052;
  width: 1px;
  height: 75px;
  /* IE 9 */
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  background-color: #212529;
}

/*--------------------------------------------------------------
# Client Area Dropdown - Fix hover
--------------------------------------------------------------*/
.client-area-dropdown .dropdown ul a:hover,
.client-area-dropdown .dropdown ul .active:hover,
.client-area-dropdown .dropdown ul li:hover>a {
  color: #2E92D0 !important;
  background: rgba(26, 47, 115, 0.08) !important;
  padding-left: 20px !important;
  transition: all 0.3s ease;
}

.client-area-dropdown .dropdown ul a {
  padding: 12px 20px;
  color: #1A2F73;
  transition: all 0.3s ease;
}

/*--------------------------------------------------------------
# Certificate Info Alert Styles
--------------------------------------------------------------*/
.certificate-info-alert {
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  border: 2px solid rgba(46, 146, 208, 0.3);
  background: linear-gradient(135deg, #e8f4f8 0%, #f0f8ff 100%);
  box-shadow: 0 4px 15px rgba(46, 146, 208, 0.1);
  margin-bottom: 2rem;
  font-size: 1rem;
  line-height: 1.6;
}

.certificate-info-alert i {
  color: #2E92D0;
  font-size: 1.2rem;
  vertical-align: middle;
}

.certificate-info-alert strong {
  color: #1A2F73;
}

/*--------------------------------------------------------------
# Validity Selector Styles
--------------------------------------------------------------*/
.validity-selector {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.validity-selector .form-label {
  color: #1A2F73;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.validity-select {
  border: 2px solid #e9ecef;
  border-radius: 8px;
  padding: 0.75rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: #1A2F73;
  transition: all 0.3s ease;
  cursor: pointer;
  background-color: white;
}

.validity-select:hover {
  border-color: #2E92D0;
  background-color: #f8f9fa;
}

.validity-select:focus {
  border-color: #1A2F73;
  box-shadow: 0 0 0 0.2rem rgba(26, 47, 115, 0.15);
  outline: 0;
  background-color: white;
}

.certificate-card .product-price {
  font-weight: 700;
  color: #2E92D0;
  font-size: 1.75rem;
  transition: all 0.3s ease;
}

.add-to-cart-btn {
  width: 100%;
  padding: 0.875rem 1.5rem;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  background: linear-gradient(135deg, #1A2F73 0%, #2E92D0 100%);
  border: none;
  box-shadow: 0 4px 15px rgba(26, 47, 115, 0.2);
}

.add-to-cart-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26, 47, 115, 0.3);
  background: linear-gradient(135deg, #152659 0%, #2680b8 100%);
}

.add-to-cart-btn:active {
  transform: translateY(0);
}

/* Logo Responsivo */
@media (max-width: 768px) {
  #header .logo img {
    height: 98px;
    width: 98px;
    padding: 8px;
    margin-top: -18px;
    margin-bottom: -18px;
  }

  #header.header-scrolled .logo img {
    height: 86px;
    width: 86px;
    margin-top: -14px;
    margin-bottom: -14px;
  }

  #header {
    min-height: 60px;
  }

  #header.header-scrolled {
    min-height: 55px;
  }
}

/*--------------------------------------------------------------
# Badge SERPRO - Credibilidade e Parceria
--------------------------------------------------------------*/

/* Badge SERPRO Inline (para uso em seções) */
.serpro-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border: 2px solid rgba(26, 47, 115, 0.15);
  border-radius: 16px;
  padding: 12px 20px;
  box-shadow:
    0 4px 15px rgba(26, 47, 115, 0.08),
    0 1px 3px rgba(0, 0, 0, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
}

.serpro-badge:hover {
  border-color: rgba(46, 146, 208, 0.4);
  box-shadow:
    0 8px 25px rgba(26, 47, 115, 0.12),
    0 2px 6px rgba(46, 146, 208, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  transform: translateY(-2px);
}

.serpro-badge img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.serpro-badge-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.serpro-badge-text .label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #6c757d;
  font-weight: 600;
}

.serpro-badge-text .title {
  font-size: 0.9rem;
  font-weight: 700;
  color: #1A2F73;
}

/* Banner SERPRO (seção destacada) */
.serpro-banner {
  background: linear-gradient(135deg, #1A2F73 0%, #2E92D0 100%);
  border-radius: 20px;
  padding: 30px 40px;
  margin: 30px 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(26, 47, 115, 0.25);
}

.serpro-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.serpro-banner::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.serpro-banner-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}

.serpro-banner-logo {
  background: white;
  border-radius: 16px;
  padding: 15px 25px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.serpro-banner-logo img {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.serpro-banner-info {
  flex: 1;
  min-width: 280px;
}

.serpro-banner-info h4 {
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 8px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.serpro-banner-info p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.6;
}

.serpro-banner-features {
  display: flex;
  gap: 20px;
  margin-top: 15px;
  flex-wrap: wrap;
}

.serpro-banner-features .feature {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.85rem;
  font-weight: 500;
}

.serpro-banner-features .feature i {
  color: #7dd3fc;
  font-size: 1rem;
}

/* Selo de Parceiro (compacto para cards) */
.serpro-seal {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(26, 47, 115, 0.05) 0%, rgba(46, 146, 208, 0.08) 100%);
  border: 1px solid rgba(26, 47, 115, 0.12);
  border-radius: 10px;
  padding: 8px 14px;
  margin-top: 12px;
}

.serpro-seal img {
  height: 24px;
  width: auto;
  opacity: 0.9;
}

.serpro-seal span {
  font-size: 0.75rem;
  color: #1A2F73;
  font-weight: 600;
}

/* Badge para checkout (trust badge) */
.serpro-trust-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border: 1px solid rgba(46, 146, 208, 0.2);
  border-radius: 12px;
  padding: 15px 20px;
  margin: 20px 0;
}

.serpro-trust-badge img {
  height: 35px;
  width: auto;
}

.serpro-trust-badge .trust-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.serpro-trust-badge .trust-info .title {
  font-size: 0.85rem;
  font-weight: 700;
  color: #1A2F73;
}

.serpro-trust-badge .trust-info .subtitle {
  font-size: 0.75rem;
  color: #64748b;
}

/* Credenciais/Selos inline */
.credentials-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin: 25px 0;
}

.credential-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #495057;
  font-size: 0.9rem;
}

.credential-item i {
  font-size: 1.3rem;
  color: #1A2F73;
}

.credential-item.serpro-item img {
  height: 30px;
  width: auto;
}

/* Responsivo SERPRO */
@media (max-width: 768px) {
  .serpro-badge {
    padding: 10px 15px;
    gap: 10px;
  }

  .serpro-badge img {
    height: 32px;
  }

  .serpro-badge-text .title {
    font-size: 0.8rem;
  }

  .serpro-banner {
    padding: 25px 20px;
  }

  .serpro-banner-content {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .serpro-banner-info h4 {
    font-size: 1.2rem;
  }

  .serpro-banner-features {
    justify-content: center;
  }

  .serpro-trust-badge {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .credentials-row {
    gap: 20px;
  }
}
