        /* Estilos adicionales para IOinstalaciones */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background-color: #25D366;
            color: #fff;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            text-align: center;
            font-size: 30px;
            line-height: 60px;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
            transition: all 0.3s ease;
        }
        .whatsapp-float:hover {
            transform: scale(1.1);
            color: #fff;
            background-color: #128C7E;
        }
        .ioinstalaciones-hero {
            background: url(assets/img/hero-instalaciones.jpg) center no-repeat;
            background-size: cover;
        }
        select.form-control {
            height: 44px;
        }
        .section-me p {
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Estilos para la sección de Proyectos */
        .section-proyectos {
            background-color: #f8fafc;
        }
        .proyecto-card {
            background: #ffffff;
            margin-bottom: 30px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
        }
        .proyecto-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.12);
        }
        .proyecto-img {
            position: relative;
            overflow: hidden;
            height: 220px;
        }
        .proyecto-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        .proyecto-card:hover .proyecto-img img {
            transform: scale(1.05);
        }
        .proyecto-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0,0,0,0.7));
            padding: 15px;
        }
        .proyecto-categoria {
            display: inline-block;
            background-color: rgb(200, 125, 10);
            color: #fff;
            font-size: 11px;
            padding: 4px 12px;
            border-radius: 20px;
            text-transform: uppercase;
            font-weight: 600;
            letter-spacing: 0.5px;
        }
        .proyecto-categoria i {
            margin-right: 5px;
        }
        .proyecto-info {
            padding: 20px;
        }
        .proyecto-info h3 {
            margin: 0 0 10px;
            font-size: 18px;
            font-weight: 600;
            color: #4a5568;
        }
        .proyecto-info p {
            margin: 8px 0;
            font-size: 13px;
            color: #7f8c8d;
            line-height: 1.5;
        }
        .proyecto-info p i {
            margin-right: 5px;
            color: #c87d0a;
        }
        
        /* Enlace admin en navbar */
        .nav.navbar-nav.navbar-right li a[style*="color: #c87d0a"]:hover {
            color: #a06408 !important;
        }
        /* Estilos para alertas del formulario de contacto */
        .alert {
            padding: 15px 20px;
            border-radius: 8px;
            margin-bottom: 20px;
            text-align: center;
            font-size: 14px;
        }

        .alert-success {
            background-color: #c6f6d5;
            color: #22543d;
            border: 1px solid #9ae6b4;
        }

        .alert-error {
            background-color: #fed7d7;
            color: #c53030;
            border: 1px solid #feb2b2;
        }

        .alert i {
            margin-right: 8px;
        }
