/* ===============================================
    Estilos para Página de Marcas
------------------------*/

/* Sección intro */
.brands-intro-section {
  padding: 60px 0 40px;
  background: #f9f9f9;
}

.brands-intro-section .section-title {
  margin-bottom: 0;
}

.brands-intro-section .title-header h5 {
  color: #004ECC;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.brands-intro-section .title {
  font-size: 36px;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
}

.brands-intro-section .title-desc {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
}

/* Sección de listado de marcas */
.brands-list-section {
  padding: 60px 0;
}

/* Item de marca */
.brand-item {
  padding: 50px 0;
  border-bottom: 1px solid #e8e8e8;
  position: relative;
}

.brand-item:last-child {
  border-bottom: none;
}

/* Item destacado - Grupo Empresarial */
.brand-item-featured {
  background: #004ECC;
  /* border: 2px solid #004ECC; */
  border-radius: 20px;
  padding: 60px 40px !important;
  margin-bottom: 40px;
  box-shadow: 0 10px 40px rgba(0, 78, 204, 0.1);
  position: relative;
  overflow: hidden;
}

.brand-item-featured::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 78, 204, 0.03) 0%, transparent 70%);
  animation: pulse 15s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

/* Badge de Grupo Empresarial */
.brand-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #FFB41D 0%, #ffc041 100%);
  color: #fff;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 5px 15px rgba(255, 180, 29, 0.3);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
}

.brand-badge i {
  font-size: 16px;
  animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {

  0%,
  100% {
    transform: scale(1) rotate(0deg);
  }

  50% {
    transform: scale(1.2) rotate(180deg);
  }
}

/* Logo principal más grande */
.brand-logo-main {
  background: #ffffff !important;
  padding: 50px !important;
  min-height: 350px !important;
  border: 3px solid #004ECC;
  box-shadow: 0 10px 30px rgba(0, 78, 204, 0.15) !important;
}

.brand-logo-main img {
  max-height: 250px !important;
}

/* Nombre de marca principal */
.brand-name-main {
  font-size: 42px !important;
  color: #FFB41D !important;
  margin-bottom: 10px !important;
  font-weight: 800 !important;
  text-shadow: 2px 2px 4px rgba(255, 180, 29, 0.1);
}

/* Subtítulo para marca principal */
.brand-subtitle {
  font-size: 18px;
  color: #ffc041;
  font-weight: 600;
  font-style: italic;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

/* Features de marca principal con estilo mejorado */
.brand-item-featured .brand-features li i {
  background: linear-gradient(135deg, #FFB41D 0%, #ffc041 100%);
  color: #fff;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  top: 0;
}

.brand-item-featured .brand-features li {
  padding-left: 35px;
  font-weight: 500;
}

/* Logo wrapper */
.brand-logo-wrapper {
  background: #f9f9f9;
  padding: 40px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.brand-logo-wrapper img {
  max-width: 100%;
  height: auto;
  max-height: 200px;
  object-fit: contain;
}

/* Contenido de marca */
.brand-content {
  padding: 0 30px;
}

.brand-name {
  font-size: 32px;
  font-weight: 700;
  color: #004ECC;
  margin-bottom: 20px;
}

.brand-description {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 25px;
  text-align: justify;
}

/* Features list */
.brand-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.brand-features li {
  font-size: 15px;
  color: #333;
  margin-bottom: 12px;
  padding-left: 30px;
  position: relative;
  line-height: 1.6;
}

#italocks .brand-features li,
#italocks .brand-description {
  color: #fff;
}

#italocks .brand-logo-main {
  background: transparent !important;
}

.brand-features li i {
  position: absolute;
  left: 0;
  top: 2px;
  color: #004ECC;
  font-size: 16px;
}

/* Botón */
.brand-content .ttm-btn {
  padding: 12px 30px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.brand-content .ttm-btn i {
  font-size: 16px;
}

/* Responsive */
@media (max-width: 991px) {
  .brand-item {
    padding: 40px 0;
  }

  .brand-item-featured {
    padding: 40px 30px !important;
    margin-bottom: 30px;
  }

  .brand-badge {
    top: 15px;
    right: 15px;
    padding: 8px 16px;
    font-size: 12px;
  }

  .brand-logo-main {
    min-height: 280px !important;
    padding: 40px !important;
  }

  .brand-logo-main img {
    max-height: 200px !important;
  }

  .brand-name-main {
    font-size: 36px !important;
  }

  .brand-subtitle {
    font-size: 16px;
  }

  .brand-logo-wrapper {
    margin-bottom: 30px;
    min-height: 250px;
    padding: 30px;
  }

  .brand-content {
    padding: 0;
  }

  .brand-name {
    font-size: 28px;
  }

  .brand-description {
    font-size: 15px;
    text-align: left;
  }

  .brands-intro-section .title {
    font-size: 32px;
  }
}

@media (max-width: 767px) {
  .brands-intro-section {
    padding: 40px 0 30px;
  }

  .brands-list-section {
    padding: 40px 0;
  }

  .brand-item {
    padding: 30px 0;
  }

  .brand-item-featured {
    padding: 30px 20px !important;
    margin-bottom: 25px;
    border-radius: 15px;
  }

  .brand-badge {
    position: static;
    display: inline-flex;
    margin-bottom: 20px;
    padding: 6px 14px;
    font-size: 11px;
  }

  .brand-logo-main {
    min-height: 220px !important;
    padding: 30px !important;
  }

  .brand-logo-main img {
    max-height: 160px !important;
  }

  .brand-name-main {
    font-size: 28px !important;
  }

  .brand-subtitle {
    font-size: 15px;
  }

  .brand-logo-wrapper {
    min-height: 200px;
    padding: 25px;
    margin-bottom: 25px;
  }

  .brand-logo-wrapper img {
    max-height: 150px;
  }

  .brand-name {
    font-size: 24px;
  }

  .brand-description {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .brand-features li {
    font-size: 14px;
  }

  .brands-intro-section .title {
    font-size: 28px;
  }

  .brands-intro-section .title-desc {
    font-size: 15px;
  }
}

@media (max-width: 576px) {
  .brand-content .ttm-btn {
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
  }

  .brand-item-featured {
    padding: 25px 15px !important;
  }

  .brand-logo-main {
    min-height: 200px !important;
    padding: 25px !important;
  }

  .brand-logo-main img {
    max-height: 140px !important;
  }

  .brand-name-main {
    font-size: 24px !important;
  }

  .brand-subtitle {
    font-size: 14px;
  }

  .brand-logo-wrapper {
    min-height: 180px;
    padding: 20px;
  }

  .brand-name {
    font-size: 22px;
  }
}