/* ================================================= */
    /* == INICIO: ESTILOS PARA SECCIÓN DE FLETES (NUEVO) == */
    /* ================================================= */

    #servicios-fletes {
        padding: 60px 0;
        background: #111111;
        margin-top: 40px;
    }

    .fletes-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .fletes-header {
        text-align: center;
        margin-bottom: 50px;
    }

    .fletes-header h1 {
        font-size: 2.6rem;
        font-weight: 700;
        color: #FFCD00;
        margin-bottom: 15px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .fletes-header .divider {
        height: 3px;
        width: 60px;
        background: #FFCD00;
        margin: 0 auto 20px;
    }

    .fletes-header p {
        font-size: 1.1rem;
        max-width: 700px;
        margin: 0 auto;
        color: #aaa;
        line-height: 1.6;
    }

    .fletes-intro-section {
        background: #222;
        border-radius: 12px;
        padding: 30px;
        margin-bottom: 60px;
        border-left: 5px solid #FFCD00;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    }

    .fletes-intro-section p {
        font-size: 1.05rem;
        line-height: 1.8;
        margin-bottom: 0;
        color: #ddd;
    }

    .fletes-services-section {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        margin-bottom: 70px;
    }

    .flete-service-card {
        background: #2a2a2a;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        border: 1px solid #444;
        height: 100%;
    }

    .flete-service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 0 25px rgba(255, 200, 0, 0.6);
        border-color: #FFCD00;
    }

    .flete-service-image {
        height: 350px;
        background-size: cover;
        background-position: center;
        position: relative;
        overflow: hidden;
        transition: transform 0.6s ease;
    }

    .flete-service-image:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(45deg, rgba(0, 0, 0, 0.8) 0%, rgba(20, 20, 20, 0.4) 100%);
        opacity: 0.7;
        transition: opacity 0.5s ease;
    }

    .flete-service-card:hover .flete-service-image {
        transform: scale(1.05);
    }

    .flete-service-content {
        padding: 25px;
    }

    .flete-service-content h3 {
        font-size: 1.3rem;
        color: #FFCD00;
        margin-bottom: 15px;
        position: relative;
        padding-bottom: 12px;
    }

    .flete-service-content h3:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 40px;
        height: 3px;
        background: #FFCD00;
        transition: width 0.4s ease;
    }

    .flete-service-card:hover .flete-service-content h3:after {
        width: 60px;
    }

    .flete-service-content p {
        color: #aaa;
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .fletes-special-section {
        background: #1f1f1f;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 10px 35px rgba(0, 0, 0, 0.4);
        margin-bottom: 80px;
        display: flex;
        flex-direction: column;
        position: relative;
        border: 1px solid #444;
    }

    .fletes-special-content {
        padding: 40px;
        z-index: 2;
    }

    .fletes-special-content h2 {
        font-size: 1.9rem;
        margin-bottom: 20px;
        position: relative;
        padding-bottom: 15px;
        color: #FFCD00;
    }

    .fletes-special-content h2:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 60px;
        height: 3px;
        background: #FFCD00;
        transition: width 0.5s ease;
    }

    .fletes-special-section:hover .fletes-special-content h2:after {
        width: 120px;
    }

    .fletes-special-content h3 {
        font-size: 1.4rem;
        margin: 30px 0 15px;
        color: #FFCD00;
    }

    .fletes-special-content p {
        color: #ccc;
        line-height: 1.8;
    }

    .fletes-special-content ul {
        margin-left: 20px;
        margin-top: 15px;
        padding: 0;
        list-style: none;
    }

    .fletes-special-content li {
        margin-bottom: 10px;
        color: #ccc;
        position: relative;
        padding-left: 25px;
    }

    .fletes-special-content li:before {
        content: '✓';
        color: #FFCD00;
        position: absolute;
        left: 0;
        top: 0;
        font-size: 1.5rem;
        line-height: 1;
        font-weight: bold;
    }

    .fletes-special-image {
        height: 350px;
        background-size: cover;
        background-position: center;
        position: relative;
        overflow: hidden;
        transition: transform 1.2s ease;
    }

    .fletes-special-image:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(45deg, rgba(10, 10, 10, 0.85) 0%, rgba(20, 20, 20, 0.65) 100%);
        z-index: 1;
    }

    .fletes-special-section:hover .fletes-special-image {
        transform: scale(1.05);
    }
    
    .fletes-quote-section {
        background: #222;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        padding: 45px 35px;
        border: 1px solid #444;
        text-align: center;
    }

    .fletes-quote-section h2 {
        font-size: 1.9rem;
        color: #FFCD00;
        margin-bottom: 15px;
    }

    .fletes-quote-section p {
        color: #aaa;
        font-size: 1.1rem;
        margin-bottom: 30px;
    }

    .btn-flete-quote {
        background: #FFCD00;
        color: #1a1a1a;
        border: none;
        padding: 15px 40px;
        border-radius: 8px;
        font-size: 1rem;
        font-weight: bold;
        cursor: pointer;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        display: inline-block;
        text-align: center;
        letter-spacing: 0.5px;
        box-shadow: 0 5px 15px rgba(255, 205, 0, 0.3);
    }

    .btn-flete-quote:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(255, 205, 0, 0.4);
        background: #fff;
    }
    
    /* =============================================== */
    /* == FIN: ESTILOS PARA SECCIÓN DE FLETES (NUEVO) == */
    /* =============================================== */

    /* ============================================= */
    /* == INICIO: ESTILOS PARA POPUP DE CATÁLOGO  == */
    /* ============================================= */

    /* Contenedor del Popup (modal) - Oculto por defecto */
    .catalog-modal-popup {
        display: none; /* Oculto hasta que se activa con JavaScript */
        position: fixed; /* Se queda fijo en la pantalla */
        z-index: 2000; /* Se asegura de que esté por encima de todo */
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        overflow: auto; /* Permite scroll si el contenido es muy grande */
        background-color: rgba(0, 0, 0, 0.8); /* Fondo oscuro semitransparente */
        justify-content: center;
        align-items: center;
        backdrop-filter: blur(5px);
    }

    /* Contenido del Popup */
    .catalog-modal-content {
        background-color: #1f1f1f;
        color: #f0f0f0;
        margin: auto;
        padding: 20px;
        border: 1px solid #FFCD00;
        width: 85%;
        height: 85%;
        max-width: 1200px;
        border-radius: 10px;
        box-shadow: 0 5px 25px rgba(255, 205, 0, 0.2);
        position: relative;
        display: flex;
        flex-direction: column;
    }
    
    .catalog-modal-content h2 {
      color: #FFCD00;
      margin-bottom: 15px;
    }

    /* Botón para cerrar el Popup */
    .catalog-close-btn {
        color: #aaa;
        position: absolute;
        top: 10px;
        right: 25px;
        font-size: 35px;
        font-weight: bold;
        transition: color 0.3s;
    }

    .catalog-close-btn:hover,
    .catalog-close-btn:focus {
        color: #FFCD00;
        text-decoration: none;
        cursor: pointer;
    }

    /* Iframe donde se carga el catálogo */
    #catalogFrame {
        width: 100%;
        height: 100%; /* Ocupa todo el alto disponible */
      
        border-radius: 4px;
        margin-top: 10px; 
        flex-grow: 1; 
    }

    /* =========================================== */
    /* == FIN: ESTILOS PARA POPUP DE CATÁLOGO  == */
    /* =========================================== */
    
    /* ========================================== */
    /* == ESTILOS PARA LA NUEVA SECCIÓN CONTACTO == */
    /* ========================================== */
    .contact-section {
      padding: 100px 0;
      background: #111;
    }
    
    .contact-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }
    
    .contact-header {
      text-align: center;
      margin-bottom: 50px;
    }
    
    .contact-header h1 {
      font-size: 2.6rem;
      font-weight: 700;
      color: #FFCD00;
      margin-bottom: 15px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    
    .contact-divider {
      height: 3px;
      width: 60px;
      background: #FFCD00;
      margin: 0 auto 20px;
    }
    
    .contact-header p {
      font-size: 1.1rem;
      max-width: 700px;
      margin: 0 auto;
      color: #aaa;
      line-height: 1.6;
    }
    
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
    }
    
    .contact-form-container {
      background: rgba(30, 30, 30, 0.9);
      border-radius: 12px;
      padding: 30px;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
      border: 1px solid #444;
      backdrop-filter: blur(5px);
    }
    
    .contact-form-container h2 {
      color: #FFCD00;
      margin-bottom: 20px;
      padding-bottom: 15px;
      border-bottom: 1px solid #444;
    }
    
    .contact-form {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }
    
    .form-group-full {
      grid-column: 1 / -1;
    }
    
    .contact-form label {
      display: block;
      margin-bottom: 8px;
      color: #FFCD00;
      font-weight: 600;
      font-size: 0.9rem;
    }
    
    .contact-form input,
    .contact-form textarea,
    .contact-form select {
      width: 100%;
      padding: 12px 15px;
      background: rgba(40, 40, 40, 0.7);
      border: 1px solid #444;
      border-radius: 8px;
      color: #fff;
      font-size: 1rem;
      transition: all 0.3s;
    }
    
    .contact-form input:focus,
    .contact-form textarea:focus,
    .contact-form select:focus {
      outline: none;
      border-color: #FFCD00;
      box-shadow: 0 0 0 2px rgba(255, 205, 0, 0.3);
    }
    
    .contact-form textarea {
      min-height: 150px;
      resize: vertical;
    }
    
    .contact-form button {
      grid-column: 1 / -1;
      background: #FFCD00;
      color: #1a1a1a;
      border: none;
      padding: 15px;
      font-size: 1.1rem;
      font-weight: 600;
      border-radius: 8px;
      cursor: pointer;
      transition: all 0.3s;
    }
    
    .contact-form button:hover {
      background: #ffd83a;
      transform: translateY(-3px);
      box-shadow: 0 5px 15px rgba(255, 205, 0, 0.4);
    }
    
    .contact-info-map {
      display: flex;
      flex-direction: column;
      gap: 30px;
    }
    
    .contact-details {
      background: rgba(30, 30, 30, 0.9);
      border-radius: 12px;
      padding: 30px;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
      border: 1px solid #444;
      backdrop-filter: blur(5px);
    }
    
    .contact-details h2 {
      color: #FFCD00;
      margin-bottom: 20px;
      padding-bottom: 15px;
      border-bottom: 1px solid #444;
    }
    
    .contact-item-enhanced {
      display: flex;
      align-items: flex-start;
      margin-bottom: 25px;
      padding-bottom: 25px;
      border-bottom: 1px solid #333;
    }
    
    .contact-icon {
      background: rgba(255, 205, 0, 0.1);
      width: 50px;
      height: 50px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 20px;
      flex-shrink: 0;
    }
    
    .contact-icon i {
      color: #FFCD00;
      font-size: 1.5rem;
    }
    
    .contact-text h3 {
      color: #fff;
      margin-bottom: 5px;
      font-size: 1.2rem;
    }
    
    .contact-text p {
      color: #ccc;
      font-size: 1rem;
      line-height: 1.6;
    }
    
    .map-container {
      height: 300px;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
      border: 1px solid #444;
    }
    
    .map-container iframe {
      width: 100%;
      height: 100%;
      border: none;
    }
    
    .hours-container {
      background: rgba(30, 30, 30, 0.9);
      border-radius: 12px;
      padding: 30px;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
      border: 1px solid #444;
      backdrop-filter: blur(5px);
    }
    
    .hours-container h2 {
      color: #FFCD00;
      margin-bottom: 20px;
      padding-bottom: 15px;
      border-bottom: 1px solid #444;
    }
    
    .hours-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 15px;
    }
    
    .hour-item {
      display: flex;
      justify-content: space-between;
      padding: 10px 0;
      border-bottom: 1px solid #333;
    }
    
    .day {
      color: #fff;
    }
    
    .time {
      color: #FFCD00;
      font-weight: 500;
    }
    
    @media (max-width: 992px) {
      .contact-grid {
        grid-template-columns: 1fr;
      }
      
      .contact-form {
        grid-template-columns: 1fr;
      }
    }
    
    @media (max-width: 768px) {
      .contact-header h1 {
        font-size: 2.2rem;
      }
      
      .contact-item-enhanced {
        flex-direction: column;
      }
      
      .contact-icon {
        margin-bottom: 15px;
      }
    }
    
    /* ======================================= */
    /* == MEJORAS RESPONSIVE Y NUEVOS BOTONES == */
    /* ======================================= */
    
    /* Botón para subir */
 .back-to-top {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffa600, #d37c0b);
  color: white;
  border: none;
  cursor: pointer;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.4);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
}
    
    .back-to-top.visible {
      opacity: 1;
      visibility: visible;
    }
    
    /* Mejoras responsive para móvil */
    @media (max-width: 900px) {
      .social-sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s ease;
      }
      .social-sidebar.active {
        transform: translateX(0);
      }
      
      .viewer-overlay a.viewer-btn {
        margin-top: 300px;
      }
      
      .container {
        padding: 15px;
      }
      
      .features-main {
        grid-template-columns: 1fr;
      }
      
      .gallery {
        grid-template-columns: 1fr;
      }
      
      .contact-grid {
        grid-template-columns: 1fr;
      }
    }
    
    @media (max-width: 480px) {
      .viewer-overlay a.viewer-btn {
        margin-top: 250px;
      }
      
      .section-title {
        font-size: 1.8rem;
      }
      
      .years-badge {
        font-size: 0.9rem;
      }
    
    }

    /* ========================================= */
    /* == ESTILOS PARA LA NUEVA SECCIÓN LÁSER  == */
    /* ========================================= */
    #laser-cleaning {
      background: #0f0f0f;
      padding: 80px 0;
      position: relative;
      overflow: hidden;
    }
    
    .laser-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }
    
    .laser-header {
      text-align: center;
      margin-bottom: 50px;
    }
    
    .laser-header h1 {
      font-size: 2.6rem;
      font-weight: 700;
      color: #FFCD00;
      margin-bottom: 15px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    
    .laser-divider {
      height: 3px;
      width: 60px;
      background: #FFCD00;
      margin: 0 auto 20px;
    }
    
    .laser-header p {
      font-size: 1.1rem;
      max-width: 700px;
      margin: 0 auto;
      color: #aaa;
      line-height: 1.6;
    }
    
    .laser-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: center;
    }
    
    .laser-image-container {
      position: relative;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
     
      height: 400px;
    }
    
    .laser-image-container img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    
    .laser-image-container:hover img {
      transform: scale(1.05);
    }
    
    .laser-info {
      background: rgba(30, 30, 30, 0.9);
      border-radius: 12px;
      padding: 30px;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
      border: 1px solid #444;
      backdrop-filter: blur(5px);
    }
    
    .laser-info h2 {
      color: #FFCD00;
      margin-bottom: 20px;
      padding-bottom: 15px;
      border-bottom: 1px solid #444;
    }
    
    .laser-info p {
      color: #ddd;
      line-height: 1.7;
      margin-bottom: 20px;
    }
    
    .laser-features {
      list-style: none;
      padding: 0;
      margin: 25px 0;
    }
    
    .laser-features li {
      padding: 10px 0;
      border-bottom: 1px solid #333;
      color: #ccc;
      display: flex;
      align-items: center;
      font-size: 1rem;
    }
    
    .laser-features li:before {
      content: "✓";
      color: #FFCD00;
      font-weight: bold;
      margin-right: 10px;
      font-size: 1.2rem;
    }
    
    .laser-actions {
      display: flex;
      gap: 15px;
      margin-top: 30px;
    }
    
    .btn-laser-details {
      background: #FFCD00;
      color: #1a1a1a;
      border: none;
      padding: 12px 25px;
      border-radius: 6px;
      font-weight: bold;
      cursor: pointer;
      transition: all 0.3s ease;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }
    
    .btn-laser-details:hover {
      background: #ffd83a;
      transform: translateY(-3px);
      box-shadow: 0 5px 15px rgba(255, 205, 0, 0.4);
    }
    
    .btn-laser-quote {
      background: transparent;
      border: 1px solid #FFCD00;
      color: #FFCD00;
      padding: 12px 25px;
      border-radius: 6px;
      font-weight: bold;
      cursor: pointer;
      transition: all 0.3s ease;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }
    
    .btn-laser-quote:hover {
      background: rgba(255, 205, 0, 0.1);
      transform: translateY(-3px);
    }
    
    /* Modal para detalles del láser */
    .laser-modal {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.9);
      z-index: 1000;
      overflow-y: auto;
      padding: 20px;
      animation: fadeIn 0.5s forwards;
    }
    
    .laser-modal-content {
      background: #1a1a1a;
      max-width: 900px;
      margin: 30px auto;
      border-radius: 12px;
      overflow: hidden;
      border: 2px solid #FFCD00;
      box-shadow: 0 0 35px rgba(255, 205, 0, 0.3);
      position: relative;
      animation: slideUp 0.6s forwards;
    }
    
    .laser-close-btn {
      position: absolute;
      top: 15px;
      right: 15px;
      background: #FFCD00;
      color: #1a1a1a;
      width: 35px;
      height: 35px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.3rem;
      cursor: pointer;
      z-index: 10;
      transition: all 0.3s ease;
    }
    
    .laser-close-btn:hover {
      transform: scale(1.05);
      background: #e6b800;
    }
    
    .laser-modal-header {
      height: 350px;
      background-size: cover;
      background-position: center;
      position: relative;
    }
    
    .laser-modal-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: rgba(0,0,0,0.4);
     
      color: white;
    }
    
    .laser-modal-title {
      font-size: 1.8rem;
      color: #FFCD00;
      margin-bottom: 8px;
    }
    
    .laser-modal-subtitle {
      font-size: 1rem;
      color: #bbb;
    }
    
    .laser-modal-body {
      padding: 30px;
    }
    
    .laser-modal-intro {
      color: #ccc;
      line-height: 1.8;
      margin-bottom: 30px;
      font-size: 1.1rem;
    }
    
    .laser-modal-features {
      background: #222;
      padding: 25px;
      border-radius: 8px;
      border-left: 3px solid #FFCD00;
      margin-bottom: 30px;
    }
    
    .laser-modal-features h3 {
      color: #FFCD00;
      margin-bottom: 20px;
      padding-bottom: 10px;
      border-bottom: 1px solid #444;
    }
    
    .laser-feature-list {
      list-style: none;
      padding: 0;
    }
    
    .laser-feature-list li {
      padding: 12px 0;
      border-bottom: 1px solid #333;
      display: flex;
      align-items: center;
      font-size: 1rem;
      color: #ddd;
    }
    
    .laser-feature-list li:before {
      content: "✓";
      color: #FFCD00;
      font-weight: bold;
      margin-right: 12px;
      font-size: 1.3rem;
    }
    
    .laser-video-container {
      height: 400px;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
      border: 1px solid #444;
      margin: 30px 0;
      position: relative;
    }
    
    .laser-video-container iframe {
      width: 100%;
      height: 100%;
      border: none;
    }
    
    .laser-modal-footer {
      padding: 25px;
      background: #222;
      text-align: center;
    }
    
    .btn-laser-modal-quote {
      background: #FFCD00;
      color: #1a1a1a;
      border: none;
      padding: 15px 40px;
      border-radius: 8px;
      font-size: 1.1rem;
      font-weight: bold;
      cursor: pointer;
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      display: inline-block;
      text-align: center;
      letter-spacing: 0.5px;
      box-shadow: 0 5px 15px rgba(255, 205, 0, 0.3);
    }
    
    .btn-laser-modal-quote:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(255, 205, 0, 0.4);
      background: #fff;
    }
    
    @media (max-width: 992px) {
      .laser-content {
        grid-template-columns: 1fr;
      }
      
      .laser-image-container {
        height: 300px;
      }
    }
    
    @media (max-width: 768px) {
      .laser-actions {
        flex-direction: column;
      }
      
      .laser-modal-header {
        height: 250px;
      }
      
      .laser-video-container {
        height: 300px;
      }
    }
    
    @media (max-width: 480px) {
      .laser-header h1 {
        font-size: 2rem;
      }
      
      .laser-modal-header {
        height: 200px;
      }
      
      .laser-video-container {
        height: 250px;
      }
    }
    
    /* Animaciones */
    @keyframes slideDown {
      from { transform: translateY(-40px); opacity: 0; }
      to { transform: translateY(0); opacity: 1; }
    }
    
    @keyframes fadeInUp {
      from { transform: translateY(40px); opacity: 0; }
      to { transform: translateY(0); opacity: 1; }
    }
    
    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }
    
    @keyframes slideUp {
      from { transform: translateY(80px); opacity: 0; }
      to { transform: translateY(0); opacity: 1; }
    }
    
    @keyframes pulse {
      0% { transform: scale(1.05); }
      50% { transform: scale(1.08); }
      100% { transform: scale(1.05); }
    }
    
    @keyframes glow {
      0% { box-shadow: 0 0 4px rgba(255, 205, 0, 0.5); }
      100% { box-shadow: 0 0 15px rgba(255, 205, 0, 0.8); }
    }
    
    /* Nueva animación de scroll */
    .fade-in {
      animation: fadeInCard 0.7s forwards;
    }
    
    @keyframes fadeInCard {
      from { opacity: 0; transform: translateY(40px); }
      to { opacity: 1; transform: translateY(0); }
    }
    
    /* Efecto de luz en hover */
    .light-effect {
      position: absolute;
      width: 450px;
      height: 450px;
      background: radial-gradient(circle, rgba(255,205,0,0.2) 0%, rgba(255,205,0,0) 70%);
      border-radius: 50%;
      pointer-events: none;
      transform: translate(-50%, -50%);
      opacity: 0;
      transition: opacity 0.9s;
      z-index: 5;
    }
    
    /* Animaciones para desplazamiento */
    .section-animate {
      opacity: 0;
      transform: translateX(100px);
      transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    }
    
    .section-animate.active {
      opacity: 1;
      transform: translateX(0);
    }
    
    /* Responsive */
    @media (min-width: 992px) {
        .fletes-special-section {
            flex-direction: row;
        }
        .fletes-special-content {
            flex: 1.2;
        }
        .fletes-special-image {
            flex: 1;
            height: auto;
        }
    }
    
    @media (max-width: 1200px) {
      .container {
        grid-template-columns: 1fr 2fr;
      }
      
      .right-side {
        display: none;
      }
    }
    
    @media (max-width: 900px) {
      .notification-container {
        display: none;
      }
      .lg{
        display: none;
      }
      .nav-links {
        margin: 15px 0;
      }
      
      .search-container {
        width: 100%;
        max-width: 400px;
      }
      
      .container {
        grid-template-columns: 1fr;
      }
      
      .gallery {
        grid-template-columns: repeat(2, 1fr);
      }
      
      .features-main {
        grid-template-columns: repeat(2, 1fr);
      }
      
      .logo-line-1 {
        font-size: 1.8rem;
      }
      
      .logo-line-2 {
        font-size: 1rem;
      }
      
      .modal-body {
        grid-template-columns: 1fr;
      }
      
      .left-side, .right-side {
        display: block;
      }
    }
    
    @media (max-width: 600px) {
      .gallery {
        grid-template-columns: 1fr;
      }
      
      .features-main {
        grid-template-columns: 1fr;
      }
      
      .container {
        padding: 15px;
      }
      
      .modal-header {
        height: 220px;
      }
      
      .modal-body {
        padding: 15px;
      }
      
      .side-panel {
        padding: 15px;
      }
      
      .viewer-title {
        font-size: 2.5rem;
      }
      
      .viewer-subtitle {
        font-size: 1.2rem;
      }
    }
    
    /* Estilos para la notificación compacta */
    .notification-container {
     position: fixed;
  bottom: 20px;
  left: 20px; /* Cambiado de right a left */
  width: 280px;
  background: rgba(30, 30, 30, 0.95);    
  border: 1px solid #FFCD00;
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.7);
  overflow: hidden;
  z-index: 1000;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  transform: translateX(-110%);
  animation: slideInLeft 0.5s forwards 0.5s;
  transition: transform 0.5s, opacity 0.5s;
}

/* Nueva animación desde la izquierda */
@keyframes slideInLeft {
  from { transform: translateX(-110%); }
  to { transform: translateX(0); }
}

/* Animación de salida hacia la izquierda */
.hide-notification {
  animation: slideOutLeft 0.5s forwards;
}

@keyframes slideOutLeft {
  from { transform: translateX(0); opacity: 1; }
  to { transform: translateX(-110%); opacity: 0; }
}

.notification-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(135deg, #ffa600, #d37c0b);
  color: white;
  padding: 12px 15px;
  border-top-left-radius: 9px;
  border-top-right-radius: 9px;
}

.notification-title {
  font-weight: bold;
  font-size: 15px;
}

.notification-close {
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.2s;
  font-size: 14px;
}

.notification-close:hover {
  opacity: 1;
}

.location-info {
  padding: 12px 15px;
  border-bottom: 1px solid #444;
}

.location-row {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}

.location-icon {
  margin-right: 8px;
  color: #ffa600;
  font-size: 14px;
}

.location-name {
  font-weight: bold;
  font-size: 14px;
  color: #ffffff;
}

.location-country {
  font-size: 12px;
  color: #ffffff;
  display: flex;
  align-items: center;
}

.status-indicator {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #ffa600;
  border-radius: 50%;
  margin-right: 5px;
}

.video-container-notification {
  position: relative;
  height: 180px;
}

.video-container-notification video {
  width: 100%;
  height: 100%;
  display: block;
  background: #000;
  object-fit: cover;
}

.video-overlay-notification {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  padding: 8px 12px;
}

.equipment-name {
  color: white;
  font-size: 13px;
  font-weight: 500;
}

.message-container {
  padding: 12px 15px;
  background: rgba(40, 40, 40, 0.8);
  font-size: 13px;
  color: #ffffff;
  line-height: 1.4;
}

.notification-message strong {
  color: #ffa600;
}

.notification-footer {
  padding: 10px 15px;
  text-align: center;
  background: #000000;
  color: #ffa600;
  font-size: 12px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Responsive para móviles */
@media (max-width: 768px) {
  .notification-container {
    width: 90%;
    max-width: 300px;
    left: 5%;
    bottom: 10px;
    animation: slideInLeftMobile 0.5s forwards 0.5s;
  }
  
  @keyframes slideInLeftMobile {
    from { transform: translateX(-110%); }
    to { transform: translateX(0); }
  }
  
  .video-container-notification {
    height: 150px;
  }
  
  .location-info, 
  .message-container {
    padding: 10px;
  }
  
  .notification-title {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .notification-container {
    width: 95%;
    max-width: none;
    left: 2.5%;
    bottom: 5px;
  }
  
  .notification-header {
    padding: 10px;
  }
  
  .video-container-notification {
    height: 120px;
  }
  
  .equipment-name {
    font-size: 12px;
  }
  
  .notification-message {
    font-size: 12px;
  }
    
    /* Animaciones para notificaciones */
    .fade-out { 
      animation: fadeOut 0.3s forwards; 
    }
    
    .fade-in { 
      animation: fadeIn 0.3s forwards; 
    }

    @keyframes slideIn {
      from { transform: translateX(110%); }
      to { transform: translateX(0); }
    }
    
    @keyframes fadeOut {
      from { opacity: 1; transform: translateY(0); }
      to { opacity: 0; transform: translateY(10px); }
    }
    
    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(10px); }
      to { opacity: 1; transform: translateY(0); }
    }
    
    /* Efecto de desaparición final */
    .hide-notification {
      animation: slideOut 0.5s forwards;
    }
    
    @keyframes slideOut {
      from { transform: translateX(0); opacity: 1; }
      to { transform: translateX(110%); opacity: 0; }
    }
    
    @media (max-width: 768px) {
      .notification-container {
        width: 240px;
        bottom: 15px;
        right: 15px;
      }
    }
    
 
    }
    
    /* ===================================================== */
    /* == OCULTAR NAVBAR EN MÓVILES (<= 576px)             == */
    /* ===================================================== */
    @media (max-width: 576px) {
    
      
      /* Ajustar el visor 3D para ocupar todo el espacio */
      #viewer-section {
        height: 100vh;
        margin-top: 0;
      }
      
      /* Centrar mejor el botón del catálogo */
      .viewer-overlay a.viewer-btn {
        margin-top: 50vh;
        transform: translateY(-50%);
      }
      
      /* Ajustar el contenido de la sección "Conócenos" */
      .hero-section {
        padding-top: 20px;
      }
    }
    
    /* ===================================================== */
    /* == MANTENER NAVBAR EN TABLETAS Y COMPUTADORAS       == */
    /* ===================================================== */
    @media (min-width: 577px) {
      .navbar {
       
      }
    }
    
  
@media (max-width: 768px) {
  body, html {
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
    overflow-x: hidden !important;
  }

  * {
    box-sizing: border-box;
  }

  .container,
  .hero-section,
  .viewer-overlay,
  .contact-grid,
  .gallery,
  .features-main {
    margin-left: 0 !important;
    padding-left: 0 !important;
    width: 100% !important;
  }

  .social-sidebar {
    left: 0 !important;
  }
}

/* ============================================= */
/* == STYLES FOR FORM FEEDBACK                == */
/* ============================================= */
.form-feedback {
  width: 100%;
  padding: 15px;
  margin-top: 20px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  display: none; /* Hidden by default */
  grid-column: 1 / -1; /* For contact form grid */
}

.form-feedback.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-feedback.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}