/* Estilos generales */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Jost", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}
/* Encabezado */
header {
    background-image: url("/media/carbono.jpg");
    background-repeat: repeat;
    background-size: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 10px;    
    background-color: #222;
    
    color: white;
    height: 150px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nosotros {
    display: inline-block;
    margin-top: 200px;
    background-color: #333;
    color: white;
    text-align:justify;
    font-weight: normal;
    font-size: 20px;
    margin-left: 100px;
    margin-right: 100px;
    padding: 40px;
    border-radius: 10px;
    flex-direction: column;
}

.pys{
    display:flex;
    justify-content: center;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    margin-top: 0px;
    height: 200px;
    
}

.adm-container {
    display: flex;
    justify-content:center;
    margin-top: 170px;
    flex-wrap: wrap;
    margin-left: 20px;
    margin-right: 20px;
}

.mi-tabla {
            width: 100%;
            border-collapse: separate;
            border-spacing: 0;
            color: white;
            background-color: transparent;
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 8px;
            box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
            overflow: hidden;
        }
        
        .mi-tabla th {
            background-color: black;
            color: red;
            padding: 12px;
            text-align: left;
            border-bottom: 1px solid rgba(255, 255, 255, 0.3);
            font-weight: bold;
        }
        
        .mi-tabla td {
            padding: 10px 12px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            text-align: left;
        }
        
        .mi-tabla tr:last-child td {
            border-bottom: none;
        }
        
        .mi-tabla tr:hover {
            background-color: rgba(255, 255, 255, 0.05);
        }

.modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8); /* Fondo semi-transparente */
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s, visibility 0.3s;
        }
        
        .modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }
        
        .modal-contenta {
            width: 90%;
            max-width: 1200px;
            position: relative;
        }
        
        .video-containera {
            position: relative;
            padding-bottom: 56.25%; /* Relación de aspecto 16:9 */
            height: 0;
            overflow: hidden;
        }
        
        .video-containera iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }
        
        .closea-btn {
            position: absolute;
            top: 40px;
            left: 40px;
            right: 40px;
            color: white;
            font-size: 24px;
            cursor: pointer;
        }

.contador {
      margin-top: 10px;
      display: flex;
      gap: 5px;
      justify-content: center;
      align-items: center;
    }

    .digito {
      width: 40px;
      height: 80px;
      overflow: hidden;
      border-radius: 10px;
      background: black;
      box-shadow: 0 2px 5px rgba(0,0,0,0.2);
      text-align: center;
      position: relative;
    }

    .numeros {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      transition: transform 0.5s ease-out;
    }

    .numeros div {
      height: 80px;
      line-height: 80px;
      font-size: 48px;
      color: white;
    }

    .clientes {
      margin-top: 30px;
      display: flex;
      gap: 5px;
      justify-content: center;
      align-items: center;
    }

    .eldi {
      width: 40px;
      height: 80px;
      overflow: hidden;
      border-radius: 10px;
      background: black;
      box-shadow: 0 2px 5px rgba(0,0,0,0.2);
      text-align: center;
      position: relative;
    }

    .eln {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      transition: transform 0.5s ease-out;
    }

    .eln div {
      height: 80px;
      line-height: 80px;
      font-size: 48px;
      color: white;
    }

/* Estilo del footer */
        .dynamic-footer {
            background: #222;
            background-image: url("/media/carbono.jpg");
            background-repeat: repeat;
            background-size: auto;
            color: white;
            padding: 40px 20px;
            text-align: center;
            position: relative;
            z-index: 10;
        }
        
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            text-align: left;
        }
        
        .footer-column h3 {
            color: #f83433;
            margin-bottom: 20px;
            font-size: 1.2rem;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 10px;
        }
        
        .footer-column a {
            color: #ecf0f1;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-column a:hover {
            color: #f83433;
        }
        
        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 15px;
        }
        
        .social-icons a {
            color: white;
            font-size: 1.5rem;
        }
        
        .copyright {
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: #bdc3c7;
        }
        
        /* Efecto de carga para scroll infinito */
        .loading-bar {
            height: 4px;
            background: #f83433;
            width: 0;
            position: fixed;
            bottom: 0;
            left: 0;
            z-index: 100;
            transition: width 0.3s;
        }

/* Menú */
nav {
    position: relative;
}

.menu {
    display: flex;
    list-style: none;
    font-size: 20px;
}

.menu li {
    margin: 0 15px;
}

.menu li a {
    color: white;
    text-decoration: none;
    padding: 5px 0;
    position: relative;
}

.menu li a:hover {
    color: #f83433;
}

.menu-icon {
    display: none;
    cursor: pointer;
    font-size: 50px;
    color: white;
}

body {
    font-family: "Jost", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    text-align: center;
    margin: 0;
    background-color: #666;
    overflow-y: auto;
}

#qr-container {
            
            margin: 10px 0;
            background: white;
        }

.categories-b {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            margin-top: 170px;
        }

.categories-contacto {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            width: 600px;
        }

.form-group {
            margin-bottom: 15px;
        }
        label {
            display: block;
            margin-bottom: 5px;
            font-weight: bold;
            font-size: 15px;
        }
        input[type="text"],
        input[type="tel"],
        input[type="email"],
        select,
        textarea {
            width: 100%;
            padding: 8px;
            border: 1px solid #ddd;
            border-radius: 4px;
            box-sizing: border-box;
            font-size: 15px;
        }
        textarea {
            height: 80px;
        }

h1 {
    color: #333;
    margin-bottom: 30px;
}

.banners-container {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 210px;
    flex-wrap: wrap;
}

.banner {
    background-color:black;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 20%;
    max-width: 600px;
    aspect-ratio: 3 / 2;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.banner:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.banner img {
    max-width: 50%;
    height: auto;
    display: block;
}

.banner-title {
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 10px;
    position: absolute;
    bottom: 0;
    width: 100%;
    font-weight: bold;
}

.banner2-title {
    background: white;
    color: black;
    padding: 10px;
    position: absolute;
    bottom: 0;
    width: 100%;
    font-weight: bold;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 10px;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    z-index: 1000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    opacity: 1;
}

.modal-content {
    width: 80%;
    max-width: 800px;
    height: 80vh;
    perspective: 1000px;
    background: transparent;
}

/* Efecto FADE IN */
.fade-in {
    animation: fadeIn 0.5s forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Efecto FLIP */
.flip-card {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.6s;
}

.flip-card-inner {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 15px;
    overflow: hidden;
    background-color: white;
}

.flip-card-front {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

.flip-card-back {
    background: transparent;
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.flip-card img {
    width: 50%;
    height: auto;
    object-fit: fill;
}

.video-container {
    width: 100%;
    height: auto;
    display: flex;
    justify-content:center;
    align-items:start;
}

.video-container iframe {
    margin-top: 20px;
    width: 70%;
    height: 50vh;
    border-radius: 10px;
}

.video-container img {
    max-width: 60%;
    height: 60%;
    display: block;
}

.close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 30px;
    color: black;
    cursor: pointer;
    background: transparent;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close2 {
    position: absolute;
    top: 10px;
    right: 200px;
    font-size: 30px;
    color: black;
    cursor: pointer;
    background: transparent;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

button {
    margin-top: 15px;
    padding: 10px 25px;
    background: #ff4757;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s;
}

button:hover {
    background: #ff6b81;
}

.business-card {
            max-width: 800px;
            width: 100%;
            height: 80vh;
            padding: 20px;
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            overflow-y: auto;
            align-items: center;
            justify-content: center;
        }

.business-card2 {
            max-width: 500px;
            width: 400px;
            height: 80vh;
            padding: 20px;
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            overflow-y: auto;
            align-items: center;
            justify-content: center;
        }
        
        table {
            width: 70%;
            border-collapse: collapse;
            align-self: center;
        }
        
        .logo-cell {
            width: 60%;
            background-color: #f8f8f8;
            text-align: center;
            padding: 5px;
            vertical-align: top;
        }
        
        .logo-placeholder {
            width: 120px;
            height: 120px;
            background-color: #e0e0e0;
            border-radius: 50%;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #999;
            font-size: 14px;
        }
        
        .info-cell {
            padding: 1px;
            vertical-align:top;
        }
        
        .business-name {
            margin-top: 0px;
            text-align:center;
            font-size: 24px;
            font-weight: bold;
            color: #333;
            margin-bottom: 5px;
            padding-bottom: 5px;
        }
        
        .info-row {
            display: flex;
            text-align: center;
            align-items: center;
            justify-content: center;
            margin-bottom: 5px;
            font-size: 14px;
            color: #555;
        }
        
        .info-icon {
            width: 24px;
            text-align: center;
            margin-right: 12px;
            color: #4a6baf;
        }
        
        .stars {
            
            margin-left: 5px;
        }
        
        @media (max-width: 600px) {
            .logo-cell {
                width: 100%;
                padding: 20px;
            }
            
            tr {
                display: flex;
                flex-direction: column;
            }
        }

.instagram-btn {
            display: inline-flex;
            width: 180px;
            align-items: center;
            justify-content: center;
            background-color: #222;
            color: white;
            padding: 12px 24px;
            border: none;
            border-radius: 30px;
            font-size: 16px;
            
            text-decoration: none;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .instagram-btn:hover {
            color: white;
            background-color: #000000;
            transform: translateY(-2px);
            box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
        }

        .instagram-btn:active {
            transform: translateY(0);
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        .instagram-btn:disabled {
            color: white;
            background-color:#bdc3c7;
            transform: translateY(0);
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        .instagram-icon {
            margin-right: 10px;
            font-size: 20px;
        }

.maps-btn {
            display: inline-flex;
            width: 180px;
            align-items: center;
            justify-content: center;
            background-color: #222;
            color: white;
            padding: 12px 24px;
            border: none;
            border-radius: 30px;
            font-size: 16px;
            
            text-decoration: none;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .maps-btn:hover {
            color: white;
            background-color: #000000;
            transform: translateY(-2px);
            box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
        }

        .maps-btn:active {
            transform: translateY(0);
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        .maps-btn:disabled {
            color: white;
            background-color:#bdc3c7;
            transform: translateY(0);
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        .maps-icon {
            width: 18px;
            height: 18px;
            margin-right: 10px;
        }

.email-btn {
            display: inline-flex;
            width: 180px;
            align-items: center;
            justify-content: center;
            background-color: #222;
            color: white;
            padding: 12px 24px;
            border: none;
            border-radius: 30px;
            font-size: 16px;
            
            text-decoration: none;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .email-btn:hover {
            color: white;
            background-color: #000000;
            transform: translateY(-2px);
            box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
        }

        .email-btn:active {
            transform: translateY(0);
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        .email-btn:disabled {
            color: white;
            background-color:#bdc3c7;
            transform: translateY(0);
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        .email-icon {
            width: 18px;
            height: 18px;
            margin-right: 10px;
        }

.whatsapp-btn {
            display: inline-flex;
            width: 180px;
            align-items: center;
            justify-content: center;
            background-color: #222;
            color: white;
            padding: 12px 24px;
            border: none;
            border-radius: 30px;
            font-size: 16px;
            
            text-decoration: none;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .whatsapp-btn:hover {
            color: white;
            background-color: #000000;
            transform: translateY(-2px);
            box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
        }

        .whatsapp-btn:active {
            transform: translateY(0);
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        .whatsapp-btn:disabled {
            color: white;
            background-color:#bdc3c7;
            transform: translateY(0);
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        .whatsapp-icon {
            width: 18px;
            height: 18px;
            margin-right: 10px;
        }

.web-btn {
            display: inline-flex;
            width: 180px;
            align-items: center;
            justify-content: center;
            background-color: #222;
            color: white;
            padding: 12px 24px;
            border: none;
            border-radius: 30px;
            font-size: 16px;
            
            text-decoration: none;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .web-btn:hover {
            color: white;
            background-color: #000000;
            transform: translateY(-2px);
            box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
        }

        .web-btn:active {
            transform: translateY(0);
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        .web-btn:disabled {
            color: white;
            background-color:#bdc3c7;
            transform: translateY(0);
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        .web-icon {
            width: 18px;
            height: 18px;
            margin-right: 10px;
        }

.facebook-btn {
            display: inline-flex;
            width: 180px;
            align-items: center;
            justify-content: center;
            background-color: #222;
            color: white;
            padding: 12px 24px;
            border: none;
            border-radius: 30px;
            font-size: 16px;
            
            text-decoration: none;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .facebook-btn:hover {
            color: white;
            background-color: #000000;
            transform: translateY(-2px);
            box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
        }

        .facebook-btn:active {
            transform: translateY(0);
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);;
        }

        .facebook-btn:disabled {
            color: white;
            background-color:#bdc3c7;
            transform: translateY(0);
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        .facebook-icon {
            width: 18px;
            height: 18px;
            margin-right: 10px;
        }

.share-btn {
            display: inline-flex;
            width: 180px;
            align-items: center;
            justify-content: center;
            background-color: #222;
            color: white;
            padding: 12px 24px;
            border: none;
            border-radius: 30px;
            font-size: 16px;
            
            text-decoration: none;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .share-btn:hover {
            color: white;
            background-color: #000000;
            transform: translateY(-2px);
            box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
        }

        .share-btn:active {
            transform: translateY(0);
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);;
        }

        .share-btn:disabled {
            color: white;
            background-color:#bdc3c7;
            transform: translateY(0);
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        .share-icon {
            width: 18px;
            height: 18px;
            margin-right: 10px;
        }

.catalogo-btn {
            display: inline-flex;
            width: 180px;
            align-items: center;
            justify-content: center;
            background-color: #222;
            color: white;
            padding: 12px 24px;
            border: none;
            border-radius: 30px;
            font-size: 16px;
            
            text-decoration: none;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .catalogo-btn:hover {
            color: white;
            background-color: #000000;
            transform: translateY(-2px);
            box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
        }

        .catalogo-btn:active {
            transform: translateY(0);
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);;
        }

        .catalogo-btn:disabled {
            color: white;
            background-color:#bdc3c7;
            transform: translateY(0);
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        .catalogo-icon {
            width: 18px;
            height: 18px;
            margin-right: 10px;
        }


.star-btn {
            display: inline-flex;
            width: 180px;
            align-items: center;
            justify-content: center;
            background-color: transparent;
            color: #f83433;
            padding: 12px 24px;
            border: none;
            border-radius: 30px;
            font-size: 16px;
            
            text-decoration: none;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .star-btn:hover {
            color: red;
            background-color: transparent;
            transform: translateY(-2px);
            box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
        }

        .star-btn:active {
            transform: translateY(0);
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);;
        }

        .star-btn:disabled {
            color: white;
            background-color:#bdc3c7;
            transform: translateY(0);
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        .star-icon {
            width: 20px;
            height: 20px;
            margin-right: 10px;
        }

#mensaje {
            transition: opacity 2s ease-in-out;
            opacity: 1;
        }

.suggest_link {
	background-color: #FFFFFF;
	padding: 2px 6px 2px 6px;
}
.suggest_link_over {
    display: flexbox;
    color: white;
	background-color: #f83433;
	padding: 2px 6px 2px 6px;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}
#search_suggest {
    display: flexbox;
	position:relative; 
	background-color: #333; 
	text-align: left; 
	border: 0px solid #000000;	
    align-items: center;
    justify-content: center;
    margin: 0 auto;		
}

.categories-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            margin-top: 30px;
        }
        
        .category-banner {
            width: 250px;
            height: 150px;
            border-radius: 8px;
            overflow: hidden;
            cursor: pointer;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            transition: transform 0.3s, box-shadow 0.3s;
            position: relative;
          /* Animación de crecimiento */
            transform: scale(0.5);
            opacity: 0;
            animation: growIn 1.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
        }
        
        @keyframes growIn {
            0% {
                transform: scale(0.5);
                opacity: 0;
            }
            100% {
                transform: scale(1);
                opacity: 1;
            }
        }
        
        .category-banner:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.15);
        }
        
        .category-banner img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .category-title {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(0,0,0,0.7);
            color: white;
            padding: 10px;
            text-align: center;
            font-weight: bold;
        }
        
        .back-button {
            display: block;
            margin: 20px auto;
            padding: 10px 20px;
            background: #f83433;
            color: white;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-size: 16px;
        }
        
        .back-button:hover {
            background: red;
        }
        
        .breadcrumb {
            margin-top: 20px;
            text-align: center;
            margin-bottom: 20px;
            font-size: 18px;
        }
        
        .breadcrumb span {
            color: black;
            font-weight: bold;
        }

        .titu {
            margin-top: 20px;
            font-size: 30px;
            color: white;
        }

        .busqueda {
            margin-top: 180px;
            font-size: 18px;
        }

        .carousel-container {
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            overflow: hidden;
            margin-top: 50px;
            padding-left: 200px;
            align-items: center;
            
        }
        
        .carousel {
            display: flex;
            transition: transform 0.5s ease;
            width: 80%;
        }
        
        .baner {
            min-width: calc(100% / 2);
            padding: 10px;
            transition: all 0.3s ease;
        }
        
        .baner-inner {
            width: 300px;
            background-color: white;
            color: black;
            padding: 20px;
            height: 300px;
            position: relative;
            border: 2px solid #333;
            display: flex;
            flex-direction: column;
            transition: height 0.3s ease;
            border-radius: 15px;
        }
        
        .baner-inner.expanded {
            height: 500px;
        }
        
        .plan-name {
            font-size: 26px;
            color: black;
            margin-bottom: 15px;
            text-align: center;
            font-weight: bold;
        }
        
        .plan-image {
            width: 120px;
            height: 120px;
            margin: 0 auto 20px;
            background-color: #333;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 14px;
            border-radius: 8px;
        }
        
        .plan-features {
            margin-bottom: 20px;
            flex-grow: 1;
            text-align: justify;
        }
        
        .plan-features li {
            margin-bottom: 10px;
            list-style-type: none;
            padding-left: 50px;
            position: relative;
            font-size: 14px;
        }
        
        .plan-features li:before {
            
            color: #f83433;
            position: absolute;
            left: 0;
        }
        
        .expand-btn {
            background-color: #f83433;
            color: white;
            border: none;
            padding: 5px 10px;
            cursor: pointer;
            font-weight: bold;
            border-radius: 5px;
            margin-top: auto;
            align-self: center;
            transition: background-color 0.3s;
            font-size: 14px;
        }

        .btn_reg {
            background-color: #f83433;
            color: white;
            border: none;
            padding: 5px 10px;
            cursor: pointer;
            font-weight: bold;
            border-radius: 5px;
            margin-top: auto;
            align-self: center;
            transition: background-color 0.3s;
            font-size: 14px;
        }
        
        .expand-btn:hover {
            background-color: #cc0000;
        }

        .btn_reg:hover {
            background-color: #cc0000;
        }
        
        .carousel-nav {
            display: flex;
            justify-content: center;
            margin-top: 20px;
        }
        
        .nav-dot {
            width: 12px;
            height: 12px;
            background-color: #555;
            border-radius: 50%;
            margin: 0 5px;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
        .nav-dot.active {
            background-color: #f83433;
        }
        
        .additional-info {
            display: none;
            margin-top: 20px;
            padding-top: 20px;
            
            font-size: 14px;
            text-align: justify;
        }
        
        .baner-inner.expanded .additional-info {
            display: block;
        }

        .carousel-control {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: rgba(0,0,0,0.5);
            color: white;
            border: none;
            padding: 0px;
            cursor: pointer;
            font-size: 20px;
            z-index: 10;
        }

        .carousel-control.prev {
            left: 10px;
        }

        .carousel-control.next {
            right: 10px;
        }

        /* Responsive design */
        @media (max-width: 1024px) {
            .baner {
                min-width: 40%;
            }
            .carousel-container {            
                padding-left: 80px;
                align-items: center; 
                          
            }
            .carousel {
            display: flex;
            transition: transform 0.5s ease;
            width: 80%;
        }
        }

        @media (max-width: 768px) {
            
            .baner {
                min-width: 40%;
            }
            .carousel {
            display: flex;
            transition: transform 0.5s ease;
            width: 80%;
        }
            .carousel-control {
                padding: 10px;
                font-size: 16px;
            }
            .carousel-container {            
                padding-left: 80px;
                align-items: center;           
            }
    

        .nosotros {
    display: inline-block;
    margin-top: 200px;
    background-color: #333;
    color: white;
    text-align:justify;
    font-weight: normal;
    font-size: 20px;
    margin-left: 10px;
    margin-right: 10px;
    padding: 40px;
    border-radius: 10px;
    flex-direction: column;
}
        }

/* Responsive */
@media (max-width: 768px) {
    .menu {
        display: none;
        position: absolute;
        top: 40px;
        right: 30px;
        background-color: black;
        flex-direction: column;
        width: 200px;
        border-radius: 10px;
    }

    .menu.show {
        display: flex;
    }

    .menu li {
        margin: 10px;
    }

    .menu-icon {
        display: block;
        margin-right: 10px;
        size: 20px;
    }
    .video-container iframe {
    margin-top: 20px;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 10px;
}

.business-card2 {
            font-family: "Jost", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
            text-align: center;
            max-width: 300px;
            width: 100%;
            height: 25vh;
            padding: 20px;
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            overflow-y: auto;
        }

.close2 {
    position: absolute;
    top: 15vh;
    right: 100px;
    font-size: 30px;
    color: black;
    cursor: pointer;
    background: transparent;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.business-card {
            font-family: "Jost", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
            text-align: center;
            max-width: 600px;
            width: 100%;
            height: 200%;
            padding: 20px;
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            overflow-y: auto;
        }
.business-name {
            margin-top: 0px;
            text-align:center;
            font-size: 24px;
            font-weight: bold;
            color: #333;
            margin-bottom: 5px;
            padding-bottom: 5px;
        }
    
}

/* Responsive */
@media (max-width: 768px) {

    .video-container {
        width: 100%;
        height: auto;
        display: flex;
        justify-content:center;
        align-items:start;
    
    }
    .video-container iframe {
        width: 70%;
        height: auto;
        border-radius: 10px;
    }

    .banner {
        width: 100%;
        display: flex;
        max-width: 350px;
        max-height: 250px;
        object-fit: cover;
    }
    .banner img {
    max-width: 65%;
    height: auto;
    object-fit: cover;
    display: block;
    }

    .flip-card img {
    width: 70%;
    height: auto;
    object-fit: fill;
    align-items: start;
}
    
    .modal-content {
        width: 95%;
        height: 80vh;
    }
    .logo {
        margin-top: 0px;
        height: 140px;
    }

}