        .brand-title {
            font-family: 'Poppins', sans-serif;
            font-weight: 400;
            font-size: 1.1rem;
            letter-spacing: 0.5px;
        }

        :root {
            --main-color: #1f2937;
            --accent-color: #10b981;
            --bg-light: #f9fafb;
            --bg-white: #ffffff;
            --text-color: #374151;
            --muted-text: #6b7280;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--bg-light);
            color: var(--text-color);
        }

        h2 {
            font-size: 2rem;
            margin-bottom: 20px;
            font-weight: bold;
        }

        h3 {
            font-size: 1.3rem;
            margin-bottom: 10px;
            font-weight: bold;
        }

        p {
            font-size: 1rem;
            line-height: 1.6;
            color: var(--muted-text);
        }

        .section {
            padding: 60px 20px;
            max-width: 1200px;
            margin: auto;
            scroll-margin-top: 80px;
        }

        .carousel-container {
            position: relative;
            width: 100%;
            overflow: hidden;
        }

        .carousel-item img {
            width: 100%;
            height: 350px;
            object-fit: cover;
        }

        .carousel-item {
            transition-duration: 1.2s;
        }

        .conocenos-container {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            align-items: center;
        }

        .conocenos-container .content {
            flex: 1 1 60%;
        }

        .grid-info {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }

        .grid-item {
            background: var(--bg-white);
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .grid-item:hover {
            transform: translateY(-6px);
            box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
        }

        .service-card {
            background-color: var(--bg-white);
            padding: 24px;
            border-radius: 12px;
            margin: 12px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            text-align: left;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .service-card:hover {
            transform: translateY(-5px);
        }

        .contact-button {
            display: inline-block;
            background-color: var(--accent-color);
            color: white;
            padding: 14px 28px;
            font-size: 1.1rem;
            border: none;
            border-radius: 8px;
            text-decoration: none;
            transition: background-color 0.3s ease;
        }

        .contact-button:hover {
            background-color: #059669;
        }

        /* Íconos flotantes con tooltip animado */
        .whatsapp-icon,
        .social-icons {
            position: fixed;
            right: 20px;
            z-index: 999;
        }

        .whatsapp-icon {
            bottom: 20px;
        }

        .social-icons {
            bottom: 70px;
        }

        .whatsapp-icon img,
        .social-icons img {
            width: 40px;
            height: 40px;
            cursor: pointer;
        }

        /* Tooltips para íconos */
        .whatsapp-icon:hover::before,
        .social-icons a:hover::before {
            opacity: 1;
            transform: translateX(-10px);
        }

        .whatsapp-icon::before,
        .social-icons a::before {
            content: attr(title);
            position: absolute;
            right: 50px;
            background-color: var(--main-color);
            color: white;
            padding: 6px 12px;
            border-radius: 6px;
            opacity: 0;
            font-size: 14px;
            white-space: nowrap;
            transition: opacity 0.3s ease, transform 0.3s ease;
            pointer-events: none;
            top: 50%;
            transform: translateY(-50%);
        }

        /* Responsive */
        @media screen and (max-width: 768px) {
            .conocenos-container {
                flex-direction: column;
            }

            .brand-title {
                font-size: 0.9rem;
            }

            .service-card {
                width: 100%;
            }
        }

        /* Ajuste responsivo para logos en carrusel */
        #clientes .d-flex {
            flex-wrap: nowrap;
            /* En escritorio que se mantengan en fila */
        }

        #clientes img {
            max-height: 70px;
            max-width: 150px;
            height: auto;
            width: auto;
        }

        /* En pantallas pequeñas (celulares) */
        @media (max-width: 768px) {
            #clientes .d-flex {
                flex-wrap: wrap;
                /* Que los logos bajen a varias filas */
                gap: 20px !important;
                /* Espaciado entre logos */
            }

            #clientes img {
                max-height: 50px;
                /* Más pequeños en móvil */
                max-width: 120px;
            }
        }

        .contact-item {
            display: flex;
            align-items: center;
            flex-wrap: nowrap;
            /* evita que se parta */
            gap: 5px;
        }

        .contact-item a {
            white-space: nowrap;
            /* que nunca se rompa */
            overflow: hidden;
            text-overflow: ellipsis;
            /* si es demasiado largo, se corta con "..." */
        }

        .footer-full {
            display: inline;
            /* por defecto se muestra el nombre completo */
        }

        .footer-short {
            display: none;
            /* oculto por defecto */
        }

        @media (max-width: 768px) {
            .footer-full {
                display: none;
                /* en móviles se oculta */
            }

            .footer-short {
                display: inline;
                /* en móviles aparece el corto */
            }
        }