/* ===== REDES SOCIALES ===== */
.social-icons-wrapper {
    display: flex;
    gap: 20px;
    align-items: center;
    padding: 10px 0;
    font-size: 1.2rem;
  }
  
  .social-icons-wrapper a {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    position: relative;
    z-index: 1;
    transition: transform 0.2s ease, color 0.3s ease;
    display: flex;
    align-items: center;
  }
  
  .social-icons-wrapper i {
    transition: color 0.3s ease;
    font-size: 1em;
  }
  
  .facebook i { color: #3b5998; }
  .instagram i { color: #e1306c; }
  .twitter i   { color: #1da1f2; }
  .pinterest i{ color: #bd081c; }
  
  .social-icons-wrapper a:hover {
    transform: scale(1.2);
  }
  
  .social-icons-wrapper a:hover i {
    color: #000;
  }
  
  @media (max-width: 500px) {
    .social-icons-wrapper {
      font-size: 1rem;
      gap: 15px;
    }
  }
  
  /* ===== SECCIÓN MÉTODOS DE PAGO ===== */
  .payment-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    padding: 50px 30px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    margin: 40px auto;
    overflow: hidden;
    position: relative;
  }
  
  .payment-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
  }
  
  .payment-image {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .payment-image img {
    max-width: 70%;
    width: auto;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    transition: all 0.3s ease;
  }
  
  .payment-image img:hover {
    transform: translateY(-3px) scale(1.01);
  }
  
  .payment-content {
    padding: 20px;
  }
  
  .payment-heading {
    color: #2c3e50;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    line-height: 1.3;
  }
  
  .payment-text {
    color: #34495e;
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 15px;
  }
  
  .payment-subtext {
    font-size: 1rem;
    color: #7f8c8d;
    margin-bottom: 25px;
  }
  
  .payment-icons {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
  }
  
  .payment-icons img {
    height: 30px;
    width: auto;
    max-width: 50px;
    object-fit: contain;
    filter: grayscale(0%);
    transition: all 0.3s ease;
    opacity: 0.9;
  }
  
  .payment-icons img:hover {
    transform: translateY(-3px) scale(1.1);
    opacity: 1;
    filter: grayscale(0%);
  }
  
  .payment-section .shop-now .btn-primary {
    padding: 12px 35px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  }
  
  .payment-section .shop-now .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
  }
  
  @media (max-width: 991px) {
    .payment-section {
      padding: 40px 25px;
    }
    
    .payment-heading {
      font-size: 1.7rem;
    }
    
    .payment-text {
      font-size: 1.05rem;
    }
    
    .payment-image img {
      max-width: 80%;
      margin: 0 auto;
    }
  }
  
  @media (max-width: 767px) {
    .payment-section {
      padding: 35px 20px;
      border-radius: 12px;
    }
    
    .payment-heading {
      font-size: 1.5rem;
      text-align: center;
    }
    
    .payment-content {
      padding: 15px 0;
      text-align: center;
    }
    
    .payment-text {
      font-size: 1rem;
    }
    
    .payment-subtext {
      font-size: 0.95rem;
    }
    
    .payment-image {
      margin-bottom: 30px;
    }
    
    .payment-image img {
      max-width: 90%;
      height: auto;
    }
    
    .payment-icons {
      justify-content: center;
      gap: 12px;
    }
    
    .payment-icons img {
      height: 28px;
      max-width: 45px;
    }
    
    .payment-section .shop-now .btn-primary {
      padding: 10px 28px;
      font-size: 0.95rem;
    }
  }
  
  @media (max-width: 480px) {
    .payment-section {
      padding: 25px 15px;
    }
    
    .payment-heading {
      font-size: 1.3rem;
    }
    
    .payment-text {
      font-size: 0.95rem;
    }
    
    .payment-icons img {
      height: 25px;
      max-width: 40px;
    }
    
    .payment-section .shop-now .btn-primary {
      padding: 10px 25px;
      font-size: 0.9rem;
      width: 100%;
      max-width: 280px;
    }
  }
  
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .payment-section.bottom-to-top.hb-animate-element {
    animation: fadeInUp 0.8s ease forwards;
  }
  
  @keyframes float {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-10px);
    }
  }
  
  .payment-image img {
    animation: float 4s ease-in-out infinite;
  }
  
  .payment-image:hover img {
    animation-play-state: paused;
  }
  
  /* ===== HERO SLIDER MODERNO ===== */
  .slider-wrapper {
    position: relative;
    overflow: hidden;
    padding: 0;
    margin: 0;
  }
  
  .hero-slider {
    position: relative;
    height: 800px;
    width: 100%;
  }
  
  .hero-slide {
    position: relative;
    height: 800px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
  }
  
  .hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    background-size: cover;
    background-position: center;
    animation: kenBurns 20s ease-in-out infinite alternate;
    z-index: 0;
  }
  
  @keyframes kenBurns {
    0% {
      transform: scale(1) translate(0, 0);
    }
    100% {
      transform: scale(1.1) translate(-20px, -20px);
    }
  }
  
  .slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
      rgba(0, 0, 0, 0.7) 0%, 
      rgba(0, 0, 0, 0.5) 50%, 
      rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
    animation: overlayPulse 4s ease-in-out infinite;
  }
  
  @keyframes overlayPulse {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 0.9; }
  }
  
  .slide-content {
    position: relative;
    z-index: 2;
    height: 100%;
  }
  
  .slide-text-wrapper {
    animation: slideInLeft 1s ease-out;
  }
  
  @keyframes slideInLeft {
    from {
      opacity: 0;
      transform: translateX(-50px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  .slide-title {
    font-size: 4rem;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.1;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
    letter-spacing: 2px;
  }
  
  .slide-title .animate-title {
    animation: fadeInDown 0.8s ease-out 0.2s both;
  }
  
  .slide-title .text-gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease-out 0.4s both;
  }
  
  @keyframes fadeInDown {
    from {
      opacity: 0;
      transform: translateY(-30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .slide-subtitle {
    font-size: 1.4rem;
    font-weight: 400;
    max-width: 700px;
    line-height: 1.6;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
    animation: fadeIn 0.8s ease-out 0.6s both;
  }
  
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  
  .slide-buttons {
    animation: fadeIn 0.8s ease-out 0.8s both;
  }
  
  .btn-slider-primary,
  .btn-slider-secondary {
    display: inline-flex;
    align-items: center;
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    border: 2px solid transparent;
  }
  
  .btn-slider-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
  }
  
  .btn-slider-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(102, 126, 234, 0.5);
    color: white;
  }
  
  .btn-slider-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
  }
  
  .btn-slider-secondary:hover {
    background: white;
    color: #2c3e50;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255,255,255,0.3);
  }
  
  .slider-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
  }
  
  .slider-prev,
  .slider-next {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    border: 2px solid white;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    pointer-events: all;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .slider-prev {
    margin-left: 30px;
  }
  
  .slider-next {
    margin-right: 30px;
  }
  
  .slider-prev:hover,
  .slider-next:hover {
    background: white;
    color: #2c3e50;
    transform: scale(1.1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  }
  
  .slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 12px;
  }
  
  .slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    border: 2px solid white;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .slider-dot.active {
    background: white;
    transform: scale(1.3);
  }
  
  .slider-dot:hover {
    background: rgba(255,255,255,0.8);
  }
  
  @media (max-width: 1199px) {
    .hero-slider,
    .hero-slide {
      height: 700px;
    }
    
    .slide-title {
      font-size: 3.2rem;
    }
    
    .slide-subtitle {
      font-size: 1.2rem;
    }
  }
  
  @media (max-width: 991px) {
    .hero-slider,
    .hero-slide {
      height: 600px;
    }
    
    .slide-title {
      font-size: 2.5rem;
    }
    
    .slide-subtitle {
      font-size: 1.1rem;
    }
    
    .btn-slider-primary,
    .btn-slider-secondary {
      padding: 12px 28px;
      font-size: 1rem;
    }
  }
  
  @media (max-width: 767px) {
    .hero-slider,
    .hero-slide {
      height: 500px;
    }
    
    .slide-title {
      font-size: 2rem;
    }
    
    .slide-subtitle {
      font-size: 1rem;
    }
    
    .slide-buttons {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    
    .btn-slider-primary,
    .btn-slider-secondary {
      width: 100%;
      max-width: 280px;
      justify-content: center;
    }
    
    .slider-prev,
    .slider-next {
      width: 45px;
      height: 45px;
      font-size: 1.2rem;
    }
    
    .slider-prev { margin-left: 15px; }
    .slider-next { margin-right: 15px; }
  }
  
  @media (max-width: 480px) {
    .hero-slider,
    .hero-slide {
      height: 450px;
    }
    
    .slide-title {
      font-size: 1.6rem;
    }
    
    .slide-subtitle {
      font-size: 0.95rem;
    }
    
    .btn-slider-primary,
    .btn-slider-secondary {
      padding: 10px 22px;
      font-size: 0.9rem;
    }
  }
  
  .owl-item.active .slide-text-wrapper {
    animation: slideInLeft 1s ease-out;
  }
  
  .ttloading-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #f8f9fa;
    z-index: 100;
    transition: opacity 0.5s ease;
  }
  
  .ttloading-bg.loaded {
    opacity: 0;
    pointer-events: none;
  }
  
  /* ===== TARJETAS DE CATÁLOGOS ===== */
  .catalog-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid #eee;
  }
  
  .catalog-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
  }
  
  .card-icon-wrapper {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }
  
  .icon-main {
    font-size: 4rem;
    color: rgba(255,255,255,0.9);
    transition: all 0.3s ease;
    z-index: 2;
  }
  
  .icon-overlay {
    font-size: 2rem;
    color: #fff;
    position: absolute;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
  }
  
  .catalog-card:hover .icon-main {
    transform: scale(0.8);
    opacity: 0.3;
  }
  
  .catalog-card:hover .icon-overlay {
    opacity: 1;
    transform: scale(1);
  }
  
  .card-content {
    padding: 25px 20px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  .card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
    text-transform: uppercase;
  }
  
  .card-desc {
    font-size: 0.9rem;
    color: #7f8c8d;
    margin-bottom: 20px;
    line-height: 1.4;
  }
  
  .btn-download {
    display: inline-block;
    padding: 10px 25px;
    background-color: #f8f9fa;
    color: #2c3e50;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid #e9ecef;
    width: 100%;
    max-width: 180px;
    margin: 0 auto;
  }
  
  .btn-download:hover {
    background-color: #2c3e50;
    color: #fff;
    border-color: #2c3e50;
    transform: translateX(5px);
  }
  
  .btn-download i {
    margin-left: 8px;
    transition: margin-left 0.3s ease;
  }
  
  .btn-download:hover i {
    margin-left: 12px;
  }
  
  @media (max-width: 767px) {
    .card-icon-wrapper { height: 150px; }
    .card-title { font-size: 1.1rem; }
  }
  
  .card-image-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: #f8f9fa;
  }
  
  .catalog-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
  }
  
  .catalog-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(102, 126, 234, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
  }
  
  .catalog-overlay i {
    font-size: 3rem;
    color: white;
    transform: scale(0);
    transition: all 0.3s ease;
  }
  
  .catalog-card:hover .catalog-thumbnail {
    transform: scale(1.1);
  }
  
  .catalog-card:hover .catalog-overlay {
    opacity: 1;
  }
  
  .catalog-card:hover .catalog-overlay i {
    transform: scale(1);
  }
  
  /* ===== SECCIÓN DE SUCURSALES ===== */
  .branches-section {
    background: #f8f9fa;
    padding: 50px 0;
    border-top: 1px solid #e9ecef;
  }
  
  .branches-header {
    position: relative;
    margin-bottom: 50px;
  }
  
  .branches-title {
    font-size: 2.2rem;
    color: #1a3a5c;
    font-weight: 700;
    letter-spacing: 0.5px;
    animation: fadeInDown 1s ease;
  }
  
  .branches-title i {
    color: #2b6cb0;
    margin-right: 12px;
  }
  
  .branches-subtitle {
    font-size: 1.15rem;
    color: #4a5568;
    margin-top: 15px;
    animation: fadeIn 1s ease 0.2s both;
  }
  
  .branches-counter {
    margin-top: 25px;
    animation: fadeInUp 1s ease 0.4s both;
  }
  
  .counter-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #2b6cb0;
    display: block;
    line-height: 1;
  }
  
  .counter-label {
    font-size: 1rem;
    color: #718096;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
  }
  
  .branch-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #e2e8f0;
  }
  
  .branch-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(26, 58, 92, 0.15);
    border-color: #2b6cb0;
  }
  
  .branch-card-header {
    padding: 25px 20px;
    text-align: center;
    position: relative;
    color: #ffffff;
  }
  
  .branch-header-matriz {
    background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
  }
  
  .branch-header-leon {
    background: linear-gradient(135deg, #1a365d 0%, #2b6cb0 50%, #3182ce 100%);
  }
  
  .branch-header-monterrey {
    background: linear-gradient(135deg, #1e3a5f 0%, #2c5282 50%, #4299e1 100%);
  }
  
  .branch-header-guadalajara {
    background: linear-gradient(135deg, #2d3748 0%, #4a5568 50%, #718096 100%);
  }
  
  .branch-card:hover .branch-card-header {
    filter: brightness(1.05);
    transition: filter 0.3s ease;
  }
  
  .branch-icon {
    font-size: 2.5rem;
    margin-bottom: 8px;
    opacity: 0.95;
  }
  
  .branch-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255,255,255,0.15);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: 1px solid rgba(255,255,255,0.3);
  }
  
  .branch-card-body {
    padding: 25px;
  }
  
  .branch-name {
    font-size: 1.35rem;
    font-weight: 700;
    color: #1a3a5c;
    margin-bottom: 20px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e2e8f0;
  }
  
  .branch-content {
    margin-bottom: 25px;
  }
  
  .branch-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    padding: 12px 15px;
    background: #f8fafc;
    border-radius: 6px;
    transition: all 0.25s ease;
    border-left: 3px solid transparent;
  }
  
  .branch-item:hover {
    background: #edf2f7;
    border-left-color: #2b6cb0;
    transform: translateX(3px);
  }
  
  .branch-item i {
    font-size: 1.1rem;
    color: #2b6cb0;
    margin-right: 12px;
    margin-top: 4px;
    width: 20px;
    flex-shrink: 0;
  }
  
  .branch-item p,
  .branch-item span {
    margin: 0;
    color: #2d3748;
    line-height: 1.5;
    font-size: 0.95rem;
  }
  
  .branch-item a {
    color: #2b6cb0;
    text-decoration: none;
    transition: all 0.2s ease;
    display: block;
    font-weight: 500;
  }
  
  .branch-item a:hover {
    color: #1a3a5c;
    text-decoration: underline;
  }
  
  .phone-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  
  .phone-group a {
    font-size: 0.9rem;
  }
  
  .branch-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    padding-top: 10px;
    border-top: 1px solid #e2e8f0;
  }
  
  .btn-branch {
    flex: 1;
    padding: 10px 18px;
    border-radius: 6px;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  
  .btn-branch i {
    font-size: 0.95rem;
    margin: 0;
  }
  
  .btn-map {
    background: #2b6cb0;
    color: #ffffff;
    border: 2px solid #2b6cb0;
  }
  
  .btn-map:hover {
    background: #1a3a5c;
    border-color: #1a3a5c;
    color: #ffffff;
    transform: translateY(-2px);
  }
  
  .btn-call {
    background: #ffffff;
    color: #2b6cb0;
    border: 2px solid #cbd5e0;
  }
  
  .btn-call:hover {
    background: #2b6cb0;
    color: #ffffff;
    border-color: #2b6cb0;
    transform: translateY(-2px);
  }
  
  .branches-map-section {
    background: #ffffff;
    padding: 40px 0;
    margin-top: 30px;
    border-top: 1px solid #e9ecef;
  }
  
  .map-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  }
  
  .map-wrapper iframe {
    filter: grayscale(15%);
    transition: filter 0.3s ease;
  }
  
  .map-wrapper:hover iframe {
    filter: grayscale(0%);
  }
  
  @media (max-width: 991px) {
    .branches-title { font-size: 1.9rem; }
    .counter-number { font-size: 3rem; }
  }
  
  @media (max-width: 767px) {
    .branches-section { padding: 35px 0; }
    .branches-title { font-size: 1.6rem; }
    .counter-number { font-size: 2.5rem; }
    .branch-actions { flex-direction: column; }
    .branch-item { flex-direction: column; text-align: center; }
    .branch-item i { margin-bottom: 8px; margin-right: 0; }
    .branch-name { font-size: 1.2rem; }
  }
  
  @media (max-width: 480px) {
    .branches-title { font-size: 1.4rem; }
    .branch-card-header { padding: 20px 15px; }
    .branch-card-body { padding: 20px; }
    .btn-branch { padding: 9px 15px; font-size: 0.85rem; }
  }

  /* ===== ABOUT PAGE - ESTILO PROFESIONAL ===== */

/* Breadcrumb Moderno */
.breadcrumb-modern-section {
  background: linear-gradient(135deg, #1a3a5c 0%, #2c5282 100%);
  padding: 20px 0;
  margin-bottom: 0;
}

.breadcrumb-modern {
  background: transparent !important;
  padding: 0;
  margin: 0;
}

.breadcrumb-modern .breadcrumb-item a {
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-modern .breadcrumb-item a:hover {
  color: #ffffff;
}

.breadcrumb-modern .breadcrumb-item.active {
  color: #ffffff;
  font-weight: 600;
}

.breadcrumb-modern .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255,255,255,0.6);
}

/* Wrapper Principal */
.about-page-wrapper {
  padding: 0;
}

/* Secciones Generales */
.about-section {
  padding: 80px 0;
}

/* Badge de Sección */
.section-badge {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.section-badge i {
  margin-right: 8px;
}

/* Título de Sección */
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a3a5c;
  margin-bottom: 20px;
}

/* Divisor de Sección */
.section-divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
  border-radius: 2px;
  margin: 20px 0;
}

/* Imagen Principal */
.about-image-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.about-main-image {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

.about-image-wrapper:hover .about-main-image {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
  pointer-events: none;
}

/* Contenido */
.about-content-wrapper {
  padding-left: 40px;
}

.about-description {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #4a5568;
  margin-bottom: 20px;
}

.highlight-text {
  color: #667eea;
  font-weight: 700;
}

/* Stats Counter */
.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 2px solid #e2e8f0;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: #667eea;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.9rem;
  color: #718096;
  font-weight: 500;
}

/* Cards de Valores */
.value-card {
  background: white;
  border-radius: 12px;
  padding: 40px 30px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid #e2e8f0;
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.value-card:hover::before {
  transform: scaleX(1);
}

/* Iconos de Cards */
.value-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.value-icon i {
  font-size: 2rem;
  color: white;
}

/* Título de Card */
.value-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a3a5c;
  text-align: center;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Divisor de Card */
.value-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
  border-radius: 2px;
  margin: 0 auto 20px;
}

/* Descripción de Card */
.value-desc {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #4a5568;
  text-align: center;
  margin-bottom: 25px;
}

/* Footer de Card */
.value-footer {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.value-tag {
  padding: 5px 15px;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
  color: #667eea;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* Colores Específicos por Card */
.mission-card .value-icon {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  box-shadow: 0 8px 20px rgba(240, 147, 251, 0.3);
}

.quality-card .value-icon {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  box-shadow: 0 8px 20px rgba(79, 172, 254, 0.3);
}

.vision-card .value-icon {
  background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
  box-shadow: 0 8px 20px rgba(67, 233, 123, 0.3);
}

/* Responsive */
@media (max-width: 991px) {
  .about-section {
    padding: 60px 0;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .about-content-wrapper {
    padding-left: 0;
    padding-top: 40px;
  }
  
  .about-stats {
    gap: 20px;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
}

@media (max-width: 767px) {
  .about-section {
    padding: 40px 0;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .value-card {
    padding: 30px 20px;
  }
  
  .about-stats {
    flex-direction: column;
    gap: 30px;
  }
  
  .stat-number {
    font-size: 2rem;
  }
}

/* Animaciones */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-section {
  animation: fadeInUp 0.8s ease;
}

.value-card {
  animation: fadeInUp 0.6s ease;
}

.value-card:nth-child(2) {
  animation-delay: 0.2s;
}

.value-card:nth-child(3) {
  animation-delay: 0.4s;
}

/* Contenedor de imagen About Us */
.about-image-container {
  display: inline-block;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  transition: all 0.4s ease;
  border: 3px solid #ffffff;
  max-width: 100%;
}

.about-image-container:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  border-color: #667eea;
}

.about-image-container:hover img {
  transform: scale(1.05);
}

.about-image-container:hover .image-overlay-effect {
  opacity: 1;
}

@media (min-width: 1920px) {
  .container {
    max-width: 1600px;
  }
  
  .hero-slider,
  .hero-slide {
    height: 900px;
  }
}

@media (prefers-color-scheme: dark) {
  /* Ajustes para modo oscuro del sistema */
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

